aboutsummaryrefslogtreecommitdiff
path: root/less/_alert.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-12-02 14:02:35 -0800
committerMark Otto <[email protected]>2014-12-02 14:02:35 -0800
commit27df020852ada46c85138c75736fbb4c4784eeeb (patch)
tree8d0bf84e33d4823e67fbe2283e19d2ddc73f5dab /less/_alert.less
parent6bd84210ffe766b18fd3cd11a5da4f5ee0d43ecc (diff)
downloadbootstrap-27df020852ada46c85138c75736fbb4c4784eeeb.tar.xz
bootstrap-27df020852ada46c85138c75736fbb4c4784eeeb.zip
convert to scss
Diffstat (limited to 'less/_alert.less')
-rw-r--r--less/_alert.less67
1 files changed, 0 insertions, 67 deletions
diff --git a/less/_alert.less b/less/_alert.less
deleted file mode 100644
index f7e911dc0..000000000
--- a/less/_alert.less
+++ /dev/null
@@ -1,67 +0,0 @@
-//
-// Alerts
-// --------------------------------------------------
-
-
-// Base styles
-// -------------------------
-
-.alert {
- padding: @alert-padding;
- margin-bottom: @line-height-computed;
- border: 1px solid transparent;
- .border-radius(@alert-border-radius);
-
- // Headings for larger alerts
- h4 {
- margin-top: 0;
- // Specified for the h4 to prevent conflicts of changing @headings-color
- color: inherit;
- }
- // Provide class for links that match alerts
- .alert-link {
- font-weight: @alert-link-font-weight;
- }
-
- // Improve alignment and spacing of inner content
- > p,
- > ul {
- margin-bottom: 0;
- }
- > p + p {
- margin-top: 5px;
- }
-}
-
-// Dismissible alerts
-//
-// Expand the right padding and account for the close button's positioning.
-
-.alert-dismissible {
- padding-right: (@alert-padding + 20);
-
- // Adjust close link position
- .close {
- position: relative;
- top: -2px;
- right: -21px;
- color: inherit;
- }
-}
-
-// Alternate styles
-//
-// Generate contextual modifier classes for colorizing the alert.
-
-.alert-success {
- .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);
-}
-.alert-info {
- .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);
-}
-.alert-warning {
- .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);
-}
-.alert-danger {
- .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);
-}