framework/less/forum/notifications.less

137 lines
2.3 KiB
Plaintext
Raw Normal View History

2015-03-24 12:37:38 +08:00
.notifications {
& .dropdown-menu {
padding: 0;
overflow: hidden;
}
& .loading-indicator {
height: 100px;
}
& .dropdown-toggle .label {
margin-left: 5px;
}
}
@media @tablet, @desktop, @desktop-hd {
.notifications {
& .dropdown-menu {
width: 400px;
}
& .dropdown-toggle .label {
display: none;
}
}
}
.notifications-icon {
display: inline-block;
border-radius: 12px;
height: 24px;
width: 24px;
text-align: center;
padding: 2px 0;
font-weight: bold;
margin: -2px -3px;
}
&.unread .notifications-icon {
2015-05-27 14:52:02 +08:00
background: @fl-body-primary-color;
2015-03-24 12:37:38 +08:00
color: #fff;
}
.notifications-header {
padding: 12px 15px;
border-bottom: 1px solid @fl-body-secondary-color;
& h4 {
font-size: 12px;
text-transform: uppercase;
font-weight: bold;
margin: 0;
2015-05-14 21:10:32 +08:00
color: @fl-body-muted-color;
2015-03-24 12:37:38 +08:00
}
& .btn {
float: right;
margin-top: -5px;
margin-right: -5px;
}
}
2015-05-14 21:10:32 +08:00
.notifications-content {
2015-03-24 12:37:38 +08:00
max-height: 600px;
overflow: auto;
2015-05-14 21:10:32 +08:00
padding-bottom: 10px;
2015-03-24 12:37:38 +08:00
}
.no-notifications {
color: @fl-body-muted-color;
text-align: center;
padding: 50px 0;
font-size: 16px;
}
2015-05-14 21:10:32 +08:00
.notification-group {
border-top: 1px solid @fl-body-secondary-color;
margin-top: -1px;
&:not(:last-child) {
margin-bottom: 20px;
}
}
.notification-group-header {
font-weight: bold;
color: @fl-body-heading-color !important;
2015-05-18 17:26:11 +08:00
padding: 6px 15px;
2015-05-14 21:10:32 +08:00
display: block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.notifications-list {
list-style: none;
margin: 0;
padding: 0;
}
2015-03-24 12:37:38 +08:00
.notification {
& > a {
display: block;
2015-05-18 17:26:11 +08:00
padding: 8px 15px 8px 70px;
2015-03-24 12:37:38 +08:00
color: @fl-body-muted-color;
overflow: hidden;
.unread& {
background: @fl-body-secondary-color;
}
&:hover {
text-decoration: none;
background: @fl-body-secondary-color;
}
}
& .avatar {
2015-05-14 21:10:32 +08:00
.avatar-size(24px);
2015-03-24 12:37:38 +08:00
float: left;
2015-05-18 17:26:11 +08:00
margin: -2px 0 -2px -55px;
2015-03-24 12:37:38 +08:00
}
2015-05-14 21:10:32 +08:00
& .icon {
float: left;
margin-left: -23px;
2015-03-24 12:37:38 +08:00
font-size: 14px;
2015-05-14 21:10:32 +08:00
margin-top: 2px;
2015-03-24 12:37:38 +08:00
}
& .username {
font-weight: bold;
}
2015-05-14 21:10:32 +08:00
& .content {
margin-right: 5px;
}
& time {
font-size: 11px;
font-weight: bold;
text-transform: uppercase;
}
2015-03-24 12:37:38 +08:00
}
@media @phone {
.notification {
& > a {
padding-left: 60px;
}
& .avatar {
margin-left: -45px;
.avatar-size(32px);
}
}
}