Browse Source

xbb scrollbar

pull/221/head
Marius 4 years ago
parent
commit
6f39034b03
  1. 44
      CSS/themes/xbackbone/xbackbone-base.css

44
CSS/themes/xbackbone/xbackbone-base.css

@ -14,6 +14,45 @@
background: var(--main-bg-color) !important; background: var(--main-bg-color) !important;
} }
/* Scrollbar */
@media only screen and (min-width: 768px) {
html {
height: 100%;
width: 100%;
overflow: hidden;
}
body {
overflow-y: auto;
height: 100%;
background: var(--main-bg-color)
}
}
::-webkit-scrollbar {
width: 14px;
}
::-webkit-scrollbar-thumb {
min-height: 50px;
border: 3px solid transparent;
border-radius: 8px;
background-color: hsla(0, 0%, 100%, .2);
background-clip: padding-box;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar-thumb:hover {
min-height: 50px;
border: 3px solid transparent;
border-radius: 8px;
background-color: hsla(0, 0%, 100%, .5);
background-clip: padding-box;
}
/* TEXT */ /* TEXT */
body, body,
.table, .table,
@ -86,12 +125,15 @@ a:hover {
.table-hover>tbody>tr:hover { .table-hover>tbody>tr:hover {
color: var(--text-hover); color: var(--text-hover);
} }
.table { .table {
border-color: rgb(255 255 255 / 20%); border-color: rgb(255 255 255 / 20%);
} }
.table>:not(:last-child)>:last-child>* { .table>:not(:last-child)>:last-child>* {
border-bottom-color: rgb(255 255 255 / 50%); border-bottom-color: rgb(255 255 255 / 50%);
} }
/* BUTTONS */ /* BUTTONS */
.btn-light { .btn-light {
@ -201,9 +243,11 @@ textarea.form-control:focus {
outline: 0; outline: 0;
box-shadow: 0 0 0 0.25rem rgb(var(--accent-color), .25); box-shadow: 0 0 0 0.25rem rgb(var(--accent-color), .25);
} }
.dropzone { .dropzone {
border: 2px dashed rgb(255 255 255 / 30%); border: 2px dashed rgb(255 255 255 / 30%);
} }
/* PAGINATION */ /* PAGINATION */
.page-link { .page-link {
color: var(--button-text); color: var(--button-text);

Loading…
Cancel
Save