ffplayout/assets/scss/globals.scss

228 lines
3.8 KiB
SCSS
Raw Normal View History

2022-10-12 20:16:13 +02:00
#__nuxt,
#__layout,
#__layout > div,
#__layout > div > div {
height: 100%;
width: 100%;
2020-04-17 15:01:38 +02:00
}
2022-10-12 20:16:13 +02:00
@font-face {
2020-04-20 18:05:59 +02:00
font-family: "DigitalNumbers-Regular";
src: url("~@/assets/fonts/DigitalNumbers-Regular.woff2") format("woff2");
font-weight: normal;
font-style: normal;
}
2020-05-12 13:07:42 +02:00
.date-row {
height: 40px;
width: 100%;
padding-top: 7px;
2020-05-12 13:07:42 +02:00
margin: 0;
}
.date-div {
width: 250px;
float: right;
}
2020-05-12 14:15:09 +02:00
.text-dark {
color: #aab1b9 !important;
}
.rounded-circle {
background-image: none;
}
.btn-outline-primary {
color: #e1e9f4;
}
2020-04-17 15:01:38 +02:00
.breadcrumb {
2022-10-12 20:16:13 +02:00
margin-bottom: 0.2em;
2020-04-17 15:01:38 +02:00
}
2020-04-08 17:24:46 +02:00
.browser-item {
background: none;
2022-10-12 20:16:13 +02:00
padding: 0.1em;
2020-04-08 17:24:46 +02:00
border: none;
}
.browser-icons {
2022-10-12 20:16:13 +02:00
margin-right: 0.5em;
2020-04-08 17:24:46 +02:00
}
2020-04-13 21:35:53 +02:00
.breadcrumb {
2022-10-12 20:16:13 +02:00
background-color: #32383e;
2020-04-13 21:35:53 +02:00
background-image: none;
}
.duration {
float: right;
2022-10-12 20:16:13 +02:00
margin-right: 0.5em;
2020-04-13 21:35:53 +02:00
}
2020-04-15 18:10:26 +02:00
2022-10-12 20:16:13 +02:00
.form-control,
.tags-list ul li div input,
.custom-select,
.custom-control-label::before {
2020-04-15 18:10:26 +02:00
color: #e4e4e4;
2022-10-12 20:16:13 +02:00
background-color: #32383e;
2020-04-15 18:10:26 +02:00
}
2022-10-12 20:16:13 +02:00
.form-control:disabled,
.form-control[readonly] {
2020-04-15 18:10:26 +02:00
color: #b4b4b4;
2022-10-12 20:16:13 +02:00
background-color: #485159;
2020-04-15 18:10:26 +02:00
}
.custom-select {
2022-10-12 20:16:13 +02:00
background: #32383e
url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='rgb(228, 228, 228)' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e")
no-repeat right 1rem center/8px 10px;
2020-04-15 18:10:26 +02:00
}
2022-10-12 20:16:13 +02:00
.form-control:focus,
.form-control.focus,
.b-form-tags.focus,
.custom-select:focus {
2020-04-15 18:10:26 +02:00
color: #f5f5f5;
background-color: #424a53;
}
2020-04-16 18:26:12 +02:00
2020-04-20 18:05:59 +02:00
.custom-file-label {
background-color: #424a53;
color: #f5f5f5;
}
.custom-file-label::after {
2022-10-12 20:16:13 +02:00
background-color: #32383e;
2020-04-20 18:05:59 +02:00
color: #f5f5f5;
}
2020-04-16 18:26:12 +02:00
.alert {
margin-bottom: 0;
2020-12-30 22:08:21 +01:00
width: 100%;
float: right;
2020-04-16 18:26:12 +02:00
}
2020-04-17 15:01:38 +02:00
2020-04-30 17:10:20 +02:00
.browser-div {
width: 100%;
max-height: 100%;
}
.browser-div .ps {
2022-10-12 20:16:13 +02:00
padding-left: 0.4em;
2020-04-30 17:10:20 +02:00
}
.ps__thumb-x {
display: none;
}
.splitpanes__pane {
width: 30%;
}
.splitpanes.default-theme .splitpanes__pane {
background-color: $dark;
2022-10-12 20:16:13 +02:00
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2) inset;
2020-04-30 17:10:20 +02:00
justify-content: center;
align-items: center;
display: flex;
position: relative;
}
2022-10-12 20:16:13 +02:00
.default-theme.splitpanes--vertical > .splitpanes__splitter,
.default-theme .splitpanes--vertical > .splitpanes__splitter {
2020-04-30 17:10:20 +02:00
border-left: 1px solid $dark;
}
.splitpanes.default-theme .splitpanes__splitter {
background-color: $dark;
}
2022-10-12 20:16:13 +02:00
.splitpanes.default-theme .splitpanes__splitter::after,
.splitpanes.default-theme .splitpanes__splitter::before {
2020-04-30 17:10:20 +02:00
background-color: rgba(136, 136, 136, 0.38);
}
2022-10-12 20:16:13 +02:00
.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
2020-05-04 13:57:08 +02:00
background-color: transparent;
2020-04-17 15:01:38 +02:00
}
2020-04-19 21:40:35 +02:00
2020-04-20 18:05:59 +02:00
.browser-icons-col {
max-width: 10px;
}
.browser-play-col {
max-width: 15px;
text-align: center;
margin: 0;
padding: 0;
}
.browser-dur-col {
min-width: 95px;
margin: 0;
padding: 0 10px 0 0;
}
2021-02-05 10:23:19 +01:00
.player-browser-scroll {
2021-02-05 09:54:58 +01:00
height: calc(100% - 50px);
2022-09-07 17:05:47 +02:00
overflow: auto;
scrollbar-width: medium;
2020-04-20 18:05:59 +02:00
}
2021-02-05 10:23:19 +01:00
.browser-div .media-browser-scroll {
2020-04-20 18:05:59 +02:00
height: 100%;
2022-09-07 17:05:47 +02:00
overflow: auto;
scrollbar-width: medium;
2020-04-20 18:05:59 +02:00
}
.playlist-container .ps {
height: 94.5%;
}
.browser-list {
max-height: 93%;
overflow-y: scroll;
}
.browser-item-text {
display: inline-block;
max-width: 95%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.progress-bar {
2022-10-12 20:16:13 +02:00
background-color: #ff9c36;
2020-04-19 21:40:35 +02:00
}
2020-04-24 13:58:21 +02:00
.grabbing {
cursor: -webkit-grabbing;
cursor: grabbing;
}
2022-10-12 20:16:13 +02:00
::-webkit-scrollbar {
width: 9px;
height: 9px;
}
::-webkit-scrollbar-track,
::-webkit-scrollbar-corner {
background: transparent;
}
::-webkit-scrollbar-thumb {
background-color: rgba(60, 65, 65, 0.705);
border-radius: 5px;
border: transparent;
min-height: 40px;
}