1
0
mirror of https://github.com/flarum/core.git synced 2025-07-31 05:30:38 +02:00

Implement third state for notification list dropdown

Related to #500.
This commit is contained in:
Franz Liedke
2015-09-29 00:50:28 +02:00
parent 9529ce9ba2
commit 1f7afb3e4a
2 changed files with 16 additions and 4 deletions

View File

@@ -24,14 +24,15 @@
}
}
.NotificationsDropdown .Dropdown-toggle.unread .Button-icon {
.NotificationsDropdown .Dropdown-toggle.new .Button-icon {
color: @header-color;
}
.NotificationsDropdown-unread {
position: absolute;
top: 1px;
left: 17px;
background: @header-color;
background: @control-color;
color: @header-bg;
font-size: 11px;
font-weight: bold;
@@ -41,4 +42,8 @@
border: 1px solid @header-bg;
min-width: 18px;
height: 18px;
.new & {
background: @header-color;
}
}