1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-04 16:06:00 +02:00

Merge pull request #4726 from hanakin/ticket/15115

[ticket/15115] Update CSS error checking Stylelintrc file
This commit is contained in:
Marc Alexander 2017-03-25 16:47:40 +01:00
commit f36d5691c8
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995
20 changed files with 881 additions and 843 deletions

243
.postcss-sorting.json Normal file
View File

@ -0,0 +1,243 @@
{
"order": [
"custom-properties",
"dollar-variables",
{
"type": "at-rule",
"name": "include"
},
"declarations",
"rules",
{
"type": "at-rule",
"name": "media"
}
],
"properties-order": [
{
"emptyLineBefore": false,
"properties": [
"font",
"font-family",
"font-size",
"font-weight",
"font-style",
"font-variant",
"font-size-adjust",
"font-stretch",
"font-effect",
"font-emphasize",
"font-emphasize-position",
"font-emphasize-style",
"font-smooth",
"font-smoothing",
"line-height",
"text-align",
"text-align-last",
"vertical-align",
"white-space",
"text-decoration",
"text-emphasis",
"text-emphasis-color",
"text-emphasis-style",
"text-emphasis-position",
"text-indent",
"text-justify",
"letter-spacing",
"word-spacing",
"writing-mode",
"text-outline",
"text-transform",
"text-size-adjust",
"text-wrap",
"text-overflow",
"text-overflow-ellipsis",
"text-overflow-mode",
"word-wrap",
"word-break",
"tab-size",
"hyphens"
]
},
{
"emptyLineBefore": false,
"properties": [
"background",
"background-color",
"background-image",
"background-repeat",
"background-attachment",
"background-position",
"background-position-x",
"background-position-y",
"background-clip",
"background-origin",
"background-size",
"interpolation-mode",
"filter",
"border",
"border-width",
"border-style",
"border-color",
"border-top",
"border-top-width",
"border-top-style",
"border-top-color",
"border-right",
"border-right-width",
"border-right-style",
"border-right-color",
"border-bottom",
"border-bottom-width",
"border-bottom-style",
"border-bottom-color",
"border-left",
"border-left-width",
"border-left-style",
"border-left-color",
"border-radius",
"border-top-left-radius",
"border-top-right-radius",
"border-bottom-right-radius",
"border-bottom-left-radius",
"border-image",
"border-image-source",
"border-image-slice",
"border-image-width",
"border-image-outset",
"border-image-repeat",
"outline",
"outline-width",
"outline-style",
"outline-color",
"outline-offset",
"tap-highlight-color"
]
},
{
"emptyLineBefore": false,
"properties": [
"box-decoration-break",
"box-shadow",
"text-shadow"
]
},
{
"emptyLineBefore": false,
"properties": [
"color",
"opacity"
]
},
{
"emptyLineBefore": false,
"properties": [
"position",
"z-index",
"top",
"right",
"bottom",
"left"
]
},
{
"emptyLineBefore": false,
"properties": [
"display",
"visibility",
"float",
"clear",
"overflow",
"overflow-x",
"overflow-y",
"overflow-scrolling",
"clip",
"zoom",
"flex",
"flex-direction",
"flex-order",
"flex-pack",
"flex-align",
"flex-basis",
"flex-grow",
"flex-shrink",
"flex-wrap",
"justify-content",
"align-items",
"align-self"
]
},
{
"emptyLineBefore": false,
"properties": [
"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"
]
},
{
"emptyLineBefore": false,
"properties": [
"table-layout",
"empty-cells",
"caption-side",
"border-spacing",
"border-collapse",
"list-style",
"list-style-position",
"list-style-type",
"list-style-image"
]
},
{
"emptyLineBefore": false,
"properties": [
"content",
"quotes",
"counter-reset",
"counter-increment",
"resize",
"cursor",
"touch-callout",
"touch-action",
"user-select",
"nav-index",
"nav-up",
"nav-right",
"nav-down",
"nav-left",
"transition",
"transition-delay",
"transition-timing-function",
"transition-duration",
"transition-property",
"transform",
"transform-origin",
"animation",
"animation-name",
"animation-duration",
"animation-play-state",
"animation-timing-function",
"animation-delay",
"animation-iteration-count",
"animation-direction",
"pointer-events"
]
}
],
"unspecified-properties-position": "bottomAlphabetical"
}

View File

