Changeset 6028
- Timestamp:
- 05/20/2016 07:08:58 AM (9 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.stylelintrc
r5995 r6028 5 5 ignore: ["after-comment"], 6 6 } ], 7 "at-rule-name-case": "lower", 8 "at-rule-name-space-after": "always-single-line", 7 9 "at-rule-semicolon-newline-after": "always", 8 10 "block-closing-brace-newline-after": "always", … … 16 18 "declaration-bang-space-after": "never", 17 19 "declaration-bang-space-before": "always", 20 "declaration-block-no-duplicate-properties": [ true, { 21 ignore: ["consecutive-duplicates"], 22 } ], 18 23 "declaration-block-no-shorthand-property-overrides": true, 19 24 "declaration-block-semicolon-newline-after": "always", … … 28 33 "function-comma-space-before": "never", 29 34 "function-linear-gradient-no-nonstandard-direction": true, 35 "function-max-empty-lines": 1, 36 "function-name-case": "lower", 30 37 "function-parentheses-space-inside": "never", 31 38 "function-url-quotes": "none", 32 39 "function-whitespace-after": "always", 33 40 "indentation": "tab", 41 "keyframe-declaration-no-important": true, 34 42 "max-empty-lines": 2, 35 43 "media-feature-colon-space-after": "always", … … 42 50 "media-query-list-comma-space-before": "never", 43 51 "no-eol-whitespace": true, 52 "no-extra-semicolons": true, 44 53 "no-invalid-double-slash-comments": true, 45 54 "no-missing-eof-newline": true, … … 47 56 "number-no-trailing-zeros": true, 48 57 "number-zero-length-no-unit": true, 58 "property-case": "lower", 49 59 "rule-nested-empty-line-before": [ "always", { 50 60 ignore: ["after-comment"], … … 53 63 ignore: ["after-comment"], 54 64 } ], 65 "selector-attribute-brackets-space-inside": "never", 66 "selector-attribute-operator-space-after": "never", 67 "selector-attribute-operator-space-before": "never", 55 68 "selector-combinator-space-after": "always", 56 69 "selector-combinator-space-before": "always", 57 70 "selector-list-comma-newline-after": "always", 58 71 "selector-list-comma-space-before": "never", 72 "selector-max-empty-lines": 0, 73 "selector-pseudo-class-case": "lower", 74 "selector-pseudo-class-no-unknown": true, 75 "selector-pseudo-class-parentheses-space-inside": "never", 76 "selector-pseudo-element-case": "lower", 59 77 "selector-pseudo-element-colon-notation": "single", 78 "selector-pseudo-element-no-unknown": true, 60 79 "selector-type-case": "lower", 80 "selector-type-no-unknown": true, 81 "shorthand-property-no-redundant-values": true, 61 82 "string-no-newline": true, 62 83 "string-quotes": "double", 84 "unit-case": "lower", 85 "unit-no-unknown": true, 63 86 "value-list-comma-newline-after": "always-multi-line", 64 87 "value-list-comma-space-after": "always-single-line", -
trunk/package.json
r6000 r6028 27 27 "postcss-reporter": "~1.3.3", 28 28 "postcss-scss": "~0.1.7", 29 "stylelint": " ~5.3.0"29 "stylelint": "^6.4.2" 30 30 }, 31 31 "engines": { -
trunk/src/templates/default/css/bbpress.css
r5995 r6028 10 10 11 11 #bbpress-forums hr { 12 margin: 0 0 24px 0;12 margin: 0 0 24px; 13 13 } 14 14 … … 196 196 max-width: 80px; 197 197 padding: 0; 198 margin: 12px auto 0 auto;198 margin: 12px auto 0; 199 199 float: none; 200 200 } … … 556 556 #bbpress-forums p.bbp-topic-meta { 557 557 font-size: 11px; 558 margin: 5px 0 5px;558 margin: 5px 0; 559 559 padding: 0; 560 560 word-wrap: break-word; … … 787 787 788 788 #bbpress-forums #bbp-your-profile fieldset { 789 padding: 20px 20px 0 20px;789 padding: 20px 20px 0; 790 790 } 791 791 … … 935 935 div.bbp-template-notice p, 936 936 div.bbp-template-notice li { 937 margin: 0.5em 0 6px 0!important;937 margin: 0.5em 0 6px !important; 938 938 padding: 2px; 939 939 font-size: 12px; … … 961 961 width: 100%; 962 962 margin: 0; 963 padding: 8px 0 0 0;963 padding: 8px 0 0; 964 964 font-size: 11px; 965 965 color: #aaa; … … 1109 1109 height: 150px; 1110 1110 padding: 0; 1111 margin: 0 0 20px 0;1111 margin: 0 0 20px; 1112 1112 width: 150px; 1113 1113 }
Note: See TracChangeset
for help on using the changeset viewer.