jellyfin-web/dashboard-ui/css/notifications.css

182 lines
4.7 KiB
CSS
Raw Normal View History

.btnNotifications {
2014-07-17 15:21:35 -07:00
text-decoration: none !important;
2014-06-21 22:52:31 -07:00
}
.btnNotificationsInner {
2014-07-17 15:21:35 -07:00
text-decoration: none !important;
2013-07-06 14:23:32 -07:00
vertical-align: middle;
2014-12-19 23:06:27 -07:00
border-radius: 1000px;
2015-01-09 22:53:35 -07:00
padding: 5px 10px;
2013-07-06 14:23:32 -07:00
text-align: center;
text-decoration: none !important;
-moz-user-select: none;
-webkit-user-select: none;
2014-06-23 09:05:19 -07:00
background-color: #444;
2014-06-21 22:52:31 -07:00
color: #fff;
2014-12-19 23:06:27 -07:00
font-size: 13px;
2014-06-23 09:05:19 -07:00
font-weight: normal;
2013-07-06 14:23:32 -07:00
}
.levelNormal {
background-color: #4d90fe;
background-image: -webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#4787ed));
background-image: -webkit-linear-gradient(top,#4d90fe,#4787ed);
background-image: -moz-linear-gradient(top,#4d90fe,#4787ed);
background-image: -ms-linear-gradient(top,#4d90fe,#4787ed);
background-image: -o-linear-gradient(top,#4d90fe,#4787ed);
background-image: linear-gradient(top,#4d90fe,#4787ed);
2014-07-17 15:21:35 -07:00
color: #fff !important;
2013-07-06 14:23:32 -07:00
}
.levelWarning {
background-color: #FF7537;
background-image: none;
2014-07-17 15:21:35 -07:00
color: #fff !important;
2013-07-06 14:23:32 -07:00
}
.levelError {
background-color: #d14836;
background-image: -webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#d14836));
background-image: -webkit-linear-gradient(top,#dd4b39,#d14836);
background-image: -moz-linear-gradient(top,#dd4b39,#d14836);
background-image: -ms-linear-gradient(top,#dd4b39,#d14836);
background-image: -o-linear-gradient(top,#dd4b39,#d14836);
background-image: linear-gradient(top,#dd4b39,#d14836);
2014-07-17 15:21:35 -07:00
color: #fff !important;
2013-07-06 16:08:10 -07:00
}
2013-07-06 14:23:32 -07:00
.flyoutNotification {
2014-07-17 15:21:35 -07:00
border-top: 1px solid #eee;
padding: 0 0 .5em;
2013-07-06 14:23:32 -07:00
}
.flyoutNotification p {
2013-07-06 16:08:10 -07:00
margin: .5em 0;
2013-07-07 08:53:26 -07:00
white-space: normal;
max-width: 95%;
2013-07-06 14:23:32 -07:00
}
2014-06-07 12:46:24 -07:00
.flyoutNotification:last-child {
2014-07-17 15:21:35 -07:00
border-bottom: 1px solid #eee;
2014-06-07 12:46:24 -07:00
}
2014-07-17 15:21:35 -07:00
.notificationTime {
color: green;
2013-07-06 14:23:32 -07:00
}
.notificationImage {
2014-07-17 15:21:35 -07:00
margin: 0 .5em 0 1em;
padding: .5em 0;
display: inline-block;
vertical-align: top;
2013-07-06 14:23:32 -07:00
display: none;
}
2014-07-17 15:21:35 -07:00
.notificationContent {
display: inline-block;
vertical-align: top;
overflow: hidden;
2013-07-06 14:23:32 -07:00
}
2014-07-17 15:21:35 -07:00
.unreadFlyoutNotification {
color: blue;
}
.notificationsList {
2014-06-07 12:46:24 -07:00
border-bottom: 1px solid #ddd;
}
2013-07-06 14:23:32 -07:00
.imgNotification, .imgNotificationInner {
2013-07-06 16:08:10 -07:00
width: 40px;
height: 40px;
2013-07-06 14:23:32 -07:00
}
.imgNotificationInner {
background-repeat: no-repeat;
background-size: contain;
background-position: center center;
}
.imgNotificationIcon {
background-size: 50% auto;
}
.imgNotificationNormal {
background-color: #4d90fe;
background-image: -webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#4787ed));
background-image: -webkit-linear-gradient(top,#4d90fe,#4787ed);
background-image: -moz-linear-gradient(top,#4d90fe,#4787ed);
background-image: -ms-linear-gradient(top,#4d90fe,#4787ed);
background-image: -o-linear-gradient(top,#4d90fe,#4787ed);
background-image: linear-gradient(top,#4d90fe,#4787ed);
}
2013-07-06 16:08:10 -07:00
.imgNotificationNormal .imgNotificationInner {
background-image: url(images/notifications/info.png);
}
2013-07-06 14:23:32 -07:00
.imgNotificationError {
background-color: #d14836;
background-image: -webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#d14836));
background-image: -webkit-linear-gradient(top,#dd4b39,#d14836);
background-image: -moz-linear-gradient(top,#dd4b39,#d14836);
background-image: -ms-linear-gradient(top,#dd4b39,#d14836);
background-image: -o-linear-gradient(top,#dd4b39,#d14836);
background-image: linear-gradient(top,#dd4b39,#d14836);
}
2013-07-06 16:08:10 -07:00
.imgNotificationError .imgNotificationInner {
background-image: url(images/notifications/error.png);
}
2013-07-06 14:23:32 -07:00
.imgNotificationWarning {
background-color: #FF7537;
}
2013-07-06 16:08:10 -07:00
.imgNotificationWarning .imgNotificationInner {
background-image: url(images/notifications/error.png);
2015-01-22 23:15:15 -07:00
}
.waves-effect {
position: relative;
cursor: pointer;
display: inline-block;
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: transparent;
z-index: 1;
will-change: opacity, transform;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.btn-flat {
box-shadow: none;
background-color: transparent;
color: #343434;
cursor: pointer;
}
.btn, .btn-large, .btn-flat {
display: inline-block;
height: 36px;
margin-bottom: 15px;
padding: 0 2rem;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background-clip: padding-box;
line-height: 36px;
text-transform: uppercase;
border: none;
outline: 0;
-webkit-tap-highlight-color: transparent;
}