@ -1,468 +1,391 @@
{
"rules": {
"color-hex-case": "lower",
"color-hex-length": "long",
"color-named": "never",
"color-no-invalid-hex": true,
"plugins": [
"stylelint-order"
],
"ignoreFiles": [
"./phpBB/styles/prosilver/theme/normalize.css",
],
"rules": {
"at-rule-name-case": "lower",
"at-rule-name-newline-after": "always-multi-line",
"at-rule-name-space-after": "always-single-line",
"at-rule-no-vendor-prefix": true,
"at-rule-semicolon-newline-after": "always",
"font-family-name-quotes": "always-where-recommended",
"block-closing-brace-newline-after": [
"always", {
"ignoreAtRules": ["if", "else"]
}
],
"block-closing-brace-newline-before": "always-multi-line",
"block-closing-brace-space-before": "always-single-line",
"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",
"block-no-empty": true,
"number-leading-zero": "always",
"number-max-precision": 3,
"number-no-trailing-zeros": true,
"block-opening-brace-newline-after": "always-multi-line",
"block-opening-brace-space-after": "always-single-line",
"block-opening-brace-space-before": "always",
"string-no-newline": true,
"string-quotes": single,
"color-hex-case": "lower",
"color-hex-length": "long",
"color-named": "never",
"color-no-invalid-hex": true,
"length-zero-no-unit": true,
"comment-empty-line-before": [
"always", {
"except": ["first-nested"],
"ignore": ["stylelint-commands"]
}
],
"comment-whitespace-inside": "always",
"unit-case": "lower",
"unit-no-unknown": true,
"declaration-bang-space-after": "never",
"declaration-bang-space-before": "always",
"value-keyword-case": lower,
"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-trailing-semicolon": "always",
"declaration-block-single-line-max-declarations": 1,
"declaration-block-no-duplicate-properties": [
true, {
"ignore": ["consecutive-duplicates-with-different-values"]
}
],
"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,
"declaration-colon-newline-after": "always-multi-line",
"declaration-colon-space-after": "always-single-line",
"declaration-colon-space-before": "never",
"shorthand-property-no-redundant-values": true,
"declaration-empty-line-before": "never",
"property-case": "lower",
"property-no-unknown": true,
"declaration-property-unit-blacklist": {
"line-height": ["rem", "px", "em", "%"]
},
"declaration-property-unit-whitelist": {
"height": ["px", "%", "vh"],
"width": ["px", "%", "vw"],
"font-size": ["px", "rem", "%"],
"margin-left": ["px", "rem", "%"],
"margin-right": ["px", "rem", "%"],
"margin-top": ["px", "rem", "%"],
"margin-bottom": ["px", "rem", "%"],
"padding-left": ["px", "rem"],
"padding-right": ["px", "rem"],
"padding-top": ["px", "rem"],
"padding-bottom": ["px", "rem"],
"letter-spacing": ["em"],
"word-spacing": ["em"]
},
"keyframe-declaration-no-important": true,
"font-family-name-quotes": "always-where-recommended",
"function-calc-no-unspaced-operator": 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",
"function-comma-newline-after": "never-multi-line",
"function-comma-newline-before": "never-multi-line",
"function-comma-space-after": "always-single-line",
"function-comma-space-before": "never-single-line",
"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",
"function-linear-gradient-no-nonstandard-direction": true,
"function-max-empty-lines": 5,
"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",
"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",
"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,
"indentation": "tab",
"selector-list-comma-newline-after": "always",
"selector-list-comma-space-before": "never",
"length-zero-no-unit": true,
"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"]
}
],
"max-empty-lines": 10,
"max-line-length": 180,
"max-nesting-depth": 4,
"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-feature-colon-space-after": "always",
"media-feature-colon-space-before": "never",
"media-feature-name-case": "lower",
"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-newline-before": "never-multi-line",
"media-query-list-comma-space-after": "always-single-line",
"media-query-list-comma-space-before": "never",
"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",
"no-duplicate-selectors": true,
"no-empty-source": true,
"no-eol-whitespace": true,
"no-extra-semicolons": true,
"no-missing-end-of-source-newline": true,
"no-unknown-animations": true,
"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",
"number-leading-zero": "always",
"number-max-precision": 10,
"number-no-trailing-zeros": true,
"comment-empty-line-before": [
"always", {
"except": ["first-nested"],
"ignore": ["stylelint-commands"]
}
],
"comment-whitespace-inside": "always",
"property-case": "lower",
"property-no-unknown": true,
"indentation": "tab",
"max-empty-lines": 5,
"rule-empty-line-before": ["always-multi-line", {
"ignore": ["after-comment"],
"except": ["first-nested"]
}],
"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,
"selector-attribute-brackets-space-inside": "never",
"selector-attribute-operator-space-after": "never",
"selector-attribute-operator-space-before": "never",
"selector-attribute-quotes": "always",
"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",
"selector-combinator-space-after": "always",
"selector-combinator-space-before": "always",
"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",
"selector-list-comma-newline-after": "always",
"selector-list-comma-space-before": "never",
"position",
"top",
"right",
"bottom",
"left",
"z-index",
"selector-max-empty-lines": 5,
"selector-max-compound-selectors": 5,
"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",
"selector-pseudo-class-case": "lower",
"selector-pseudo-class-no-unknown": true,
"selector-pseudo-class-parentheses-space-inside": "never",
"-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",
"selector-pseudo-element-case": "lower",
"selector-pseudo-element-colon-notation": "single",
"selector-pseudo-element-no-unknown": true,
"table-layout",
"empty-cells",
"caption-side",
"list-style",
"list-style-position",
"list-style-type",
"list-style-image",
"selector-type-case": "lower",
"selector-type-no-unknown": true,
"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" }
]
}
"selector-descendant-combinator-no-non-space": true,
"selector-no-id": true,
"selector-no-qualifying-type": [
true, {
"ignore": ["attribute"]
}
],
"shorthand-property-no-redundant-values": true,
"string-no-newline": true,
"string-quotes": "double",
"unit-case": "lower",
"unit-no-unknown": true,
"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",
"order/declaration-block-order": [
"custom-properties",
"dollar-variables",
{
"type": "at-rule",
"name": "include"
},
"declarations",
"rules",
{
"type": "at-rule",
"name": "media"
}
],
"order/declaration-block-properties-specified-order": [
[
"font",
"font-family",
"font-size",
"font-weight",
"font-style",
"font-variant",
"font-size-adjust",
"font-stretch",
"font-effect",
"font-emphasize",
"font-emphasize-position",
"font-emphasize-style",
"font-smooth",
"font-smoothing",
"line-height",
"text-align",
"text-align-last",
"vertical-align",
"white-space",
"text-decoration",
"text-emphasis",
"text-emphasis-color",
"text-emphasis-style",
"text-emphasis-position",
"text-indent",
"text-justify",
"letter-spacing",
"word-spacing",
"writing-mode",
"text-outline",
"text-transform",
"text-size-adjust",
"text-wrap",
"text-overflow",
"text-overflow-ellipsis",
"text-overflow-mode",
"word-wrap",
"word-break",
"tab-size",
"hyphens",
"background",
"background-color",
"background-image",
"background-repeat",
"background-attachment",
"background-position",
"background-position-x",
"background-position-y",
"background-clip",
"background-origin",
"background-size",
"interpolation-mode",
"filter",
"border",
"border-width",
"border-style",
"border-color",
"border-top",
"border-top-width",
"border-top-style",
"border-top-color",
"border-right",
"border-right-width",
"border-right-style",
"border-right-color",
"border-bottom",
"border-bottom-width",
"border-bottom-style",
"border-bottom-color",
"border-left",
"border-left-width",
"border-left-style",
"border-left-color",
"border-radius",
"border-top-left-radius",
"border-top-right-radius",
"border-bottom-right-radius",
"border-bottom-left-radius",
"border-image",
"border-image-source",
"border-image-slice",
"border-image-width",
"border-image-outset",
"border-image-repeat",
"outline",
"outline-width",
"outline-style",
"outline-color",
"outline-offset",
"tap-highlight-color",
"box-decoration-break",
"box-shadow",
"text-shadow",
"color",
"opacity",
"position",
"z-index",
"top",
"right",
"bottom",
"left",
"display",
"visibility",
"float",
"clear",
"overflow",
"overflow-x",
"overflow-y",
"overflow-scrolling",
"clip",
"zoom",
"flex",
"flex-direction",
"flex-order",
"flex-pack",
"flex-align",
"flex-basis",
"flex-grow",
"flex-shrink",
"flex-wrap",
"justify-content",
"align-items",
"align-self",
"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",
"border-spacing",
"border-collapse",
"list-style",
"list-style-position",
"list-style-type",
"list-style-image",
"content",
"quotes",
"counter-reset",
"counter-increment",
"resize",
"cursor",
"touch-callout",
"touch-action",
"user-select",
"nav-index",
"nav-up",
"nav-right",
"nav-down",
"nav-left",
"transition",
"transition-delay",
"transition-timing-function",
"transition-duration",
"transition-property",
"transform",
"transform-origin",
"animation",
"animation-name",
"animation-duration",
"animation-play-state",
"animation-timing-function",
"animation-delay",
"animation-iteration-count",
"animation-direction",
"pointer-events"
],
{ unspecified: "bottomAlphabetical" }
]
}
}

View File

@ -28,7 +28,7 @@
},
"homepage": "https://www.phpbb.com",
"devDependencies": {
"stylelint": "^7.7.1",
"stylelint-order": "^0.3.0"
"stylelint": "7.8.0",
"stylelint-order": "0.3.0"
}
}

View File

