_override-bootstrap.scss 734 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. @import 'override-bootstrap-variables';
  2. @import 'layout_variable';
  3. * {
  4. outline: none !important;
  5. }
  6. :root {
  7. font-size: $font-size-root;
  8. }
  9. //** alert with custom color
  10. .alert {
  11. a:not(.btn) {
  12. color: white;
  13. }
  14. }
  15. @each $theme-color, $color in $theme-colors {
  16. .alert.alert-#{$theme-color} {
  17. color: white;
  18. background: $color;
  19. border: initial;
  20. border-radius: initial;
  21. a:not(.btn) {
  22. &:hover,
  23. &:focus {
  24. color: lighten($color, 30%);
  25. }
  26. }
  27. }
  28. }
  29. // Navs
  30. .nav-tabs {
  31. .nav-item {
  32. margin-right: 0.15rem;
  33. }
  34. }
  35. // Dropdowns
  36. .dropdown {
  37. .dropdown-toggle.btn.disabled {
  38. cursor: not-allowed;
  39. }
  40. }
  41. //Modals
  42. .modal-content {
  43. box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.1);
  44. }