css: Use SCSS nesting in settings.scss for `#alert_words_list`.

This commit is contained in:
majordwarf 2020-05-10 07:56:33 +05:30 committed by Tim Abbott
parent d857437319
commit 468efcf319
1 changed files with 14 additions and 14 deletions

View File

@ -1053,23 +1053,23 @@ input[type=checkbox] {
#alert_words_list {
margin: 0;
}
#alert_words_list li {
list-style-type: none;
}
li {
list-style-type: none;
#alert_words_list li.alert-word-item:first-child {
background: none;
margin-top: 8px;
}
&.alert-word-item:first-child {
background: none;
margin-top: 8px;
}
}
#alert_words_list .alert_word_listing .value {
display: block;
white-space: pre-wrap;
word-wrap: break-word;
word-break: break-all;
white-space: normal;
.alert_word_listing .value {
display: block;
white-space: pre-wrap;
word-wrap: break-word;
word-break: break-all;
white-space: normal;
}
}
#alert_words_list .edit-alert-word-buttons,