shlink-web-client/src/index.scss

64 lines
927 B
SCSS
Raw Normal View History

@import './utils/base';
2018-08-14 20:28:46 +02:00
html,
body,
#root {
height: 100%;
2018-08-14 20:28:46 +02:00
}
* {
2018-06-03 12:57:03 +02:00
outline: none !important;
}
.bg-main {
background-color: $mainColor !important;
}
.dropdown-item:not(:disabled) {
cursor: pointer;
}
.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-20 22:32:50 +02:00
2018-08-11 18:27:51 +02:00
.badge-main {
color: #fff;
background-color: $mainColor;
}
2018-08-11 21:41:01 +02:00
.react-datepicker__input-container,
.react-datepicker-wrapper {
display: block !important;
}
.navbar-brand {
@media (max-width: $smMax) {
margin: 0 auto !important;
}
}
.pagination .page-link {
cursor: pointer;
}
2019-03-09 13:20:43 +01:00
.indivisible {
white-space: nowrap;
2019-03-09 13:20:43 +01:00
}
2020-01-12 12:08:26 +01:00
.text-ellipsis {
text-overflow: ellipsis;
overflow: hidden;
2020-01-12 12:08:26 +01:00
white-space: nowrap;
}
.react-datepicker__day--keyboard-selected {
background-color: $mainColor;
&:hover {
background-color: darken($mainColor, 12%);
}
}