debian-mirror-gitlab/app/assets/stylesheets/framework/flash.scss

45 lines
700 B
SCSS
Raw Normal View History

2014-09-02 18:07:02 +05:30
.flash-container {
cursor: pointer;
margin: 0;
2016-08-24 12:49:21 +05:30
margin-bottom: $gl-padding;
2014-09-02 18:07:02 +05:30
font-size: 14px;
z-index: 100;
.flash-notice {
2015-04-26 12:48:37 +05:30
@extend .alert;
@extend .alert-info;
margin: 0;
2014-09-02 18:07:02 +05:30
}
.flash-alert {
2015-04-26 12:48:37 +05:30
@extend .alert;
@extend .alert-danger;
margin: 0;
2014-09-02 18:07:02 +05:30
}
2016-08-24 12:49:21 +05:30
.flash-notice, .flash-alert {
border-radius: $border-radius-default;
.container-fluid.container-limited.flash-text {
background: transparent;
}
}
&.flash-container-page {
margin-bottom: 0;
.flash-notice, .flash-alert {
border-radius: 0;
}
}
2014-09-02 18:07:02 +05:30
}
2016-08-24 12:49:21 +05:30
@media (max-width: $screen-md-min) {
ul.notes {
.flash-container.timeline-content {
margin-left: 0;
}
}
}