@ -18,13 +18,17 @@
/* Define your base font-size here; most elements will inherit this. */
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.) */
font-size: 16px; /* Assuming 16px... */
/* 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.) */
line-height: 1.5;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
background-color: #ffffff;
color: #333333;
}
@ -116,7 +120,7 @@ ul {
* This prevents an unwanted focus outline from appearing around elements that
* might still respond to pointer events.
*/
[tabindex='-1']:focus {
[tabindex="-1"]:focus {
outline: none !important;
}

View File

@ -3,6 +3,7 @@
/* -------------------------------------------------------------- */
/* stylelint-disable selector-max-compound-selectors */
/* stylelint-disable selector-no-qualifying-type */
/* stylelint-disable declaration-property-unit-whitelist */
/**
* common.css
@ -411,8 +412,8 @@ li.breadcrumbs span:first-child > a {
}
.rtl ul.topiclist dd {
border-right-style: solid;
border-right-width: 1px;
border-right-style: solid;
border-left: none;
float: right;
}
@ -601,8 +602,8 @@ li.breadcrumbs span:first-child > a {
.rtl .pollbar4,
.rtl .pollbar5 {
border-right: none;
border-left-style: solid;
border-left-width: 1px;
border-left-style: solid;
}
/* Poster profile block
@ -615,8 +616,8 @@ li.breadcrumbs span:first-child > a {
}
.rtl .pm .postprofile {
border-right-style: solid;
border-right-width: 1px;
border-right-style: solid;
border-left: none;
}
@ -669,8 +670,8 @@ li.breadcrumbs span:first-child > a {
---------------------------------------- */
.rtl .contact-icons a {
border-right: none;
border-left-style: dotted;
border-left-width: 1px;
border-left-style: dotted;
float: right;
}
@ -810,8 +811,8 @@ li.breadcrumbs span:first-child > a {
/* PM marking colours */
.rtl .pm-legend {
border-right-style: solid;
border-right-width: 10px;
border-right-style: solid;
border-left-width: 0;
padding-right: 3px;
padding-left: 0;
@ -958,9 +959,9 @@ li.breadcrumbs span:first-child > a {
}
.rtl .search-box .inputbox {
border-radius: 0 4px 4px 0;
border-right-width: 1px;
border-left-width: 0;
border-radius: 0 4px 4px 0;
float: right;
padding: 3px;
}
@ -971,9 +972,9 @@ li.breadcrumbs span:first-child > a {
}
.rtl .button-search-end {
border-radius: 4px 0 0 4px;
border-right-width: 0;
border-left-width: 1px;
border-radius: 4px 0 0 4px;
}
.rtl .search-header .button-search-end {
@ -1137,4 +1138,7 @@ li.breadcrumbs span:first-child > a {
margin-right: 0;
}
}
/* stylelint-enable */
/* stylelint-enable selector-max-compound-selectors */
/* stylelint-enable selector-no-qualifying-type */
/* stylelint-enable declaration-property-unit-whitelist */

View File

@ -2,8 +2,10 @@
$Buttons
/* -------------------------------------------------------------- */
/* stylelint-disable declaration-property-unit-whitelist */
.button {
font-family: 'Open Sans', 'Droid Sans', Verdana, Arial, Helvetica;
font-family: "Open Sans", "Droid Sans", Verdana, Arial, Helvetica;
font-size: 13px;
font-weight: normal;
line-height: 1.4;
@ -15,11 +17,11 @@
display: inline-block;
padding: 2px 8px;
cursor: pointer;
touch-action: manipulation;
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
user-select: none;
touch-action: manipulation;
}
.button:focus,
@ -42,7 +44,7 @@
---------------------------------------- */
.button-form,
.button-form-bold {
font-family: 'Lucida Grande', Verdana, Helvetica, Arial, sans-serif;
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
border-radius: 0;
}
@ -59,8 +61,8 @@
}
.button-search-end {
border-radius: 0 4px 4px 0;
border-left-width: 0;
border-radius: 0 4px 4px 0;
}
.search-header .button-search,
@ -173,8 +175,8 @@ button::-moz-focus-inner {
------------------------------------------------- */
.small-icon {
background-image: none;
background-position: 0 50%;
background-repeat: no-repeat;
background-position: 0 50%;
}
.dropdown .small-icon {
@ -191,7 +193,7 @@ button::-moz-focus-inner {
ul.linklist.bulletin > li.small-icon:before {
display: none;
}
/* stylelint-enable */
/* stylelint-enable selector-no-qualifying-type */
.dropdown .small-icon > a {
display: block;
@ -205,3 +207,5 @@ ul.linklist.bulletin > li.small-icon:before {
padding-right: 19px;
padding-left: 0;
}
/* stylelint-enable declaration-property-unit-whitelist */

View File

@ -161,10 +161,6 @@ ul.zebra-list li:nth-child(even) {
background-color: #e7e8ea;
}
.site_logo {
background-image: url('./images/site_logo.gif');
}
/* horizontal lists */
ul.navlinks {
@ -336,9 +332,8 @@ p.post-notice {
------------------------------------------------------------- */
ul.forums {
background-color: #eef5f9; /* old browsers */ /* ff3.6+ */
background-image: linear-gradient(to bottom, #d2e0eb 0%, #eef5f9 100%); /* w3c */
filter: progid:dximagetransform.microsoft.gradient(startcolorstr='#d2e0eb', endcolorstr='#eef5f9', gradienttype=0); /* ie6-9 */
background-color: #eef5f9;
background-image: linear-gradient(to bottom, #d2e0eb 0%, #eef5f9 100%);
}
ul.topiclist li {
@ -426,12 +421,12 @@ dl.faq dt {
/* quote block */
blockquote {
background-color: #ebeadd;
background-image: url('./images/quote.gif');
background-image: url("./images/quote.gif");
border-color: #dbdbce;
}
.rtl blockquote {
background-image: url('./images/quote_rtl.gif');
background-image: url("./images/quote_rtl.gif");
}
blockquote blockquote {
@ -594,10 +589,6 @@ fieldset.polls dd div {
color: #000000;
}
.online {
background-image: url('./en/icon_user_online.gif');
}
dd.profile-warnings {
color: #bc2a4d;
}
@ -627,22 +618,20 @@ dd.profile-warnings {
/* colours and backgrounds for buttons.css
------------------------------------------------------------- */
.button {
background-color: #e9e9e9; /* old browsers */ /* ff3.6+ */
background-image: linear-gradient(to bottom, #ffffff 0%, #e9e9e9 100%); /* w3c */
background-color: #e9e9e9;
background-image: linear-gradient(to bottom, #ffffff 0%, #e9e9e9 100%);
border-color: #c7c3bf;
-webkit-box-shadow: 0 0 0 1px #ffffff inset;
box-shadow: 0 0 0 1px #ffffff inset;
color: #d31141;
filter: progid:dximagetransform.microsoft.gradient(startcolorstr='#ffffff', endcolorstr='#e9e9e9', gradienttype=0); /* ie6-9 */
}
.button:hover,
.button:focus {
background-color: #ffffff; /* old browsers */ /* ff3.6+ */
background-image: linear-gradient(to bottom, #e9e9e9 0%, #ffffff 100%); /* w3c */
background-color: #ffffff;
background-image: linear-gradient(to bottom, #e9e9e9 0%, #ffffff 100%);
border-color: #0a8ed0;
text-shadow: 1px 1px 0 #ffffff, -1px -1px 0 #ffffff, -1px -1px 0 rgba(188, 42, 77, 0.2);
filter: progid:dximagetransform.microsoft.gradient(startcolorstr='#e9e9e9', endcolorstr='#ffffff', gradienttype=0); /* ie6-9 */
}
.button .icon,
@ -661,18 +650,17 @@ dd.profile-warnings {
.button-form:hover,
.button-form-bold:hover {
border-color: #d31141;
color: #d31141;
text-shadow: none;
color: #d31141;
}
.button-form:focus,
.button-form-bold:focus {
border-color: #0a8ed0;
color: #0a8ed0;
text-shadow: none;
color: #0a8ed0;
}
.button-secondary:focus,
.button-secondary:hover,
.button:focus .icon,
@ -701,12 +689,12 @@ dd.profile-warnings {
.pagination li a {
background: #ecedee;
-webkit-filter: none;
filter: none;
border-color: #b4bac0;
-webkit-box-shadow: none;
box-shadow: none;
color: #5c758c;
-webkit-filter: none;
filter: none;
}
.pagination li.ellipsis span {
@ -725,11 +713,11 @@ dd.profile-warnings {
.pagination .dropdown-visible a.dropdown-trigger,
.nojs .pagination .dropdown-container:hover a.dropdown-trigger {
background: #368ad2;
border-color: #368ad2;
color: #ffffff;
text-shadow: none;
-webkit-filter: none;
filter: none;
border-color: #368ad2;
text-shadow: none;
color: #ffffff;
}
/* search box */
@ -744,244 +732,78 @@ dd.profile-warnings {
box-shadow: 0 0 10px #0075b0;
}
/* icon images */
.contact-icon {
background-image: url('./images/icons_contact.png');
}
.site_logo { background-image: url("./images/site_logo.gif"); }
.contact-icon { background-image: url("./images/icons_contact.png"); }
/* profile & navigation icons */
.pm-icon {
background-position: 0 0;
}
.email-icon {
background-position: -21px 0;
}
.jabber-icon {
background-position: -80px 0;
}
.phpbb_icq-icon {
background-position: -61px 0;
}
.phpbb_wlm-icon {
background-position: -182px 0;
}
.phpbb_aol-icon {
background-position: -244px 0;
}
.phpbb_website-icon {
background-position: -40px 0;
}
.phpbb_youtube-icon {
background-position: -98px 0;
}
.phpbb_facebook-icon {
background-position: -119px 0;
}
.phpbb_googleplus-icon {
background-position: -140px 0;
}
.phpbb_skype-icon {
background-position: -161px 0;
}
.phpbb_twitter-icon {
background-position: -203px 0;
}
.phpbb_yahoo-icon {
background-position: -224px 0;
}
/* profile icons */
.online { background-image: url("./en/icon_user_online.gif"); }
.pm-icon { background-position: 0 0; }
.email-icon { background-position: -21px 0; }
.jabber-icon { background-position: -80px 0; }
.phpbb_icq-icon { background-position: -61px 0; }
.phpbb_wlm-icon { background-position: -182px 0; }
.phpbb_aol-icon { background-position: -244px 0; }
.phpbb_website-icon { background-position: -40px 0; }
.phpbb_youtube-icon { background-position: -98px 0; }
.phpbb_facebook-icon { background-position: -119px 0; }
.phpbb_googleplus-icon { background-position: -140px 0; }
.phpbb_skype-icon { background-position: -161px 0; }
.phpbb_twitter-icon { background-position: -203px 0; }
.phpbb_yahoo-icon { background-position: -224px 0; }
/* forum icons & topic icons */
.global_read {
background-image: url('./images/announce_read.gif');
}
.global_read { background-image: url("./images/announce_read.gif"); }
.global_read_mine { background-image: url("./images/announce_read_mine.gif"); }
.global_read_locked { background-image: url("./images/announce_read_locked.gif"); }
.global_read_locked_mine { background-image: url("./images/announce_read_locked_mine.gif"); }
.global_unread { background-image: url("./images/announce_unread.gif"); }
.global_unread_mine { background-image: url("./images/announce_unread_mine.gif"); }
.global_unread_locked { background-image: url("./images/announce_unread_locked.gif"); }
.global_unread_locked_mine { background-image: url("./images/announce_unread_locked_mine.gif"); }
.global_read_mine {
background-image: url('./images/announce_read_mine.gif');
}
.announce_read { background-image: url("./images/announce_read.gif"); }
.announce_read_mine { background-image: url("./images/announce_read_mine.gif"); }
.announce_read_locked { background-image: url("./images/announce_read_locked.gif"); }
.announce_read_locked_mine { background-image: url("./images/announce_read_locked_mine.gif"); }
.announce_unread { background-image: url("./images/announce_unread.gif"); }
.announce_unread_mine { background-image: url("./images/announce_unread_mine.gif"); }
.announce_unread_locked { background-image: url("./images/announce_unread_locked.gif"); }
.announce_unread_locked_mine { background-image: url("./images/announce_unread_locked_mine.gif"); }
.global_read_locked {
background-image: url('./images/announce_read_locked.gif');
}
.forum_link { background-image: url("./images/forum_link.gif"); }
.forum_read { background-image: url("./images/forum_read.gif"); }
.forum_read_locked { background-image: url("./images/forum_read_locked.gif"); }
.forum_read_subforum { background-image: url("./images/forum_read_subforum.gif"); }
.forum_unread { background-image: url("./images/forum_unread.gif"); }
.forum_unread_locked { background-image: url("./images/forum_unread_locked.gif"); }
.forum_unread_subforum { background-image: url("./images/forum_unread_subforum.gif"); }
.global_read_locked_mine {
background-image: url('./images/announce_read_locked_mine.gif');
}
.global_unread {
background-image: url('./images/announce_unread.gif');
}
.global_unread_mine {
background-image: url('./images/announce_unread_mine.gif');
}
.global_unread_locked {
background-image: url('./images/announce_unread_locked.gif');
}
.global_unread_locked_mine {
background-image: url('./images/announce_unread_locked_mine.gif');
}
.announce_read {
background-image: url('./images/announce_read.gif');
}
.announce_read_mine {
background-image: url('./images/announce_read_mine.gif');
}
.announce_read_locked {
background-image: url('./images/announce_read_locked.gif');
}
.announce_read_locked_mine {
background-image: url('./images/announce_read_locked_mine.gif');
}
.announce_unread {
background-image: url('./images/announce_unread.gif');
}
.announce_unread_mine {
background-image: url('./images/announce_unread_mine.gif');
}
.announce_unread_locked {
background-image: url('./images/announce_unread_locked.gif');
}
.announce_unread_locked_mine {
background-image: url('./images/announce_unread_locked_mine.gif');
}
.forum_link {
background-image: url('./images/forum_link.gif');
}
.forum_read {
background-image: url('./images/forum_read.gif');
}
.forum_read_locked {
background-image: url('./images/forum_read_locked.gif');
}
.forum_read_subforum {
background-image: url('./images/forum_read_subforum.gif');
}
.forum_unread {
background-image: url('./images/forum_unread.gif');
}
.forum_unread_locked {
background-image: url('./images/forum_unread_locked.gif');
}
.forum_unread_subforum {
background-image: url('./images/forum_unread_subforum.gif');
}
.sticky_read {
background-image: url('./images/sticky_read.gif');
}
.sticky_read_mine {
background-image: url('./images/sticky_read_mine.gif');
}
.sticky_read_locked {
background-image: url('./images/sticky_read_locked.gif');
}
.sticky_read_locked_mine {
background-image: url('./images/sticky_read_locked_mine.gif');
}
.sticky_unread {
background-image: url('./images/sticky_unread.gif');
}
.sticky_unread_mine {
background-image: url('./images/sticky_unread_mine.gif');
}
.sticky_unread_locked {
background-image: url('./images/sticky_unread_locked.gif');
}
.sticky_unread_locked_mine {
background-image: url('./images/sticky_unread_locked_mine.gif');
}
.topic_moved {
background-image: url('./images/topic_moved.gif');
}
.sticky_read { background-image: url("./images/sticky_read.gif"); }
.sticky_read_mine { background-image: url("./images/sticky_read_mine.gif"); }
.sticky_read_locked { background-image: url("./images/sticky_read_locked.gif"); }
.sticky_read_locked_mine { background-image: url("./images/sticky_read_locked_mine.gif"); }
.sticky_unread { background-image: url("./images/sticky_unread.gif"); }
.sticky_unread_mine { background-image: url("./images/sticky_unread_mine.gif"); }
.sticky_unread_locked { background-image: url("./images/sticky_unread_locked.gif"); }
.sticky_unread_locked_mine { background-image: url("./images/sticky_unread_locked_mine.gif"); }
.pm_read,
.topic_read {
background-image: url('./images/topic_read.gif');
}
.topic_read_mine {
background-image: url('./images/topic_read_mine.gif');
}
.topic_read_hot {
background-image: url('./images/topic_read_hot.gif');
}
.topic_read_hot_mine {
background-image: url('./images/topic_read_hot_mine.gif');
}
.topic_read_locked {
background-image: url('./images/topic_read_locked.gif');
}
.topic_read_locked_mine {
background-image: url('./images/topic_read_locked_mine.gif');
}
.topic_read { background-image: url("./images/topic_read.gif"); }
.topic_moved { background-image: url("./images/topic_moved.gif"); }
.topic_read_mine { background-image: url("./images/topic_read_mine.gif"); }
.topic_read_hot { background-image: url("./images/topic_read_hot.gif"); }
.topic_read_hot_mine { background-image: url("./images/topic_read_hot_mine.gif"); }
.topic_read_locked { background-image: url("./images/topic_read_locked.gif"); }
.topic_read_locked_mine { background-image: url("./images/topic_read_locked_mine.gif"); }
.pm_unread,
.topic_unread {
background-image: url('./images/topic_unread.gif');
}
.topic_unread_mine {
background-image: url('./images/topic_unread_mine.gif');
}
.topic_unread_hot {
background-image: url('./images/topic_unread_hot.gif');
}
.topic_unread_hot_mine {
background-image: url('./images/topic_unread_hot_mine.gif');
}
.topic_unread_locked {
background-image: url('./images/topic_unread_locked.gif');
}
.topic_unread_locked_mine {
background-image: url('./images/topic_unread_locked_mine.gif');
}
.topic_unread { background-image: url("./images/topic_unread.gif"); }
.topic_unread_mine { background-image: url("./images/topic_unread_mine.gif"); }
.topic_unread_hot { background-image: url("./images/topic_unread_hot.gif"); }
.topic_unread_hot_mine { background-image: url("./images/topic_unread_hot_mine.gif"); }
.topic_unread_locked { background-image: url("./images/topic_unread_locked.gif"); }
.topic_unread_locked_mine { background-image: url("./images/topic_unread_locked_mine.gif"); }
/* colours and backgrounds for cp.css
------------------------------------------------------------- */
@ -1031,12 +853,11 @@ ul.cplist {
.tabs .activetab > a,
.tabs .activetab > a:hover {
background-color: #cadceb; /* old browsers */ /* ff3.6+ */
background-image: linear-gradient(to bottom, #e2f2ff 0%, #cadceb 100%); /* w3c */
background-color: #cadceb;
background-image: linear-gradient(to bottom, #e2f2ff 0%, #cadceb 100%);
border-color: #cadceb;
box-shadow: 0 1px 1px #f2f9ff inset;
color: #333333;
filter: progid:dximagetransform.microsoft.gradient(startcolorstr='#e2f2ff', endcolorstr='#cadceb', gradienttype=0); /* ie6-9 */
}
.tabs .activetab > a:hover {
@ -1067,48 +888,37 @@ ul.cplist {
/* link styles for the sub-section links */
.navigation a {
background: #cadceb; /* old browsers */ /* ff3.6+ */
background-image: linear-gradient(to right, #b4c4d1 50%, #cadceb 100%); /* w3c */
background: #cadceb;
background-image: linear-gradient(to right, #b4c4d1 50%, #cadceb 100%);
color: #333333;
filter: progid:dximagetransform.microsoft.gradient(startcolorstr='#b4c4d1', endcolorstr='#cadceb', gradienttype=1); /* ie6-9 */
}
.rtl .navigation a {
background: #b4c4d1; /* old browsers */ /* ff3.6+ */
background-image: linear-gradient(to right, #cadceb 50%, #b4c4d1 100%); /* w3c */
filter: progid:dximagetransform.microsoft.gradient(startcolorstr='#cadceb', endcolorstr='#b4c4d1', gradienttype=1); /* ie6-9 */
background: #b4c4d1;
background-image: linear-gradient(to right, #cadceb 50%, #b4c4d1 100%);
}
.navigation a:hover {
background: #aabac6;
color: #bc2a4d;
filter: progid:dximagetransform.microsoft.gradient(enabled = false);
}
.navigation .active-subsection a {
background: #f9f9f9;
color: #d31141;
filter: progid:dximagetransform.microsoft.gradient(enabled = false);
}
.navigation .active-subsection a:hover {
color: #d31141;
}
/* This ID needs factored out */
@media only screen and (max-width: 900px), only screen and (max-device-width: 900px) {
/* stylelint-disable selector-no-id */
#navigation a,
.rtl #navigation a {
.navigation a,
.rtl .navigation a {
background: #b2c2cf;
}
/* stylelint-enable */
}
/* stylelint-disable selector-max-compound-selectors */
/* stylelint-disable selector-no-qualifying-type */
/* stylelint-disable no-indistinguishable-colors */
/* preferences pane layout */
.panel-container h2 {
color: #333333;
@ -1190,7 +1000,7 @@ label {
}
option.disabled-option {
color: graytext;
color: #7f7f7f;
}
/* definition list layout for forms */
@ -1313,14 +1123,13 @@ input.disabled {
}
.dropdown-extended .footer {
border-top-style: solid;
border-top-width: 1px;
border-top-style: solid;
}
.dropdown-extended .header {
background-color: #f1f8ff; /* old browsers */ /* ff3.6+ */
background-image: linear-gradient(to bottom, #f1f8ff 0%, #cadceb 100%); /* w3c */
filter: progid:dximagetransform.microsoft.gradient(startcolorstr='#f1f8ff', endcolorstr='#cadceb', gradienttype=0); /* ie6-9 */
background-color: #f1f8ff;
background-image: linear-gradient(to bottom, #f1f8ff 0%, #cadceb 100%);
}
.dropdown .pointer {
@ -1369,4 +1178,7 @@ li.notification-disapproved strong {
background-color: #d31141;
color: #ffffff;
}
/* stylelint-enable */
/* stylelint-enable selector-max-compound-selectors */
/* stylelint-enable selector-no-qualifying-type */
/* stylelint-enable no-indistinguishable-colors */

View File

@ -3,6 +3,8 @@
/* -------------------------------------------------------------- */
/* stylelint-disable selector-max-compound-selectors */
/* stylelint-disable selector-no-qualifying-type */
/* stylelint-disable declaration-property-unit-whitelist */
/* stylelint-disable declaration-property-unit-blacklist */
html {
font-size: 100%;
@ -23,7 +25,7 @@ body {
h1 {
/* Forum name */
font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 2em;
font-weight: bold;
margin-top: 15px;
@ -32,7 +34,7 @@ h1 {
h2 {
/* Forum header titles */
font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 2em;
font-weight: normal;
margin: 0.8em 0 0.2em;
@ -56,7 +58,7 @@ h3 {
h4 {
/* Forum and topic list titles */
font-family: 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif;
font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
font-size: 1.3em;
}
@ -238,8 +240,8 @@ a:hover {
}
.post {
background-position: 100% 0;
background-repeat: no-repeat;
background-position: 100% 0;
border-radius: 7px;
position: relative;
margin-bottom: 4px;
@ -341,7 +343,7 @@ ul.linklist.bulletin > li:before {
line-height: inherit;
display: inline-block;
padding-right: 4px;
content: '\2022';
content: "\2022";
}
ul.linklist.bulletin > li:first-child:before,
@ -381,7 +383,7 @@ a.header-avatar span:after {
display: inline-block;
padding-top: 2px;
padding-left: 6px;
content: '\f0dd';
content: "\f0dd";
}
/* Dropdown menu
@ -406,9 +408,9 @@ a.header-avatar span:after {
border: 1px solid transparent;
border-radius: 5px;
position: absolute;
z-index: 2;
top: 1.2em;
left: 0;
z-index: 2;
display: none;
margin-right: -500px;
padding: 9px 0 0;
@ -465,10 +467,10 @@ a.header-avatar span:after {
}
.dropdown .pointer {
z-index: 3;
top: -1px;
right: auto;
left: 10px;
z-index: 3;
}
.dropdown-up .pointer {
@ -612,7 +614,7 @@ a.header-avatar span:after {
.breadcrumbs .crumb:before {
font-weight: bold;
padding: 0 0.5em;
content: '\2039';
content: "\2039";
}
.breadcrumbs .crumb:first-child:before {
@ -620,9 +622,9 @@ a.header-avatar span:after {
}
.breadcrumbs .crumb a {
text-overflow: ellipsis;
vertical-align: bottom;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
@ -777,8 +779,8 @@ table.info tbody th {
}
.color_palette_placeholder table {
border-collapse: separate;
border-spacing: 1px;
border-collapse: separate;
}
/* Misc layout styles
@ -817,7 +819,7 @@ table.info tbody th {
}
dl.details {
/* font-family: 'Lucida Grande', Verdana, Helvetica, Arial, sans-serif; */
/* font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif; */
font-size: 1.1em;
}
@ -924,7 +926,7 @@ fieldset.fields1 dl.pmlist dd.recipients {
}
.pagination li.active span {
font-family: 'Open Sans', 'Droid Sans', Verdana, Arial, Helvetica;
font-family: "Open Sans", "Droid Sans", Verdana, Arial, Helvetica;
font-size: 13px;
font-weight: normal;
line-height: 1.4;
@ -978,10 +980,10 @@ fieldset.fields1 dl.pmlist dd.recipients {
.phpbb_alert {
border: 1px solid transparent;
position: fixed;
z-index: 50;
top: 150px;
right: 0;
left: 0;
z-index: 50;
display: none;
width: 620px;
margin: 0 auto;
@ -1028,18 +1030,18 @@ fieldset.fields1 dl.pmlist dd.recipients {
.darken {
opacity: 0.5;
position: fixed;
z-index: 45;
top: 0;
left: 0;
z-index: 45;
width: 100%;
height: 100%;
}
.loading_indicator {
position: fixed;
z-index: 51;
top: 50%;
left: 50%;
z-index: 51;
display: none;
}
@ -1053,12 +1055,14 @@ fieldset.fields1 dl.pmlist dd.recipients {
animation: rotator 1s linear infinite;
}
/* stylelint-disable no-unknown-animations */
.spinner-path {
stroke-dasharray: 187;
stroke-dashoffset: 0;
transform-origin: center;
animation: dash 1s ease-in-out infinite, colors 4s ease-in-out infinite;
stroke-dasharray: 187;
stroke-dashoffset: 0;
}
/* stylelint-enable no-unknown-animations */
@keyframes rotator {
0% {
@ -1076,13 +1080,13 @@ fieldset.fields1 dl.pmlist dd.recipients {
}
50% {
stroke-dashoffset: 46.75;
transform: rotate(135deg);
stroke-dashoffset: 46.75;
}
100% {
stroke-dashoffset: 187;
transform: rotate(450deg);
stroke-dashoffset: 187;
}
}
@ -1163,7 +1167,7 @@ ul.linklist:after,
.postprofile .avatar-container:after {
display: block;
clear: both;
content: '';
content: "";
}
.emoji {
@ -1234,13 +1238,13 @@ ul.linklist:after,
}
.dropdown-extended .header {
font-family: Arial, 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: bold;
line-height: 3em;
text-align: left;
text-transform: uppercase;
border-radius: 5px 5px 0 0;
border-bottom: 1px solid;
border-radius: 5px 5px 0 0;
text-shadow: 1px 1px 1px #ffffff;
padding: 0 10px;
}
@ -1259,7 +1263,7 @@ ul.linklist:after,
.dropdown-extended .header:after {
display: table;
clear: both;
content: '';
content: "";
}
.dropdown-extended .footer {
@ -1300,8 +1304,8 @@ ul.linklist:after,
.notification_list p.notification-reference,
.notification_list p.notification-location,
.notification_list li a p.notification-reason {
text-overflow: ellipsis;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
@ -1321,7 +1325,7 @@ ul.linklist:after,
}
.notification_list p.notifications_title {
font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 1.2em !important;
}
@ -1386,3 +1390,6 @@ ul.linklist:after,
.dropdown .clone.hidden + li {
border-top: none;
}
/* stylelint-enable declaration-property-unit-whitelist */
/* stylelint-enable declaration-property-unit-blacklist */

View File

@ -1,8 +1,11 @@
/* -------------------------------------------------------------- /*
$Content
/* -------------------------------------------------------------- */
/* stylelint-disable selector-max-compound-selectors */
/* stylelint-disable selector-no-qualifying-type */
/* stylelint-disable declaration-property-unit-whitelist */
/* stylelint-disable declaration-property-unit-blacklist */
ul.topiclist {
display: block;
@ -135,14 +138,14 @@ li.header dl.row-item dt .list-inner {
/* Forum list column styles */
dl.row-item {
background-position: 10px 50%; /* Position of folder icon */
background-repeat: no-repeat;
background-position: 10px 50%; /* Position of folder icon */
background-size: 32px;
}
dl.row-item dt {
background-position: 5px 95%; /* Position of topic icon */
background-repeat: no-repeat;
background-position: 5px 95%; /* Position of topic icon */
background-size: 17px;
}
@ -258,7 +261,7 @@ dd.option {
}
.postbody h3 {
font-family: 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif;
font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
font-size: 1.5em;
line-height: 125%;
text-transform: none;
@ -337,7 +340,7 @@ dd.option {
/* Content container styles
---------------------------------------- */
.content {
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;
@ -367,14 +370,14 @@ dd.option {
}
.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;
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;
@ -448,7 +451,7 @@ dd .signature {
/* 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;
@ -486,10 +489,10 @@ blockquote blockquote {
blockquote cite {
font-size: 0.9em;
font-weight: bold;
/* Username/source of quoter */
font-style: normal;
font-weight: bold;
display: block;
margin-left: 20px;
}
@ -536,7 +539,7 @@ blockquote .codebox {
}
.codebox code {
font: 0.9em Monaco, 'Andale Mono', 'Courier New', Courier, monospace;
font: 0.9em Monaco, "Andale Mono", "Courier New", Courier, monospace;
line-height: 1.3em;
display: block;
overflow: auto;
@ -651,7 +654,7 @@ 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 {
@ -794,8 +797,8 @@ dd.profile-contact {
.online {
background-image: none;
background-position: 100% 0;
background-repeat: no-repeat;
background-position: 100% 0;
}
/* Poster profile used by search */
@ -850,8 +853,8 @@ div.dl_links {
}
.ellipsis-text {
text-overflow: ellipsis;
white-space: nowrap;
text-overflow: ellipsis;
display: inline-block;
overflow: hidden;
}
@ -891,4 +894,9 @@ table.fixed-width-table {
#team tr.inactive {
font-style: italic;
}
/* stylelint-enable */
/* stylelint-enable selector-no-id */
/* stylelint-enable selector-max-compound-selectors */
/* stylelint-enable selector-no-qualifying-type */
/* stylelint-enable declaration-property-unit-whitelist */
/* stylelint-enable declaration-property-unit-blacklist */

View File

@ -1,8 +1,11 @@
/* -------------------------------------------------------------- /*
$Contorl Panel
/* -------------------------------------------------------------- */
/* stylelint-disable selector-max-compound-selectors */
/* stylelint-disable selector-no-qualifying-type */
/* stylelint-disable declaration-property-unit-whitelist */
/* stylelint-disable declaration-property-unit-blacklist */
/* Main CP box
---------------------------------------- */
@ -126,8 +129,8 @@ ul.cplist {
.tabs .tab > a,
.minitabs .tab > a {
text-decoration: none;
white-space: nowrap;
text-decoration: none;
position: relative;
display: block;
padding: 5px 9px;
@ -195,7 +198,7 @@ ul.cplist {
left: 10px;
width: 14px;
height: 0.125em;
content: '';
content: "";
}
.tabs .dropdown,
@ -333,8 +336,8 @@ ol.def-rules li {
.pm-legend {
border-right-width: 0;
border-left-style: solid;
border-left-width: 10px;
border-left-style: solid;
margin-bottom: 3px;
padding-left: 3px;
}
@ -386,8 +389,12 @@ ol.def-rules li {
}
.navigation li:last-child a {
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
}
}
/* stylelint-enable */
/* stylelint-enable selector-max-compound-selectors */
/* stylelint-enable selector-no-qualifying-type */
/* stylelint-enable declaration-property-unit-whitelist */
/* stylelint-enable declaration-property-unit-blacklist */

View File

@ -1,8 +1,11 @@
/* -------------------------------------------------------------- /*
$Forms
/* -------------------------------------------------------------- */
/* stylelint-disable selector-max-compound-selectors */
/* stylelint-disable selector-no-qualifying-type */
/* stylelint-disable declaration-property-unit-whitelist */
/* stylelint-disable declaration-property-unit-blacklist */
/* General form styles
---------------------------------------- */
@ -44,7 +47,7 @@ select optgroup option {
}
textarea {
font-family: 'Lucida Grande', Verdana, Helvetica, Arial, sans-serif;
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
font-size: 1em;
line-height: 1.4em;
width: 60%;
@ -263,7 +266,7 @@ fieldset.submit-buttons input {
}
.message-box textarea {
font-family: 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif;
font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
font-size: 1.2em;
outline: 3px dashed transparent;
outline-offset: -4px;
@ -322,30 +325,30 @@ textarea.inputbox {
width: auto !important;
}
input[type='number'] {
input[type="number"] {
-moz-padding-end: inherit;
}
input[type='search'] {
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;
}
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;
}
@ -360,8 +363,8 @@ input.disabled {
.search-box .inputbox {
background-image: none;
border-radius: 4px 0 0 4px;
border-right-width: 0;
border-radius: 4px 0 0 4px;
float: left;
box-sizing: border-box;
height: 24px;
@ -388,8 +391,8 @@ input.disabled {
input.search {
background-image: none;
background-position: left 1px;
background-repeat: no-repeat;
background-position: left 1px;
padding-left: 17px;
}
@ -408,4 +411,8 @@ input.search {
.tiny {
width: 10%;
}
/* stylelint-enable */
/* stylelint-enable selector-max-compound-selectors */
/* stylelint-enable selector-no-qualifying-type */
/* stylelint-enable declaration-property-unit-whitelist */
/* stylelint-enable declaration-property-unit-blacklist */

View File

@ -11,15 +11,17 @@
*/
.icon,
.button .icon {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-family: FontAwesome;
font-size: 14px;
font-weight: normal;
font-style: normal;
font-variant: normal;
font-weight: normal;
-webkit-font-smoothing: antialiased;
line-height: 1;
display: inline-block;
/* stylelint-disable order/declaration-block-properties-specified-order */
-moz-osx-font-smoothing: grayscale;
/* stylelint-enable order/declaration-block-properties-specified-order */
text-rendering: auto; /* optimizelegibility throws things off #1094 */
}

View File

@ -2,6 +2,7 @@
$Links
/* -------------------------------------------------------------- */
/* stylelint-disable declaration-property-unit-whitelist */
/* Links adjustment to correctly display an order of rtl/ltr mixed content */
a {
@ -38,13 +39,13 @@ th a:hover {
/* Notification mark read link */
.dropdown-extended a.mark_read {
background-position: center center;
background-repeat: no-repeat;
background-position: center center;
border-radius: 3px 0 0 3px;
position: absolute;
z-index: 2;
top: 50%;
right: 0;
z-index: 2;
display: none;
box-sizing: border-box;
margin-top: -20px;
@ -66,7 +67,7 @@ th a:hover {
/* 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;
@ -77,7 +78,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;
@ -208,4 +209,5 @@ a.feed-icon-forum {
a.anchor {
display: block;
}
/* stylelint-enable */
/* stylelint-enable declaration-property-unit-whitelist */

View File

@ -2,6 +2,8 @@
$Plupload
/* -------------------------------------------------------------- */
/* stylelint-disable declaration-property-unit-whitelist */
.attach-panel-multi {
display: none;
margin-bottom: 1em;
@ -69,15 +71,15 @@
}
.file-status.file-working {
background: url('./images/plupload/throbber.gif');
background: url("./images/plupload/throbber.gif");
}
.file-status.file-uploaded {
background: url('./images/plupload/done.gif');
background: url("./images/plupload/done.gif");
}
.file-status.file-error {
background: url('./images/plupload/error.gif');
background: url("./images/plupload/error.gif");
}
.file-status {
@ -90,3 +92,5 @@
vertical-align: bottom;
max-width: 65%;
}
/* stylelint-enable declaration-property-unit-whitelist */

View File

@ -1,7 +1,10 @@
/* -------------------------------------------------------------- /*
$Print
/* -------------------------------------------------------------- */
/* stylelint-disable selector-max-compound-selectors */
/* stylelint-disable declaration-property-unit-whitelist */
/* stylelint-disable declaration-property-unit-blacklist */
/* Lots still TODO here! */
@ -71,7 +74,7 @@ h3,
h1 a,
h2 a,
h3 a {
font-family: 'Trebuchet MS', georgia, Verdana, sans-serif;
font-family: "Trebuchet MS", georgia, Verdana, sans-serif;
font-weight: bold;
text-decoration: none;
background: none;
@ -93,7 +96,7 @@ h3 {
}
.content {
font-family: 'Lucida Grande', 'Trebuchet MS', Verdana, Arial, Helvetica, sans-serif;
font-family: "Lucida Grande", "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
font-size: 11pt;
line-height: 14pt;
overflow: hidden;
@ -117,7 +120,7 @@ html > body .postbody a:link:after,
html > body .postbody a:visited:after {
font-size: 90%;
text-decoration: none;
content: ' (' attr(href) ') ';
content: " (" attr(href) ") ";
}
hr {
@ -152,7 +155,7 @@ 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 */
@ -214,11 +217,12 @@ ul {
display: none;
}
/* stylelint-disable declaration-property-unit-whitelist */
.emoji {
min-height: 18px;
width: 1em;
min-width: 18px;
height: 1em;
width: 1em;
min-height: 18px;
}
/* stylelint-enable selector-max-compound-selectors */
/* stylelint-enable declaration-property-unit-whitelist */
/* stylelint-enable declaration-property-unit-blacklist */

View File

@ -3,6 +3,8 @@
/* -------------------------------------------------------------- */
/* stylelint-disable selector-max-compound-selectors */
/* stylelint-disable selector-no-qualifying-type */
/* stylelint-disable declaration-property-unit-whitelist */
/* stylelint-disable declaration-property-unit-blacklist */
@media (max-width: 320px) {
select,
@ -30,15 +32,15 @@
}
.action-bar .search-box .inputbox ::-moz-placeholder {
content: 'Search...';
content: "Search...";
}
.action-bar .search-box .inputbox :-ms-input-placeholder {
content: 'Search...';
content: "Search...";
}
.action-bar .search-box .inputbox ::-webkit-input-placeholder {
content: 'Search...';
content: "Search...";
}
}
@ -299,8 +301,8 @@
}
ul.topiclist li.row dt a.subforum {
text-overflow: ellipsis;
vertical-align: bottom;
text-overflow: ellipsis;
overflow: hidden;
max-width: 100px;
}
@ -360,7 +362,7 @@
table.responsive td > dfn:after {
padding-right: 5px;
content: ':';
content: ":";
}
table.responsive span.rank-img {
@ -368,7 +370,7 @@
padding-right: 5px;
}
table.responsive.memberlist td:first-child input[type='checkbox'] {
table.responsive.memberlist td:first-child input[type="checkbox"] {
float: right;
}
@ -455,7 +457,7 @@
margin-left: 20px;
}
fieldset.quick-login label[for='autologin'] {
fieldset.quick-login label[for="autologin"] {
text-align: right;
display: inline-block;
min-width: 50%;
@ -647,4 +649,7 @@
}
}
/* stylelint-enable */
/* stylelint-enable selector-max-compound-selectors */
/* stylelint-enable selector-no-qualifying-type */
/* stylelint-enable declaration-property-unit-whitelist */
/* stylelint-enable declaration-property-unit-blacklist */

View File

@ -7,15 +7,15 @@
--------------------------------------------------------------
*/
@import url('normalize.css?v=3.3');
@import url('base.css?v=3.3');
@import url('utilities.css?v=3.3');
@import url('common.css?v=3.3');
@import url('links.css?v=3.3');
@import url('content.css?v=3.3');
@import url('buttons.css?v=3.3');
@import url('cp.css?v=3.3');
@import url('forms.css?v=3.3');
@import url('icons.css?v=3.3');
@import url('colours.css?v=3.3');
@import url('responsive.css?v=3.3');
@import url("normalize.css?v=3.3");
@import url("base.css?v=3.3");
@import url("utilities.css?v=3.3");
@import url("common.css?v=3.3");
@import url("links.css?v=3.3");
@import url("content.css?v=3.3");
@import url("buttons.css?v=3.3");
@import url("cp.css?v=3.3");
@import url("forms.css?v=3.3");
@import url("icons.css?v=3.3");
@import url("colours.css?v=3.3");
@import url("responsive.css?v=3.3");

View File

@ -4,6 +4,7 @@
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 */
@ -27,7 +28,7 @@ dd label input {
height: 20px\9;
}
/* IE8 often can't handle max-width in %, so we use px instead */
/* IE8 often can not handle max-width in %, so we use px instead */
.postprofile .avatar img {
max-width: 150px\9;
}
@ -45,14 +46,16 @@ dd label input {
.headerbar,
.forumbg {
background-image: url('./images/bg_header.gif');
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 */
/* stylelint-enable selector-max-compound-selectors */
/* stylelint-enable selector-no-qualifying-type */

View File

@ -32,7 +32,7 @@
.row:before,
.row:after {
display: table;
content: ' ';
content: " ";
}
.clearfix:after,
@ -72,8 +72,8 @@
font: 0/0 a;
background-color: transparent;
border: 0;
color: transparent;
text-shadow: none;
color: transparent;
}
.hidden {

View File

@ -15,7 +15,6 @@ NOTESTS=$1
if [ "$NOTESTS" == '1' ]
then
cd phpBB
# Define a node version.
TRAVIS_NODE_VERSION="4"
@ -33,7 +32,7 @@ then
npm install -g > /dev/null
npm install > /dev/null
set -x
stylelint --config ../.stylelintrc "styles/prosilver/theme/*.css"
stylelint "phpBB/styles/prosilver/theme/*.css"
# Disable admin stylelint for now
# stylelint --config ../.stylelintrc "adm/style/*.css"
# stylelint "phpBB/adm/style/*.css"
fi