_shortcodes.scss 725 B

1234567891011121314151617181920212223242526272829303132
  1. @import "variables";
  2. /**
  3. Alert
  4. */
  5. .alert {
  6. border: 1px solid;
  7. border-radius: 2px;
  8. padding: 0 12px;
  9. &.primary { border-color: $color-default; background: transparentize($color-default, 0.9); }
  10. &.danger { border-color: $color-danger; background: transparentize($color-danger, 0.9); }
  11. &.warning { border-color: $color-warning; background: transparentize($color-warning, 0.9); }
  12. &.success { border-color: $color-success; background: transparentize($color-success, 0.9); }
  13. }
  14. /**
  15. Config option
  16. */
  17. .config-option-info {
  18. display: flex;
  19. margin-top: -16px;
  20. .type, .default {
  21. margin-right: 12px;
  22. }
  23. .label{
  24. display: inline-block;
  25. color: $gray-700;
  26. }
  27. }