1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- .alert {
- padding: $alert-padding;
- margin-bottom: $line-height-computed;
- border: 1px solid transparent;
- border-radius: $alert-border-radius;
-
- h4 {
- margin-top: 0;
-
- color: inherit;
- }
-
- .alert-link {
- font-weight: $alert-link-font-weight;
- }
-
- > p,
- > ul {
- margin-bottom: 0;
- }
- > p + p {
- margin-top: 5px;
- }
- }
- .alert-dismissable {
- padding-right: ($alert-padding + 20);
-
- .close {
- position: relative;
- top: -2px;
- right: -21px;
- color: inherit;
- }
- }
- .alert-success {
- @include alert-variant($alert-success-bg, $alert-success-border, $alert-success-text);
- }
- .alert-info {
- @include alert-variant($alert-info-bg, $alert-info-border, $alert-info-text);
- }
- .alert-warning {
- @include alert-variant($alert-warning-bg, $alert-warning-border, $alert-warning-text);
- }
- .alert-danger {
- @include alert-variant($alert-danger-bg, $alert-danger-border, $alert-danger-text);
- }
|