You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
1.5 KiB
SCSS
99 lines
1.5 KiB
SCSS
// Copyright (C) 2020-2022 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
@import './base.scss';
|
|
|
|
hr {
|
|
border: none;
|
|
border-top: 1px solid $border-color-1;
|
|
height: 1px;
|
|
}
|
|
|
|
.cvat-spinner {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.cvat-spinner-container {
|
|
position: absolute;
|
|
background: $background-color-1;
|
|
opacity: 0.5;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 2;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.cvat-not-found {
|
|
margin: 10% 25%;
|
|
}
|
|
|
|
.cvat-text-color {
|
|
color: $text-color;
|
|
}
|
|
|
|
.cvat-title {
|
|
font-weight: 400;
|
|
font-size: 21px;
|
|
color: $text-color;
|
|
padding-top: 5px;
|
|
}
|
|
|
|
.ant-slider {
|
|
> .ant-slider-track {
|
|
background-color: $slider-color;
|
|
}
|
|
|
|
> .ant-slider-handle {
|
|
border-color: $slider-color;
|
|
}
|
|
}
|
|
|
|
.ant-notification {
|
|
top: $header-height !important;
|
|
right: 0 !important;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.cvat-info-circle-icon {
|
|
color: $info-icon-color;
|
|
}
|
|
|
|
.cvat-danger-circle-icon {
|
|
color: $danger-icon-color;
|
|
}
|
|
|
|
#root {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: grid;
|
|
min-width: 1024px;
|
|
}
|
|
|
|
#layout-grid {
|
|
overflow: hidden;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 9999;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.cvat-cloud-storage-select-provider {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
|
|
> svg {
|
|
margin-right: $grid-unit-size;
|
|
}
|
|
}
|
|
|
|
.cvat-divider {
|
|
margin: $grid-unit-size * 0.5 0;
|
|
}
|