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';
|
2018-07-18 21:26:45 +03:00
|
|
|
|
2018-08-14 21:28:46 +03:00
|
|
|
html,
|
|
|
|
body,
|
|
|
|
#root {
|
2018-09-01 12:37:58 +03:00
|
|
|
height: 100%;
|
2018-08-14 21:28:46 +03:00
|
|
|
}
|
|
|
|
|
2018-05-13 12:58:35 +03:00
|
|
|
* {
|
2018-06-03 13:57:03 +03:00
|
|
|
outline: none !important;
|
2018-05-13 12:58:35 +03:00
|
|
|
}
|
2018-06-16 12:24:42 +03:00
|
|
|
|
2018-07-29 19:13:18 +03:00
|
|
|
.bg-main {
|
|
|
|
background-color: $mainColor !important;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2018-10-29 01:06:57 +03:00
|
|
|
.dropdown-item.active:not(:disabled),
|
|
|
|
.dropdown-item:active:not(:disabled) {
|
2018-09-16 10:35:39 +03:00
|
|
|
background-color: $lightGrey !important;
|
|
|
|
color: inherit !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;
|
2018-08-11 19:27:51 +03:00
|
|
|
background-color: $mainColor;
|
|
|
|
}
|
2018-08-11 22:41:01 +03:00
|
|
|
|
|
|
|
.react-datepicker__input-container,
|
|
|
|
.react-datepicker-wrapper {
|
|
|
|
display: block !important;
|
|
|
|
}
|
2018-08-15 09:51:20 +03:00
|
|
|
|
2020-10-03 12:22:21 +03:00
|
|
|
.react-datepicker-popper {
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
.pagination .page-link {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2019-03-09 15:20:43 +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
|
|
|
|
|
|
|
.react-datepicker__day--keyboard-selected {
|
|
|
|
background-color: $mainColor;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: darken($mainColor, 12%);
|
|
|
|
}
|
|
|
|
}
|
2020-05-11 20:32:42 +03:00
|
|
|
|
|
|
|
.progress-bar {
|
|
|
|
background-color: $mainColor;
|
|
|
|
}
|