Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Gray <annabel.m.gray@gmail.com>2018-06-07 10:37:02 +0300
committerPhil Hughes <me@iamphill.com>2018-06-07 10:37:02 +0300
commit164dbc6b77558e29fd9a1553048d314457dc6990 (patch)
treebd5076a584a04b3de2333cbbce51eefa7bf3353c /doc/development/fe_guide
parentce001db93846bc693be0277bde163850da62f292 (diff)
Resolve "Introduce new navigation themes in GitLab 11.0"
Diffstat (limited to 'doc/development/fe_guide')
-rw-r--r--doc/development/fe_guide/style_guide_scss.md10
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