alerts-rtl.less 433 B

123456789101112131415161718192021
  1. //
  2. // RTL Alerts
  3. // --------------------------------------------------
  4. // Dismissable alerts
  5. //
  6. // Expand the left padding and account for the close button's positioning.
  7. .alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.
  8. .alert-dismissible {
  9. padding-left: (@alert-padding + 20);
  10. padding-right: (@alert-padding);
  11. // Adjust close link position
  12. .close {
  13. right: auto;
  14. left: -21px;
  15. }
  16. }