metamaps--metamaps/app/assets/stylesheets/notifications.scss.erb

166 lines
2.7 KiB
Plaintext
Raw Normal View History

$unread_notifications_dot_size: 8px;
.unread-notifications-dot {
width: $unread_notifications_dot_size;
height: $unread_notifications_dot_size;
background-color: #e22;
border-radius: $unread_notifications_dot_size / 2;
position: absolute;
top: 0;
right: 0;
}
.upperRightUI {
.notificationsIcon {
position: relative;
}
}
.controller-notifications {
ul.notifications {
list-style: none;
}
.notificationPage,
.notificationsPage {
2016-11-28 22:37:27 +00:00
font-family: 'din-regular', Sans-Serif;
& a:hover {
text-decoration: none;
}
2016-12-08 19:39:41 +00:00
& > .notification-title {
border-bottom: 1px solid #eee;
padding-bottom: 0.25em;
margin-bottom: 0.5em;
}
.back {
margin-top: 1em;
}
}
.notificationsPage {
header {
margin-bottom: 0;
}
2016-12-13 07:42:33 +00:00
.emptyInbox {
padding-top: 15px;
}
.notification {
padding: 10px;
2016-12-16 04:57:37 +00:00
position: relative;
&:hover {
background: #F6F6F6;
2016-12-16 04:57:37 +00:00
.notification-read-unread {
display:block;
}
.notification-date {
display: none;
}
}
& > a {
float: left;
width: 85%;
box-sizing: border-box;
padding-right: 10px;
}
2016-12-16 04:57:37 +00:00
.notification-actor {
float: left;
2016-12-16 04:57:37 +00:00
img {
width: 32px;
height: 32px;
border-radius: 16px;
}
}
.notification-body {
2016-12-16 04:57:37 +00:00
margin-left: 50px;
line-height: 20px;
2016-12-16 04:57:37 +00:00
.in-bold {
font-family: 'din-medium', Sans-Serif;
}
2016-12-16 04:57:37 +00:00
.action {
background: #4fb5c0;
color: #FFF;
padding: 2px 6px;
border-radius: 3px;
display: inline-block;
margin: 5px 0;
}
}
.notification-date {
position: absolute;
top: 50%;
right: 10px;
color: #607d8b;
font-size: 13px;
line-height: 13px;
margin-top: -6px;
}
.notification-read-unread {
display: none;
float: left;
width: 15%;
a {
position: absolute;
top: 50%;
margin-top: -10px;
text-align: center;
}
}
&.unread {
background: #EEE;
}
}
}
2016-12-08 19:39:41 +00:00
.notificationPage {
.thirty-two-avatar {
display: inline-block;
width: 32px;
height: 32px;
border-radius: 16px;
vertical-align: middle;
}
.button {
line-height: 32px;
img {
margin-top: 8px;
}
&.decline {
background: #DB5D5D;
&:hover {
background: #DC4B4B;
}
}
}
.notification-body {
p, div {
margin: 1em auto;
line-height: 20px;
}
2016-12-08 19:39:41 +00:00
}
}
}