mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
Switch to separate vars for alert vertical/horizontal padding
This commit is contained in:
parent
6d6538fc81
commit
6321f9342e
@ -3,7 +3,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
.alert {
|
.alert {
|
||||||
padding: $alert-padding;
|
padding: $alert-padding-y $alert-padding-x;
|
||||||
margin-bottom: $spacer-y;
|
margin-bottom: $spacer-y;
|
||||||
border: $alert-border-width solid transparent;
|
border: $alert-border-width solid transparent;
|
||||||
@include border-radius($alert-border-radius);
|
@include border-radius($alert-border-radius);
|
||||||
@ -26,13 +26,13 @@
|
|||||||
// Expand the right padding and account for the close button's positioning.
|
// Expand the right padding and account for the close button's positioning.
|
||||||
|
|
||||||
.alert-dismissible {
|
.alert-dismissible {
|
||||||
padding-right: ($alert-padding * 2);
|
padding-right: ($alert-padding-x * 2);
|
||||||
|
|
||||||
// Adjust close link position
|
// Adjust close link position
|
||||||
.close {
|
.close {
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -.125rem;
|
top: -.125rem;
|
||||||
right: -$alert-padding;
|
right: -$alert-padding-x;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -701,7 +701,8 @@ $modal-sm: 300px !default;
|
|||||||
//
|
//
|
||||||
// Define alert colors, border radius, and padding.
|
// Define alert colors, border radius, and padding.
|
||||||
|
|
||||||
$alert-padding: 1rem !default;
|
$alert-padding-x: 1.25rem !default;
|
||||||
|
$alert-padding-y: .75rem !default;
|
||||||
$alert-border-radius: $border-radius !default;
|
$alert-border-radius: $border-radius !default;
|
||||||
$alert-link-font-weight: bold !default;
|
$alert-link-font-weight: bold !default;
|
||||||
$alert-border-width: $border-width !default;
|
$alert-border-width: $border-width !default;
|
||||||
|
Loading…
Reference in New Issue
Block a user