mirror of https://github.com/zulip/zulip.git
lint: Fix CSS linter rules not running.
Apparently, our CSS linter rules haven't been running since we migrated to SCSS.
This commit is contained in:
parent
6de6b0ed31
commit
815388b023
|
@ -983,7 +983,7 @@ a.bottom-signup-button {
|
||||||
|
|
||||||
.contributors-list {
|
.contributors-list {
|
||||||
margin-left: -40px;
|
margin-left: -40px;
|
||||||
width: calc(100% + 80px);
|
width: calc(100% - -80px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.contributors {
|
.contributors {
|
||||||
|
|
|
@ -1797,7 +1797,7 @@ thead .actions {
|
||||||
.custom_user_field .pill-container:focus-within {
|
.custom_user_field .pill-container:focus-within {
|
||||||
border-color: rgba(82, 168, 236, 0.8);
|
border-color: rgba(82, 168, 236, 0.8);
|
||||||
outline: 0;
|
outline: 0;
|
||||||
outline: thin dotted \9;
|
outline: 1px dotted \9;
|
||||||
|
|
||||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
||||||
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
||||||
|
|
|
@ -913,8 +913,8 @@ def build_custom_checkers(by_lang):
|
||||||
failed = True
|
failed = True
|
||||||
|
|
||||||
color = next(colors)
|
color = next(colors)
|
||||||
for fn in by_lang['css']:
|
for fn in by_lang['scss']:
|
||||||
if custom_check_file(fn, 'css', css_rules, color):
|
if custom_check_file(fn, 'scss', css_rules, color):
|
||||||
failed = True
|
failed = True
|
||||||
|
|
||||||
color = next(colors)
|
color = next(colors)
|
||||||
|
|
Loading…
Reference in New Issue