172 lines
4.6 KiB
CSS
172 lines
4.6 KiB
CSS
/*!
|
|
* Tabler v1.0.0-beta19 (https://tabler.io)
|
|
* @version 1.0.0-beta19
|
|
* @link https://tabler.io
|
|
* Copyright 2018-2023 The Tabler Authors
|
|
* Copyright 2018-2023 codecalm.net Paweł Kuna
|
|
* Licensed under MIT (https://github.com/tabler/tabler/blob/master/LICENSE)
|
|
*/
|
|
/* prettier-ignore */
|
|
/* prettier-ignore */
|
|
/* Functional styling;
|
|
* These styles are required for noUiSlider to function.
|
|
* You don't need to change these rules to apply your design.
|
|
*/
|
|
|
|
/* Wrapper for all connect elements.
|
|
*/
|
|
|
|
/* Offset direction
|
|
*/
|
|
|
|
/* Give origins 0 height/width so they don't interfere with clicking the
|
|
* connect elements.
|
|
*/
|
|
|
|
/* Slider size and handle placement;
|
|
*/
|
|
|
|
/* Styling;
|
|
* Giving the connect element a border radius causes issues with using transform: scale
|
|
*/
|
|
|
|
/* Handles and cursors;
|
|
*/
|
|
|
|
/* Handle stripes;
|
|
*/
|
|
|
|
/* Disabled state;
|
|
*/
|
|
|
|
/* Base;
|
|
*
|
|
*/
|
|
|
|
/* Values;
|
|
*
|
|
*/
|
|
|
|
/* Markings;
|
|
*
|
|
*/
|
|
|
|
/* Horizontal layout;
|
|
*
|
|
*/
|
|
|
|
/* Vertical layout;
|
|
*
|
|
*/
|
|
|
|
.litepicker {
|
|
--litepicker-month-weekday-color: var(--tblr-secondary);
|
|
--litepicker-button-prev-month-color: var(--tblr-secondary);
|
|
--litepicker-button-next-month-color: var(--tblr-secondary);
|
|
--litepicker-button-prev-month-color-hover: var(--tblr-primary);
|
|
--litepicker-button-next-month-color-hover: var(--tblr-primary);
|
|
--litepicker-day-color: var(--tblr-body-color);
|
|
--litepicker-day-color-hover: var(--tblr-primary);
|
|
--litepicker-is-end-color-bg: var(--tblr-primary);
|
|
--litepicker-is-today-color: var(--tblr-primary);
|
|
--litepicker-month-header-color: var(--tblr-body-color);
|
|
--litepicker-container-months-color-bg: var(--tblr-bg-surface);
|
|
font: inherit;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
.litepicker svg {
|
|
fill: none !important;
|
|
}
|
|
.datepicker-inline .litepicker {
|
|
box-shadow: var(--tblr-box-shadow-input);
|
|
}
|
|
|
|
/**
|
|
* Tom Select bootstrap 5
|
|
*/
|
|
/**
|
|
* tom-select.css (v//@@version)
|
|
* Copyright (c) contributors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
|
* file except in compliance with the License. You may obtain a copy of the License at:
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software distributed under
|
|
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
|
* ANY KIND, either express or implied. See the License for the specific language
|
|
* governing permissions and limitations under the License.
|
|
*
|
|
*/
|
|
:root {
|
|
--ts-pr-clear-button: 0;
|
|
--ts-pr-caret: 0;
|
|
--ts-pr-min: .75rem;
|
|
}
|
|
@keyframes lds-dual-ring {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
|
|
.was-validated .valid {
|
|
border-color: var(--tblr-form-valid-color);
|
|
}
|
|
|
|
.was-validated .valid:not(.single) {
|
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232fb344' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20 6 9 17 4 12'%3e%3c/polyline%3e%3c/svg%3e");
|
|
background-position: right calc(0.3571428572em + 0.28125rem) center;
|
|
background-size: calc(0.7142857143em + 0.5625rem) calc(0.7142857143em + 0.5625rem);
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.was-validated .valid.single {
|
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23929dab' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232fb344' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20 6 9 17 4 12'%3e%3c/polyline%3e%3c/svg%3e");
|
|
background-position: right 0.75rem center, center right 2.25rem;
|
|
background-size: 16px 12px, calc(0.7142857143em + 0.5625rem) calc(0.7142857143em + 0.5625rem);
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
:root {
|
|
--ts-pr-clear-button: 0rem;
|
|
--ts-pr-caret: 0rem;
|
|
}
|
|
|
|
svg {
|
|
touch-action: none;
|
|
}
|
|
|
|
image, text {
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
@keyframes jvm-line-animation {
|
|
from {
|
|
stroke-dashoffset: 250;
|
|
}
|
|
}
|
|
|
|
.dropzone {
|
|
border: var(--tblr-border-width) dashed var(--tblr-border-color);
|
|
color: var(--tblr-secondary);
|
|
padding: 1rem;
|
|
}
|
|
|
|
body {
|
|
--plyr-color-main: var(--tblr-primary);
|
|
}
|
|
|
|
:root {
|
|
--gl-star-size: auto;
|
|
--gl-star-color: var(--tblr-yellow);
|
|
--gl-star-color-inactive: var(--tblr-border-color);
|
|
} |