filebrowser/assets/src/sass/_notifications.scss
Henrique Dias 963708855c fix #9
2015-09-20 13:04:33 +01:00

77 lines
1.4 KiB
SCSS

#noty_topRight_layout_container {
font-family : sans-serif;
top : 4em !important;
right : 1em !important;
position : fixed !important;
width : 310px;
height : auto;
margin : 0;
padding : 0;
list-style-type: none;
z-index : 10000000;
}
#noty_topRight_layout_container li {
overflow: hidden;
margin : 0 0 .25em;
}
.noty_bar {
color : #fff;
background-color: #cfd8dc;
border-radius : .3em;
}
.noty_message {
font-size : .75em;
font-weight: bold;
line-height: 1.2em;
text-align : left;
padding : 1em;
width : auto;
position : relative;
}
.noty_text {
display : block;
box-sizing : border-box;
margin-left: 3em;
top : 1em;
}
.noty_icon {
position : absolute;
left : 0;
top : 0;
box-sizing : border-box;
height : 100%;
padding : 1em;
background-color : rgba(0,0,0,.1);
border-top-left-radius : .3em;
border-bottom-left-radius: .3em;
text-align : center;
}
.noty_icon .fa {
width: 1em !important;
}
.noty_type_alert {
}
.noty_type_success {
background-color: #00c853;
}
.noty_type_error {
background-color: #ff5252;
}
.noty_type_warning {
background-color: #ffd600;
}
.noty_type_information {
background-color: #448aff;
}