mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
Merge pull request #4509 from hanakin/ticket/14865
[ticket/14865] Use Stylelint for managing CSS
This commit is contained in:
commit
1d0bb70f78
18 changed files with 2812 additions and 1632 deletions
468
.stylelintrc
Normal file
468
.stylelintrc
Normal file
|
@ -0,0 +1,468 @@
|
|||
{
|
||||
"rules": {
|
||||
"color-hex-case": "lower",
|
||||
"color-hex-length": "long",
|
||||
"color-named": "never",
|
||||
"color-no-invalid-hex": true,
|
||||
|
||||
"font-family-name-quotes": "always-where-recommended",
|
||||
|
||||
"function-calc-no-unspaced-operator": true,
|
||||
"function-comma-newline-after": "always-multi-line",
|
||||
"function-comma-newline-before": "never-multi-line",
|
||||
"function-comma-space-after": "always-single-line",
|
||||
"function-comma-space-before": "never",
|
||||
"function-linear-gradient-no-nonstandard-direction": true,
|
||||
"function-max-empty-lines": 0,
|
||||
"function-name-case": "lower",
|
||||
"function-parentheses-newline-inside": "always-multi-line",
|
||||
"function-parentheses-space-inside": "never-single-line",
|
||||
"function-url-quotes": "always",
|
||||
"function-whitespace-after": "always",
|
||||
|
||||
"number-leading-zero": "always",
|
||||
"number-max-precision": 3,
|
||||
"number-no-trailing-zeros": true,
|
||||
|
||||
"string-no-newline": true,
|
||||
"string-quotes": single,
|
||||
|
||||
"length-zero-no-unit": true,
|
||||
|
||||
"unit-case": "lower",
|
||||
"unit-no-unknown": true,
|
||||
|
||||
"value-keyword-case": lower,
|
||||
|
||||
"value-list-comma-newline-after": "always-multi-line",
|
||||
"value-list-comma-newline-before": "never-multi-line",
|
||||
"value-list-comma-space-after": "always-single-line",
|
||||
"value-list-comma-space-before": "never",
|
||||
"value-list-max-empty-lines": 0,
|
||||
|
||||
"shorthand-property-no-redundant-values": true,
|
||||
|
||||
"property-case": "lower",
|
||||
"property-no-unknown": true,
|
||||
|
||||
"keyframe-declaration-no-important": true,
|
||||
|
||||
"declaration-bang-space-after": "never",
|
||||
"declaration-bang-space-before": "always",
|
||||
"declaration-colon-newline-after": "always-multi-line",
|
||||
"declaration-colon-space-after": "always-single-line",
|
||||
"declaration-colon-space-before": "never",
|
||||
"declaration-empty-line-before": "never",
|
||||
|
||||
"declaration-block-no-duplicate-properties": true,
|
||||
"declaration-block-no-ignored-properties": true,
|
||||
"declaration-block-no-shorthand-property-overrides": true,
|
||||
"declaration-block-semicolon-newline-after": "always-multi-line",
|
||||
"declaration-block-semicolon-newline-before": "never-multi-line",
|
||||
"declaration-block-semicolon-space-after": "always-single-line",
|
||||
"declaration-block-semicolon-space-before": "never",
|
||||
"declaration-block-single-line-max-declarations": 1,
|
||||
"declaration-block-trailing-semicolon": "always",
|
||||
|
||||
"block-closing-brace-empty-line-before": "never",
|
||||
"block-closing-brace-newline-after": "always",
|
||||
"block-closing-brace-newline-before": "always-multi-line",
|
||||
"block-closing-brace-space-after": "always-single-line",
|
||||
"block-closing-brace-space-before": "always-single-line",
|
||||
"block-no-empty": true,
|
||||
"block-opening-brace-newline-after": "always-multi-line",
|
||||
"block-opening-brace-space-after": "always-single-line",
|
||||
"block-opening-brace-space-before": "always",
|
||||
|
||||
"selector-attribute-brackets-space-inside": "never",
|
||||
"selector-attribute-operator-space-after": "never",
|
||||
"selector-attribute-operator-space-before": "never",
|
||||
"selector-attribute-quotes": "always",
|
||||
"selector-combinator-space-after": "always",
|
||||
"selector-combinator-space-before": "always",
|
||||
"selector-descendant-combinator-no-non-space": true,
|
||||
"selector-max-compound-selectors": 3,
|
||||
"selector-no-empty": true,
|
||||
"selector-no-id": true,
|
||||
"selector-no-qualifying-type": [
|
||||
true, {
|
||||
"ignore": ["attribute"]
|
||||
}
|
||||
],
|
||||
"selector-pseudo-class-case": "lower",
|
||||
"selector-pseudo-class-no-unknown": true,
|
||||
"selector-pseudo-class-parentheses-space-inside": "never",
|
||||
"selector-pseudo-element-case": "lower",
|
||||
"selector-pseudo-element-colon-notation": "single",
|
||||
"selector-pseudo-element-no-unknown": true,
|
||||
"selector-type-case": "lower",
|
||||
"selector-type-no-unknown": true,
|
||||
"selector-max-empty-lines": 0,
|
||||
|
||||
"selector-list-comma-newline-after": "always",
|
||||
"selector-list-comma-space-before": "never",
|
||||
|
||||
"rule-nested-empty-line-before": [
|
||||
"always-multi-line", {
|
||||
"ignore": ["after-comment"],
|
||||
"except": ["first-nested"]
|
||||
}
|
||||
],
|
||||
"rule-non-nested-empty-line-before": [
|
||||
"always-multi-line", {
|
||||
"ignore": ["after-comment"]
|
||||
}
|
||||
],
|
||||
|
||||
"media-feature-colon-space-after": "always",
|
||||
"media-feature-colon-space-before": "never",
|
||||
"media-feature-name-case": "lower",
|
||||
"media-feature-no-missing-punctuation": true,
|
||||
"media-feature-parentheses-space-inside": "never",
|
||||
"media-feature-range-operator-space-after": "always",
|
||||
"media-feature-range-operator-space-before": "always",
|
||||
|
||||
"media-query-list-comma-newline-after": "always-multi-line",
|
||||
"media-query-list-comma-space-after": "always-single-line",
|
||||
"media-query-list-comma-space-before": "never",
|
||||
|
||||
"at-rule-empty-line-before": [
|
||||
"always", {
|
||||
"except": ["blockless-group", "all-nested", "first-nested"],
|
||||
"ignore": ["after-comment"]
|
||||
}
|
||||
],
|
||||
"at-rule-name-case": "lower",
|
||||
"at-rule-name-space-after": "always-single-line",
|
||||
"at-rule-semicolon-newline-after": "always",
|
||||
|
||||
"comment-empty-line-before": [
|
||||
"always", {
|
||||
"except": ["first-nested"],
|
||||
"ignore": ["stylelint-commands"]
|
||||
}
|
||||
],
|
||||
"comment-whitespace-inside": "always",
|
||||
|
||||
"indentation": "tab",
|
||||
"max-empty-lines": 5,
|
||||
|
||||
"no-duplicate-selectors": true,
|
||||
"no-eol-whitespace": true,
|
||||
"no-extra-semicolons": true,
|
||||
"no-indistinguishable-colors": [
|
||||
true, {
|
||||
"ignore": ["#fafafa", "#f5f5f5", "#eeeeee", "#ffffff" ]
|
||||
}
|
||||
],
|
||||
"no-invalid-double-slash-comments": true,
|
||||
"no-missing-end-of-source-newline": true,
|
||||
|
||||
"declaration-block-properties-order": [
|
||||
[
|
||||
"-moz-osx-font-smoothing",
|
||||
"-webkit-font-smoothing",
|
||||
"font",
|
||||
"font-effect",
|
||||
"font-emphasize",
|
||||
"font-emphasize-position",
|
||||
"font-emphasize-style",
|
||||
"font-family",
|
||||
"font-feature-settings",
|
||||
"-webkit-font-feature-settings",
|
||||
"font-size",
|
||||
"font-size-adjust",
|
||||
"font-smooth",
|
||||
"font-stretch",
|
||||
"font-style",
|
||||
"font-variant",
|
||||
"font-weight",
|
||||
"-moz-hyphens",
|
||||
"-webkit-hyphens",
|
||||
"hyphens",
|
||||
"letter-spacing",
|
||||
"line-height",
|
||||
"-moz-tab-size",
|
||||
"-o-tab-size",
|
||||
"-ms-text-size-adjust",
|
||||
"-webkit-text-size-adjust",
|
||||
"tab-size",
|
||||
"text-align",
|
||||
"-moz-text-align-last",
|
||||
"-ms-text-align-last",
|
||||
"-webkit-text-align-last",
|
||||
"text-align-last",
|
||||
"-webkit-text-decoration-skip",
|
||||
"text-decoration",
|
||||
"text-emphasis",
|
||||
"text-emphasis-color",
|
||||
"text-emphasis-position",
|
||||
"text-emphasis-style",
|
||||
"text-indent",
|
||||
"-ms-text-justify",
|
||||
"text-justify",
|
||||
"text-outline",
|
||||
"-ms-text-overflow",
|
||||
"text-overflow",
|
||||
"text-overflow-ellipsis",
|
||||
"text-overflow-mode",
|
||||
"text-transform",
|
||||
"text-wrap",
|
||||
"vertical-align",
|
||||
"white-space",
|
||||
"-ms-word-break",
|
||||
"word-break",
|
||||
"word-spacing",
|
||||
"-ms-word-wrap",
|
||||
"-ms-writing-mode",
|
||||
"word-wrap",
|
||||
|
||||
"background",
|
||||
"background-attachment",
|
||||
"-moz-background-clip",
|
||||
"-webkit-background-clip",
|
||||
"background-clip",
|
||||
"background-color",
|
||||
"background-image",
|
||||
"background-origin",
|
||||
"background-position",
|
||||
"-ms-background-position-x",
|
||||
"background-position-x",
|
||||
"-ms-background-position-y",
|
||||
"background-position-y",
|
||||
"background-repeat",
|
||||
"-moz-background-size",
|
||||
"-o-background-size",
|
||||
"-webkit-background-size",
|
||||
"background-size",
|
||||
"border",
|
||||
"border-color",
|
||||
"border-collapse",
|
||||
"-o-border-image",
|
||||
"-moz-border-image",
|
||||
"-webkit-border-image",
|
||||
"border-image",
|
||||
"-moz-border-image-outset",
|
||||
"-o-border-image-outset",
|
||||
"-webkit-border-image-outset",
|
||||
"border-image-outset",
|
||||
"-moz-border-image-repeat",
|
||||
"-o-border-image-repeat",
|
||||
"-webkit-border-image-repeat",
|
||||
"border-image-repeat",
|
||||
"-moz-border-image-slice",
|
||||
"-o-border-image-slice",
|
||||
"-webkit-border-image-slice",
|
||||
"border-image-slice",
|
||||
"-moz-border-image-source",
|
||||
"-o-border-image-source",
|
||||
"-webkit-border-image-source",
|
||||
"border-image-source",
|
||||
"-moz-border-image-width",
|
||||
"-o-border-image-width",
|
||||
"-webkit-border-image-width",
|
||||
"border-image-width",
|
||||
"-moz-border-radius",
|
||||
"-webkit-border-radius",
|
||||
"border-radius",
|
||||
"border-top",
|
||||
"border-top-color",
|
||||
"border-top-left-radius",
|
||||
"-moz-border-radius-topleft",
|
||||
"-webkit-border-top-left-radius",
|
||||
"border-top-right-radius",
|
||||
"-moz-border-radius-topright",
|
||||
"-webkit-border-top-right-radius",
|
||||
"border-top-style",
|
||||
"border-top-width",
|
||||
"border-right",
|
||||
"border-right-color",
|
||||
"border-right-style",
|
||||
"border-right-width",
|
||||
"border-bottom",
|
||||
"border-bottom-color",
|
||||
"-moz-border-radius-bottomleft",
|
||||
"-webkit-border-bottom-left-radius",
|
||||
"border-bottom-left-radius",
|
||||
"-moz-border-radius-bottomright",
|
||||
"-webkit-border-bottom-right-radius",
|
||||
"border-bottom-right-radius",
|
||||
"border-bottom-style",
|
||||
"border-bottom-width",
|
||||
"border-left",
|
||||
"border-left-color",
|
||||
"border-left-style",
|
||||
"border-left-width",
|
||||
"border-spacing",
|
||||
"border-style",
|
||||
"border-width",
|
||||
"box-decoration-break",
|
||||
"-moz-box-shadow",
|
||||
"-webkit-box-shadow",
|
||||
"box-shadow",
|
||||
"color",
|
||||
"opacity",
|
||||
"outline",
|
||||
"outline-color",
|
||||
"outline-offset",
|
||||
"outline-style",
|
||||
"outline-width",
|
||||
"text-shadow",
|
||||
"-ms-interpolation-mode",
|
||||
"-ms-filter:\\'progid:DXImageTransform.Microsoft.Alpha",
|
||||
"-ms-filter:\\'progid:DXImageTransform.Microsoft.gradient",
|
||||
"filter:progid:DXImageTransform.Microsoft.Alpha(Opacity",
|
||||
"filter:progid:DXImageTransform.Microsoft.AlphaImageLoader",
|
||||
"filter:progid:DXImageTransform.Microsoft.gradient",
|
||||
|
||||
"position",
|
||||
"top",
|
||||
"right",
|
||||
"bottom",
|
||||
"left",
|
||||
"z-index",
|
||||
|
||||
"display",
|
||||
"visibility",
|
||||
"float",
|
||||
"clear",
|
||||
"-ms-overflow-x",
|
||||
"-ms-overflow-y",
|
||||
"-ms-overflow-style",
|
||||
"overflow",
|
||||
"overflow-x",
|
||||
"overflow-y",
|
||||
"clip",
|
||||
"zoom",
|
||||
"-webkit-flex",
|
||||
"flex-direction",
|
||||
"flex-order",
|
||||
"flex-pack",
|
||||
"flex-align",
|
||||
"flex",
|
||||
|
||||
"-webkit-box-sizing",
|
||||
"-moz-box-sizing",
|
||||
"box-sizing",
|
||||
"width",
|
||||
"min-width",
|
||||
"max-width",
|
||||
"height",
|
||||
"min-height",
|
||||
"max-height",
|
||||
"margin",
|
||||
"margin-top",
|
||||
"margin-right",
|
||||
"margin-bottom",
|
||||
"margin-left",
|
||||
"padding",
|
||||
"padding-top",
|
||||
"padding-right",
|
||||
"padding-bottom",
|
||||
"padding-left",
|
||||
|
||||
"table-layout",
|
||||
"empty-cells",
|
||||
"caption-side",
|
||||
"list-style",
|
||||
"list-style-position",
|
||||
"list-style-type",
|
||||
"list-style-image",
|
||||
|
||||
"content",
|
||||
"quotes",
|
||||
"counter-reset",
|
||||
"counter-increment",
|
||||
"resize",
|
||||
"cursor",
|
||||
"-moz-user-select",
|
||||
"-ms-user-select",
|
||||
"-webkit-user-select",
|
||||
"user-select",
|
||||
"nav-index",
|
||||
"nav-up",
|
||||
"nav-right",
|
||||
"nav-down",
|
||||
"nav-left",
|
||||
"-webkit-transition",
|
||||
"-moz-transition",
|
||||
"-ms-transition",
|
||||
"-o-transition",
|
||||
"transition",
|
||||
"-webkit-transition-delay",
|
||||
"-moz-transition-delay",
|
||||
"-ms-transition-delay",
|
||||
"-o-transition-delay",
|
||||
"transition-delay",
|
||||
"-webkit-transition-timing-function",
|
||||
"-moz-transition-timing-function",
|
||||
"-ms-transition-timing-function",
|
||||
"-o-transition-timing-function",
|
||||
"transition-timing-function",
|
||||
"-webkit-transition-duration",
|
||||
"-moz-transition-duration",
|
||||
"-ms-transition-duration",
|
||||
"-o-transition-duration",
|
||||
"transition-duration",
|
||||
"-webkit-transition-property",
|
||||
"-moz-transition-property",
|
||||
"-ms-transition-property",
|
||||
"-o-transition-property",
|
||||
"transition-property",
|
||||
"-webkit-transform",
|
||||
"-moz-transform",
|
||||
"-ms-transform",
|
||||
"-o-transform",
|
||||
"transform",
|
||||
"-webkit-transform-origin",
|
||||
"-moz-transform-origin",
|
||||
"-ms-transform-origin",
|
||||
"-o-transform-origin",
|
||||
"transform-origin",
|
||||
"-webkit-animation",
|
||||
"-moz-animation",
|
||||
"-ms-animation",
|
||||
"-o-animation",
|
||||
"animation",
|
||||
"-webkit-animation-name",
|
||||
"-moz-animation-name",
|
||||
"-ms-animation-name",
|
||||
"-o-animation-name",
|
||||
"animation-name",
|
||||
"-webkit-animation-duration",
|
||||
"-moz-animation-duration",
|
||||
"-ms-animation-duration",
|
||||
"-o-animation-duration",
|
||||
"animation-duration",
|
||||
"-webkit-animation-play-state",
|
||||
"-moz-animation-play-state",
|
||||
"-ms-animation-play-state",
|
||||
"-o-animation-play-state",
|
||||
"animation-play-state",
|
||||
"-webkit-animation-timing-function",
|
||||
"-moz-animation-timing-function",
|
||||
"-ms-animation-timing-function",
|
||||
"-o-animation-timing-function",
|
||||
"animation-timing-function",
|
||||
"-webkit-animation-delay",
|
||||
"-moz-animation-delay",
|
||||
"-ms-animation-delay",
|
||||
"-o-animation-delay",
|
||||
"animation-delay",
|
||||
"-webkit-animation-iteration-count",
|
||||
"-moz-animation-iteration-count",
|
||||
"-ms-animation-iteration-count",
|
||||
"-o-animation-iteration-count",
|
||||
"animation-iteration-count",
|
||||
"-webkit-animation-direction",
|
||||
"-moz-animation-direction",
|
||||
"-ms-animation-direction",
|
||||
"-o-animation-direction",
|
||||
"animation-direction",
|
||||
"pointer-events",
|
||||
"-moz-appearance",
|
||||
"-webkit-appearance"
|
||||
], { unspecified: "ignore" }
|
||||
]
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
/* --------------------------------------------------------------
|
||||
/* -------------------------------------------------------------- /*
|
||||
$Base
|
||||
-------------------------------------------------------------- */
|
||||
/* -------------------------------------------------------------- */
|
||||
|
||||
/** {
|
||||
-webkit-box-sizing: border-box;
|
||||
|
@ -12,19 +12,21 @@
|
|||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}*/
|
||||
}
|
||||
*/
|
||||
|
||||
/* Define your base font-size here; most elements will inherit this. */
|
||||
|
||||
/* Define your base font-size here; most elements will inherit this. _NO__DOTCOMMA__AFTER__*/
|
||||
html {
|
||||
font-size: 1em; /* Assuming 16px... */
|
||||
line-height: 1.5; /* 24px (This is now our magic number; all subsequent margin-bottoms and line-heights want to be a multiple of this number in order to maintain vertical rhythm.) _NO__DOTCOMMA__AFTER__*/
|
||||
line-height: 1.5; /* 24px (This is now our magic number; all subsequent margin-bottoms and line-heights want to be a multiple of this number in order to maintain vertical rhythm.) */
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
color: #333333;
|
||||
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||
background-color: #ffffff;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
input,
|
||||
|
@ -36,26 +38,31 @@ textarea {
|
|||
line-height: inherit;
|
||||
}
|
||||
|
||||
figure { margin: 0 }
|
||||
img { vertical-align: middle }
|
||||
figure {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
img {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
hr {
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
border: 0;
|
||||
border-top: 1px solid #e5e5e5;
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #428bca;
|
||||
text-decoration: none;
|
||||
color: #428bca;
|
||||
}
|
||||
|
||||
a:hover,
|
||||
a:focus,
|
||||
a:active {
|
||||
color: #2a6496;
|
||||
text-decoration: underline;
|
||||
color: #2a6496;
|
||||
}
|
||||
|
||||
blockquote,
|
||||
|
@ -69,7 +76,10 @@ h5,
|
|||
h6,
|
||||
figure,
|
||||
p,
|
||||
pre { margin: 0 }
|
||||
pre {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
button {
|
||||
background: transparent;
|
||||
border: 0;
|
||||
|
@ -81,8 +91,7 @@ button {
|
|||
* results in a loss of the default `button` focus styles.
|
||||
*/
|
||||
button:focus {
|
||||
outline: 1px dotted;
|
||||
outline: 5px auto -webkit-focus-ring-color;
|
||||
outline: 1px dotted 5px auto -webkit-focus-ring-color;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
|
@ -91,12 +100,15 @@ fieldset {
|
|||
padding: 0;
|
||||
}
|
||||
|
||||
iframe { border: 0 }
|
||||
iframe {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -104,7 +116,9 @@ ul {
|
|||
* This prevents an unwanted focus outline from appearing around elements that
|
||||
* might still respond to pointer events.
|
||||
*/
|
||||
[tabindex="-1"]:focus { outline: none !important }
|
||||
[tabindex='-1']:focus {
|
||||
outline: none !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove double underline from recent version of firefox
|
||||
|
@ -112,4 +126,3 @@ ul {
|
|||
abbr[title] {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
/* RTL definitions
|
||||
---------------------------------------- */
|
||||
/* -------------------------------------------------------------- /*
|
||||
$Bidi
|
||||
/* -------------------------------------------------------------- */
|
||||
/* stylelint-disable selector-max-compound-selectors */
|
||||
/* stylelint-disable selector-no-qualifying-type */
|
||||
|
||||
/**
|
||||
* common.css
|
||||
|
@ -14,8 +17,8 @@
|
|||
}
|
||||
|
||||
.rtl div.rules ul {
|
||||
margin-left: 0;
|
||||
margin-right: 20px;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
/* Main blocks
|
||||
|
@ -47,48 +50,52 @@
|
|||
}
|
||||
|
||||
/* Horizontal lists
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.rtl ul.linklist > li {
|
||||
float: right;
|
||||
margin-right: 0;
|
||||
margin-left: 7px;
|
||||
}
|
||||
|
||||
.rtl ul.linklist > li.rightside, .rtl p.rightside, .rtl a.rightside {
|
||||
.rtl ul.linklist > li.rightside,
|
||||
.rtl p.rightside,
|
||||
.rtl a.rightside {
|
||||
text-align: left;
|
||||
float: left;
|
||||
margin-right: 7px;
|
||||
margin-left: 0;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.rtl ul.leftside > li, .rtl ul.rightside > li {
|
||||
.rtl ul.leftside > li,
|
||||
.rtl ul.rightside > li {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.rtl ul.leftside {
|
||||
float: right;
|
||||
margin-left: 5px;
|
||||
margin-right: 0;
|
||||
text-align: right;
|
||||
float: right;
|
||||
margin-right: 0;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.rtl ul.rightside {
|
||||
float: left;
|
||||
margin-left: -5px;
|
||||
margin-right: 5px;
|
||||
text-align: left;
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
margin-left: -5px;
|
||||
}
|
||||
|
||||
/* Bulletin icons for list items
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.rtl ul.linklist.bulletin > li:before {
|
||||
padding-left: 4px;
|
||||
padding-right: 0;
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
/* Dropdown menu
|
||||
---------------------------------------- */
|
||||
.rtl .dropdown-container.topic-tools, .rtl .dropdown-container-left {
|
||||
.rtl .dropdown-container.topic-tools,
|
||||
.rtl .dropdown-container-left {
|
||||
float: right;
|
||||
}
|
||||
|
||||
|
@ -97,8 +104,8 @@
|
|||
}
|
||||
|
||||
.rtl .dropdown-contents > li {
|
||||
padding-left: 15px;
|
||||
padding-right: 0;
|
||||
padding-left: 15px;
|
||||
}
|
||||
|
||||
.rtl .dropdown-nonscroll > li {
|
||||
|
@ -106,34 +113,35 @@
|
|||
}
|
||||
|
||||
.rtl .dropdown li li {
|
||||
padding-left: 0;
|
||||
padding-right: 18px;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.rtl .dropdown-extended .header {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.rtl .dropdown-extended .header .header_settings, .rtl .dropdown-container-right {
|
||||
.rtl .dropdown-extended .header .header_settings,
|
||||
.rtl .dropdown-container-right {
|
||||
float: left;
|
||||
}
|
||||
|
||||
/* Notifications
|
||||
-----------------------------------------*/
|
||||
----------------------------------------- */
|
||||
.rtl .notification_list ul li img {
|
||||
float: right;
|
||||
margin-left: 5px;
|
||||
margin-right: 0;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.rtl .notification_list div.notifications {
|
||||
margin-left: 0;
|
||||
margin-right: 50px;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.rtl .notification_text {
|
||||
margin-left: 0;
|
||||
margin-right: 58px;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.rtl .notification_list p.notification-time {
|
||||
|
@ -141,20 +149,20 @@
|
|||
}
|
||||
|
||||
/* Responsive breadcrumbs
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.rtl .breadcrumbs .crumb {
|
||||
float: right;
|
||||
}
|
||||
|
||||
/* Table styles
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.rtl table.table1 thead th {
|
||||
padding: 0 3px 4px 0;
|
||||
}
|
||||
|
||||
.rtl table.table1 thead th span {
|
||||
padding-left: 0;
|
||||
padding-right: 7px;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.rtl table.table1 tbody th {
|
||||
|
@ -162,11 +170,26 @@
|
|||
}
|
||||
|
||||
/* Specific column styles */
|
||||
.rtl table.table1 .name { text-align: right; }
|
||||
.rtl table.table1 .joined { text-align: right; }
|
||||
.rtl table.table1 .active { text-align: right; }
|
||||
.rtl table.table1 .info { text-align: right; }
|
||||
.rtl table.table1 thead .autocol { padding-left: 0; padding-right: 1em; }
|
||||
.rtl table.table1 .name {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.rtl table.table1 .joined {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.rtl table.table1 .active {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.rtl table.table1 .info {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.rtl table.table1 thead .autocol {
|
||||
padding-right: 1em;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.rtl table.table1 span.rank-img {
|
||||
float: left;
|
||||
|
@ -182,6 +205,7 @@
|
|||
|
||||
/* Misc layout styles
|
||||
---------------------------------------- */
|
||||
|
||||
/* column[1-2] styles are containers for two column layouts */
|
||||
.rtl .column1 {
|
||||
float: right;
|
||||
|
@ -195,37 +219,37 @@
|
|||
|
||||
/* General classes for placing floating blocks */
|
||||
.rtl .left-box {
|
||||
float: right;
|
||||
text-align: right;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.rtl .right-box {
|
||||
float: left;
|
||||
text-align: left;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.rtl dl.details dt {
|
||||
text-align: left;
|
||||
float: right;
|
||||
clear: right;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.rtl dl.details dd {
|
||||
float: right;
|
||||
margin-right: 0;
|
||||
margin-left: 0;
|
||||
padding-right: 5px;
|
||||
padding-left: 0;
|
||||
float: right;
|
||||
}
|
||||
|
||||
*:first-child+html dl.details dd {
|
||||
margin-right: 30%;
|
||||
*:first-child + html dl.details dd {
|
||||
float: none;
|
||||
margin-right: 30%;
|
||||
}
|
||||
|
||||
* html dl.details dd {
|
||||
margin-right: 30%;
|
||||
float: none;
|
||||
margin-right: 30%;
|
||||
}
|
||||
|
||||
/* Pagination
|
||||
|
@ -236,16 +260,16 @@
|
|||
}
|
||||
|
||||
.rtl .pagination > ul {
|
||||
margin-left: 0;
|
||||
margin-right: 5px;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
/* Pagination in viewforum for multipage topics */
|
||||
.rtl .row .pagination {
|
||||
background-position: 100% 50%;
|
||||
float: left;
|
||||
padding-left: 0;
|
||||
padding-right: 15px;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.rtl .row .pagination > ul {
|
||||
|
@ -257,8 +281,8 @@
|
|||
}
|
||||
|
||||
.pagination li.page-jump {
|
||||
margin-left: 5px;
|
||||
margin-right: 0;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.rtl .topic-poster {
|
||||
|
@ -269,13 +293,13 @@
|
|||
/* Action Bar styles
|
||||
---------------------------------------- */
|
||||
.rtl .action-bar .button {
|
||||
margin-right: 0;
|
||||
float: right;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.rtl .action-bar > .button {
|
||||
margin-left: 5px;
|
||||
float: right;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.rtl .action-bar .dropdown-button-control .button {
|
||||
|
@ -286,14 +310,14 @@
|
|||
/* Miscellaneous styles
|
||||
---------------------------------------- */
|
||||
.rtl .quick-links {
|
||||
margin-left: 7px;
|
||||
margin-right: 0;
|
||||
margin-left: 7px;
|
||||
}
|
||||
|
||||
.rtl .header-avatar span:after {
|
||||
float: left;
|
||||
padding-left: 0;
|
||||
padding-right: 2px;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.rtl .member-search {
|
||||
|
@ -317,8 +341,8 @@ li.breadcrumbs span:first-child > a {
|
|||
/* Notification mark read link */
|
||||
.rtl .dropdown-extended a.mark_read {
|
||||
border-radius: 0 3px 3px 0;
|
||||
left: 0;
|
||||
right: auto;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.rtl .back2top .top {
|
||||
|
@ -327,9 +351,10 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
.rtl .skiplink {
|
||||
right: -999px;
|
||||
|
||||
/* invisible skip link, used for accessibility */
|
||||
left: 0;
|
||||
right: -999px;
|
||||
}
|
||||
|
||||
.rtl a.feed-icon-forum {
|
||||
|
@ -339,7 +364,8 @@ li.breadcrumbs span:first-child > a {
|
|||
/**
|
||||
* content.css
|
||||
*/
|
||||
.rtl ul.topiclist dt, .rtl li.header dt {
|
||||
.rtl ul.topiclist dt,
|
||||
.rtl li.header dt {
|
||||
float: right;
|
||||
margin-right: 0;
|
||||
margin-left: -440px;
|
||||
|
@ -381,21 +407,21 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
.rtl ul.topiclist dd {
|
||||
float: right;
|
||||
border-right-width: 1px;
|
||||
border-right-style: solid;
|
||||
border-right-width: 1px;
|
||||
border-left: none;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.rtl ul.topiclist dfn {
|
||||
left: auto;
|
||||
right: -999px;
|
||||
left: auto;
|
||||
}
|
||||
|
||||
.rtl ul.topiclist li.row dt a.subforum {
|
||||
padding-right: 12px;
|
||||
background-position: right;
|
||||
position: static;
|
||||
padding-right: 12px;
|
||||
}
|
||||
|
||||
.rtl .forum-image {
|
||||
|
@ -404,16 +430,17 @@ li.breadcrumbs span:first-child > a {
|
|||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.rtl li.header dt, .rtl li.header dd {
|
||||
.rtl li.header dt,
|
||||
.rtl li.header dd {
|
||||
border-right-width: 0;
|
||||
}
|
||||
|
||||
.rtl li.header dd {
|
||||
padding-left: 0;
|
||||
padding-right: 1px;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.rtl dl.row-item{
|
||||
.rtl dl.row-item {
|
||||
background-position: 99.5% 50%;
|
||||
}
|
||||
|
||||
|
@ -424,30 +451,35 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
.rtl dl.row-item dt {
|
||||
background-position: 99.5% 95%; /* Position of topic icon */
|
||||
background-position: 99.5% 95%; /* Position of topic icon */
|
||||
}
|
||||
|
||||
.rtl dl.row-item dt .list-inner {
|
||||
padding-right: 45px; /* Space for folder icon */
|
||||
padding-left: 5px;
|
||||
padding-right: 45px; /* Space for folder icon */
|
||||
}
|
||||
|
||||
.rtl dl a.row-item-link { /* topic row icon links */
|
||||
display: inline-block;
|
||||
left: auto;
|
||||
.rtl dl a.row-item-link { /* topic row icon links */
|
||||
right: 0;
|
||||
margin-left: 0;
|
||||
left: auto;
|
||||
display: inline-block;
|
||||
margin-right: 2px;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.rtl dd.lastpost > span, .rtl ul.topiclist dd.info > span, .rtl ul.topiclist dd.time > span, .rtl dd.redirect > span, .rtl dd.moderation > span {
|
||||
padding-left: 0;
|
||||
.rtl dd.lastpost > span,
|
||||
.rtl ul.topiclist dd.info > span,
|
||||
.rtl ul.topiclist dd.time > span,
|
||||
.rtl dd.redirect > span,
|
||||
.rtl dd.moderation > span {
|
||||
padding-right: 5px;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
/* Post body styles
|
||||
----------------------------------------*/
|
||||
.rtl .postbody, .rtl .postbody h3 {
|
||||
---------------------------------------- */
|
||||
.rtl .postbody,
|
||||
.rtl .postbody h3 {
|
||||
float: right;
|
||||
}
|
||||
|
||||
|
@ -461,20 +493,21 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
.rtl p.post-notice:before {
|
||||
left: auto;
|
||||
right: 0;
|
||||
left: auto;
|
||||
}
|
||||
|
||||
/* Topic review panel
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.rtl .topicreview {
|
||||
padding-right: 0;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
/* Content container styles
|
||||
----------------------------------------*/
|
||||
.rtl .content ul, .rtl .content ol {
|
||||
---------------------------------------- */
|
||||
.rtl .content ul,
|
||||
.rtl .content ol {
|
||||
margin-right: 3em;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
@ -493,11 +526,12 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
/* BB Code styles
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
|
||||
/* Quote block */
|
||||
.rtl blockquote {
|
||||
margin: 0.5em 25px 0 1px;
|
||||
background-position: 99% 8px;
|
||||
margin: 0.5em 25px 0 1px;
|
||||
}
|
||||
|
||||
.rtl blockquote blockquote {
|
||||
|
@ -520,11 +554,11 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
/* Attachments
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.rtl .attachbox {
|
||||
float: right;
|
||||
margin: 5px 0 5px 5px;
|
||||
clear: right;
|
||||
margin: 5px 0 5px 5px;
|
||||
}
|
||||
|
||||
.rtl .attachbox dd {
|
||||
|
@ -540,16 +574,16 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
/* Post poll styles
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.rtl fieldset.polls dt {
|
||||
text-align: right;
|
||||
float: right;
|
||||
border-left: none;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.rtl fieldset.polls dd {
|
||||
float: right;
|
||||
border-right: none;
|
||||
float: right;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
|
@ -557,29 +591,35 @@ li.breadcrumbs span:first-child > a {
|
|||
text-align: left;
|
||||
}
|
||||
|
||||
.rtl .pollbar1, .rtl .pollbar2, .rtl .pollbar3, .rtl .pollbar4, .rtl .pollbar5 {
|
||||
border-left-width: 1px;
|
||||
border-left-style: solid;
|
||||
.rtl .pollbar1,
|
||||
.rtl .pollbar2,
|
||||
.rtl .pollbar3,
|
||||
.rtl .pollbar4,
|
||||
.rtl .pollbar5 {
|
||||
border-right: none;
|
||||
border-left-style: solid;
|
||||
border-left-width: 1px;
|
||||
}
|
||||
|
||||
/* Poster profile block
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.rtl .postprofile {
|
||||
border-width: 0 1px 0 0;
|
||||
float: left;
|
||||
/* text-align: right; */
|
||||
|
||||
/* text-align: right; */
|
||||
}
|
||||
|
||||
.rtl .pm .postprofile {
|
||||
border-right-width: 1px;
|
||||
border-right-style: solid;
|
||||
border-right-width: 1px;
|
||||
border-left: none;
|
||||
}
|
||||
|
||||
.rtl .postprofile dd, .rtl .postprofile dt {
|
||||
margin-left: 0;
|
||||
.rtl .postprofile dd,
|
||||
.rtl .postprofile dt {
|
||||
margin-right: 8px;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.rtl .postprofile .avatar {
|
||||
|
@ -612,8 +652,8 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
.rtl .has-profile .post-buttons {
|
||||
left: 0;
|
||||
right: auto;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.rtl .post-buttons li {
|
||||
|
@ -621,11 +661,11 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
/* Poster contact icons
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.rtl .contact-icons a {
|
||||
border-left-width: 1px;
|
||||
border-left-style: dotted;
|
||||
border-right: none;
|
||||
border-left-style: dotted;
|
||||
border-left-width: 1px;
|
||||
float: right;
|
||||
}
|
||||
|
||||
|
@ -636,12 +676,13 @@ li.breadcrumbs span:first-child > a {
|
|||
/**
|
||||
* cp.css
|
||||
*/
|
||||
|
||||
/* Control Panel Styles
|
||||
---------------------------------------- */
|
||||
|
||||
|
||||
/* Main CP box
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.rtl .cp-menu {
|
||||
float: right;
|
||||
}
|
||||
|
@ -665,10 +706,10 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
/* CP tabbed menu
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.rtl .tabs {
|
||||
margin-left: 0;
|
||||
margin-right: 7px;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.rtl .tabs .tab {
|
||||
|
@ -676,12 +717,12 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
.rtl .tabs .tab > a {
|
||||
margin-left: 1px;
|
||||
margin-right: 0;
|
||||
margin-left: 1px;
|
||||
}
|
||||
|
||||
/* Mini tabbed menu used in MCP
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.rtl .minitabs {
|
||||
float: left;
|
||||
margin-right: 0;
|
||||
|
@ -698,7 +739,7 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
/* Responsive tabs
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.rtl .tabs .dropdown {
|
||||
margin-left: -2px;
|
||||
}
|
||||
|
@ -716,22 +757,24 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
/* Responsive *CP navigation
|
||||
----------------------------------------*/
|
||||
@media only screen and (max-width: 900px), only screen and (max-device-width: 900px)
|
||||
{
|
||||
.rtl .cp-menu, .rtl .navigation, .rtl .cp-main {
|
||||
---------------------------------------- */
|
||||
|
||||
@media only screen and (max-width: 900px), only screen and (max-device-width: 900px) {
|
||||
.rtl .cp-menu,
|
||||
.rtl .navigation,
|
||||
.rtl .cp-main {
|
||||
float: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* UCP navigation menu
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
|
||||
/* Preferences pane layout
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.rtl .cp-main h2 {
|
||||
margin-left: 0;
|
||||
margin-right: 10px;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
/* Friends list */
|
||||
|
@ -740,7 +783,7 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
/* PM Styles
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
|
||||
/* PM panel adjustments */
|
||||
.rtl .reply-all a.right {
|
||||
|
@ -762,11 +805,11 @@ li.breadcrumbs span:first-child > a {
|
|||
|
||||
/* PM marking colours */
|
||||
.rtl .pm-legend {
|
||||
border-right-width: 10px;
|
||||
border-right-style: solid;
|
||||
border-right-width: 10px;
|
||||
border-left-width: 0;
|
||||
padding-left: 0;
|
||||
padding-right: 3px;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
/* Avatar gallery */
|
||||
|
@ -775,10 +818,12 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
/* Responsive *CP navigation
|
||||
----------------------------------------*/
|
||||
@media only screen and (max-width: 900px), only screen and (max-device-width: 900px)
|
||||
{
|
||||
.rtl .cp-menu, .rtl .navigation, .rtl .cp-main {
|
||||
---------------------------------------- */
|
||||
|
||||
@media only screen and (max-width: 900px), only screen and (max-device-width: 900px) {
|
||||
.rtl .cp-menu,
|
||||
.rtl .navigation,
|
||||
.rtl .cp-main {
|
||||
float: none;
|
||||
}
|
||||
}
|
||||
|
@ -788,7 +833,7 @@ li.breadcrumbs span:first-child > a {
|
|||
*/
|
||||
|
||||
/* General form styles
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
|
||||
.rtl option {
|
||||
padding-right: 0;
|
||||
|
@ -803,26 +848,26 @@ li.breadcrumbs span:first-child > a {
|
|||
/* Definition list layout for forms
|
||||
---------------------------------------- */
|
||||
.rtl fieldset dt {
|
||||
float: right;
|
||||
text-align: right;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.rtl fieldset dd {
|
||||
margin-left: 0;
|
||||
margin-right: 41%;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
/* Specific layout 1 */
|
||||
.rtl fieldset.fields1 dt {
|
||||
border-left-width: 0;
|
||||
border-right-width: 1px;
|
||||
border-left-width: 0;
|
||||
}
|
||||
|
||||
.rtl fieldset.fields1 dd {
|
||||
margin-right: 15em;
|
||||
margin-left: 0;
|
||||
border-right-width: 0;
|
||||
border-left-width: 1px;
|
||||
margin-right: 15em;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
/* Specific layout 2 */
|
||||
|
@ -832,10 +877,10 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
.rtl fieldset.fields2 dd {
|
||||
border-right-width: 0;
|
||||
border-left-width: 1px;
|
||||
margin-right: 16em;
|
||||
margin-left: 0;
|
||||
border-left-width: 1px;
|
||||
border-right-width: 0;
|
||||
}
|
||||
|
||||
/* Form elements */
|
||||
|
@ -843,26 +888,27 @@ li.breadcrumbs span:first-child > a {
|
|||
text-align: right;
|
||||
}
|
||||
|
||||
.rtl dd input, .rtl dd textarea {
|
||||
margin-left: 3px;
|
||||
.rtl dd input,
|
||||
.rtl dd textarea {
|
||||
margin-right: 0;
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
/* Quick-login on index page */
|
||||
.rtl fieldset.quick-login input.inputbox {
|
||||
margin-left: 5px;
|
||||
margin-right: 0;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.rtl fieldset.quick-login label {
|
||||
padding-left: 2px;
|
||||
padding-right: 0;
|
||||
padding-left: 2px;
|
||||
}
|
||||
|
||||
/* Display options on viewtopic/viewforum pages */
|
||||
.rtl fieldset.display-options label {
|
||||
padding-left: 2px;
|
||||
padding-right: 0;
|
||||
padding-left: 2px;
|
||||
}
|
||||
|
||||
.rtl .dropdown fieldset.display-options label {
|
||||
|
@ -872,16 +918,16 @@ li.breadcrumbs span:first-child > a {
|
|||
/* Display actions for ucp and mcp pages */
|
||||
.rtl fieldset.display-actions {
|
||||
text-align: left;
|
||||
padding-left: 1em;
|
||||
padding-right: 0;
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
||||
.rtl fieldset.display-actions label {
|
||||
padding-left: 2px;
|
||||
padding-right: 0;
|
||||
padding-left: 2px;
|
||||
}
|
||||
|
||||
/* MCP forum selection*/
|
||||
/* MCP forum selection */
|
||||
.rtl fieldset.forum-selection {
|
||||
float: left;
|
||||
}
|
||||
|
@ -891,7 +937,7 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
/* Posting page styles
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
|
||||
/* Emoticons panel */
|
||||
.rtl .smiley-box {
|
||||
|
@ -907,9 +953,9 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
.rtl .search-box .inputbox {
|
||||
border-left-width: 0;
|
||||
border-right-width: 1px;
|
||||
border-radius: 0 4px 4px 0;
|
||||
border-right-width: 1px;
|
||||
border-left-width: 0;
|
||||
float: right;
|
||||
padding: 3px;
|
||||
}
|
||||
|
@ -920,8 +966,8 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
.button-search-end {
|
||||
border-left-width: 1px;
|
||||
border-right-width: 0;
|
||||
border-left-width: 1px;
|
||||
}
|
||||
|
||||
.rtl .search-header .button-search-end {
|
||||
|
@ -939,7 +985,10 @@ li.breadcrumbs span:first-child > a {
|
|||
---------------------------------------- */
|
||||
|
||||
/** Reference: Bug #27155 */
|
||||
.rtl .wrap, .rtl .headerbar, .rtl .site-description, .rtl .navbar {
|
||||
.rtl .wrap,
|
||||
.rtl .headerbar,
|
||||
.rtl .site-description,
|
||||
.rtl .navbar {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
|
@ -954,19 +1003,24 @@ li.breadcrumbs span:first-child > a {
|
|||
/**
|
||||
* responsive.css
|
||||
*/
|
||||
@media only screen and (max-width: 700px), only screen and (max-device-width: 700px)
|
||||
{
|
||||
|
||||
@media only screen and (max-width: 700px), only screen and (max-device-width: 700px) {
|
||||
/* .topiclist lists
|
||||
----------------------------------------*/
|
||||
.rtl ul.topiclist li.header dt, .rtl ul.topiclist li.header dt .list-inner {
|
||||
---------------------------------------- */
|
||||
.rtl ul.topiclist li.header dt,
|
||||
.rtl ul.topiclist li.header dt .list-inner {
|
||||
margin-left: 0 !important;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.rtl ul.topiclist dt, .rtl ul.topiclist dt .list-inner,
|
||||
.rtl ul.topiclist.missing-column dt, .rtl ul.topiclist.missing-column dt .list-inner,
|
||||
.rtl ul.topiclist.two-long-columns dt, .rtl ul.topiclist.two-long-columns dt .list-inner,
|
||||
.rtl ul.topiclist.two-columns dt, .rtl ul.topiclist.two-columns dt .list-inner {
|
||||
.rtl ul.topiclist dt,
|
||||
.rtl ul.topiclist dt .list-inner,
|
||||
.rtl ul.topiclist.missing-column dt,
|
||||
.rtl ul.topiclist.missing-column dt .list-inner,
|
||||
.rtl ul.topiclist.two-long-columns dt,
|
||||
.rtl ul.topiclist.two-long-columns dt .list-inner,
|
||||
.rtl ul.topiclist.two-columns dt,
|
||||
.rtl ul.topiclist.two-columns dt .list-inner {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
|
@ -975,21 +1029,23 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
/* Forums and topics lists
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.rtl ul.topiclist.forums dt {
|
||||
margin-left: -250px;
|
||||
}
|
||||
|
||||
.rtl ul.topiclist.forums dt .list-inner {
|
||||
margin-left: 250px;
|
||||
}
|
||||
|
||||
.rtl ul.topiclist dd.mark {
|
||||
left: 5px;
|
||||
right: auto;
|
||||
text-align: right;
|
||||
right: auto;
|
||||
left: 5px;
|
||||
}
|
||||
|
||||
.rtl table.responsive.show-header thead, .rtl table.responsive.show-header th:first-child {
|
||||
.rtl table.responsive.show-header thead,
|
||||
.rtl table.responsive.show-header th:first-child {
|
||||
text-align: right !important;
|
||||
}
|
||||
|
||||
|
@ -998,28 +1054,34 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
/* User profile
|
||||
----------------------------------------*/
|
||||
.rtl .column1, .rtl .column2, .rtl .left-box.profile-details {
|
||||
---------------------------------------- */
|
||||
.rtl .column1,
|
||||
.rtl .column2,
|
||||
.rtl .left-box.profile-details {
|
||||
float: none;
|
||||
}
|
||||
|
||||
/* Post
|
||||
----------------------------------------*/
|
||||
.rtl .postprofile, .rtl .postbody, .rtl .search .postbody {
|
||||
---------------------------------------- */
|
||||
.rtl .postprofile,
|
||||
.rtl .postbody,
|
||||
.rtl .search .postbody {
|
||||
float: none;
|
||||
}
|
||||
|
||||
.rtl .post .postprofile {
|
||||
border-width: 0 0 1px 0;
|
||||
border-width: 0 0 1px;
|
||||
}
|
||||
|
||||
.rtl .postprofile dt, .rtl .postprofile dd.profile-rank, .rtl .search .postprofile dd {
|
||||
.rtl .postprofile dt,
|
||||
.rtl .postprofile dd.profile-rank,
|
||||
.rtl .search .postprofile dd {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.rtl .postprofile .avatar {
|
||||
margin-left: 5px;
|
||||
margin-right: 0;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.rtl .has-profile .post-buttons {
|
||||
|
@ -1027,20 +1089,23 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
|
||||
/* Forms
|
||||
----------------------------------------*/
|
||||
.rtl fieldset dt, .rtl fieldset.fields1 dt, .rtl fieldset.fields2 dt {
|
||||
---------------------------------------- */
|
||||
.rtl fieldset dt,
|
||||
.rtl fieldset.fields1 dt,
|
||||
.rtl fieldset.fields2 dt {
|
||||
float: none;
|
||||
}
|
||||
|
||||
.rtl fieldset dd, .rtl fieldset.fields1 dd, .rtl fieldset.fields2 dd {
|
||||
.rtl fieldset dd,
|
||||
.rtl fieldset.fields1 dd,
|
||||
.rtl fieldset.fields2 dd {
|
||||
margin-right: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 550px), only screen and (max-device-width: 550px)
|
||||
{
|
||||
@media only screen and (max-width: 550px), only screen and (max-device-width: 550px) {
|
||||
/* .topiclist lists
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.rtl ul.topiclist.forums dt {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
@ -1050,19 +1115,20 @@ li.breadcrumbs span:first-child > a {
|
|||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 500px), only screen and (max-device-width: 500px)
|
||||
{
|
||||
.rtl dl.details dt, .rtl dl.details dd {
|
||||
float: none;
|
||||
@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {
|
||||
.rtl dl.details dt,
|
||||
.rtl dl.details dd {
|
||||
text-align: right;
|
||||
float: none;
|
||||
}
|
||||
|
||||
.rtl dl.details dd {
|
||||
margin-left: 0;
|
||||
margin-right: 20px;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.captcha-panel dd.captcha {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
/* stylelint-enable */
|
||||
|
|
|
@ -1,31 +1,31 @@
|
|||
/* Button Styles
|
||||
---------------------------------------- */
|
||||
/* -------------------------------------------------------------- /*
|
||||
$Buttons
|
||||
/* -------------------------------------------------------------- */
|
||||
|
||||
.button {
|
||||
display: inline-block;
|
||||
padding: 2px 8px;
|
||||
font-family: 'Open Sans', 'Droid Sans', Verdana, Arial, Helvetica;
|
||||
font-size: 13px;
|
||||
font-weight: normal;
|
||||
font-family: "Open Sans", "Droid Sans", Verdana, Arial, Helvetica;
|
||||
line-height: 1.4;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
vertical-align: middle;
|
||||
-ms-touch-action: manipulation;
|
||||
touch-action: manipulation;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
white-space: nowrap;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 4px;
|
||||
display: inline-block;
|
||||
padding: 2px 8px;
|
||||
cursor: pointer;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
user-select: none;
|
||||
touch-action: manipulation;
|
||||
}
|
||||
|
||||
.button:focus,
|
||||
.button:hover {
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.caret {
|
||||
|
@ -39,18 +39,18 @@
|
|||
}
|
||||
|
||||
/* Posting page styles
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.button-search,
|
||||
.button-search-end {
|
||||
float: left;
|
||||
.button-search-end {
|
||||
border-radius: 0;
|
||||
float: left;
|
||||
margin: 0;
|
||||
padding: 2px 5px;
|
||||
}
|
||||
|
||||
.button-search-end {
|
||||
border-left-width: 0;
|
||||
border-radius: 0 4px 4px 0;
|
||||
border-left-width: 0;
|
||||
}
|
||||
|
||||
.search-header .button-search,
|
||||
|
@ -65,27 +65,28 @@
|
|||
}
|
||||
|
||||
.button-icon-only {
|
||||
padding-left: 3px;
|
||||
padding-right: 3px;
|
||||
padding-left: 3px;
|
||||
}
|
||||
|
||||
/* Poster contact icons
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.contact-icons.dropdown-contents {
|
||||
font-size: 0;
|
||||
min-width: 0;
|
||||
padding: 0;
|
||||
font-size: 0;
|
||||
}
|
||||
|
||||
.contact-icon {
|
||||
background-repeat: no-repeat;
|
||||
display: block;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.contact-icons a {
|
||||
border-bottom: 1px dotted;
|
||||
border-right: 1px dotted;
|
||||
border-bottom: 1px dotted;
|
||||
display: block;
|
||||
float: left;
|
||||
padding: 8px;
|
||||
|
@ -107,16 +108,15 @@
|
|||
--------------------------------------------- */
|
||||
.post-buttons {
|
||||
float: right;
|
||||
list-style: none;
|
||||
margin-top: 2px;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.has-profile .post-buttons {
|
||||
float: none;
|
||||
position: absolute;
|
||||
margin: 0;
|
||||
right: 0;
|
||||
top: 5px;
|
||||
right: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.post-buttons > li {
|
||||
|
@ -124,9 +124,10 @@
|
|||
margin-right: 3px;
|
||||
}
|
||||
|
||||
.post-buttons .button, .format-buttons .button {
|
||||
padding-left: 3px;
|
||||
.post-buttons .button,
|
||||
.format-buttons .button {
|
||||
padding-right: 3px;
|
||||
padding-left: 3px;
|
||||
}
|
||||
|
||||
.hastouch .post-buttons {
|
||||
|
@ -143,9 +144,9 @@
|
|||
}
|
||||
|
||||
.post-buttons .dropdown a {
|
||||
display: block;
|
||||
font-size: 1.2em;
|
||||
text-align: right;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.hasjs .postbody .post-buttons {
|
||||
|
@ -154,16 +155,16 @@
|
|||
|
||||
/* Browser-specific tweaks */
|
||||
button::-moz-focus-inner {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
border: 0
|
||||
}
|
||||
|
||||
/* Deprecated as of version 3.2
|
||||
-------------------------------------------------*/
|
||||
------------------------------------------------- */
|
||||
.small-icon {
|
||||
background-image: none;
|
||||
background-position: 0 50%;
|
||||
background-repeat: no-repeat;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.dropdown .small-icon {
|
||||
|
@ -175,9 +176,12 @@ button::-moz-focus-inner {
|
|||
padding: 0 0 0 18px;
|
||||
}
|
||||
|
||||
|
||||
/* stylelint-disable selector-no-qualifying-type */
|
||||
ul.linklist.bulletin > li.small-icon:before {
|
||||
display: none;
|
||||
}
|
||||
/* stylelint-enable */
|
||||
|
||||
.dropdown .small-icon > a {
|
||||
display: block;
|
||||
|
@ -188,6 +192,6 @@ ul.linklist.bulletin > li.small-icon:before {
|
|||
}
|
||||
|
||||
.rtl .small-icon > a {
|
||||
padding-left: 0;
|
||||
padding-right: 19px;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,16 +1,19 @@
|
|||
/* Content Styles
|
||||
---------------------------------------- */
|
||||
/* -------------------------------------------------------------- /*
|
||||
$Content
|
||||
/* -------------------------------------------------------------- */
|
||||
/* stylelint-disable selector-max-compound-selectors */
|
||||
/* stylelint-disable selector-no-qualifying-type */
|
||||
|
||||
ul.topiclist {
|
||||
display: block;
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
ul.topiclist li {
|
||||
display: block;
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
ul.topiclist dl {
|
||||
|
@ -21,15 +24,16 @@ ul.topiclist li.row dl {
|
|||
padding: 2px 0;
|
||||
}
|
||||
|
||||
ul.topiclist dt, ul.topiclist dd {
|
||||
ul.topiclist dt,
|
||||
ul.topiclist dd {
|
||||
display: block;
|
||||
float: left;
|
||||
}
|
||||
|
||||
ul.topiclist dt {
|
||||
font-size: 1.1em;
|
||||
width: 100%;
|
||||
margin-right: -440px;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
ul.topiclist.missing-column dt {
|
||||
|
@ -46,8 +50,8 @@ ul.topiclist.two-columns dt {
|
|||
|
||||
ul.topiclist dt .list-inner {
|
||||
margin-right: 440px;
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
ul.topiclist.missing-column dt .list-inner {
|
||||
|
@ -64,10 +68,8 @@ ul.topiclist.two-columns dt .list-inner {
|
|||
|
||||
ul.topiclist dd {
|
||||
border-left: 1px solid transparent;
|
||||
padding: 4px 0;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
ul.topiclist dfn {
|
||||
|
@ -79,8 +81,8 @@ ul.topiclist dfn {
|
|||
|
||||
.forum-image {
|
||||
float: left;
|
||||
padding-top: 5px;
|
||||
margin-right: 5px;
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
li.row {
|
||||
|
@ -92,15 +94,16 @@ li.row strong {
|
|||
font-weight: normal;
|
||||
}
|
||||
|
||||
li.header dt, li.header dd {
|
||||
li.header dt,
|
||||
li.header dd {
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-size: 1em;
|
||||
line-height: 1em;
|
||||
text-transform: uppercase;
|
||||
border-left-width: 0;
|
||||
margin: 2px 0 4px 0;
|
||||
margin: 2px 0 4px;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
font-size: 1em;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
li.header dt {
|
||||
|
@ -114,20 +117,20 @@ li.header dt .list-inner {
|
|||
}
|
||||
|
||||
li.header dd {
|
||||
padding-left: 1px;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
padding-left: 1px;
|
||||
}
|
||||
|
||||
li.header dl.row-item dt, li.header dl.row-item dd {
|
||||
li.header dl.row-item dt,
|
||||
li.header dl.row-item dd {
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
li.header dl.row-item dt .list-inner {
|
||||
padding-right: 50px;
|
||||
|
||||
/* Tweak for headers alignment when folder icon used */
|
||||
padding-left: 0;
|
||||
padding-right: 50px;
|
||||
}
|
||||
|
||||
/* Forum list column styles */
|
||||
|
@ -137,15 +140,16 @@ dl.row-item {
|
|||
}
|
||||
|
||||
dl.row-item dt {
|
||||
background-repeat: no-repeat;
|
||||
background-position: 5px 95%; /* Position of topic icon */
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
dl.row-item dt .list-inner {
|
||||
padding-left: 45px; /* Space for folder icon */
|
||||
}
|
||||
|
||||
dl.row-item dt, dl.row-item dd {
|
||||
dl.row-item dt,
|
||||
dl.row-item dd {
|
||||
min-height: 35px;
|
||||
}
|
||||
|
||||
|
@ -154,33 +158,39 @@ dl.row-item dt a {
|
|||
}
|
||||
|
||||
dl a.row-item-link { /* topic row icon links */
|
||||
display: block;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0;
|
||||
display: block;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
margin-top: -15px;
|
||||
margin-left: 9px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
dd.posts, dd.topics, dd.views, dd.extra, dd.mark {
|
||||
width: 80px;
|
||||
text-align: center;
|
||||
line-height: 2.2em;
|
||||
dd.posts,
|
||||
dd.topics,
|
||||
dd.views,
|
||||
dd.extra,
|
||||
dd.mark {
|
||||
font-size: 1.2em;
|
||||
line-height: 2.2em;
|
||||
text-align: center;
|
||||
width: 80px;
|
||||
}
|
||||
|
||||
dd.posts, dd.topics, dd.views {
|
||||
dd.posts,
|
||||
dd.topics,
|
||||
dd.views {
|
||||
width: 95px;
|
||||
}
|
||||
|
||||
/* List in forum description */
|
||||
dl.row-item dt ol,
|
||||
dl.row-item dt ul {
|
||||
list-style-position: inside;
|
||||
margin-left: 1em;
|
||||
list-style-position: inside;
|
||||
}
|
||||
|
||||
dl.row-item dt li {
|
||||
|
@ -188,9 +198,13 @@ dl.row-item dt li {
|
|||
list-style-type: inherit;
|
||||
}
|
||||
|
||||
dd.lastpost, dd.redirect, dd.moderation, dd.time, dd.info {
|
||||
width: 250px;
|
||||
dd.lastpost,
|
||||
dd.redirect,
|
||||
dd.moderation,
|
||||
dd.time,
|
||||
dd.info {
|
||||
font-size: 1.1em;
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
dd.redirect {
|
||||
|
@ -201,30 +215,35 @@ dd.time {
|
|||
line-height: 200%;
|
||||
}
|
||||
|
||||
dd.lastpost > span, ul.topiclist dd.info > span, ul.topiclist dd.time > span, dd.redirect > span, dd.moderation > span {
|
||||
dd.lastpost > span,
|
||||
ul.topiclist dd.info > span,
|
||||
ul.topiclist dd.time > span,
|
||||
dd.redirect > span,
|
||||
dd.moderation > span {
|
||||
display: block;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
dd.extra, dd.mark {
|
||||
dd.extra,
|
||||
dd.mark {
|
||||
line-height: 200%;
|
||||
}
|
||||
|
||||
dd.option {
|
||||
width: 125px;
|
||||
font-size: 1.1em;
|
||||
line-height: 200%;
|
||||
text-align: center;
|
||||
font-size: 1.1em;
|
||||
width: 125px;
|
||||
}
|
||||
|
||||
/* Post body styles
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.postbody {
|
||||
padding: 0;
|
||||
line-height: 1.48em;
|
||||
width: 76%;
|
||||
float: left;
|
||||
position: relative;
|
||||
float: left;
|
||||
width: 76%;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.postbody .ignore {
|
||||
|
@ -237,16 +256,17 @@ dd.option {
|
|||
}
|
||||
|
||||
.postbody h3 {
|
||||
/* Postbody requires a different h3 format - so change it here */
|
||||
float: left;
|
||||
font-family: 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif;
|
||||
font-size: 1.5em;
|
||||
padding: 2px 0 0 0;
|
||||
margin-top: 0 !important;
|
||||
margin-bottom: 0.3em !important;
|
||||
line-height: 125%;
|
||||
text-transform: none;
|
||||
border: none;
|
||||
font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
|
||||
line-height: 125%;
|
||||
|
||||
/* Postbody requires a different h3 format - so change it here */
|
||||
float: left;
|
||||
margin-top: 0 !important;
|
||||
margin-bottom: 0.3em !important;
|
||||
padding: 2px 0 0;
|
||||
}
|
||||
|
||||
.postbody h3 img {
|
||||
|
@ -265,33 +285,31 @@ dd.option {
|
|||
}
|
||||
|
||||
.postbody img.postimage {
|
||||
max-width: 100%;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.search .postbody {
|
||||
width: 68%
|
||||
width: 68%;
|
||||
}
|
||||
|
||||
/* Topic review panel
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.panel .review {
|
||||
margin-top: 2em;
|
||||
}
|
||||
|
||||
.topicreview {
|
||||
padding-right: 5px;
|
||||
overflow: auto;
|
||||
height: 300px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
.topicreview .postbody {
|
||||
width: auto;
|
||||
float: none;
|
||||
margin: 0;
|
||||
width: auto;
|
||||
height: auto;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.topicreview .post {
|
||||
|
@ -307,7 +325,7 @@ dd.option {
|
|||
}
|
||||
|
||||
/* MCP Post details
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.post_details {
|
||||
/* This will only work in IE7+, plus the others */
|
||||
overflow: auto;
|
||||
|
@ -315,21 +333,22 @@ dd.option {
|
|||
}
|
||||
|
||||
/* Content container styles
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.content {
|
||||
clear: both;
|
||||
min-height: 3em;
|
||||
overflow: hidden;
|
||||
line-height: 1.4em;
|
||||
font-family: "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
|
||||
font-family: 'Lucida Grande', 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif;
|
||||
font-size: 1em;
|
||||
line-height: 1.4em;
|
||||
clear: both;
|
||||
overflow: hidden;
|
||||
min-height: 3em;
|
||||
padding-bottom: 1px;
|
||||
}
|
||||
|
||||
.content h2, .panel h2 {
|
||||
.content h2,
|
||||
.panel h2 {
|
||||
font-size: 1.6em;
|
||||
font-weight: normal;
|
||||
border-bottom: 1px solid transparent;
|
||||
font-size: 1.6em;
|
||||
margin-top: 0.5em;
|
||||
margin-bottom: 0.5em;
|
||||
padding-bottom: 0.5em;
|
||||
|
@ -341,23 +360,23 @@ dd.option {
|
|||
|
||||
.panel p {
|
||||
font-size: 1.2em;
|
||||
margin-bottom: 1em;
|
||||
line-height: 1.4em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.content p {
|
||||
font-family: "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
|
||||
font-family: 'Lucida Grande', 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif;
|
||||
font-size: 1.2em;
|
||||
margin-bottom: 1em;
|
||||
line-height: 1.4em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
dl.faq {
|
||||
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
|
||||
font-family: 'Lucida Grande', Verdana, Helvetica, Arial, sans-serif;
|
||||
font-size: 1.1em;
|
||||
line-height: 1.4em;
|
||||
margin-top: 1em;
|
||||
margin-bottom: 2em;
|
||||
line-height: 1.4em;
|
||||
}
|
||||
|
||||
dl.faq dt {
|
||||
|
@ -373,34 +392,35 @@ dl.faq dt {
|
|||
list-style-type: inherit;
|
||||
}
|
||||
|
||||
.content ul, .content ol {
|
||||
.content ul,
|
||||
.content ol {
|
||||
margin: 0.8em 0 0.9em 3em;
|
||||
}
|
||||
|
||||
.posthilit {
|
||||
padding: 0 2px 1px 2px;
|
||||
padding: 0 2px 1px;
|
||||
}
|
||||
|
||||
/* Post author */
|
||||
p.author {
|
||||
margin-bottom: 0.6em;
|
||||
padding: 0 0 5px 0;
|
||||
font-family: Verdana, Helvetica, Arial, sans-serif;
|
||||
font-size: 1em;
|
||||
line-height: 1.2em;
|
||||
clear: both;
|
||||
margin-bottom: 0.6em;
|
||||
padding: 0 0 5px;
|
||||
}
|
||||
|
||||
/* Post signature */
|
||||
.signature {
|
||||
margin-top: 1.5em;
|
||||
padding-top: 0.2em;
|
||||
font-size: 1.1em;
|
||||
line-height: 140%;
|
||||
border-top: 1px solid transparent;
|
||||
clear: left;
|
||||
line-height: 140%;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
margin-top: 1.5em;
|
||||
padding-top: 0.2em;
|
||||
}
|
||||
|
||||
.signature.standalone {
|
||||
|
@ -409,48 +429,50 @@ p.author {
|
|||
}
|
||||
|
||||
dd .signature {
|
||||
border: none;
|
||||
clear: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
clear: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.signature li {
|
||||
list-style-type: inherit;
|
||||
}
|
||||
|
||||
.signature ul, .signature ol {
|
||||
.signature ul,
|
||||
.signature ol {
|
||||
margin: 0.8em 0 0.9em 3em;
|
||||
}
|
||||
|
||||
/* Post noticies */
|
||||
.notice {
|
||||
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
|
||||
font-family: 'Lucida Grande', Verdana, Helvetica, Arial, sans-serif;
|
||||
font-size: 1em;
|
||||
line-height: 130%;
|
||||
border-top: 1px dashed transparent;
|
||||
clear: left;
|
||||
width: auto;
|
||||
margin-top: 1.5em;
|
||||
padding-top: 0.2em;
|
||||
font-size: 1em;
|
||||
border-top: 1px dashed transparent;
|
||||
clear: left;
|
||||
line-height: 130%;
|
||||
}
|
||||
|
||||
/* Jump to post link for now */
|
||||
ul.searchresults {
|
||||
list-style: none;
|
||||
text-align: right;
|
||||
clear: both;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
/* BB Code styles
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
|
||||
/* Quote block */
|
||||
blockquote {
|
||||
font-size: 0.95em;
|
||||
background: transparent none 6px 8px no-repeat;
|
||||
border: 1px solid transparent;
|
||||
font-size: 0.95em;
|
||||
margin: 1em 1px 1em 25px;
|
||||
overflow: hidden;
|
||||
margin: 1em 1px 1em 25px;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
@ -461,12 +483,13 @@ blockquote blockquote {
|
|||
}
|
||||
|
||||
blockquote cite {
|
||||
font-size: 0.9em;
|
||||
|
||||
/* Username/source of quoter */
|
||||
font-style: normal;
|
||||
font-weight: bold;
|
||||
margin-left: 20px;
|
||||
display: block;
|
||||
font-size: 0.9em;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
blockquote cite cite {
|
||||
|
@ -478,8 +501,8 @@ blockquote.uncited {
|
|||
}
|
||||
|
||||
blockquote cite > div {
|
||||
float: right;
|
||||
font-weight: normal;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.postbody .content li blockquote {
|
||||
|
@ -489,19 +512,19 @@ blockquote cite > div {
|
|||
|
||||
/* Code block */
|
||||
.codebox {
|
||||
padding: 3px;
|
||||
border: 1px solid transparent;
|
||||
font-size: 1em;
|
||||
margin: 1em 0 1.2em 0;
|
||||
border: 1px solid transparent;
|
||||
margin: 1em 0 1.2em;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
.codebox p {
|
||||
text-transform: uppercase;
|
||||
border-bottom: 1px solid transparent;
|
||||
margin-bottom: 3px;
|
||||
font-size: 0.8em !important;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
border-bottom: 1px solid transparent;
|
||||
display: block;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
|
||||
blockquote .codebox {
|
||||
|
@ -509,29 +532,27 @@ blockquote .codebox {
|
|||
}
|
||||
|
||||
.codebox code {
|
||||
overflow: auto;
|
||||
font: 0.9em Monaco, 'Andale Mono', 'Courier New', Courier, monospace;
|
||||
line-height: 1.3em;
|
||||
display: block;
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
max-height: 200px;
|
||||
padding-top: 5px;
|
||||
font: 0.9em Monaco, "Andale Mono","Courier New", Courier, monospace;
|
||||
line-height: 1.3em;
|
||||
margin: 2px 0;
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
/* Attachments
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.attachbox {
|
||||
border: 1px dashed transparent;
|
||||
float: left;
|
||||
clear: left;
|
||||
box-sizing: border-box;
|
||||
width: auto;
|
||||
max-width: 100%;
|
||||
margin: 5px 5px 5px 0;
|
||||
padding: 6px;
|
||||
border: 1px dashed transparent;
|
||||
clear: left;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.attachbox dt {
|
||||
|
@ -540,11 +561,11 @@ blockquote .codebox {
|
|||
}
|
||||
|
||||
.attachbox dd {
|
||||
border-top: 1px solid transparent;
|
||||
clear: left;
|
||||
overflow-x: auto;
|
||||
margin-top: 4px;
|
||||
padding-top: 4px;
|
||||
clear: left;
|
||||
border-top: 1px solid transparent;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.attachbox dd dd {
|
||||
|
@ -552,31 +573,32 @@ blockquote .codebox {
|
|||
}
|
||||
|
||||
.attachbox p {
|
||||
line-height: 110%;
|
||||
font-weight: normal;
|
||||
line-height: 110%;
|
||||
clear: left;
|
||||
}
|
||||
|
||||
.attachbox p.stats
|
||||
{
|
||||
line-height: 110%;
|
||||
.attachbox p.stats {
|
||||
font-weight: normal;
|
||||
line-height: 110%;
|
||||
clear: left;
|
||||
}
|
||||
|
||||
.attach-image {
|
||||
margin: 3px 0;
|
||||
max-width: 100%;
|
||||
margin: 3px 0;
|
||||
}
|
||||
|
||||
.attach-image img {
|
||||
border: 1px solid transparent;
|
||||
/* cursor: move; */
|
||||
|
||||
/* cursor: move; */
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* Inline image thumbnails */
|
||||
div.inline-attachment dl.thumbnail, div.inline-attachment dl.file {
|
||||
div.inline-attachment dl.thumbnail,
|
||||
div.inline-attachment dl.file {
|
||||
display: block;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
@ -591,11 +613,11 @@ dl.file {
|
|||
}
|
||||
|
||||
dl.file dt {
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-weight: bold;
|
||||
text-transform: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-weight: bold;
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
dl.file dd {
|
||||
|
@ -604,14 +626,14 @@ dl.file dd {
|
|||
}
|
||||
|
||||
dl.thumbnail img {
|
||||
padding: 3px;
|
||||
border: 1px solid transparent;
|
||||
box-sizing: border-box;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
dl.thumbnail dd {
|
||||
font-style: italic;
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.attachbox dl.thumbnail dd {
|
||||
|
@ -623,16 +645,16 @@ dl.thumbnail dt a:hover img {
|
|||
}
|
||||
|
||||
/* Post poll styles
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
fieldset.polls {
|
||||
font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
|
||||
font-family: 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif;
|
||||
}
|
||||
|
||||
fieldset.polls dl {
|
||||
margin-top: 5px;
|
||||
border-top: 1px solid transparent;
|
||||
padding: 5px 0 0 0;
|
||||
line-height: 120%;
|
||||
border-top: 1px solid transparent;
|
||||
margin-top: 5px;
|
||||
padding: 5px 0 0;
|
||||
}
|
||||
|
||||
fieldset.polls dl.voted {
|
||||
|
@ -640,23 +662,23 @@ fieldset.polls dl.voted {
|
|||
}
|
||||
|
||||
fieldset.polls dt {
|
||||
text-align: left;
|
||||
float: left;
|
||||
display: block;
|
||||
width: 30%;
|
||||
border-right: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-size: 1.1em;
|
||||
text-align: left;
|
||||
border-right: none;
|
||||
display: block;
|
||||
float: left;
|
||||
width: 30%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
fieldset.polls dd {
|
||||
font-size: 1.1em;
|
||||
border-left: none;
|
||||
float: left;
|
||||
width: 10%;
|
||||
border-left: none;
|
||||
padding: 0 5px;
|
||||
margin-left: 0;
|
||||
font-size: 1.1em;
|
||||
padding: 0 5px;
|
||||
}
|
||||
|
||||
fieldset.polls dd.resultbar {
|
||||
|
@ -668,17 +690,21 @@ fieldset.polls dd input {
|
|||
}
|
||||
|
||||
fieldset.polls dd div {
|
||||
text-align: right;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-weight: bold;
|
||||
padding: 2px 2px 0 2px;
|
||||
text-align: right;
|
||||
overflow: visible;
|
||||
min-width: 8px;
|
||||
padding: 2px 2px 0;
|
||||
}
|
||||
|
||||
.pollbar1, .pollbar2, .pollbar3, .pollbar4, .pollbar5 {
|
||||
border-bottom: 1px solid transparent;
|
||||
.pollbar1,
|
||||
.pollbar2,
|
||||
.pollbar3,
|
||||
.pollbar4,
|
||||
.pollbar5 {
|
||||
border-right: 1px solid transparent;
|
||||
border-bottom: 1px solid transparent;
|
||||
}
|
||||
|
||||
.vote-submitted {
|
||||
|
@ -688,39 +714,42 @@ fieldset.polls dd div {
|
|||
}
|
||||
|
||||
/* Poster profile block
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.postprofile {
|
||||
margin: 5px 0 10px 0;
|
||||
min-height: 80px;
|
||||
border: 1px solid transparent;
|
||||
border-width: 0 0 0 1px;
|
||||
width: 22%;
|
||||
float: right;
|
||||
display: inline;
|
||||
float: right;
|
||||
width: 22%;
|
||||
min-height: 80px;
|
||||
margin: 5px 0 10px;
|
||||
}
|
||||
|
||||
.postprofile dd, .postprofile dt {
|
||||
.postprofile dd,
|
||||
.postprofile dt {
|
||||
line-height: 1.2em;
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
.postprofile dd {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.postprofile strong {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.postprofile dt.no-profile-rank, .postprofile dd.profile-rank, .postprofile .search-result-date {
|
||||
.postprofile dt.no-profile-rank,
|
||||
.postprofile dd.profile-rank,
|
||||
.postprofile .search-result-date {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
/* Post-profile avatars */
|
||||
.postprofile .has-avatar .avatar-container {
|
||||
margin-bottom: 3px;
|
||||
overflow: hidden;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
|
||||
.postprofile .avatar {
|
||||
|
@ -731,8 +760,8 @@ fieldset.polls dd div {
|
|||
|
||||
.postprofile .avatar img {
|
||||
display: block;
|
||||
height: auto !important;
|
||||
max-width: 100%;
|
||||
height: auto !important;
|
||||
}
|
||||
|
||||
.postprofile .profile-posts a {
|
||||
|
@ -765,7 +794,7 @@ dd.profile-contact {
|
|||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
/* Poster profile used by search*/
|
||||
/* Poster profile used by search */
|
||||
.search .postprofile {
|
||||
width: 30%;
|
||||
}
|
||||
|
@ -785,8 +814,8 @@ dl.pmlist dt textarea {
|
|||
}
|
||||
|
||||
dl.pmlist dd {
|
||||
margin-left: 61% !important;
|
||||
margin-bottom: 2px;
|
||||
margin-left: 61% !important;
|
||||
}
|
||||
|
||||
.action-bar div.dl_links {
|
||||
|
@ -794,8 +823,8 @@ dl.pmlist dd {
|
|||
}
|
||||
|
||||
div.dl_links {
|
||||
display: inline-block;
|
||||
text-transform: none;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.dl_links strong {
|
||||
|
@ -803,9 +832,9 @@ div.dl_links {
|
|||
}
|
||||
|
||||
.dl_links ul {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.dl_links li {
|
||||
|
@ -817,10 +846,10 @@ div.dl_links {
|
|||
}
|
||||
|
||||
.ellipsis-text {
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
table.fixed-width-table {
|
||||
|
@ -828,20 +857,34 @@ table.fixed-width-table {
|
|||
}
|
||||
|
||||
/* Show scrollbars for items with overflow on iOS devices
|
||||
----------------------------------------*/
|
||||
.postbody .content::-webkit-scrollbar, .topicreview::-webkit-scrollbar, .post_details::-webkit-scrollbar, .codebox code::-webkit-scrollbar, .attachbox dd::-webkit-scrollbar, .attach-image::-webkit-scrollbar, .dropdown-extended ul::-webkit-scrollbar {
|
||||
---------------------------------------- */
|
||||
.postbody .content::-webkit-scrollbar,
|
||||
.topicreview::-webkit-scrollbar,
|
||||
.post_details::-webkit-scrollbar,
|
||||
.codebox code::-webkit-scrollbar,
|
||||
.attachbox dd::-webkit-scrollbar,
|
||||
.attach-image::-webkit-scrollbar,
|
||||
.dropdown-extended ul::-webkit-scrollbar {
|
||||
border-radius: 3px;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
-webkit-appearance: none;
|
||||
background: rgba(0, 0, 0, .1);
|
||||
}
|
||||
|
||||
.postbody .content::-webkit-scrollbar-thumb,
|
||||
.topicreview::-webkit-scrollbar-thumb,
|
||||
.post_details::-webkit-scrollbar-thumb,
|
||||
.codebox code::-webkit-scrollbar-thumb,
|
||||
.attachbox dd::-webkit-scrollbar-thumb,
|
||||
.attach-image::-webkit-scrollbar-thumb,
|
||||
.dropdown-extended ul::-webkit-scrollbar-thumb {
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.postbody .content::-webkit-scrollbar-thumb, .topicreview::-webkit-scrollbar-thumb, .post_details::-webkit-scrollbar-thumb, .codebox code::-webkit-scrollbar-thumb, .attachbox dd::-webkit-scrollbar-thumb, .attach-image::-webkit-scrollbar-thumb, .dropdown-extended ul::-webkit-scrollbar-thumb {
|
||||
background: rgba(0, 0, 0, .3);
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
#memberlist tr.inactive, #team tr.inactive {
|
||||
/* Factor out this ID */
|
||||
/* stylelint-disable selector-no-id */
|
||||
#memberlist tr.inactive,
|
||||
#team tr.inactive {
|
||||
font-style: italic;
|
||||
}
|
||||
/* stylelint-enable */
|
||||
|
|
|
@ -1,11 +1,13 @@
|
|||
/* Control Panel Styles
|
||||
---------------------------------------- */
|
||||
|
||||
/* -------------------------------------------------------------- /*
|
||||
$Contorl Panel
|
||||
/* -------------------------------------------------------------- */
|
||||
/* stylelint-disable selector-max-compound-selectors */
|
||||
/* stylelint-disable selector-no-qualifying-type */
|
||||
|
||||
/* Main CP box
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.cp-menu {
|
||||
float:left;
|
||||
float: left;
|
||||
width: 19%;
|
||||
margin-top: 1em;
|
||||
margin-bottom: 5px;
|
||||
|
@ -25,21 +27,22 @@
|
|||
}
|
||||
|
||||
.panel-container .panel ol {
|
||||
margin-left: 2em;
|
||||
font-size: 1.1em;
|
||||
margin-left: 2em;
|
||||
}
|
||||
|
||||
.panel-container .panel li.row {
|
||||
border-bottom: 1px solid transparent;
|
||||
border-top: 1px solid transparent;
|
||||
border-bottom: 1px solid transparent;
|
||||
}
|
||||
|
||||
ul.cplist {
|
||||
margin-bottom: 5px;
|
||||
border-top: 1px solid transparent;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.panel-container .panel li.header dd, .panel-container .panel li.header dt {
|
||||
.panel-container .panel li.header dd,
|
||||
.panel-container .panel li.header dt {
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
|
@ -61,16 +64,17 @@ ul.cplist {
|
|||
|
||||
.cp-main .pm-message {
|
||||
border: 1px solid transparent;
|
||||
margin: 10px 0;
|
||||
width: auto;
|
||||
float: none;
|
||||
width: auto;
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.pm-message h2 {
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
.cp-main .postbody h3, .cp-main .box2 h3 {
|
||||
.cp-main .postbody h3,
|
||||
.cp-main .box2 h3 {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
|
@ -93,41 +97,45 @@ ul.cplist {
|
|||
|
||||
.tabs-container h2 {
|
||||
float: left;
|
||||
margin-bottom: 0px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* CP tabs shared
|
||||
----------------------------------------*/
|
||||
.tabs, .minitabs {
|
||||
---------------------------------------- */
|
||||
.tabs,
|
||||
.minitabs {
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
.tabs > ul, .minitabs > ul {
|
||||
list-style: none;
|
||||
.tabs > ul,
|
||||
.minitabs > ul {
|
||||
position: relative;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.tabs .tab, .minitabs .tab {
|
||||
display: block;
|
||||
float: left;
|
||||
.tabs .tab,
|
||||
.minitabs .tab {
|
||||
font-size: 1em;
|
||||
font-weight: bold;
|
||||
line-height: 1.4em;
|
||||
display: block;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.tabs .tab > a, .minitabs .tab > a {
|
||||
display: block;
|
||||
padding: 5px 9px;
|
||||
position: relative;
|
||||
.tabs .tab > a,
|
||||
.minitabs .tab > a {
|
||||
text-decoration: none;
|
||||
white-space: nowrap;
|
||||
position: relative;
|
||||
display: block;
|
||||
padding: 5px 9px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* CP tabbed menu
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.tabs {
|
||||
margin: 20px 0 0 7px;
|
||||
}
|
||||
|
@ -144,11 +152,11 @@ ul.cplist {
|
|||
}
|
||||
|
||||
/* Mini tabbed menu used in MCP
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.minitabs {
|
||||
float: right;
|
||||
margin: 15px 7px 0 0;
|
||||
max-width: 50%;
|
||||
margin: 15px 7px 0 0;
|
||||
}
|
||||
|
||||
.minitabs .tab {
|
||||
|
@ -165,45 +173,47 @@ ul.cplist {
|
|||
}
|
||||
|
||||
/* Responsive tabs
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.responsive-tab {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.responsive-tab > a.responsive-tab-link {
|
||||
display: block;
|
||||
font-size: 1.6em;
|
||||
position: relative;
|
||||
width: 16px;
|
||||
line-height: 0.9em;
|
||||
text-decoration: none;
|
||||
position: relative;
|
||||
display: block;
|
||||
width: 16px;
|
||||
}
|
||||
|
||||
.responsive-tab .responsive-tab-link:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 10px;
|
||||
top: 7px;
|
||||
height: .125em;
|
||||
width: 14px;
|
||||
border-bottom: 0.125em solid transparent;
|
||||
border-top: 0.375em double transparent;
|
||||
border-bottom: 0.125em solid transparent;
|
||||
position: absolute;
|
||||
top: 7px;
|
||||
left: 10px;
|
||||
width: 14px;
|
||||
height: 0.125em;
|
||||
content: '';
|
||||
}
|
||||
|
||||
.tabs .dropdown, .minitabs .dropdown {
|
||||
top: 20px;
|
||||
margin-right: -2px;
|
||||
.tabs .dropdown,
|
||||
.minitabs .dropdown {
|
||||
font-size: 1.1em;
|
||||
font-weight: normal;
|
||||
top: 20px;
|
||||
margin-right: -2px;
|
||||
}
|
||||
|
||||
.minitabs .dropdown {
|
||||
margin-right: -4px;
|
||||
}
|
||||
|
||||
.tabs .dropdown-up .dropdown, .minitabs .dropdown-up .dropdown {
|
||||
bottom: 20px;
|
||||
.tabs .dropdown-up .dropdown,
|
||||
.minitabs .dropdown-up .dropdown {
|
||||
top: auto;
|
||||
bottom: 20px;
|
||||
}
|
||||
|
||||
.tabs .dropdown li {
|
||||
|
@ -215,7 +225,8 @@ ul.cplist {
|
|||
}
|
||||
|
||||
/* UCP navigation menu
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
|
||||
/* Container for sub-navigation list */
|
||||
.navigation {
|
||||
width: 100%;
|
||||
|
@ -228,18 +239,18 @@ ul.cplist {
|
|||
|
||||
/* Default list state */
|
||||
.navigation li {
|
||||
display: inline;
|
||||
font-weight: bold;
|
||||
display: inline;
|
||||
margin: 1px 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* Link styles for the sub-section links */
|
||||
.navigation a {
|
||||
display: block;
|
||||
padding: 5px;
|
||||
margin: 1px 0;
|
||||
text-decoration: none;
|
||||
display: block;
|
||||
margin: 1px 0;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.navigation a:hover {
|
||||
|
@ -247,20 +258,20 @@ ul.cplist {
|
|||
}
|
||||
|
||||
/* Preferences pane layout
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
.cp-main h2 {
|
||||
border-bottom: none;
|
||||
padding: 0;
|
||||
margin-left: 10px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* Friends list */
|
||||
.cp-mini {
|
||||
margin: 10px 15px 10px 5px;
|
||||
max-height: 200px;
|
||||
overflow-y: auto;
|
||||
padding: 5px 10px;
|
||||
border-radius: 7px;
|
||||
overflow-y: auto;
|
||||
max-height: 200px;
|
||||
margin: 10px 15px 10px 5px;
|
||||
padding: 5px 10px;
|
||||
}
|
||||
|
||||
dl.mini dt {
|
||||
|
@ -280,7 +291,8 @@ dl.mini dd {
|
|||
}
|
||||
|
||||
/* PM Styles
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
|
||||
/* Defined rules list for PM options */
|
||||
ol.def-rules {
|
||||
padding-left: 0;
|
||||
|
@ -300,60 +312,68 @@ ol.def-rules li {
|
|||
padding: 0 3px;
|
||||
}
|
||||
|
||||
.pmlist li.pm_message_reported_colour, .pm_message_reported_colour {
|
||||
border-left-color: transparent;
|
||||
.pmlist li.pm_message_reported_colour,
|
||||
.pm_message_reported_colour {
|
||||
border-right-color: transparent;
|
||||
border-left-color: transparent;
|
||||
}
|
||||
|
||||
.pmlist li.pm_marked_colour, .pm_marked_colour,
|
||||
.pmlist li.pm_replied_colour, .pm_replied_colour,
|
||||
.pmlist li.pm_friend_colour, .pm_friend_colour,
|
||||
.pmlist li.pm_foe_colour, .pm_foe_colour {
|
||||
padding: 0;
|
||||
.pmlist li.pm_marked_colour,
|
||||
.pm_marked_colour,
|
||||
.pmlist li.pm_replied_colour,
|
||||
.pm_replied_colour,
|
||||
.pmlist li.pm_friend_colour,
|
||||
.pm_friend_colour,
|
||||
.pmlist li.pm_foe_colour,
|
||||
.pm_foe_colour {
|
||||
border: solid 3px transparent;
|
||||
border-width: 0 3px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.pm-legend {
|
||||
border-left-width: 10px;
|
||||
border-left-style: solid;
|
||||
border-right-width: 0;
|
||||
border-left-style: solid;
|
||||
border-left-width: 10px;
|
||||
margin-bottom: 3px;
|
||||
padding-left: 3px;
|
||||
}
|
||||
|
||||
/* Avatar gallery */
|
||||
.gallery label {
|
||||
text-align: center;
|
||||
border: 1px solid transparent;
|
||||
position: relative;
|
||||
float: left;
|
||||
width: auto;
|
||||
margin: 10px;
|
||||
padding: 5px;
|
||||
width: auto;
|
||||
border: 1px solid transparent;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* Responsive *CP navigation
|
||||
----------------------------------------*/
|
||||
@media only screen and (max-width: 900px), only screen and (max-device-width: 900px)
|
||||
{
|
||||
.nojs .tabs a span, .nojs .minitabs a span {
|
||||
max-width: 40px;
|
||||
overflow: hidden;
|
||||
---------------------------------------- */
|
||||
|
||||
@media only screen and (max-width: 900px), only screen and (max-device-width: 900px) {
|
||||
.nojs .tabs a span,
|
||||
.nojs .minitabs a span {
|
||||
letter-spacing: -0.5px;
|
||||
text-overflow: ellipsis;
|
||||
letter-spacing: -.5px;
|
||||
overflow: hidden;
|
||||
max-width: 40px;
|
||||
}
|
||||
|
||||
.cp-menu, .navigation, .cp-main {
|
||||
.cp-menu,
|
||||
.navigation,
|
||||
.cp-main {
|
||||
float: none;
|
||||
width: auto;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.navigation {
|
||||
padding: 0;
|
||||
margin: 0 auto;
|
||||
max-width: 320px;
|
||||
margin: 0 auto;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.navigation a {
|
||||
|
@ -370,3 +390,4 @@ ol.def-rules li {
|
|||
border-bottom-right-radius: 5px;
|
||||
}
|
||||
}
|
||||
/* stylelint-enable */
|
||||
|
|
|
@ -1,30 +1,33 @@
|
|||
/* Form Styles
|
||||
---------------------------------------- */
|
||||
/* -------------------------------------------------------------- /*
|
||||
$Forms
|
||||
/* -------------------------------------------------------------- */
|
||||
/* stylelint-disable selector-max-compound-selectors */
|
||||
/* stylelint-disable selector-no-qualifying-type */
|
||||
|
||||
/* General form styles
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
fieldset {
|
||||
border-width: 0;
|
||||
font-family: Verdana, Helvetica, Arial, sans-serif;
|
||||
font-size: 1.1em;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
input {
|
||||
font-family: Verdana, Helvetica, Arial, sans-serif;
|
||||
font-size: 1em;
|
||||
font-weight: normal;
|
||||
vertical-align: middle;
|
||||
padding: 0 3px;
|
||||
font-size: 1em;
|
||||
font-family: Verdana, Helvetica, Arial, sans-serif;
|
||||
}
|
||||
|
||||
select {
|
||||
font-family: Verdana, Helvetica, Arial, sans-serif;
|
||||
font-size: 1em;
|
||||
font-weight: normal;
|
||||
cursor: pointer;
|
||||
vertical-align: middle;
|
||||
border: 1px solid transparent;
|
||||
padding: 1px;
|
||||
font-size: 1em;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
select:focus {
|
||||
|
@ -36,21 +39,21 @@ option {
|
|||
}
|
||||
|
||||
select optgroup option {
|
||||
padding-right: 1em;
|
||||
font-family: Verdana, Helvetica, Arial, sans-serif;
|
||||
padding-right: 1em;
|
||||
}
|
||||
|
||||
textarea {
|
||||
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
|
||||
width: 60%;
|
||||
padding: 2px;
|
||||
font-family: 'Lucida Grande', Verdana, Helvetica, Arial, sans-serif;
|
||||
font-size: 1em;
|
||||
line-height: 1.4em;
|
||||
width: 60%;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
label {
|
||||
cursor: default;
|
||||
padding-right: 5px;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
label input {
|
||||
|
@ -68,27 +71,27 @@ fieldset dl {
|
|||
}
|
||||
|
||||
fieldset dt {
|
||||
float: left;
|
||||
width: 40%;
|
||||
text-align: left;
|
||||
display: block;
|
||||
float: left;
|
||||
width: 40%;
|
||||
}
|
||||
|
||||
fieldset dd {
|
||||
margin-left: 41%;
|
||||
vertical-align: top;
|
||||
margin-bottom: 3px;
|
||||
margin-left: 41%;
|
||||
}
|
||||
|
||||
/* Specific layout 1 */
|
||||
fieldset.fields1 dt {
|
||||
width: 15em;
|
||||
border-right-width: 0;
|
||||
width: 15em;
|
||||
}
|
||||
|
||||
fieldset.fields1 dd {
|
||||
margin-left: 15em;
|
||||
border-left-width: 0;
|
||||
margin-left: 15em;
|
||||
}
|
||||
|
||||
fieldset.fields1 div {
|
||||
|
@ -102,13 +105,13 @@ fieldset.fields1 .live-search div {
|
|||
|
||||
/* Specific layout 2 */
|
||||
fieldset.fields2 dt {
|
||||
width: 15em;
|
||||
border-right-width: 0;
|
||||
width: 15em;
|
||||
}
|
||||
|
||||
fieldset.fields2 dd {
|
||||
margin-left: 16em;
|
||||
border-left-width: 0;
|
||||
margin-left: 16em;
|
||||
}
|
||||
|
||||
/* Form elements */
|
||||
|
@ -121,7 +124,8 @@ dd label {
|
|||
white-space: nowrap;
|
||||
}
|
||||
|
||||
dd input, dd textarea {
|
||||
dd input,
|
||||
dd textarea {
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
|
@ -144,8 +148,8 @@ dd textarea {
|
|||
|
||||
/* Browser-specific tweaks */
|
||||
button::-moz-focus-inner {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
border: 0
|
||||
}
|
||||
|
||||
/* Quick-login on index page */
|
||||
|
@ -158,8 +162,8 @@ fieldset.quick-login input {
|
|||
}
|
||||
|
||||
fieldset.quick-login input.inputbox {
|
||||
width: 15%;
|
||||
vertical-align: middle;
|
||||
width: 15%;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
|
@ -171,7 +175,7 @@ fieldset.quick-login label {
|
|||
/* Display options on viewtopic/viewforum pages */
|
||||
fieldset.display-options {
|
||||
text-align: center;
|
||||
margin: 3px 0 5px 0;
|
||||
margin: 3px 0 5px;
|
||||
}
|
||||
|
||||
fieldset.display-options label {
|
||||
|
@ -190,11 +194,11 @@ fieldset.display-options a {
|
|||
}
|
||||
|
||||
.dropdown fieldset.display-options label {
|
||||
text-align: right;
|
||||
white-space: nowrap;
|
||||
display: block;
|
||||
margin: 4px;
|
||||
padding: 0;
|
||||
text-align: right;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.dropdown fieldset.display-options select {
|
||||
|
@ -203,8 +207,8 @@ fieldset.display-options a {
|
|||
|
||||
/* Display actions for ucp and mcp pages */
|
||||
fieldset.display-actions {
|
||||
text-align: right;
|
||||
line-height: 2em;
|
||||
text-align: right;
|
||||
white-space: nowrap;
|
||||
padding-right: 1em;
|
||||
}
|
||||
|
@ -218,15 +222,15 @@ fieldset.sort-options {
|
|||
line-height: 2em;
|
||||
}
|
||||
|
||||
/* MCP forum selection*/
|
||||
/* MCP forum selection */
|
||||
fieldset.forum-selection {
|
||||
margin: 5px 0 3px 0;
|
||||
float: right;
|
||||
margin: 5px 0 3px;
|
||||
}
|
||||
|
||||
fieldset.forum-selection2 {
|
||||
margin: 13px 0 3px 0;
|
||||
float: right;
|
||||
margin: 13px 0 3px;
|
||||
}
|
||||
|
||||
/* Submit button fieldset */
|
||||
|
@ -241,14 +245,15 @@ fieldset.submit-buttons input {
|
|||
}
|
||||
|
||||
/* Posting page styles
|
||||
----------------------------------------*/
|
||||
---------------------------------------- */
|
||||
|
||||
/* Buttons used in the editor */
|
||||
.format-buttons {
|
||||
margin: 15px 0 2px 0;
|
||||
margin: 15px 0 2px;
|
||||
}
|
||||
|
||||
.format-buttons input, .format-buttons select {
|
||||
.format-buttons input,
|
||||
.format-buttons select {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
|
@ -258,26 +263,22 @@ fieldset.submit-buttons input {
|
|||
}
|
||||
|
||||
.message-box textarea {
|
||||
font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
|
||||
width: 450px;
|
||||
height: 270px;
|
||||
min-width: 100%;
|
||||
max-width: 100%;
|
||||
font-family: 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif;
|
||||
font-size: 1.2em;
|
||||
resize: vertical;
|
||||
outline: 3px dashed transparent;
|
||||
outline-offset: -4px;
|
||||
-webkit-transition: all .5s ease;
|
||||
-moz-transition: all .5s ease;
|
||||
-ms-transition: all .5s ease;
|
||||
-o-transition: all .5s ease;
|
||||
transition: all .5s ease;
|
||||
width: 450px;
|
||||
min-width: 100%;
|
||||
max-width: 100%;
|
||||
height: 270px;
|
||||
resize: vertical;
|
||||
transition: all 0.5s ease;
|
||||
}
|
||||
|
||||
/* Emoticons panel */
|
||||
.smiley-box {
|
||||
width: 18%;
|
||||
float: right;
|
||||
width: 18%;
|
||||
}
|
||||
|
||||
.smiley-box img {
|
||||
|
@ -291,15 +292,27 @@ fieldset.submit-buttons input {
|
|||
padding: 2px;
|
||||
}
|
||||
|
||||
.inputbox:hover, .inputbox:focus {
|
||||
.inputbox:hover,
|
||||
.inputbox:focus {
|
||||
border: 1px solid transparent;
|
||||
outline-style: none;
|
||||
}
|
||||
|
||||
input.inputbox { width: 85%; }
|
||||
input.medium { width: 50%; }
|
||||
input.narrow { width: 25%; }
|
||||
input.tiny { width: 150px; }
|
||||
input.inputbox {
|
||||
width: 85%;
|
||||
}
|
||||
|
||||
input.medium {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
input.narrow {
|
||||
width: 25%;
|
||||
}
|
||||
|
||||
input.tiny {
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
textarea.inputbox {
|
||||
width: 85%;
|
||||
|
@ -309,70 +322,89 @@ textarea.inputbox {
|
|||
width: auto !important;
|
||||
}
|
||||
|
||||
input[type="number"] {
|
||||
input[type='number'] {
|
||||
-moz-padding-end: inherit;
|
||||
}
|
||||
|
||||
input[type="search"] {
|
||||
-webkit-appearance: textfield;
|
||||
input[type='search'] {
|
||||
-webkit-box-sizing: content-box;
|
||||
-webkit-appearance: textfield;
|
||||
}
|
||||
|
||||
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
|
||||
input[type='search']::-webkit-search-decoration,
|
||||
input[type='search']::-webkit-search-results-button,
|
||||
input[type='search']::-webkit-search-results-decoration {
|
||||
display: none;
|
||||
}
|
||||
|
||||
input[type="search"]::-webkit-search-cancel-button {
|
||||
input[type='search']::-webkit-search-cancel-button {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* Form button styles
|
||||
---------------------------------------- */
|
||||
input.button1, input.button2 {
|
||||
input.button1,
|
||||
input.button2 {
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
a.button1, input.button1, input.button3, a.button2, input.button2 {
|
||||
a.button1,
|
||||
input.button1,
|
||||
input.button3,
|
||||
a.button2,
|
||||
input.button2 {
|
||||
font-family: 'Lucida Grande', Verdana, Helvetica, Arial, sans-serif;
|
||||
line-height: 1.5;
|
||||
background: transparent none repeat-x top left;
|
||||
width: auto !important;
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;
|
||||
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
|
||||
background: transparent none repeat-x top left;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
a.button1, input.button1 {
|
||||
a.button1,
|
||||
input.button1 {
|
||||
font-weight: bold;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
input.button3 {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
line-height: 5px;
|
||||
height: 12px;
|
||||
background-image: none;
|
||||
font-variant: small-caps;
|
||||
line-height: 5px;
|
||||
background-image: none;
|
||||
height: 12px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
input[type="button"], input[type="submit"], input[type="reset"], input[type="checkbox"], input[type="radio"] {
|
||||
input[type='button'],
|
||||
input[type='submit'],
|
||||
input[type='reset'],
|
||||
input[type='checkbox'],
|
||||
input[type='radio'] {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* Alternative button */
|
||||
a.button2, input.button2, input.button3 {
|
||||
a.button2,
|
||||
input.button2,
|
||||
input.button3 {
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
/* <a> button in the style of the form buttons */
|
||||
a.button1, a.button2 {
|
||||
a.button1,
|
||||
a.button2 {
|
||||
text-decoration: none;
|
||||
padding: 0 3px;
|
||||
vertical-align: text-bottom;
|
||||
padding: 0 3px;
|
||||
}
|
||||
|
||||
/* Hover states */
|
||||
a.button1:hover, input.button1:hover, a.button2:hover, input.button2:hover, input.button3:hover {
|
||||
a.button1:hover,
|
||||
input.button1:hover,
|
||||
a.button2:hover,
|
||||
input.button2:hover,
|
||||
input.button3:hover {
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
|
@ -381,7 +413,9 @@ input.disabled {
|
|||
}
|
||||
|
||||
/* Focus states */
|
||||
input.button1:focus, input.button2:focus, input.button3:focus {
|
||||
input.button1:focus,
|
||||
input.button2:focus,
|
||||
input.button3:focus {
|
||||
outline-style: none;
|
||||
}
|
||||
|
||||
|
@ -392,14 +426,12 @@ input.button1:focus, input.button2:focus, input.button3:focus {
|
|||
|
||||
.search-box .inputbox {
|
||||
background-image: none;
|
||||
border-right-width: 0;
|
||||
border-radius: 4px 0 0 4px;
|
||||
border-right-width: 0;
|
||||
float: left;
|
||||
box-sizing: border-box;
|
||||
height: 24px;
|
||||
padding: 3px;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* Search box (header)
|
||||
|
@ -408,22 +440,38 @@ input.button1:focus, input.button2:focus, input.button3:focus {
|
|||
border-radius: 4px;
|
||||
display: block;
|
||||
float: right;
|
||||
margin-right: 5px;
|
||||
margin-top: 30px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.search-header .inputbox { border: 0; }
|
||||
.search-header .inputbox {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.navbar .linklist > li.responsive-search { display: none; }
|
||||
.navbar .linklist > li.responsive-search {
|
||||
display: none;
|
||||
}
|
||||
|
||||
input.search {
|
||||
background-image: none;
|
||||
background-repeat: no-repeat;
|
||||
background-position: left 1px;
|
||||
background-repeat: no-repeat;
|
||||
padding-left: 17px;
|
||||
}
|
||||
|
||||
.full { width: 95%; }
|
||||
.medium { width: 50%;}
|
||||
.narrow { width: 25%;}
|
||||
.tiny { width: 10%;}
|
||||
.full {
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
.medium {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.narrow {
|
||||
width: 25%;
|
||||
}
|
||||
|
||||
.tiny {
|
||||
width: 10%;
|
||||
}
|
||||
/* stylelint-enable */
|
||||
|
|
|
@ -1,28 +1,31 @@
|
|||
/* --------------------------------------------------------------
|
||||
/* -------------------------------------------------------------- /*
|
||||
$Icons
|
||||
-------------------------------------------------------------- */
|
||||
/* -------------------------------------------------------------- */
|
||||
|
||||
/* Global module setup
|
||||
--------------------------------*/
|
||||
---------------------------------------- */
|
||||
|
||||
/* Renamed version of .fa class for agnostic useage of icon fonts.
|
||||
* Just change the name of the font after the 14/1 to the name of
|
||||
* the font you wish to use.
|
||||
*/
|
||||
.icon, .button .icon {
|
||||
.icon,
|
||||
.button .icon {
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-family: FontAwesome;
|
||||
font-size: 14px;
|
||||
font-style: normal;
|
||||
font-variant: normal;
|
||||
font-weight: normal;
|
||||
line-height: 1;
|
||||
display: inline-block;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-variant: normal;
|
||||
font-family: FontAwesome;
|
||||
font-size: 14px;
|
||||
line-height: 1;
|
||||
text-rendering: auto; /* optimizelegibility throws things off #1094 */
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
text-rendering: auto; /* optimizelegibility throws things off #1094 */
|
||||
}
|
||||
|
||||
.icon:before { padding-right: 2px; }
|
||||
.icon:before {
|
||||
padding-right: 2px;
|
||||
}
|
||||
|
||||
.button .icon:before {
|
||||
padding-right: 0;
|
||||
|
@ -48,36 +51,37 @@
|
|||
|
||||
/* icon modifiers */
|
||||
.icon-tiny {
|
||||
width: 12px;
|
||||
transform: scale(0.65, 0.75);
|
||||
vertical-align: text-bottom;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.arrow-left:hover .icon {
|
||||
margin-left: -5px;
|
||||
margin-right: 5px;
|
||||
vertical-align: text-bottom;
|
||||
width: 12px;
|
||||
-webkit-transform: scale(0.65, 0.75);
|
||||
transform: scale(0.65, 0.75);
|
||||
}
|
||||
|
||||
.arrow-right .icon {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.arrow-left:hover .icon {
|
||||
margin-right: 5px;
|
||||
margin-left: -5px;
|
||||
}
|
||||
|
||||
.arrow-right:hover .icon {
|
||||
margin-left: 5px;
|
||||
margin-right: -5px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.post-buttons .dropdown-contents .icon {
|
||||
float: right;
|
||||
margin-left: 5px;
|
||||
float: right;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.alert_close .icon:before {
|
||||
line-height: 0.9;
|
||||
border-radius: 50%;
|
||||
display: block;
|
||||
width: 11px;
|
||||
height: 12px;
|
||||
padding: 0;
|
||||
border-radius: 50%;
|
||||
width: 11px;
|
||||
display: block;
|
||||
line-height: .9;
|
||||
height: 12px;
|
||||
}
|
||||
|
|
|
@ -1,15 +1,17 @@
|
|||
/* Link Styles
|
||||
---------------------------------------- */
|
||||
/* -------------------------------------------------------------- /*
|
||||
$Links
|
||||
/* -------------------------------------------------------------- */
|
||||
|
||||
|
||||
/* Links adjustment to correctly display an order of rtl/ltr mixed content */
|
||||
a {
|
||||
direction: ltr;
|
||||
unicode-bidi: embed;
|
||||
text-decoration: none;
|
||||
|
||||
/* we use links inline more often then not so to address several bugs with
|
||||
IE and some other browsers we render all links as inlineblock by default */
|
||||
display: inline-block;
|
||||
|
||||
direction: ltr;
|
||||
unicode-bidi: embed;
|
||||
}
|
||||
|
||||
/* Coloured usernames */
|
||||
|
@ -20,28 +22,32 @@ a {
|
|||
}
|
||||
|
||||
/* Links on gradient backgrounds */
|
||||
.forumbg .header a, .forabg .header a, th a {
|
||||
.forumbg .header a,
|
||||
.forabg .header a,
|
||||
th a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.forumbg .header a:hover, .forabg .header a:hover, th a:hover {
|
||||
.forumbg .header a:hover,
|
||||
.forabg .header a:hover,
|
||||
th a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* stylelint-disable selector-no-qualifying-type */
|
||||
|
||||
/* Notification mark read link */
|
||||
.dropdown-extended a.mark_read {
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
border-radius: 3px 0 0 3px;
|
||||
display: none;
|
||||
margin-top: -20px;
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
right: 0;
|
||||
z-index: 2;
|
||||
display: none;
|
||||
box-sizing: border-box;
|
||||
margin-top: -20px;
|
||||
}
|
||||
|
||||
.dropdown-extended li:hover a.mark_read {
|
||||
|
@ -53,12 +59,14 @@ a {
|
|||
}
|
||||
|
||||
.jumpbox-cat-link,
|
||||
.jumpbox-forum-link { font-weight: bold; }
|
||||
.jumpbox-forum-link {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
|
||||
/* Links for forum/topic lists */
|
||||
a.forumtitle {
|
||||
font-family: "Trebuchet MS", Helvetica, Arial, Sans-serif;
|
||||
font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
|
||||
font-size: 1.2em;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
|
@ -69,7 +77,7 @@ a.forumtitle:hover {
|
|||
}
|
||||
|
||||
a.topictitle {
|
||||
font-family: "Trebuchet MS", Helvetica, Arial, Sans-serif;
|
||||
font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
|
||||
font-size: 1.2em;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
|
@ -100,25 +108,28 @@ a.lastsubject:hover {
|
|||
text-decoration: none;
|
||||
}
|
||||
|
||||
.signature a, .signature a:hover {
|
||||
border: none;
|
||||
.signature a,
|
||||
.signature a:hover {
|
||||
text-decoration: underline;
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* Profile links */
|
||||
.postprofile a, .postprofile dt.author a {
|
||||
.postprofile a,
|
||||
.postprofile dt.author a {
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.postprofile a:hover, .postprofile dt.author a:hover {
|
||||
.postprofile a:hover,
|
||||
.postprofile dt.author a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* Profile searchresults */
|
||||
.search .postprofile a {
|
||||
text-decoration: none;
|
||||
font-weight: normal;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.search .postprofile a:hover {
|
||||
|
@ -138,20 +149,20 @@ a.lastsubject:hover {
|
|||
|
||||
.back2top .top {
|
||||
float: right;
|
||||
margin-right: -10px;
|
||||
margin-top: 0;
|
||||
margin-right: -10px;
|
||||
}
|
||||
|
||||
/* Arrow links */
|
||||
|
||||
.arrow-up {
|
||||
padding-left: 10px;
|
||||
text-decoration: none;
|
||||
border-bottom-width: 0;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.arrow-up:hover {
|
||||
|
||||
/* add hover styles here */
|
||||
}
|
||||
|
||||
.arrow-down {
|
||||
|
@ -159,7 +170,7 @@ a.lastsubject:hover {
|
|||
}
|
||||
|
||||
.arrow-down:hover {
|
||||
|
||||
/* add hover styles here */
|
||||
}
|
||||
|
||||
.arrow-left:hover {
|
||||
|
@ -186,3 +197,4 @@ a.feed-icon-forum {
|
|||
a.anchor {
|
||||
display: block;
|
||||
}
|
||||
/* stylelint-enable */
|
||||
|
|
188
phpBB/styles/prosilver/theme/normalize.css
vendored
188
phpBB/styles/prosilver/theme/normalize.css
vendored
|
@ -1,8 +1,8 @@
|
|||
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
|
||||
/*! normalize.css v3.0.3 | mit license | github.com/necolas/normalize.css */
|
||||
|
||||
/**
|
||||
* 1. Set default font family to sans-serif.
|
||||
* 2. Prevent iOS and IE text size adjust after device orientation change,
|
||||
* 1. set default font family to sans-serif.
|
||||
* 2. prevent ios and ie text size adjust after device orientation change,
|
||||
* without disabling user zoom.
|
||||
*/
|
||||
|
||||
|
@ -13,21 +13,21 @@ html {
|
|||
}
|
||||
|
||||
/**
|
||||
* Remove default margin.
|
||||
* remove default margin.
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* HTML5 display definitions
|
||||
/* html5 display definitions
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Correct `block` display not defined for any HTML5 element in IE 8/9.
|
||||
* Correct `block` display not defined for `details` or `summary` in IE 10/11
|
||||
* and Firefox.
|
||||
* Correct `block` display not defined for `main` in IE 11.
|
||||
* correct `block` display not defined for any html5 element in ie 8/9.
|
||||
* correct `block` display not defined for `details` or `summary` in ie 10/11
|
||||
* and firefox.
|
||||
* correct `block` display not defined for `main` in ie 11.
|
||||
*/
|
||||
|
||||
article,
|
||||
|
@ -47,21 +47,21 @@ summary {
|
|||
}
|
||||
|
||||
/**
|
||||
* 1. Correct `inline-block` display not defined in IE 8/9.
|
||||
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
|
||||
* 1. correct `inline-block` display not defined in ie 8/9.
|
||||
* 2. normalize vertical alignment of `progress` in chrome, firefox, and opera.
|
||||
*/
|
||||
|
||||
audio,
|
||||
canvas,
|
||||
progress,
|
||||
video {
|
||||
display: inline-block; /* 1 */
|
||||
vertical-align: baseline; /* 2 */
|
||||
display: inline-block; /* 1 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent modern browsers from displaying `audio` without controls.
|
||||
* Remove excess height in iOS 5 devices.
|
||||
* prevent modern browsers from displaying `audio` without controls.
|
||||
* remove excess height in ios 5 devices.
|
||||
*/
|
||||
|
||||
audio:not([controls]) {
|
||||
|
@ -70,8 +70,8 @@ audio:not([controls]) {
|
|||
}
|
||||
|
||||
/**
|
||||
* Address `[hidden]` styling not present in IE 8/9/10.
|
||||
* Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
|
||||
* address `[hidden]` styling not present in ie 8/9/10.
|
||||
* hide the `template` element in ie 8/9/10/11, safari, and firefox < 22.
|
||||
*/
|
||||
|
||||
[hidden],
|
||||
|
@ -79,11 +79,11 @@ template {
|
|||
display: none;
|
||||
}
|
||||
|
||||
/* Links
|
||||
/* links
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the gray background color from active links in IE 10.
|
||||
* remove the gray background color from active links in ie 10.
|
||||
*/
|
||||
|
||||
a {
|
||||
|
@ -91,7 +91,7 @@ a {
|
|||
}
|
||||
|
||||
/**
|
||||
* Improve readability of focused elements when they are also in an
|
||||
* improve readability of focused elements when they are also in an
|
||||
* active/hover state.
|
||||
*/
|
||||
|
||||
|
@ -100,11 +100,11 @@ a:hover {
|
|||
outline: 0;
|
||||
}
|
||||
|
||||
/* Text-level semantics
|
||||
/* text-level semantics
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
|
||||
* address styling not present in ie 8/9/10/11, safari, and chrome.
|
||||
*/
|
||||
|
||||
abbr[title] {
|
||||
|
@ -112,7 +112,7 @@ abbr[title] {
|
|||
}
|
||||
|
||||
/**
|
||||
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
|
||||
* address style set to `bolder` in firefox 4+, safari, and chrome.
|
||||
*/
|
||||
|
||||
b,
|
||||
|
@ -121,7 +121,7 @@ strong {
|
|||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in Safari and Chrome.
|
||||
* address styling not present in safari and chrome.
|
||||
*/
|
||||
|
||||
dfn {
|
||||
|
@ -129,8 +129,8 @@ dfn {
|
|||
}
|
||||
|
||||
/**
|
||||
* Address variable `h1` font-size and margin within `section` and `article`
|
||||
* contexts in Firefox 4+, Safari, and Chrome.
|
||||
* address variable `h1` font-size and margin within `section` and `article`
|
||||
* contexts in firefox 4+, safari, and chrome.
|
||||
*/
|
||||
|
||||
h1 {
|
||||
|
@ -139,16 +139,16 @@ h1 {
|
|||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in IE 8/9.
|
||||
* address styling not present in ie 8/9.
|
||||
*/
|
||||
|
||||
mark {
|
||||
background: #ff0;
|
||||
color: #000;
|
||||
background: #ffff00;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address inconsistent and variable font size in all browsers.
|
||||
* address inconsistent and variable font size in all browsers.
|
||||
*/
|
||||
|
||||
small {
|
||||
|
@ -156,15 +156,15 @@ small {
|
|||
}
|
||||
|
||||
/**
|
||||
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
||||
* prevent `sub` and `sup` affecting `line-height` in all browsers.
|
||||
*/
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
sup {
|
||||
|
@ -175,11 +175,11 @@ sub {
|
|||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
/* Embedded content
|
||||
/* embedded content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove border when inside `a` element in IE 8/9/10.
|
||||
* remove border when inside `a` element in ie 8/9/10.
|
||||
*/
|
||||
|
||||
img {
|
||||
|
@ -187,18 +187,18 @@ img {
|
|||
}
|
||||
|
||||
/**
|
||||
* Correct overflow not hidden in IE 9/10/11.
|
||||
* correct overflow not hidden in ie 9/10/11.
|
||||
*/
|
||||
|
||||
svg:not(:root) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Grouping content
|
||||
/* grouping content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Address margin not present in IE 8/9 and Safari.
|
||||
* address margin not present in ie 8/9 and safari.
|
||||
*/
|
||||
|
||||
figure {
|
||||
|
@ -206,7 +206,7 @@ figure {
|
|||
}
|
||||
|
||||
/**
|
||||
* Address differences between Firefox and other browsers.
|
||||
* address differences between firefox and other browsers.
|
||||
*/
|
||||
|
||||
hr {
|
||||
|
@ -215,7 +215,7 @@ hr {
|
|||
}
|
||||
|
||||
/**
|
||||
* Contain overflow in all browsers.
|
||||
* contain overflow in all browsers.
|
||||
*/
|
||||
|
||||
pre {
|
||||
|
@ -223,7 +223,7 @@ pre {
|
|||
}
|
||||
|
||||
/**
|
||||
* Address odd `em`-unit font size rendering in all browsers.
|
||||
* address odd `em`-unit font size rendering in all browsers.
|
||||
*/
|
||||
|
||||
code,
|
||||
|
@ -234,19 +234,19 @@ samp {
|
|||
font-size: 1em;
|
||||
}
|
||||
|
||||
/* Forms
|
||||
/* forms
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Known limitation: by default, Chrome and Safari on OS X allow very limited
|
||||
* known limitation: by default, chrome and safari on os x allow very limited
|
||||
* styling of `select`, unless a `border` property is set.
|
||||
*/
|
||||
|
||||
/**
|
||||
* 1. Correct color not being inherited.
|
||||
* Known issue: affects color of disabled elements.
|
||||
* 2. Correct font properties not being inherited.
|
||||
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
|
||||
* 1. correct color not being inherited.
|
||||
* known issue: affects color of disabled elements.
|
||||
* 2. correct font properties not being inherited.
|
||||
* 3. address margins set differently in firefox 4+, safari, and chrome.
|
||||
*/
|
||||
|
||||
button,
|
||||
|
@ -254,13 +254,13 @@ input,
|
|||
optgroup,
|
||||
select,
|
||||
textarea {
|
||||
color: inherit; /* 1 */
|
||||
font: inherit; /* 2 */
|
||||
color: inherit; /* 1 */
|
||||
margin: 0; /* 3 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Address `overflow` set to `hidden` in IE 8/9/10/11.
|
||||
* address `overflow` set to `hidden` in ie 8/9/10/11.
|
||||
*/
|
||||
|
||||
button {
|
||||
|
@ -268,10 +268,10 @@ button {
|
|||
}
|
||||
|
||||
/**
|
||||
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
||||
* All other form control elements do not inherit `text-transform` values.
|
||||
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
|
||||
* Correct `select` style inheritance in Firefox.
|
||||
* address inconsistent `text-transform` inheritance for `button` and `select`.
|
||||
* all other form control elements do not inherit `text-transform` values.
|
||||
* correct `button` style inheritance in firefox, ie 8/9/10/11, and opera.
|
||||
* correct `select` style inheritance in firefox.
|
||||
*/
|
||||
|
||||
button,
|
||||
|
@ -280,23 +280,23 @@ select {
|
|||
}
|
||||
|
||||
/**
|
||||
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
||||
* 1. avoid the webkit bug in android 4.0.* where (2) destroys native `audio`
|
||||
* and `video` controls.
|
||||
* 2. Correct inability to style clickable `input` types in iOS.
|
||||
* 3. Improve usability and consistency of cursor style between image-type
|
||||
* 2. correct inability to style clickable `input` types in ios.
|
||||
* 3. improve usability and consistency of cursor style between image-type
|
||||
* `input` and others.
|
||||
*/
|
||||
|
||||
button,
|
||||
html input[type="button"], /* 1 */
|
||||
input[type="reset"],
|
||||
input[type="submit"] {
|
||||
-webkit-appearance: button; /* 2 */
|
||||
html input[type='button'],
|
||||
input[type='reset'],
|
||||
input[type='submit'] {
|
||||
cursor: pointer; /* 3 */
|
||||
-webkit-appearance: button; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Re-set default cursor for disabled elements.
|
||||
* re-set default cursor for disabled elements.
|
||||
*/
|
||||
|
||||
button[disabled],
|
||||
|
@ -305,7 +305,16 @@ html input[disabled] {
|
|||
}
|
||||
|
||||
/**
|
||||
* Remove inner padding and border in Firefox 4+.
|
||||
* address firefox 4+ setting `line-height` on `input` using `!important` in
|
||||
* the ua stylesheet.
|
||||
*/
|
||||
|
||||
input {
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
/**
|
||||
* remove inner padding and border in firefox 4+.
|
||||
*/
|
||||
|
||||
button::-moz-focus-inner,
|
||||
|
@ -315,62 +324,53 @@ input::-moz-focus-inner {
|
|||
}
|
||||
|
||||
/**
|
||||
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
|
||||
* the UA stylesheet.
|
||||
*/
|
||||
|
||||
input {
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
/**
|
||||
* It's recommended that you don't attempt to style these elements.
|
||||
* Firefox's implementation doesn't respect box-sizing, padding, or width.
|
||||
* it's recommended that you don't attempt to style these elements.
|
||||
* firefox's implementation doesn't respect box-sizing, padding, or width.
|
||||
*
|
||||
* 1. Address box sizing set to `content-box` in IE 8/9/10.
|
||||
* 2. Remove excess padding in IE 8/9/10.
|
||||
* 1. address box sizing set to `content-box` in ie 8/9/10.
|
||||
* 2. remove excess padding in ie 8/9/10.
|
||||
*/
|
||||
|
||||
input[type="checkbox"],
|
||||
input[type="radio"] {
|
||||
input[type='checkbox'],
|
||||
input[type='radio'] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
|
||||
* fix the cursor style for chrome's increment/decrement buttons. for certain
|
||||
* `font-size` values of the `input`, it causes the cursor style of the
|
||||
* decrement button to change from `default` to `text`.
|
||||
*/
|
||||
|
||||
input[type="number"]::-webkit-inner-spin-button,
|
||||
input[type="number"]::-webkit-outer-spin-button {
|
||||
input[type='number']::-webkit-inner-spin-button,
|
||||
input[type='number']::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
|
||||
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
|
||||
* 1. address `appearance` set to `searchfield` in safari and chrome.
|
||||
* 2. address `box-sizing` set to `border-box` in safari and chrome.
|
||||
*/
|
||||
|
||||
input[type="search"] {
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
input[type='search'] {
|
||||
box-sizing: content-box; /* 2 */
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
|
||||
* Safari (but not Chrome) clips the cancel button when the search input has
|
||||
* remove inner padding and search cancel button in safari and chrome on os x.
|
||||
* safari (but not chrome) clips the cancel button when the search input has
|
||||
* padding (and `textfield` appearance).
|
||||
*/
|
||||
|
||||
input[type="search"]::-webkit-search-cancel-button,
|
||||
input[type="search"]::-webkit-search-decoration {
|
||||
input[type='search']::-webkit-search-cancel-button,
|
||||
input[type='search']::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define consistent border, margin, and padding.
|
||||
* define consistent border, margin, and padding.
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
|
@ -380,8 +380,8 @@ fieldset {
|
|||
}
|
||||
|
||||
/**
|
||||
* 1. Correct `color` not being inherited in IE 8/9/10/11.
|
||||
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
||||
* 1. correct `color` not being inherited in ie 8/9/10/11.
|
||||
* 2. remove padding so people aren't caught out if they zero out fieldsets.
|
||||
*/
|
||||
|
||||
legend {
|
||||
|
@ -390,7 +390,7 @@ legend {
|
|||
}
|
||||
|
||||
/**
|
||||
* Remove default vertical scrollbar in IE 8/9/10/11.
|
||||
* remove default vertical scrollbar in ie 8/9/10/11.
|
||||
*/
|
||||
|
||||
textarea {
|
||||
|
@ -398,19 +398,19 @@ textarea {
|
|||
}
|
||||
|
||||
/**
|
||||
* Don't inherit the `font-weight` (applied by a rule above).
|
||||
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
|
||||
* don't inherit the `font-weight` (applied by a rule above).
|
||||
* note: the default cannot safely be changed in chrome and safari on os x.
|
||||
*/
|
||||
|
||||
optgroup {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* Tables
|
||||
/* tables
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove most spacing between table cells.
|
||||
* remove most spacing between table cells.
|
||||
*/
|
||||
|
||||
table {
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
/* -------------------------------------------------------------- /*
|
||||
$Plupload
|
||||
/* -------------------------------------------------------------- */
|
||||
|
||||
.attach-panel-multi {
|
||||
display: none;
|
||||
margin-bottom: 1em;
|
||||
|
@ -16,8 +20,8 @@
|
|||
}
|
||||
|
||||
.attach-comment .inputbox {
|
||||
resize: vertical;
|
||||
width: 100%;
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
.attach-filesize {
|
||||
|
@ -28,7 +32,8 @@
|
|||
width: 5%;
|
||||
}
|
||||
|
||||
.attach-filesize, .attach-status {
|
||||
.attach-filesize,
|
||||
.attach-status {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
@ -42,24 +47,25 @@
|
|||
}
|
||||
|
||||
.file-total-progress {
|
||||
height: 2px;
|
||||
display: block;
|
||||
position: relative;
|
||||
display: block;
|
||||
height: 2px;
|
||||
margin: 4px -10px -6px -10px;
|
||||
}
|
||||
|
||||
.file-progress {
|
||||
background-color: #CCCCCC;
|
||||
display:inline-block;
|
||||
height: 8px;
|
||||
background-color: #cccccc;
|
||||
display: inline-block;
|
||||
width: 50px;
|
||||
height: 8px;
|
||||
}
|
||||
|
||||
.file-progress-bar, .file-total-progress-bar {
|
||||
background-color: green;
|
||||
.file-progress-bar,
|
||||
.file-total-progress-bar {
|
||||
background-color: #008000;
|
||||
display: block;
|
||||
height: 100%;
|
||||
width: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.file-status.file-working {
|
||||
|
@ -76,11 +82,11 @@
|
|||
|
||||
.file-status {
|
||||
display: inline-block;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.file-name {
|
||||
max-width: 65%;
|
||||
vertical-align: bottom;
|
||||
max-width: 65%;
|
||||
}
|
||||
|
|
|
@ -1,25 +1,45 @@
|
|||
/* Print Style Sheet
|
||||
---------------------------------------- */
|
||||
|
||||
/* -------------------------------------------------------------- /*
|
||||
$Print
|
||||
/* -------------------------------------------------------------- */
|
||||
/* stylelint-disable selector-max-compound-selectors */
|
||||
|
||||
/* Lots still TODO here! */
|
||||
|
||||
/* General markup styles */
|
||||
* {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font: 11pt Verdana, Arial, Helvetica, sans-serif;
|
||||
color:#000000;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
a:link { color: #000000; text-decoration: none; }
|
||||
a:visited { color: #000000; text-decoration: none; }
|
||||
a:active { color: #000000; text-decoration: none; }
|
||||
a:link {
|
||||
text-decoration: none;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
text-decoration: none;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
a:active {
|
||||
text-decoration: none;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
img,
|
||||
.noprint,
|
||||
.navbar,
|
||||
.box1,
|
||||
.divider,
|
||||
.signature {
|
||||
display: none;
|
||||
}
|
||||
|
||||
img, .noprint, .navbar, .box1, .divider, .signature { display: none; }
|
||||
/* Display smilies (Bug #47265) */
|
||||
.content img {
|
||||
display: inline;
|
||||
|
@ -30,50 +50,80 @@ img, .noprint, .navbar, .box1, .divider, .signature { display: none; }
|
|||
margin: 0 2em;
|
||||
}
|
||||
|
||||
p { font-size: 85%; }
|
||||
.copyright { font-size: 75%; }
|
||||
.page-number { float:right; width: auto; text-align: right; font-size: 75%; }
|
||||
|
||||
h1, h2, h3, h1 a, h2 a, h3 a {
|
||||
font-family: "Trebuchet MS",georgia,Verdana,Sans-serif;
|
||||
color: #000000;
|
||||
background: none;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
p {
|
||||
font-size: 85%;
|
||||
}
|
||||
|
||||
h1 { font-size: 20pt; }
|
||||
h2 { font-size: 16pt; margin-top: 1em; }
|
||||
h3 { font-size: 14pt; margin-top: 1em; }
|
||||
.copyright {
|
||||
font-size: 75%;
|
||||
}
|
||||
|
||||
.page-number {
|
||||
font-size: 75%;
|
||||
text-align: right;
|
||||
float: right;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h1 a,
|
||||
h2 a,
|
||||
h3 a {
|
||||
font-family: 'Trebuchet MS', georgia, Verdana, sans-serif;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
background: none;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 20pt;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 16pt;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 14pt;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
.content {
|
||||
font-family: 'Lucida Grande', 'Trebuchet MS', Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 11pt;
|
||||
line-height: 14pt;
|
||||
margin-bottom: 1em;
|
||||
font-family: "Lucida Grande", "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
|
||||
overflow: hidden;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
/* CSS2 Print tip from: http://www.alistapart.com/articles/goingtoprint/ */
|
||||
.postbody a:link, .postbody a:visited, .postbody a:hover, .postbody a:active {
|
||||
text-decoration: underline;
|
||||
padding: 0.1em 0.2em;
|
||||
margin: -0.1em -0.2em;
|
||||
color: #666;
|
||||
background: none;
|
||||
.postbody a:link,
|
||||
.postbody a:visited,
|
||||
.postbody a:hover,
|
||||
.postbody a:active {
|
||||
font-size: 100%;
|
||||
text-decoration: underline;
|
||||
background: none;
|
||||
color: #666666;
|
||||
margin: -0.1em -0.2em;
|
||||
padding: 0.1em 0.2em;
|
||||
}
|
||||
|
||||
html>body .postbody a:link:after, html>body .postbody a:visited:after {
|
||||
content: " (" attr(href) ") ";
|
||||
html > body .postbody a:link:after,
|
||||
html > body .postbody a:visited:after {
|
||||
font-size: 90%;
|
||||
text-decoration: none;
|
||||
content: ' (' attr(href) ') ';
|
||||
}
|
||||
|
||||
hr {
|
||||
height: 1px;
|
||||
background-color: #999999;
|
||||
border-width: 0;
|
||||
height: 1px;
|
||||
}
|
||||
|
||||
.author {
|
||||
|
@ -84,56 +134,83 @@ hr {
|
|||
|
||||
.date {
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
float: right;
|
||||
position: relative;
|
||||
text-align: right;
|
||||
font-size: 75%;
|
||||
text-align: right;
|
||||
position: relative;
|
||||
float: right;
|
||||
}
|
||||
|
||||
/* Dont want to print url for names or titles in content area */
|
||||
.postbody .author a:link, .postbody .author a:visited,
|
||||
html>body .postbody .author a:link:after,
|
||||
html>body .postbody .author a:visited:after,
|
||||
.postquote .quote-by a:link, .postquote .quote-by a:visited,
|
||||
html>body .postquote .quote-by a:link:after,
|
||||
html>body .postquote .quote-by a:visited:after,
|
||||
html>body .postbody h1 a:link:after, html>body .postbody h2 a:link:after {
|
||||
.postbody .author a:link,
|
||||
.postbody .author a:visited,
|
||||
html > body .postbody .author a:link:after,
|
||||
html > body .postbody .author a:visited:after,
|
||||
.postquote .quote-by a:link,
|
||||
.postquote .quote-by a:visited,
|
||||
html > body .postquote .quote-by a:link:after,
|
||||
html > body .postquote .quote-by a:visited:after,
|
||||
html > body .postbody h1 a:link:after,
|
||||
html > body .postbody h2 a:link:after {
|
||||
text-decoration: none;
|
||||
content: "";
|
||||
content: '';
|
||||
}
|
||||
|
||||
/* Poster profile */
|
||||
.postprofile { display: none; }
|
||||
.grip-show { display:none; }
|
||||
|
||||
/* Quote */
|
||||
.postquote, blockquote {
|
||||
font-size: 85%;
|
||||
margin: 1em 18% 1em 4%;
|
||||
padding: 0.5em;
|
||||
position: relative;
|
||||
line-height: 1.5em;
|
||||
border: 1px #999999 solid;
|
||||
.postprofile {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.postquote img { display: none; }
|
||||
.postquote span { display: block; }
|
||||
.postquote span .postquote { font-size: 100%; }
|
||||
.quote-by, blockquote cite {
|
||||
color: black;
|
||||
display : block;
|
||||
.grip-show {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Quote */
|
||||
.postquote,
|
||||
blockquote {
|
||||
font-size: 85%;
|
||||
line-height: 1.5em;
|
||||
border: 1px #999999 solid;
|
||||
position: relative;
|
||||
margin: 1em 18% 1em 4%;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.postquote img {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.postquote span {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.postquote span .postquote {
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
.quote-by,
|
||||
blockquote cite {
|
||||
font-weight: bold;
|
||||
color: #000000;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* List */
|
||||
ol, ul {
|
||||
margin-left: 15pt
|
||||
ol,
|
||||
ul {
|
||||
margin-left: 15pt;
|
||||
}
|
||||
|
||||
/* Misc page elements */
|
||||
div.spacer { clear: both; }
|
||||
.spacer {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/* Accessibility tweaks: Mozilla.org */
|
||||
.skip_link { display: none; }
|
||||
.skip_link {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.codebox p { display: none; }
|
||||
.codebox p {
|
||||
display: none;
|
||||
}
|
||||
/* stylelint-enable */
|
||||
|
|
|
@ -1,14 +1,19 @@
|
|||
/* Responsive Design
|
||||
---------------------------------------- */
|
||||
/* -------------------------------------------------------------- /*
|
||||
$Responsive
|
||||
/* -------------------------------------------------------------- */
|
||||
/* stylelint-disable selector-max-compound-selectors */
|
||||
/* stylelint-disable selector-no-qualifying-type */
|
||||
|
||||
@media (max-width: 320px) {
|
||||
select, .inputbox {
|
||||
select,
|
||||
.inputbox {
|
||||
max-width: 240px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Notifications list
|
||||
----------------------------------------*/
|
||||
---------------------------------------------------------------- */
|
||||
|
||||
@media (max-width: 350px) {
|
||||
.dropdown-extended .dropdown-contents {
|
||||
width: auto;
|
||||
|
@ -25,16 +30,16 @@
|
|||
}
|
||||
|
||||
.action-bar .search-box .inputbox ::-moz-placeholder {
|
||||
content: "Search...";
|
||||
}
|
||||
content: 'Search...';
|
||||
}
|
||||
|
||||
.action-bar .search-box .inputbox :-ms-input-placeholder {
|
||||
content: "Search...";
|
||||
}
|
||||
.action-bar .search-box .inputbox :-ms-input-placeholder {
|
||||
content: 'Search...';
|
||||
}
|
||||
|
||||
.action-bar .search-box .inputbox ::-webkit-input-placeholder {
|
||||
content: "Search...";
|
||||
}
|
||||
.action-bar .search-box .inputbox ::-webkit-input-placeholder {
|
||||
content: 'Search...';
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 500px) {
|
||||
|
@ -42,7 +47,8 @@
|
|||
white-space: normal;
|
||||
}
|
||||
|
||||
select, .inputbox {
|
||||
select,
|
||||
.inputbox {
|
||||
max-width: 260px;
|
||||
}
|
||||
|
||||
|
@ -54,10 +60,11 @@
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
dl.details dt, dl.details dd {
|
||||
width: auto;
|
||||
float: none;
|
||||
dl.details dt,
|
||||
dl.details dd {
|
||||
text-align: left;
|
||||
float: none;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
dl.details dd {
|
||||
|
@ -65,20 +72,20 @@
|
|||
}
|
||||
|
||||
p.responsive-center {
|
||||
float: none;
|
||||
text-align: center;
|
||||
float: none;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.action-bar > div {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.action-bar > .pagination {
|
||||
text-align: center;
|
||||
float: none;
|
||||
clear: both;
|
||||
padding-bottom: 1px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.action-bar > .pagination li.page-jump {
|
||||
|
@ -95,8 +102,8 @@
|
|||
}
|
||||
|
||||
.attach-controls {
|
||||
margin-top: 5px;
|
||||
width: 100%;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.quick-links .dropdown-trigger span {
|
||||
|
@ -119,13 +126,24 @@
|
|||
}
|
||||
|
||||
@media (max-width: 700px) {
|
||||
.responsive-hide { display: none !important; }
|
||||
.responsive-show { display: block !important; }
|
||||
.responsive-show-inline { display: inline !important; }
|
||||
.responsive-show-inline-block { display: inline-block !important; }
|
||||
.responsive-hide {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.responsive-show {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
.responsive-show-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
|
||||
.responsive-show-inline-block {
|
||||
display: inline-block !important;
|
||||
}
|
||||
|
||||
/* Content wrappers
|
||||
----------------------------------------*/
|
||||
---------------------------------------------------------------- */
|
||||
html {
|
||||
height: auto;
|
||||
}
|
||||
|
@ -137,29 +155,37 @@
|
|||
.wrap {
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
margin: 0;
|
||||
min-width: 290px;
|
||||
margin: 0;
|
||||
padding: 0 5px;
|
||||
}
|
||||
|
||||
/* Common block wrappers
|
||||
----------------------------------------*/
|
||||
.headerbar, .navbar, .forabg, .forumbg, .post, .panel {
|
||||
---------------------------------------------------------------- */
|
||||
.headerbar,
|
||||
.navbar,
|
||||
.forabg,
|
||||
.forumbg,
|
||||
.post,
|
||||
.panel {
|
||||
border-radius: 0;
|
||||
margin-left: -5px;
|
||||
margin-right: -5px;
|
||||
margin-left: -5px;
|
||||
}
|
||||
|
||||
.cp-main .forabg, .cp-main .forumdb, .cp-main .post, .cp-main .panel {
|
||||
.cp-main .forabg,
|
||||
.cp-main .forumdb,
|
||||
.cp-main .post,
|
||||
.cp-main .panel {
|
||||
border-radius: 7px;
|
||||
}
|
||||
|
||||
/* Logo block
|
||||
----------------------------------------*/
|
||||
---------------------------------------------------------------- */
|
||||
.site-description {
|
||||
text-align: center;
|
||||
float: none;
|
||||
width: auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.logo {
|
||||
|
@ -169,40 +195,45 @@
|
|||
padding: 10px;
|
||||
}
|
||||
|
||||
.site-description h1, .site-description p {
|
||||
text-align: inherit;
|
||||
float: none;
|
||||
margin: 5px;
|
||||
.site-description h1,
|
||||
.site-description p {
|
||||
line-height: 1.2em;
|
||||
overflow: hidden;
|
||||
text-align: inherit;
|
||||
text-overflow: ellipsis;
|
||||
float: none;
|
||||
overflow: hidden;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
.site-description p, .search-header {
|
||||
.site-description p,
|
||||
.search-header {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Navigation
|
||||
----------------------------------------*/
|
||||
---------------------------------------------------------------- */
|
||||
.headerbar + .navbar {
|
||||
margin-top: -5px;
|
||||
}
|
||||
|
||||
/* Search
|
||||
----------------------------------------*/
|
||||
.responsive-search { display: block !important; }
|
||||
---------------------------------------------------------------- */
|
||||
.responsive-search {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
/* .topiclist lists
|
||||
----------------------------------------*/
|
||||
/* Forums and topicslists
|
||||
---------------------------------------------------------------- */
|
||||
li.header dt {
|
||||
font-size: 1.2em;
|
||||
line-height: 1em;
|
||||
text-align: center;
|
||||
text-transform: none;
|
||||
line-height: 1em;
|
||||
font-size: 1.2em;
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
|
||||
ul.topiclist li.header dt, ul.topiclist li.header dt .list-inner {
|
||||
ul.topiclist li.header dt,
|
||||
ul.topiclist li.header dt .list-inner {
|
||||
margin-right: 0 !important;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
@ -211,10 +242,14 @@
|
|||
display: none !important;
|
||||
}
|
||||
|
||||
ul.topiclist dt, ul.topiclist dt .list-inner,
|
||||
ul.topiclist.missing-column dt, ul.topiclist.missing-column dt .list-inner,
|
||||
ul.topiclist.two-long-columns dt, ul.topiclist.two-long-columns dt .list-inner,
|
||||
ul.topiclist.two-columns dt, ul.topiclist.two-columns dt .list-inner {
|
||||
ul.topiclist dt,
|
||||
ul.topiclist dt .list-inner,
|
||||
ul.topiclist.missing-column dt,
|
||||
ul.topiclist.missing-column dt .list-inner,
|
||||
ul.topiclist.two-long-columns dt,
|
||||
ul.topiclist.two-long-columns dt .list-inner,
|
||||
ul.topiclist.two-columns dt,
|
||||
ul.topiclist.two-columns dt .list-inner {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
|
@ -233,33 +268,29 @@
|
|||
ul.topiclist dd {
|
||||
display: none;
|
||||
}
|
||||
ul.topiclist dd.mark {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Forums and topics lists
|
||||
----------------------------------------*/
|
||||
ul.topiclist.forums dt {
|
||||
margin-right: -250px;
|
||||
}
|
||||
|
||||
ul.topiclist dd.mark {
|
||||
display: block;
|
||||
text-align: left;
|
||||
position: absolute;
|
||||
right: 5px;
|
||||
top: 0;
|
||||
margin: 0;
|
||||
right: 5px;
|
||||
display: block;
|
||||
width: auto;
|
||||
min-width: 0;
|
||||
text-align: left;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
ul.topiclist.forums dd.topics dfn, ul.topiclist.topics dd.posts dfn {
|
||||
ul.topiclist.forums dd.topics dfn,
|
||||
ul.topiclist.topics dd.posts dfn {
|
||||
font-weight: normal;
|
||||
position: relative;
|
||||
left: 0;
|
||||
width: auto;
|
||||
display: inline;
|
||||
font-weight: normal;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
li.row .responsive-show strong {
|
||||
|
@ -268,14 +299,14 @@
|
|||
}
|
||||
|
||||
ul.topiclist li.row dt a.subforum {
|
||||
text-overflow: ellipsis;
|
||||
vertical-align: bottom;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100px;
|
||||
}
|
||||
|
||||
/* Pagination
|
||||
----------------------------------------*/
|
||||
---------------------------------------------------------------- */
|
||||
.pagination > ul {
|
||||
margin: 5px 0 0;
|
||||
}
|
||||
|
@ -290,19 +321,24 @@
|
|||
}
|
||||
|
||||
/* Responsive tables
|
||||
----------------------------------------*/
|
||||
table.responsive, table.responsive tbody, table.responsive tr, table.responsive td {
|
||||
---------------------------------------------------------------- */
|
||||
table.responsive,
|
||||
table.responsive tbody,
|
||||
table.responsive tr,
|
||||
table.responsive td {
|
||||
display: block;
|
||||
}
|
||||
|
||||
table.responsive thead, table.responsive th {
|
||||
table.responsive thead,
|
||||
table.responsive th {
|
||||
display: none;
|
||||
}
|
||||
|
||||
table.responsive.show-header thead, table.responsive.show-header th:first-child {
|
||||
table.responsive.show-header thead,
|
||||
table.responsive.show-header th:first-child {
|
||||
text-align: left !important;
|
||||
display: block;
|
||||
width: auto !important;
|
||||
text-align: left !important;
|
||||
}
|
||||
|
||||
table.responsive.show-header th:first-child span.rank-img {
|
||||
|
@ -314,8 +350,8 @@
|
|||
}
|
||||
|
||||
table.responsive td {
|
||||
width: auto !important;
|
||||
text-align: left !important;
|
||||
width: auto !important;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
|
@ -328,8 +364,8 @@
|
|||
}
|
||||
|
||||
table.responsive td > dfn:after {
|
||||
content: ':';
|
||||
padding-right: 5px;
|
||||
content: ':';
|
||||
}
|
||||
|
||||
table.responsive span.rank-img {
|
||||
|
@ -337,25 +373,30 @@
|
|||
padding-right: 5px;
|
||||
}
|
||||
|
||||
table.responsive.memberlist td:first-child input[type="checkbox"] {
|
||||
table.responsive.memberlist td:first-child input[type='checkbox'] {
|
||||
float: right;
|
||||
}
|
||||
|
||||
/* Forms
|
||||
----------------------------------------*/
|
||||
fieldset dt, fieldset.fields1 dt, fieldset.fields2 dt {
|
||||
width: auto;
|
||||
---------------------------------------------------------------- */
|
||||
fieldset dt,
|
||||
fieldset.fields1 dt,
|
||||
fieldset.fields2 dt {
|
||||
float: none;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
fieldset dd, fieldset.fields1 dd, fieldset.fields2 dd {
|
||||
fieldset dd,
|
||||
fieldset.fields1 dd,
|
||||
fieldset.fields2 dd {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
textarea, dd textarea, .message-box textarea {
|
||||
width: 100%;
|
||||
-moz-box-sizing: border-box;
|
||||
textarea,
|
||||
dd textarea,
|
||||
.message-box textarea {
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
dl.pmlist dt {
|
||||
|
@ -372,7 +413,8 @@
|
|||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.smiley-box, .message-box {
|
||||
.smiley-box,
|
||||
.message-box {
|
||||
float: none;
|
||||
width: auto;
|
||||
}
|
||||
|
@ -385,7 +427,9 @@
|
|||
display: none;
|
||||
}
|
||||
|
||||
.colour-palette, .colour-palette tbody, .colour-palette tr {
|
||||
.colour-palette,
|
||||
.colour-palette tbody,
|
||||
.colour-palette tr {
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
@ -394,14 +438,15 @@
|
|||
margin-right: 2px;
|
||||
}
|
||||
|
||||
.horizontal-palette td:nth-child(2n), .vertical-palette tr:nth-child(2n) {
|
||||
.horizontal-palette td:nth-child(2n),
|
||||
.vertical-palette tr:nth-child(2n) {
|
||||
display: none;
|
||||
}
|
||||
|
||||
fieldset.quick-login label {
|
||||
white-space: normal;
|
||||
display: block;
|
||||
margin-bottom: 5px;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
fieldset.quick-login label > span {
|
||||
|
@ -415,21 +460,23 @@
|
|||
margin-left: 20px;
|
||||
}
|
||||
|
||||
fieldset.quick-login label[for="autologin"] {
|
||||
display: inline-block;
|
||||
fieldset.quick-login label[for='autologin'] {
|
||||
text-align: right;
|
||||
display: inline-block;
|
||||
min-width: 50%;
|
||||
}
|
||||
|
||||
/* User profile
|
||||
----------------------------------------*/
|
||||
.column1, .column2, .left-box.profile-details {
|
||||
---------------------------------------------------------------- */
|
||||
.column1,
|
||||
.column2,
|
||||
.left-box.profile-details {
|
||||
float: none;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
/* Polls
|
||||
----------------------------------------*/
|
||||
---------------------------------------------------------------- */
|
||||
fieldset.polls dt {
|
||||
width: 90%;
|
||||
}
|
||||
|
@ -442,46 +489,51 @@
|
|||
width: 20%;
|
||||
}
|
||||
|
||||
fieldset.polls dd.resultbar, fieldset.polls dd.poll_option_percent {
|
||||
fieldset.polls dd.resultbar,
|
||||
fieldset.polls dd.poll_option_percent {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
/* Post
|
||||
----------------------------------------*/
|
||||
---------------------------------------------------------------- */
|
||||
.postbody {
|
||||
position: inherit;
|
||||
}
|
||||
|
||||
.postprofile, .postbody, .search .postbody {
|
||||
.postprofile,
|
||||
.postbody,
|
||||
.search .postbody {
|
||||
display: block;
|
||||
width: auto;
|
||||
float: none;
|
||||
padding: 0;
|
||||
width: auto;
|
||||
min-height: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.post .postprofile {
|
||||
border-width: 0 0 1px;
|
||||
overflow: hidden;
|
||||
width: auto;
|
||||
border-width: 0 0 1px 0;
|
||||
padding-bottom: 5px;
|
||||
min-height: 40px;
|
||||
margin: 0;
|
||||
margin-bottom: 5px;
|
||||
min-height: 40px;
|
||||
overflow: hidden;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
.postprofile dd {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.postprofile dt, .postprofile dd.profile-rank, .search .postprofile dd {
|
||||
.postprofile dt,
|
||||
.postprofile dd.profile-rank,
|
||||
.search .postprofile dd {
|
||||
display: block;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.postprofile .has-avatar .avatar-container {
|
||||
margin: 0;
|
||||
overflow: inherit;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.postprofile .avatar-container:after {
|
||||
|
@ -499,13 +551,13 @@
|
|||
}
|
||||
|
||||
.has-profile .postbody h3 {
|
||||
margin-left: 0 !important;
|
||||
margin-right: 0 !important;
|
||||
margin-left: 0 !important;
|
||||
}
|
||||
|
||||
.has-profile .post-buttons {
|
||||
right: 30px;
|
||||
top: 15px;
|
||||
right: 30px;
|
||||
}
|
||||
|
||||
.online {
|
||||
|
@ -513,14 +565,14 @@
|
|||
}
|
||||
|
||||
/* Misc stuff
|
||||
----------------------------------------*/
|
||||
---------------------------------------------------------------- */
|
||||
h2 {
|
||||
margin-top: .5em;
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: .5em;
|
||||
overflow: hidden;
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
p.rightside {
|
||||
|
@ -558,15 +610,21 @@
|
|||
}
|
||||
|
||||
@media (min-width: 700px) {
|
||||
.postbody { width: 70%; }
|
||||
.postbody {
|
||||
width: 70%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 850px) {
|
||||
.postbody { width: 76%; }
|
||||
.postbody {
|
||||
width: 76%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 850px) {
|
||||
.postprofile { width: 28%; }
|
||||
.postprofile {
|
||||
width: 28%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 701px) and (max-width: 950px) {
|
||||
|
@ -576,15 +634,17 @@
|
|||
}
|
||||
|
||||
ul.topiclist dt {
|
||||
margin-right: -410px;
|
||||
margin-right: -410px;
|
||||
}
|
||||
|
||||
ul.topiclist dt .list-inner {
|
||||
margin-right: 410px;
|
||||
margin-right: 410px;
|
||||
}
|
||||
|
||||
dd.posts, dd.topics, dd.views {
|
||||
width: 80px;
|
||||
dd.posts,
|
||||
dd.topics,
|
||||
dd.views {
|
||||
width: 80px;
|
||||
}
|
||||
}
|
||||
|
||||
/* stylelint-enable */
|
||||
|
|
|
@ -7,15 +7,15 @@
|
|||
--------------------------------------------------------------
|
||||
*/
|
||||
|
||||
@import url("normalize.css");
|
||||
@import url("base.css");
|
||||
@import url("utilities.css");
|
||||
@import url("common.css");
|
||||
@import url("links.css");
|
||||
@import url("content.css");
|
||||
@import url("buttons.css");
|
||||
@import url("cp.css");
|
||||
@import url("forms.css");
|
||||
@import url("icons.css");
|
||||
@import url("colours.css");
|
||||
@import url("responsive.css");
|
||||
@import url('normalize.css');
|
||||
@import url('base.css');
|
||||
@import url('utilities.css');
|
||||
@import url('common.css');
|
||||
@import url('links.css');
|
||||
@import url('content.css');
|
||||
@import url('buttons.css');
|
||||
@import url('cp.css');
|
||||
@import url('forms.css');
|
||||
@import url('icons.css');
|
||||
@import url('colours.css');
|
||||
@import url('responsive.css');
|
||||
|
|
|
@ -1,41 +1,58 @@
|
|||
/* Style Sheet Tweaks
|
||||
/* -------------------------------------------------------------- /*
|
||||
$Tweaks
|
||||
/* -------------------------------------------------------------- /*
|
||||
These style definitions are IE 8 & 9 only.
|
||||
They are required due to the poor CSS support in IE browsers.
|
||||
/* -------------------------------------------------------------- */
|
||||
/* stylelint-disable selector-max-compound-selectors */
|
||||
/* stylelint-disable selector-no-qualifying-type */
|
||||
|
||||
These style definitions are IE 8 & 9 only.
|
||||
They are required due to the poor CSS support in IE browsers.
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
/* IE 8 Tweaks (value)\9 equates to IE <= 8
|
||||
------------------------------------------------------------------------------*/
|
||||
----------------------------------------------------------------- */
|
||||
|
||||
/* Clear float fix */
|
||||
.inner, ul.linklist { zoom: 1\9; }
|
||||
.inner,
|
||||
ul.linklist {
|
||||
zoom: 1\9;
|
||||
}
|
||||
|
||||
/* Align checkboxes/radio buttons nicely */
|
||||
dd label input { vertical-align: text-bottom\9; }
|
||||
dd label input {
|
||||
vertical-align: text-bottom\9;
|
||||
}
|
||||
|
||||
/* Fixes header-avatar aspect-ratio */
|
||||
.header-avatar img { height: 20px\9; }
|
||||
.header-avatar img {
|
||||
height: 20px\9;
|
||||
}
|
||||
|
||||
/* IE8 often can't handle max-width in %, so we use px instead */
|
||||
.postprofile .avatar img { max-width: 150px\9; }
|
||||
.postprofile .avatar img {
|
||||
max-width: 150px\9;
|
||||
}
|
||||
|
||||
|
||||
/* IE 9 Tweaks
|
||||
------------------------------------------------------------------------------*/
|
||||
----------------------------------------------------------------- */
|
||||
|
||||
/* Border-radius bleed fix in IE9 */
|
||||
.search-header, .search-header .inputbox, .search-header a.button {
|
||||
.search-header,
|
||||
.search-header .inputbox,
|
||||
.search-header a.button {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.headerbar, .forumbg {
|
||||
background-image: url("./images/bg_header.gif");
|
||||
.headerbar,
|
||||
.forumbg {
|
||||
background-image: url('./images/bg_header.gif');
|
||||
}
|
||||
|
||||
.forabg {
|
||||
background-image: url("./images/bg_list.gif");
|
||||
background-image: url('./images/bg_list.gif');
|
||||
}
|
||||
|
||||
.tabs .tab > a {
|
||||
border-radius: 0;
|
||||
}
|
||||
/* stylelint-enable */
|
||||
|
|
|
@ -1,26 +1,26 @@
|
|||
/* --------------------------------------------------------------
|
||||
/* -------------------------------------------------------------- /*
|
||||
$Utilities
|
||||
-------------------------------------------------------------- */
|
||||
/* -------------------------------------------------------------- */
|
||||
|
||||
.sr-only {
|
||||
border: 0;
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
clip: rect(0, 0, 0, 0);
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
margin: -1px;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
clip: rect(0, 0, 0, 0);
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.sr-only-focusable:active,
|
||||
.sr-only-focusable:focus {
|
||||
position: static;
|
||||
width: auto;
|
||||
height: auto;
|
||||
margin: 0;
|
||||
overflow: visible;
|
||||
clip: auto;
|
||||
position: static;
|
||||
overflow: visible;
|
||||
clip: auto;
|
||||
width: auto;
|
||||
height: auto;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.clearfix:before,
|
||||
|
@ -31,36 +31,55 @@
|
|||
.container-fluid:after,
|
||||
.row:before,
|
||||
.row:after {
|
||||
content: " ";
|
||||
display: table;
|
||||
content: ' ';
|
||||
}
|
||||
|
||||
.clearfix:after,
|
||||
.container:after,
|
||||
.container-fluid:after,
|
||||
.row:after { clear: both }
|
||||
.row:after {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.center-block {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.pull-right { float: right !important }
|
||||
.pull-left { float: left !important }
|
||||
.hide { display: none !important }
|
||||
.show { display: block !important }
|
||||
.invisible { visibility: hidden }
|
||||
.pull-right {
|
||||
float: right !important;
|
||||
}
|
||||
|
||||
.pull-left {
|
||||
float: left !important;
|
||||
}
|
||||
|
||||
.hide {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.show {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
.invisible {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.text-hide {
|
||||
font: 0/0 a;
|
||||
color: transparent;
|
||||
text-shadow: none;
|
||||
background-color: transparent;
|
||||
border: 0;
|
||||
color: transparent;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none ;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.affix { position: fixed }
|
||||
.affix {
|
||||
position: fixed;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue