diff options
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 111 |
1 files changed, 87 insertions, 24 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 9164d6876..baa88cc80 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -244,7 +244,7 @@ a, area, button, [role="button"], -input, +input:not([type=range]), label, select, summary, @@ -1689,51 +1689,105 @@ pre code { background-color: rgba(0, 0, 0, 0.075); } -.thead-inverse th { +.table .thead-dark th { color: #fff; background-color: #212529; + border-color: #32383e; } -.thead-default th { +.table .thead-light th { color: #495057; background-color: #e9ecef; + border-color: #e9ecef; } -.table-inverse { +.table-dark { color: #fff; background-color: #212529; } -.table-inverse th, -.table-inverse td, -.table-inverse thead th { +.table-dark th, +.table-dark td, +.table-dark thead th { border-color: #32383e; } -.table-inverse.table-bordered { +.table-dark.table-bordered { border: 0; } -.table-inverse.table-striped tbody tr:nth-of-type(odd) { +.table-dark.table-striped tbody tr:nth-of-type(odd) { background-color: rgba(255, 255, 255, 0.05); } -.table-inverse.table-hover tbody tr:hover { +.table-dark.table-hover tbody tr:hover { background-color: rgba(255, 255, 255, 0.075); } +@media (max-width: 575px) { + .table-responsive-sm { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; + } + .table-responsive-sm.table-bordered { + border: 0; + } +} + +@media (max-width: 767px) { + .table-responsive-md { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; + } + .table-responsive-md.table-bordered { + border: 0; + } +} + @media (max-width: 991px) { - .table-responsive { + .table-responsive-lg { display: block; width: 100%; overflow-x: auto; + -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } - .table-responsive.table-bordered { + .table-responsive-lg.table-bordered { border: 0; } } +@media (max-width: 1199px) { + .table-responsive-xl { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; + } + .table-responsive-xl.table-bordered { + border: 0; + } +} + +.table-responsive { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; +} + +.table-responsive.table-bordered { + border: 0; +} + .form-control { display: block; width: 100%; @@ -1825,6 +1879,7 @@ select.form-control:focus::-ms-value { padding-bottom: 0.5rem; margin-bottom: 0; line-height: 1.25; + background-color: transparent; border: solid transparent; border-width: 1px 0; } @@ -3475,6 +3530,8 @@ tbody.collapse.show { .navbar-collapse { -ms-flex-preferred-size: 100%; flex-basis: 100%; + -ms-flex-positive: 1; + flex-grow: 1; -ms-flex-align: center; align-items: center; } @@ -3542,6 +3599,8 @@ tbody.collapse.show { .navbar-expand-sm .navbar-collapse { display: -ms-flexbox !important; display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; } .navbar-expand-sm .navbar-toggler { display: none; @@ -3588,6 +3647,8 @@ tbody.collapse.show { .navbar-expand-md .navbar-collapse { display: -ms-flexbox !important; display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; } .navbar-expand-md .navbar-toggler { display: none; @@ -3634,6 +3695,8 @@ tbody.collapse.show { .navbar-expand-lg .navbar-collapse { display: -ms-flexbox !important; display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; } .navbar-expand-lg .navbar-toggler { display: none; @@ -3680,6 +3743,8 @@ tbody.collapse.show { .navbar-expand-xl .navbar-collapse { display: -ms-flexbox !important; display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; } .navbar-expand-xl .navbar-toggler { display: none; @@ -3729,6 +3794,8 @@ tbody.collapse.show { .navbar-expand .navbar-collapse { display: -ms-flexbox !important; display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; } .navbar-expand .navbar-toggler { @@ -4032,6 +4099,10 @@ tbody.collapse.show { } .breadcrumb { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; padding: 0.75rem 1rem; margin-bottom: 1rem; list-style: none; @@ -4039,16 +4110,6 @@ tbody.collapse.show { border-radius: 0.25rem; } -.breadcrumb::after { - display: block; - clear: both; - content: ""; -} - -.breadcrumb-item { - float: left; -} - .breadcrumb-item + .breadcrumb-item::before { display: inline-block; padding-right: 0.5rem; @@ -4811,6 +4872,7 @@ button.close { position: relative; width: auto; margin: 10px; + pointer-events: none; } .modal-content { @@ -4819,6 +4881,7 @@ button.close { display: flex; -ms-flex-direction: column; flex-direction: column; + pointer-events: auto; background-color: #fff; background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.2); @@ -5583,11 +5646,11 @@ a.bg-dark:focus, a.bg-dark:hover { } .rounded-circle { - border-radius: 50%; + border-radius: 50% !important; } .rounded-0 { - border-radius: 0; + border-radius: 0 !important; } .clearfix::after { |
