| /*! |
| * Bootstrap v3.3.7 (http://getbootstrap.com) |
| * Copyright (c) 2011-2016 Twitter, Inc. |
| * |
| * Permission is hereby granted, free of charge, to any person obtaining a copy |
| * of this software and associated documentation files (the "Software"), to deal |
| * in the Software without restriction, including without limitation the rights |
| * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| * copies of the Software, and to permit persons to whom the Software is |
| * furnished to do so, subject to the following conditions: |
| * |
| * The above copyright notice and this permission notice shall be included in |
| * all copies or substantial portions of the Software. |
| * |
| * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| * THE SOFTWARE. |
| */ |
| |
| // |
| // 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-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0. |
| .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); |
| } |