mirror of
https://github.com/Eugeny/tabby-web.git
synced 2025-06-08 05:29:52 +00:00
83 lines
1.8 KiB
SCSS
83 lines
1.8 KiB
SCSS
@import "vars";
|
|
|
|
@import "~bootstrap/scss/functions";
|
|
@import "~bootstrap/scss/variables";
|
|
@import "~bootstrap/scss/mixins";
|
|
@import "~bootstrap/scss/utilities";
|
|
|
|
@import "~bootstrap/scss/root";
|
|
@import "~bootstrap/scss/reboot";
|
|
@import "~bootstrap/scss/type";
|
|
// @import "~bootstrap/scss/images";
|
|
@import "~bootstrap/scss/containers";
|
|
@import "~bootstrap/scss/grid";
|
|
// @import "~bootstrap/scss/tables";
|
|
@import "~bootstrap/scss/forms";
|
|
@import "~bootstrap/scss/buttons";
|
|
@import "~bootstrap/scss/transitions";
|
|
@import "~bootstrap/scss/dropdown";
|
|
@import "~bootstrap/scss/button-group";
|
|
// @import "~bootstrap/scss/nav";
|
|
// @import "~bootstrap/scss/navbar";
|
|
// @import "~bootstrap/scss/card";
|
|
// @import "~bootstrap/scss/accordion";
|
|
// @import "~bootstrap/scss/breadcrum/b";
|
|
// @import "~bootstrap/scss/pagination";
|
|
@import "~bootstrap/scss/badge";
|
|
// @import "~bootstrap/scss/alert";
|
|
// @import "~bootstrap/scss/progress";
|
|
@import "~bootstrap/scss/list-group";
|
|
// @import "~bootstrap/scss/close";
|
|
// @import "~bootstrap/scss/toasts";
|
|
@import "~bootstrap/scss/modal";
|
|
// @import "~bootstrap/scss/tooltip";
|
|
// @import "~bootstrap/scss/popover";
|
|
// @import "~bootstrap/scss/carousel";
|
|
// @import "~bootstrap/scss/spinners";
|
|
// @import "~bootstrap/scss/offcanvas";
|
|
|
|
// Helpers
|
|
@import "~bootstrap/scss/helpers";
|
|
@import "~bootstrap/scss/utilities/api";
|
|
|
|
::-webkit-scrollbar-track
|
|
{
|
|
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
|
background-color: $gray-900;
|
|
}
|
|
|
|
::-webkit-scrollbar
|
|
{
|
|
height: 6px;
|
|
width: 6px;
|
|
background-color: #F5F5F5;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb
|
|
{
|
|
background-color: $gray-700;
|
|
}
|
|
|
|
|
|
.dropdown-menu {
|
|
box-shadow: $dropdown-box-shadow;
|
|
}
|
|
|
|
.modal-header, .modal-body {
|
|
padding: $modal-inner-padding $modal-inner-padding * 2;
|
|
}
|
|
|
|
.modal-footer {
|
|
background: #00000030;
|
|
}
|
|
|
|
a, button {
|
|
fa-icon {
|
|
opacity: .75;
|
|
}
|
|
|
|
fa-icon + * {
|
|
margin-left: 5px;
|
|
}
|
|
}
|