| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- @import 'override-bootstrap-variables';
- @import 'layout_variable';
- * {
- outline: none !important;
- }
- :root {
- font-size: $font-size-root;
- }
- //** alert with custom color
- .alert {
- a:not(.btn) {
- color: white;
- }
- }
- @each $theme-color, $color in $theme-colors {
- .alert.alert-#{$theme-color} {
- color: white;
- background: $color;
- border: initial;
- border-radius: initial;
- a:not(.btn) {
- &:hover,
- &:focus {
- color: lighten($color, 30%);
- }
- }
- }
- }
- // Navs
- .nav-tabs {
- .nav-item {
- margin-right: 0.15rem;
- }
- }
- // Dropdowns
- .dropdown {
- .dropdown-toggle.btn.disabled {
- cursor: not-allowed;
- }
- }
- //Modals
- .modal-content {
- box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.1);
- }
|