Commit 9684d7fd authored by Jacob Schatz's avatar Jacob Schatz Committed by Rémy Coutable

Merge branch 'css-indentation' into 'master'

Fix Indentation lints in CSS.

As discussed in #14299.

cc: @jschatz1 

See merge request !3312
parent 06753980
/** /**
* Generic mixins * Generic mixins
*/ */
@mixin box-shadow($shadow) { @mixin box-shadow($shadow) {
-webkit-box-shadow: $shadow; -webkit-box-shadow: $shadow;
-moz-box-shadow: $shadow; -moz-box-shadow: $shadow;
-ms-box-shadow: $shadow; -ms-box-shadow: $shadow;
......
...@@ -34,9 +34,9 @@ ...@@ -34,9 +34,9 @@
background: #fff background: #fff
} }
.visibility-levels { .visibility-levels {
.controls { .controls {
margin-bottom: 9px; margin-bottom: 9px;
} }
i { i {
......
...@@ -21,19 +21,19 @@ ...@@ -21,19 +21,19 @@
$l-white: #fff; $l-white: #fff;
.term-bold { .term-bold {
font-weight: bold; font-weight: bold;
} }
.term-italic { .term-italic {
font-style: italic; font-style: italic;
} }
.term-conceal { .term-conceal {
visibility: hidden; visibility: hidden;
} }
.term-underline { .term-underline {
text-decoration: underline; text-decoration: underline;
} }
.term-cross { .term-cross {
text-decoration: line-through; text-decoration: line-through;
} }
.term-fg-black { .term-fg-black {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment