2018-08-05 11:01:17 +03:00
|
|
|
@import './utils/base';
|
2020-12-08 13:39:16 +03:00
|
|
|
@import 'node_modules/bootstrap/scss/bootstrap.scss';
|
|
|
|
@import './common/react-tagsinput.scss';
|
2021-02-16 01:45:13 +03:00
|
|
|
@import './theme/theme';
|
2018-07-18 21:26:45 +03:00
|
|
|
|
2021-01-29 01:09:09 +03:00
|
|
|
* {
|
|
|
|
outline: none !important;
|
|
|
|
}
|
|
|
|
|
2018-08-14 21:28:46 +03:00
|
|
|
html,
|
|
|
|
body,
|
|
|
|
#root {
|
2018-09-01 12:37:58 +03:00
|
|
|
height: 100%;
|
2021-01-29 01:09:09 +03:00
|
|
|
background: var(--secondary-color);
|
|
|
|
color: var(--text-color);
|
2018-05-13 12:58:35 +03:00
|
|
|
}
|
2018-06-16 12:24:42 +03:00
|
|
|
|
2021-02-16 01:45:13 +03:00
|
|
|
@media (min-width: $smMin) {
|
|
|
|
#root {
|
|
|
|
transition: filter 300ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-open #root {
|
|
|
|
filter: blur(1.5px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-29 19:13:18 +03:00
|
|
|
.bg-main {
|
|
|
|
background-color: $mainColor !important;
|
|
|
|
}
|
|
|
|
|
2021-02-16 01:45:13 +03:00
|
|
|
.card-body,
|
|
|
|
.card-header,
|
|
|
|
.list-group-item {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-footer {
|
|
|
|
background-color: var(--primary-color-alfa);
|
|
|
|
}
|
|
|
|
|
2020-12-12 12:56:10 +03:00
|
|
|
.card {
|
|
|
|
box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
|
2021-02-16 01:45:13 +03:00
|
|
|
background-color: var(--primary-color);
|
2020-12-12 12:56:10 +03:00
|
|
|
}
|
|
|
|
|
2021-02-17 13:03:42 +03:00
|
|
|
.list-group {
|
|
|
|
background-color: var(--primary-color);
|
|
|
|
}
|
|
|
|
|
2021-02-16 01:45:13 +03:00
|
|
|
.modal-content,
|
|
|
|
.page-link,
|
|
|
|
.page-item.disabled .page-link,
|
|
|
|
.dropdown-menu {
|
2021-01-29 01:09:09 +03:00
|
|
|
background-color: var(--primary-color);
|
2020-12-12 12:56:10 +03:00
|
|
|
}
|
|
|
|
|
2021-02-16 01:45:13 +03:00
|
|
|
.modal-header,
|
|
|
|
.modal-footer,
|
|
|
|
.card-header,
|
|
|
|
.card-footer,
|
|
|
|
.table thead th,
|
|
|
|
.table th,
|
|
|
|
.table td,
|
|
|
|
.page-link,
|
|
|
|
.page-link:hover,
|
|
|
|
.page-item.disabled .page-link,
|
|
|
|
.dropdown-divider {
|
|
|
|
border-color: var(--border-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-link:hover {
|
|
|
|
background-color: var(--secondary-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-item.active .page-link {
|
|
|
|
background-color: var(--brand-color);
|
|
|
|
border-color: var(--brand-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.pagination .page-link {
|
|
|
|
cursor: pointer;
|
2020-12-12 12:56:10 +03:00
|
|
|
}
|
|
|
|
|
2020-12-14 20:39:19 +03:00
|
|
|
.container-xl {
|
|
|
|
@media (min-width: $xlgMin) {
|
|
|
|
max-width: 1320px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: $smMax) {
|
|
|
|
padding-right: 0;
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-16 01:45:13 +03:00
|
|
|
.dropdown-item {
|
|
|
|
color: var(--text-color);
|
|
|
|
}
|
|
|
|
|
2018-10-29 01:06:57 +03:00
|
|
|
.dropdown-item:not(:disabled) {
|
2018-07-27 19:05:09 +03:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2018-09-01 12:37:58 +03:00
|
|
|
|
2021-02-16 01:45:13 +03:00
|
|
|
.dropdown-item:focus:not(:disabled),
|
|
|
|
.dropdown-item:hover:not(:disabled),
|
2018-10-29 01:06:57 +03:00
|
|
|
.dropdown-item.active:not(:disabled),
|
|
|
|
.dropdown-item:active:not(:disabled) {
|
2021-02-16 01:45:13 +03:00
|
|
|
background-color: var(--active-color) !important;
|
|
|
|
color: var(--text-color) !important;
|
2018-07-18 21:26:45 +03:00
|
|
|
}
|
2018-07-20 23:32:50 +03:00
|
|
|
|
2018-08-11 19:27:51 +03:00
|
|
|
.badge-main {
|
2020-09-06 11:17:46 +03:00
|
|
|
color: #ffffff;
|
2021-02-16 01:45:13 +03:00
|
|
|
background-color: var(--brand-color);
|
2018-08-11 19:27:51 +03:00
|
|
|
}
|
2018-08-11 22:41:01 +03:00
|
|
|
|
2021-02-16 01:45:13 +03:00
|
|
|
.table,
|
|
|
|
.table-hover tbody tr:hover {
|
2021-01-29 01:15:42 +03:00
|
|
|
color: var(--text-color);
|
|
|
|
}
|
|
|
|
|
2020-12-12 18:55:01 +03:00
|
|
|
.table-hover tbody tr:hover {
|
2021-01-29 01:09:09 +03:00
|
|
|
background-color: var(--secondary-color);
|
2020-12-12 18:55:01 +03:00
|
|
|
}
|
|
|
|
|
2021-02-16 01:45:13 +03:00
|
|
|
.form-control,
|
|
|
|
.form-control:focus {
|
2021-02-17 13:03:42 +03:00
|
|
|
background-color: var(--primary-color);
|
2021-02-16 01:45:13 +03:00
|
|
|
border-color: var(--input-border-color);
|
2020-10-03 12:22:21 +03:00
|
|
|
}
|
|
|
|
|
2021-02-17 13:15:35 +03:00
|
|
|
.form-control.disabled,
|
|
|
|
.form-control:disabled {
|
|
|
|
background-color: var(--input-disabled-color);
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card .form-control:not(:disabled),
|
|
|
|
.card .form-control:not(:disabled):hover {
|
2021-02-17 13:03:42 +03:00
|
|
|
background-color: var(--input-color);
|
|
|
|
}
|
|
|
|
|
2018-08-15 09:51:20 +03:00
|
|
|
.navbar-brand {
|
|
|
|
@media (max-width: $smMax) {
|
2018-09-01 12:37:58 +03:00
|
|
|
margin: 0 auto !important;
|
2018-08-15 09:51:20 +03:00
|
|
|
}
|
|
|
|
}
|
2019-03-09 14:19:33 +03:00
|
|
|
|
2020-05-10 11:57:49 +03:00
|
|
|
.indivisible {
|
|
|
|
white-space: nowrap;
|
2019-03-09 15:20:43 +03:00
|
|
|
}
|
2020-01-12 14:08:26 +03:00
|
|
|
|
2020-12-08 12:57:27 +03:00
|
|
|
.pointer {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2020-05-10 11:57:49 +03:00
|
|
|
.text-ellipsis {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
2020-01-12 14:08:26 +03:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2020-02-02 11:30:41 +03:00
|
|
|
|
2020-05-11 20:32:42 +03:00
|
|
|
.progress-bar {
|
|
|
|
background-color: $mainColor;
|
|
|
|
}
|
2020-12-12 22:45:23 +03:00
|
|
|
|
|
|
|
.btn-xs-block {
|
|
|
|
@media (max-width: $xsMax) {
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-md-block {
|
|
|
|
@media (max-width: $mdMax) {
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|