mirror of
https://github.com/flarum/framework.git
synced 2024-12-12 06:03:39 +08:00
e466dcc626
Most of #137 done. - Use FastClick to make everything feel more responsive - Use transforms for animations to make them silky smooth - Style the drawer the same as the header to keep things simple - Revert to fixed composer, but allow it to be minimised - Add a separate notifications page for mobile so it’s easy to go back - Add indicator to the menu button when there are unread notifications - Close the drawer when navigating away - Make dropdowns/modals scrollable - Many other mobile tweaks and bug fixes Didn’t take much care to keep CSS clean, due to #103
148 lines
2.6 KiB
Plaintext
148 lines
2.6 KiB
Plaintext
.notifications {
|
|
& .dropdown-menu {
|
|
padding: 0;
|
|
overflow: hidden;
|
|
|
|
& .notifications-content {
|
|
max-height: 600px;
|
|
overflow: auto;
|
|
padding-bottom: 10px;
|
|
}
|
|
}
|
|
& .dropdown-toggle .label {
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
.notification-list {
|
|
& .loading-indicator {
|
|
height: 100px;
|
|
}
|
|
}
|
|
@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 {
|
|
background: @fl-body-primary-color;
|
|
color: #fff;
|
|
}
|
|
.notifications-header {
|
|
@media @tablet, @desktop, @desktop-hd {
|
|
padding: 12px 15px;
|
|
border-bottom: 1px solid @fl-body-secondary-color;
|
|
|
|
& h4 {
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
margin: 0;
|
|
color: @fl-body-muted-color;
|
|
}
|
|
& .btn {
|
|
float: right;
|
|
margin-top: -5px;
|
|
margin-right: -5px;
|
|
}
|
|
}
|
|
}
|
|
.no-notifications {
|
|
color: @fl-body-muted-color;
|
|
text-align: center;
|
|
padding: 50px 0;
|
|
font-size: 16px;
|
|
}
|
|
.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;
|
|
padding: 6px 15px;
|
|
display: block;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.notification-group-list {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.notification {
|
|
& > a {
|
|
display: block;
|
|
padding: 8px 15px 8px 70px;
|
|
color: @fl-body-muted-color;
|
|
overflow: hidden;
|
|
|
|
.unread& {
|
|
background: @fl-body-secondary-color;
|
|
}
|
|
&:hover {
|
|
text-decoration: none;
|
|
background: @fl-body-secondary-color;
|
|
}
|
|
}
|
|
& .avatar {
|
|
.avatar-size(24px);
|
|
float: left;
|
|
margin: -2px 0 -2px -55px;
|
|
}
|
|
& .icon {
|
|
float: left;
|
|
margin-left: -23px;
|
|
font-size: 14px;
|
|
margin-top: 2px;
|
|
}
|
|
& .username {
|
|
font-weight: bold;
|
|
}
|
|
& .content {
|
|
margin-right: 5px;
|
|
}
|
|
& time {
|
|
font-size: 11px;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
}
|
|
}
|
|
|
|
.drawer-toggle.unread-notifications {
|
|
position: relative;
|
|
|
|
&:after {
|
|
content: ' ';
|
|
display: block;
|
|
position: absolute;
|
|
background: @fl-body-primary-color;
|
|
top: 4px;
|
|
right: 2px;
|
|
width: 14px;
|
|
height: 14px;
|
|
border-radius: 7px;
|
|
border: 2px solid @fl-body-bg;
|
|
}
|
|
}
|