mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:06:57 +08:00
Merge pull request #2066 from riking/red-popup
Style 'urgent' composer popups differently
This commit is contained in:
commit
bf23c7a0c4
|
@ -18,6 +18,12 @@
|
|||
|
||||
@include box-shadow(3px 3px 3px rgba($primary_shadow_color, 0.14));
|
||||
background: lighten($highlight, 15%);
|
||||
border: 1px solid $highlight_border_color;
|
||||
|
||||
&.urgent {
|
||||
background: lighten($warning_border_color, 15%);
|
||||
border: 1px solid $warning_border_color;
|
||||
}
|
||||
|
||||
h3 {
|
||||
margin-bottom: 10px;
|
||||
|
@ -38,7 +44,6 @@
|
|||
opacity: 1.0;
|
||||
}
|
||||
|
||||
border: 1px solid $highlight_border_color;
|
||||
padding: 10px;
|
||||
width: 600px;
|
||||
position: absolute;
|
||||
|
|
|
@ -88,6 +88,7 @@ class ComposerMessagesFinder
|
|||
|
||||
{templateName: 'composer/education',
|
||||
wait_for_typing: true,
|
||||
extraClass: 'urgent',
|
||||
body: PrettyText.cook(I18n.t('education.sequential_replies')) }
|
||||
end
|
||||
|
||||
|
@ -118,6 +119,7 @@ class ComposerMessagesFinder
|
|||
|
||||
{templateName: 'composer/education',
|
||||
wait_for_typing: true,
|
||||
extraClass: 'urgent',
|
||||
body: PrettyText.cook(I18n.t('education.dominating_topic', percent: (ratio * 100).round)) }
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user