mirror of
https://github.com/humhub/humhub.git
synced 2025-01-17 22:28:51 +01:00
9306a052e8
* Restyle top dropdown notifications * Fix tests for new style of notifications * Fix tests for new style of notifications * Restyle notifications * Restyle notifications * Restyle notifications * Restyle notifications * Wording
57 lines
1.1 KiB
Plaintext
57 lines
1.1 KiB
Plaintext
#notification_overview_filter label {
|
|
display: block;
|
|
}
|
|
|
|
#notification_overview_list {
|
|
.img-space {
|
|
position: absolute;
|
|
top: 25px;
|
|
left: 25px;
|
|
}
|
|
.media {
|
|
display: flex;
|
|
.media-left {
|
|
margin-right: 16px;
|
|
}
|
|
.media-right {
|
|
min-width: 24px;
|
|
}
|
|
}
|
|
li {
|
|
border-left: none;
|
|
background: none;
|
|
&:hover {
|
|
border-left: none;
|
|
background-color: @background-color-secondary;
|
|
}
|
|
&.new {
|
|
time {
|
|
color: @info;
|
|
}
|
|
}
|
|
&:not(.new) {
|
|
.media-body {
|
|
*&, strong {
|
|
color: @text-color-secondary;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.notifications {
|
|
position: inherit !important;
|
|
float: left !important;
|
|
}
|
|
|
|
.notifications .dropdown-menu {
|
|
width: 300px !important;
|
|
margin-left: 0 !important;
|
|
|
|
.arrow {
|
|
margin-left: -142px !important;
|
|
}
|
|
}
|
|
}
|