phpvms/resources/sass/admin/paper/_alerts.scss

65 lines
1.1 KiB
SCSS
Raw Normal View History

2017-08-18 03:54:14 +08:00
.alert{
border: 0;
border-radius: 0;
color: #FFFFFF;
padding: 10px 15px;
font-size: 14px;
2017-08-18 03:54:14 +08:00
.container &{
border-radius: 4px;
2017-08-18 03:54:14 +08:00
}
.navbar &{
border-radius: 0;
left: 0;
position: absolute;
right: 0;
top: 85px;
width: 100%;
z-index: 3;
}
.navbar:not(.navbar-transparent) &{
top: 70px;
}
2017-08-18 03:54:14 +08:00
span[data-notify="icon"]{
font-size: 30px;
display: block;
left: 15px;
position: absolute;
top: 50%;
2017-08-18 07:26:48 +08:00
margin-top: -20px;
2017-08-18 03:54:14 +08:00
}
2017-08-18 03:54:14 +08:00
.close ~ span{
display: block;
max-width: 89%;
}
2017-08-18 03:54:14 +08:00
&[data-notify="container"]{
padding: 10px 10px 10px 20px;
border-radius: $border-radius-base;
}
2017-08-18 03:54:14 +08:00
&.alert-with-icon{
padding-left: 65px;
}
}
.alert-info{
2017-08-18 07:26:48 +08:00
background-color: $bg-info;
color: $info-states-color;
2017-08-18 03:54:14 +08:00
}
.alert-success {
2017-08-18 07:26:48 +08:00
background-color: $bg-success;
color: $success-states-color;
2017-08-18 03:54:14 +08:00
}
.alert-warning {
2017-08-18 07:26:48 +08:00
background-color: $bg-warning;
color: $warning-states-color;
2017-08-18 03:54:14 +08:00
}
.alert-danger {
background-color: $danger-color;
color: #FFF;
2017-08-18 03:54:14 +08:00
}
2017-08-18 07:26:48 +08:00