mirror of https://github.com/zulip/zulip.git
css: Use SCSS nesting in settings.scss for `#alert_words_list`.
This commit is contained in:
parent
d857437319
commit
468efcf319
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue