mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
133 lines
2.1 KiB
SCSS
133 lines
2.1 KiB
SCSS
@import "constants";
|
|
@import "mixins";
|
|
|
|
// System notification partial
|
|
.system-notification {
|
|
border-bottom: 1px solid $color-gainsboro;
|
|
color: $color-emperor;
|
|
display: inline-block;
|
|
float: left;
|
|
min-height: 70px;
|
|
padding-bottom: 5px;
|
|
padding-top: 5px;
|
|
position: relative;
|
|
width: 100%;
|
|
|
|
&:hover {
|
|
background: $color-concrete;
|
|
color: $color-emperor;
|
|
opacity: .7;
|
|
}
|
|
|
|
.status-block {
|
|
float: left;
|
|
height: 0;
|
|
width: 60px;
|
|
|
|
.status-icon {
|
|
background: $brand-success;
|
|
border-radius: 15px;
|
|
height: 30px;
|
|
line-height: 32px;
|
|
margin: 15px 20px;
|
|
text-align: center;
|
|
width: 30px;
|
|
|
|
&.seen {
|
|
background: $color-gainsboro;
|
|
}
|
|
|
|
i {
|
|
color: $color-white;
|
|
font-size: 18px;
|
|
margin-top: 5px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.body-block {
|
|
float: right;
|
|
width: calc(100% - 70px);
|
|
|
|
.datetime {
|
|
font-size: 12px;
|
|
line-height: 20px;
|
|
opacity: .7;
|
|
}
|
|
|
|
.title {
|
|
font-weight: bold;
|
|
line-height: 20px;
|
|
margin: 0;
|
|
}
|
|
|
|
.message {
|
|
line-height: 20px;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
|
|
// Global system notification
|
|
#system-notifications-index {
|
|
display: inline-block;
|
|
position: relative;
|
|
width: 100%;
|
|
|
|
#search-bar-notifications {
|
|
border-bottom: 1px solid $color-gainsboro;
|
|
display: none;
|
|
margin: 10px 0 0;
|
|
padding: 0 0 10px;
|
|
width: 100%;
|
|
|
|
.form-group {
|
|
width: 100%;
|
|
|
|
.input-group {
|
|
max-width: 600px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.system-notifications-container {
|
|
display: inline-block;
|
|
width: 100%;
|
|
}
|
|
|
|
.no-notification-message {
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.title-container {
|
|
border-bottom: 1px solid $color-gainsboro;
|
|
left: -20px;
|
|
margin: 0;
|
|
padding-bottom: 10px;
|
|
padding-left: 20px;
|
|
position: relative;
|
|
width: calc(100% + 40px);
|
|
|
|
a {
|
|
font-size: 14px;
|
|
margin-left: 30px;
|
|
}
|
|
}
|
|
|
|
.btn-more-system-notifications {
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
|
|
#manage-module-system-notification-modal {
|
|
|
|
.modal-title {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.modal-body {
|
|
margin: 20px;
|
|
}
|
|
}
|