diff options
author | Annabel Gray <annabel.m.gray@gmail.com> | 2018-06-07 07:37:02 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2018-06-07 07:37:02 +0000 |
commit | 164dbc6b77558e29fd9a1553048d314457dc6990 (patch) | |
tree | bd5076a584a04b3de2333cbbce51eefa7bf3353c /doc | |
parent | ce001db93846bc693be0277bde163850da62f292 (diff) | |
download | gitlab-ce-164dbc6b77558e29fd9a1553048d314457dc6990.tar.gz |
Resolve "Introduce new navigation themes in GitLab 11.0"
Diffstat (limited to 'doc')
-rw-r--r-- | doc/development/fe_guide/style_guide_scss.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/development/fe_guide/style_guide_scss.md b/doc/development/fe_guide/style_guide_scss.md index 655d94793dd..48eb6d0a7d6 100644 --- a/doc/development/fe_guide/style_guide_scss.md +++ b/doc/development/fe_guide/style_guide_scss.md @@ -216,12 +216,12 @@ If you want a line or set of lines to be ignored by the linter, you can use `// scss-lint:disable RuleName` ([more info][disabling-linters]): ```scss -// This lint rule is disabled because the class name comes from a gem. -// scss-lint:disable SelectorFormat -.ui_indigo { - background-color: #333; +// This lint rule is disabled because it is supported only in Chrome/Safari +// scss-lint:disable PropertySpelling +body { + text-decoration-skip: ink; } -// scss-lint:enable SelectorFormat +// scss-lint:enable PropertySpelling ``` Make sure a comment is added on the line above the `disable` rule, otherwise the |