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