From 4d28111178733b2b480b0cdfb04d0acf84bbbfcf Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Sat, 9 Jul 2016 07:59:47 -0700 Subject: [PATCH] Move alert_words CSS to settings.css. --- static/styles/settings.css | 29 +++++++++++++++++++++++++++++ static/styles/zulip.css | 27 --------------------------- 2 files changed, 29 insertions(+), 27 deletions(-) diff --git a/static/styles/settings.css b/static/styles/settings.css index 8345b313e3..7996718f52 100644 --- a/static/styles/settings.css +++ b/static/styles/settings.css @@ -490,3 +490,32 @@ div.edit_bot { .bot_name_header { width: 8em; } + + +#alert_words_list { + list-style-type: none; + margin: auto; +} + +#alert_words_list li.alert-word-item:last-child { + background: none; + margin-top: 8px; +} + +#alert_words_list .edit-alert-word-buttons { + position: absolute; + right: 20px; + top: 5px; +} + +#alert_words_list .alert_word_listing .value { + display: block; + white-space: -moz-pre-wrap !important; + white-space: -pre-wrap; + white-space: -o-pre-wrap; + white-space: pre-wrap; + word-wrap: break-word; + word-break: break-all; + white-space: normal; +} + diff --git a/static/styles/zulip.css b/static/styles/zulip.css index 0b4cd68241..7a8d5b9fa9 100644 --- a/static/styles/zulip.css +++ b/static/styles/zulip.css @@ -3159,33 +3159,6 @@ li.expanded_private_message { opacity: .5; } -#alert_words_list { - list-style-type: none; - margin: auto; -} - -#alert_words_list li.alert-word-item:last-child { - background: none; - margin-top: 8px; -} - -#alert_words_list .edit-alert-word-buttons { - position: absolute; - right: 20px; - top: 5px; -} - -#alert_words_list .alert_word_listing .value { - display: block; - white-space: -moz-pre-wrap !important; - white-space: -pre-wrap; - white-space: -o-pre-wrap; - white-space: pre-wrap; - word-wrap: break-word; - word-break: break-all; - white-space: normal; -} - #feedback_section { text-align: left; padding-bottom: 10px;