discourse/app/assets/stylesheets/common/base/alert.scss
Joffrey JAFFEUX 174d392e5a
DEV: adds prettier (#5956)
Run `prettier --write "app/assets/stylesheets/**/*.scss" "plugins/**/*.scss"` after making sure you installed it with `yarn`

It's recommended to configure your editor to run prettier on file save.
2018-06-08 11:49:31 +02:00

48 lines
931 B
SCSS

.alert {
padding: 8px 35px 8px 14px;
background-color: $danger-low;
color: #c09853;
.close {
position: relative;
top: -2px;
right: -21px;
line-height: $line-height-small;
float: right;
font-size: $font-up-3;
font-weight: bold;
color: $primary;
opacity: 0.2;
filter: alpha(opacity = 20);
@include hover {
color: $primary;
text-decoration: none;
cursor: pointer;
opacity: 0.4;
filter: alpha(opacity = 40);
}
}
button.close {
padding: 0;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none;
}
&.alert-success {
background-color: $success-medium;
color: $primary;
}
&.alert-error {
background-color: rgba($danger-low, 0.5);
color: $primary;
}
&.alert-info {
background-color: $tertiary-low;
color: $primary;
&.clickable {
color: $tertiary;
}
}
}