Files
SCM-Manager/scm-ui/ui-styles/src/components/_main.scss

898 lines
17 KiB
SCSS
Raw Normal View History

2021-04-30 16:13:19 +02:00
/*
* MIT License
*
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
// TODO split into multiple files
2018-12-19 16:39:46 +01:00
.is-ellipsis-overflow {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.is-word-break {
2020-09-01 10:14:04 +02:00
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
2020-09-01 10:01:52 +02:00
word-break: break-word;
}
2018-12-19 16:39:46 +01:00
.has-rounded-border {
border-radius: 0.25rem;
}
.is-full-width {
width: 100%;
}
.fitParent {
// TODO get rid of important
margin: 0 !important;
// 3.8em for line-numbers
padding: 0 0 0 3.8em !important;
}
// shown in top section when pageactions set
hr.header-with-actions {
margin-top: -10px;
@media screen and (max-width: 768px) {
display: none;
}
}
.is-mobile-action-spacing {
@media screen and (max-width: 768px) {
display: flow-root !important;
.input-field {
padding: 0;
margin: 0 0 1.25rem 0 !important;
width: 100%;
}
.input-button {
// TODO color def
border: 2px solid #e9f7fd;
padding: 1em 1em;
margin-top: 0 !important;
width: 100%;
text-align: center !important;
}
}
}
footer.footer {
2020-02-20 11:31:21 +01:00
background-color: $white-ter;
2020-02-19 13:35:04 +01:00
padding: inherit;
2020-02-20 11:31:21 +01:00
a {
color: darken($info, 15%);
2020-02-20 11:31:21 +01:00
}
2018-12-19 16:39:46 +01:00
}
.has-hover-background-blue:hover {
background-color: scale-color($blue, $alpha: -90%);
}
2019-09-14 00:35:27 +02:00
// readability issues with original color
.has-text-warning {
// TODO color def
color: #ffb600 !important;
2019-09-14 00:35:27 +02:00
}
.has-text-warning-invert {
color: $warning-invert;
}
2019-09-14 00:35:27 +02:00
.has-text-blue-light {
color: $blue-light;
}
.has-background-blue-light {
background-color: $blue-light;
}
2019-09-14 00:35:27 +02:00
// border and background colors
.has-background-dark-75 {
2019-09-13 18:31:27 +02:00
background-color: $dark-75;
}
.has-background-dark-50 {
2019-09-13 18:31:27 +02:00
background-color: $dark-50;
}
.has-background-dark-25 {
2019-09-13 18:31:27 +02:00
background-color: $dark-25;
}
.has-background-info-75 {
2019-09-13 18:31:27 +02:00
background-color: $info-75;
}
.has-background-info-50 {
2019-09-13 18:31:27 +02:00
background-color: $info-50;
}
.has-background-info-25 {
2019-09-13 18:31:27 +02:00
background-color: $info-25;
}
.has-background-link-75 {
2019-09-13 18:31:27 +02:00
background-color: $link-75;
}
.has-background-link-50 {
2019-09-13 18:31:27 +02:00
background-color: $link-50;
}
.has-background-link-25 {
2019-09-13 18:31:27 +02:00
background-color: $link-25;
}
.has-background-primary-75 {
2019-09-13 18:31:27 +02:00
background-color: $primary-75;
}
.has-background-primary-50 {
2019-09-13 18:31:27 +02:00
background-color: $primary-50;
}
.has-background-primary-25 {
2019-09-13 18:31:27 +02:00
background-color: $primary-25;
}
.has-background-success-75 {
2019-09-13 18:31:27 +02:00
background-color: $success-75;
}
.has-background-success-50 {
2019-09-13 18:31:27 +02:00
background-color: $success-50;
}
.has-background-success-25 {
2019-09-13 18:31:27 +02:00
background-color: $success-25;
}
.has-background-warning-75 {
2019-09-13 18:31:27 +02:00
background-color: $warning-75;
}
.has-background-warning-50 {
2019-09-13 18:31:27 +02:00
background-color: $warning-50;
}
.has-background-warning-25 {
2019-09-13 18:31:27 +02:00
background-color: $warning-25;
}
.has-background-danger-75 {
2019-09-13 18:31:27 +02:00
background-color: $danger-75;
}
.has-background-danger-50 {
2019-09-13 18:31:27 +02:00
background-color: $danger-50;
}
.has-background-danger-25 {
2019-09-13 18:31:27 +02:00
background-color: $danger-25;
}
2019-09-17 13:08:17 +02:00
// tags
.tag:not(body) {
border: 1px solid transparent;
2019-09-18 00:58:19 +02:00
background-color: $white;
&.is-delete {
background-color: $light;
}
+ .is-delete {
2019-10-29 10:27:15 +01:00
border-color: #aaa;
border-width: 1px 1px 1px 0;
}
2019-09-19 15:52:24 +02:00
&.is-outlined {
background-color: $white;
}
&.is-black.is-outlined {
color: $black;
border-color: $black;
}
2019-09-19 15:52:24 +02:00
&.is-dark.is-outlined {
color: $dark;
border-color: $dark;
}
2019-09-19 15:52:24 +02:00
&.is-light.is-outlined {
color: $light;
border-color: $light;
}
2019-09-19 15:52:24 +02:00
&.is-white.is-outlined {
color: $white;
border-color: $white;
}
2019-09-19 15:52:24 +02:00
&.is-primary.is-outlined {
color: $primary;
border-color: $primary;
}
2019-09-19 15:52:24 +02:00
&.is-link.is-outlined {
color: $link;
border-color: $link;
}
2019-09-19 15:52:24 +02:00
&.is-info.is-outlined {
color: $info;
border-color: $info;
}
2019-09-19 15:52:24 +02:00
&.is-success.is-outlined {
color: $success;
border-color: $success;
}
2019-09-19 15:52:24 +02:00
&.is-warning.is-outlined {
color: $warning;
border-color: $warning;
}
2019-09-19 15:52:24 +02:00
&.is-danger.is-outlined {
color: $danger;
border-color: $danger;
}
2019-09-14 00:49:21 +02:00
}
2019-09-14 00:35:27 +02:00
// buttons
.button {
padding-left: 1.5em;
padding-right: 1.5em;
height: 2.5rem;
font-weight: $weight-semibold;
2019-09-14 00:35:27 +02:00
&.is-primary,
&.is-info,
&.is-link,
&.is-success,
&.is-warning,
&.is-danger {
&.is-outlined {
background-color: $white;
}
}
2019-09-14 00:35:27 +02:00
&.is-primary:hover,
&.is-primary.is-hovered {
background-color: scale-color($primary, $lightness: -10%);
}
&.is-primary:active,
&.is-primary.is-active {
background-color: scale-color($primary, $lightness: -20%);
}
&.is-info:hover,
&.is-info.is-hovered {
background-color: scale-color($info, $lightness: -10%);
}
&.is-info:active,
&.is-info.is-active {
background-color: scale-color($info, $lightness: -20%);
}
&.is-link:hover,
&.is-link.is-hovered {
background-color: scale-color($link, $lightness: -10%);
}
&.is-link:active,
&.is-link.is-active {
background-color: scale-color($link, $lightness: -20%);
}
&.is-success:hover,
&.is-success.is-hovered {
background-color: scale-color($success, $lightness: -10%);
}
&.is-success:active,
&.is-success.is-active {
background-color: scale-color($success, $lightness: -20%);
}
&.is-warning:hover,
&.is-warning.is-hovered {
background-color: scale-color($warning, $lightness: -10%);
}
&.is-warning:active,
&.is-warning.is-active {
background-color: scale-color($warning, $lightness: -20%);
}
&.is-danger:hover,
&.is-danger.is-hovered {
background-color: scale-color($danger, $lightness: -10%);
}
&.is-danger:active,
&.is-danger.is-active {
background-color: scale-color($danger, $lightness: -20%);
}
&.is-reduced-mobile,
2019-09-17 13:33:09 +02:00
&.reduced-mobile {
@media screen and (max-width: 1087px) {
> span:nth-child(2) {
display: none;
}
}
@media screen and (max-width: 1087px) and (min-width: 769px) {
// simultaneously with left margin of Bulma
> .icon:first-child:not(:last-child) {
margin: 0;
}
}
@media screen and (max-width: 768px) {
// simultaneously with left margin of Bulma
.icon:first-child:not(:last-child) {
margin-right: calc(-0.375em - 1px);
}
}
}
2019-09-14 00:35:27 +02:00
}
2018-12-19 16:39:46 +01:00
.box-link-shadow {
&:hover,
&:focus {
box-shadow: $box-link-hover-shadow;
2018-12-20 11:30:28 +01:00
}
2018-12-19 16:39:46 +01:00
&:active {
box-shadow: $box-link-active-shadow;
}
}
.notifications .dropdown-menu:before {
border: 0.4rem solid transparent;
}
2019-10-07 10:57:09 +02:00
@import "~@fortawesome/fontawesome-free/scss/fontawesome";
$fa-font-path: "~@fortawesome/fontawesome-free/webfonts";
@import "~@fortawesome/fontawesome-free/scss/solid";
@import "~@fortawesome/fontawesome-free/scss/regular";
@import "~@fortawesome/fontawesome-free/scss/brands";
2018-12-19 16:39:46 +01:00
2020-01-06 15:59:16 +01:00
@import "~react-diff-view/style/index";
2018-12-19 16:39:46 +01:00
// NEW STYLES
//typography
.has-border-white {
border-color: $white !important;
2018-12-19 16:39:46 +01:00
}
.has-border-success {
border-color: $success !important;
}
.has-border-info {
border-color: $info !important;
}
.has-border-danger {
border-color: $danger !important;
}
.has-border-warning {
border-color: $warning !important;
}
.has-border-primary {
2022-02-01 18:50:00 +01:00
border-color: $primary !important;
}
2019-05-02 14:02:18 +02:00
ul.is-separated {
2019-05-02 16:16:00 +02:00
> li:after {
2019-05-03 08:45:00 +02:00
content: ",\2800";
2019-05-02 16:16:00 +02:00
}
2019-05-03 08:34:06 +02:00
> li:last-child:after {
2019-05-02 16:16:00 +02:00
content: "";
2019-05-02 14:02:18 +02:00
}
}
// card columns for repo and plugins overview
.card-columns {
2019-07-09 16:12:02 +02:00
.column {
height: 160px;
margin-bottom: 1.5rem;
2019-07-09 16:12:02 +02:00
.overlay-column {
position: absolute;
height: calc(160px - 1.5rem);
2019-07-09 16:12:02 +02:00
}
}
2018-12-20 11:30:28 +01:00
.column.is-half {
width: calc(50% - 0.75rem);
2018-12-19 16:39:46 +01:00
@media screen and (max-width: 768px) {
width: 100%;
}
2018-12-20 11:30:28 +01:00
&:nth-child(odd) {
margin-right: 1.5rem;
@media screen and (max-width: 768px) {
margin-right: 0;
}
2018-12-19 16:39:46 +01:00
}
2019-01-24 13:31:42 +01:00
.overlay-column {
2019-01-24 13:31:42 +01:00
width: calc(50% - 3rem);
@media screen and (max-width: 768px) {
width: calc(100% - 1.5rem);
}
2019-01-24 13:31:42 +01:00
}
}
2019-07-09 16:12:02 +02:00
.column.is-full .overlay-column {
width: calc(100% - 1.5rem);
2018-12-20 11:30:28 +01:00
}
2019-07-09 16:12:02 +02:00
}
.content.is-plugin-page {
.card-columns {
2019-07-09 16:12:02 +02:00
.column.is-half .overlay-column {
width: calc(37.5% - 1.5rem);
}
.column.is-full .overlay-column {
width: calc(75% - 1.5rem);
}
@media screen and (max-width: 768px) {
.column.is-half .overlay-column,
.column.is-full .overlay-column {
width: calc(100% - 1.5rem);
}
2019-07-04 17:31:15 +02:00
}
2018-12-20 11:30:28 +01:00
}
2018-12-19 16:39:46 +01:00
}
2018-12-20 16:27:41 +01:00
.text-box {
width: calc(50% - 0.75rem);
.shorten-text {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
2018-12-19 16:39:46 +01:00
// tables
.table {
2018-12-20 11:30:28 +01:00
width: 100%;
2019-05-02 16:16:00 +02:00
td,
th {
border-color: $white-ter;
2018-12-20 11:30:28 +01:00
padding: 1rem;
}
2018-12-19 16:39:46 +01:00
}
// card tables
.card-table {
2018-12-20 11:30:28 +01:00
border-collapse: separate;
border-spacing: 0 5px;
2018-12-20 11:30:28 +01:00
tr {
a {
color: #363636;
2018-12-19 16:39:46 +01:00
}
&.border-is-green td:first-child {
border-left-color: $green;
}
&.border-is-yellow td:first-child {
border-left-color: $yellow;
}
&.is-primary td:first-child {
border-left-color: $primary;
}
&.is-success td:first-child {
border-left-color: $success;
}
&.is-warning td:first-child {
border-left-color: $warning;
}
&.is-danger td:first-child {
border-left-color: $danger;
}
&.is-info td:first-child {
border-left-color: $info;
}
&.is-link td:first-child {
border-left-color: $link;
}
2018-12-20 11:30:28 +01:00
&:hover {
td {
background-color: whitesmoke;
&.is-darker {
2018-12-20 11:30:28 +01:00
background-color: #e1e1e1;
2018-12-19 16:39:46 +01:00
}
2018-12-20 11:30:28 +01:00
}
a {
color: $blue;
}
2018-12-19 16:39:46 +01:00
}
2018-12-20 11:30:28 +01:00
}
td {
padding: 1em 1.25em;
background-color: #fafafa;
border-bottom: 1px solid whitesmoke;
2018-12-20 11:30:28 +01:00
&:first-child {
border-left: 3px solid $grey;
2018-12-19 16:39:46 +01:00
}
&.is-darker {
2018-12-20 11:30:28 +01:00
background-color: whitesmoke;
2018-12-19 16:39:46 +01:00
}
2018-12-20 11:30:28 +01:00
}
&.is-hoverable tbody tr:not(.is-selected):hover {
background-color: whitesmoke;
}
thead th {
background-color: transparent;
border: none;
}
2018-12-19 16:39:46 +01:00
}
2019-02-06 14:25:03 +01:00
// panels
2019-02-01 17:03:00 +01:00
.panel {
border: 1px solid $border;
2019-05-02 16:16:00 +02:00
border-radius: 0.25rem;
2019-04-17 15:18:34 +02:00
.panel-heading {
border: none;
border-bottom: 1px solid $border;
2019-05-02 16:16:00 +02:00
border-radius: 0.25rem 0.25rem 0 0;
2019-04-17 15:18:34 +02:00
> .field {
margin-bottom: 0; // replace selector margin
}
2019-02-06 14:25:03 +01:00
}
2019-04-17 15:18:34 +02:00
2019-02-01 10:12:45 +01:00
.panel-block {
display: block;
2019-04-17 15:18:34 +02:00
border: none;
2019-02-01 10:12:45 +01:00
}
.panel-footer {
background-color: whitesmoke;
color: #363636;
font-size: 1.25em;
font-weight: 300;
line-height: 1.25;
padding: 0.5em 0.75em;
2019-04-17 15:18:34 +02:00
border: none;
border-top: 1px solid $border;
2019-05-02 16:16:00 +02:00
border-radius: 0 0 0.25rem 0.25rem;
}
}
2018-12-19 16:39:46 +01:00
// forms
2019-02-06 15:36:00 +01:00
form .field:not(.is-grouped) {
2018-12-20 11:30:28 +01:00
margin-bottom: 1rem;
}
.input,
.select select,
.textarea,
.file-name {
2018-12-20 11:30:28 +01:00
box-shadow: none;
2018-12-19 16:39:46 +01:00
}
2019-04-17 18:17:21 +02:00
.select,
.select:hover {
&:not(.is-multiple):not(.is-loading) {
&.disabled::after {
2019-04-17 18:17:21 +02:00
border-color: #7a7a7a;
}
}
}
.help {
position: absolute;
}
// label with help-icon compensation
.label-icon-spacing {
margin-top: 30px;
@media screen and (max-width: 768px) {
margin-top: 0;
}
}
2018-12-19 16:39:46 +01:00
// pagination
2018-12-20 11:30:28 +01:00
.pagination-next,
.pagination-link,
.pagination-ellipsis {
padding-left: 1.5em;
padding-right: 1.5em;
2019-09-14 00:35:27 +02:00
height: 2.8rem;
min-width: 5rem;
2018-12-19 16:39:46 +01:00
}
2018-12-20 11:30:28 +01:00
.pagination-previous,
.pagination-next {
2019-09-14 00:35:27 +02:00
height: 2.8rem;
2018-12-20 11:30:28 +01:00
min-width: 6.75em;
2018-12-19 16:39:46 +01:00
}
.pagination-previous[disabled],
.pagination-next[disabled] {
background-color: #ededed;
color: #bcbcbc;
}
2019-09-14 00:35:27 +02:00
.pagination-link.is-current {
opacity: 1;
}
2018-12-19 16:39:46 +01:00
.has-scm-background {
background-image: url(images/scmManagerHero.jpg) !important;
background-size: cover;
background-position: top center;
background-color: #002e4b;
}
2019-09-14 00:35:27 +02:00
// hero
2018-12-19 16:39:46 +01:00
.hero.is-dark {
2018-12-20 11:30:28 +01:00
background-color: #002e4b;
2019-10-07 10:57:09 +02:00
background-image: url(images/scmManagerHero.jpg);
2018-12-20 11:30:28 +01:00
background-size: cover;
background-position: top center;
.tabs.is-boxed li.is-active a,
.tabs.is-boxed li.is-active a:hover,
.tabs.is-toggle li.is-active a,
.tabs.is-toggle li.is-active a:hover {
2018-12-19 16:39:46 +01:00
background-color: #28b1e8;
border-color: #28b1e8;
color: #fff;
2018-12-20 11:30:28 +01:00
}
2018-12-19 16:39:46 +01:00
}
2019-09-14 00:35:27 +02:00
// aside
2018-12-19 16:39:46 +01:00
.aside-background {
2018-12-20 11:30:28 +01:00
bottom: 0;
left: 50%;
position: absolute;
right: 0;
top: 0;
background-color: whitesmoke;
2018-12-19 16:39:46 +01:00
}
2019-09-14 00:35:27 +02:00
// menu
2018-12-19 16:39:46 +01:00
.menu {
2018-12-20 11:30:28 +01:00
div {
2018-12-19 16:39:46 +01:00
height: 100%;
margin-bottom: 1rem;
2018-12-20 11:30:28 +01:00
}
2018-12-19 16:39:46 +01:00
}
.menu-label {
display: flex;
height: 3.2rem;
align-items: center;
2018-12-20 11:30:28 +01:00
color: #fff;
font-size: 1em;
font-weight: 600;
background-color: $blue;
2018-12-20 11:30:28 +01:00
border-radius: 5px 5px 0 0;
padding: 0.5rem 1rem;
text-transform: none;
&:last-child,
&:not(:last-child) {
margin-bottom: 0;
}
2018-12-19 16:39:46 +01:00
}
.menu-list {
2018-12-20 11:30:28 +01:00
a {
2018-12-19 16:39:46 +01:00
color: #333;
padding: 1rem;
2018-12-20 11:30:28 +01:00
&.is-active {
color: $info;
2018-12-20 11:30:28 +01:00
background-color: #fff;
2018-12-19 16:39:46 +01:00
}
2018-12-20 11:30:28 +01:00
}
2019-01-29 08:58:45 +01:00
> li {
2019-01-18 13:42:48 +01:00
ul {
margin: 0;
border-top: 1px solid $white-ter;
2018-12-20 11:30:28 +01:00
2019-01-18 13:42:48 +01:00
li {
border-right: none;
}
li:last-child {
border-bottom: none;
2018-12-20 11:30:28 +01:00
}
2018-12-19 16:39:46 +01:00
}
2019-01-18 13:42:48 +01:00
2019-01-29 08:58:45 +01:00
> a.is-active:before {
position: relative;
content: " ";
background: $blue;
height: 53px;
width: 2px;
display: block;
left: -17px;
float: left;
top: -16px;
}
2019-01-18 14:32:35 +01:00
border-radius: 0;
border-top: 1px solid $white-ter;
border-left: 1px solid $white-ter;
border-right: 1px solid $white-ter;
2018-12-20 11:30:28 +01:00
}
> li:first-child {
2018-12-19 16:39:46 +01:00
border-top: none;
2018-12-20 11:30:28 +01:00
}
2019-01-18 13:42:48 +01:00
li:last-child {
border-bottom: 1px solid $white-ter;
2018-12-20 11:30:28 +01:00
}
div {
margin-bottom: 0;
}
2018-12-19 16:39:46 +01:00
}
2019-02-07 13:53:15 +01:00
2019-01-29 08:58:45 +01:00
.sub-menu li {
line-height: 1;
a {
padding: 0.75rem 1rem;
}
a:before {
font-family: "Font Awesome 5 Free"; /* NOSONAR */
2019-01-29 08:58:45 +01:00
font-weight: 900;
-webkit-font-smoothing: antialiased;
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
line-height: 1;
content: "\f105";
padding-right: 5px;
}
i {
display: none;
}
}
2019-07-24 08:56:12 +02:00
2019-09-14 00:35:27 +02:00
// modal
.modal-card {
border-radius: 6px;
.modal-card-foot {
justify-content: flex-end; // pulled-right
2019-09-14 00:35:27 +02:00
}
}
.is-overflow-visible {
overflow: visible;
}
.is-overflow-auto {
overflow: auto;
}
.is-border-bottom-radius-inherit {
border-bottom-left-radius: inherit;
border-bottom-right-radius: inherit;
}
.is-border-bottom-radius-unset {
border-bottom-left-radius: unset;
border-bottom-right-radius: unset;
}
// radio
//overwrite bulma's default margin
.radio + .radio {
margin-left: 0;
}
// NOTE: use .is-clickable instead!
2019-08-19 09:23:38 +02:00
.has-cursor-pointer {
cursor: pointer;
}
2019-07-24 08:56:12 +02:00
// fix tooltip bug in firefox
// for bulma-tooltip v3.0.0
[data-tooltip]:not(.is-disabled).has-tooltip-right::after,
[data-tooltip]:not(.is-loading).has-tooltip-right::after,
[data-tooltip]:not([disabled]).has-tooltip-right::after,
[data-tooltip]:not(.is-disabled).has-tooltip-left::after,
[data-tooltip]:not(.is-loading).has-tooltip-left::after,
[data-tooltip]:not([disabled]).has-tooltip-left::after {
height: 12px;
}
2020-01-08 12:58:13 +01:00
.diff-gutter-conflict {
background: $warning-50;
}
.diff-code-conflict {
background: $warning-25;
}
.small-loading-spinner {
position: relative;
pointer-events: none;
&:after {
@include loader;
}
}
.sg-sub-section + .sg-sub-section {
margin-top: 2.5rem;
}
.has-text-inherit {
color: inherit !important;
}
.has-text-default {
color: $text !important;
}
2021-11-16 15:35:03 +01:00
.autocomplete-entry__option--is-focused {
background-color: $link !important;
color: $link-invert !important;
}
.autocomplete-entry__option--is-selected {
// TODO better use link-light or something
background-color: $blue-light !important;
color: $link-invert !important;
}
.autocomplete-entry__single-value {
color: $text !important;
}
.autocomplete-entry > div {
color: $text-strong !important;
}
.autocomplete-entry__menu {
background-color: $background !important;
}
.autocomplete-entry__control {
background-color: $scheme-main !important;
border-color: $input-border-color !important;
}
.autocomplete-entry__control:hover {
border-color: $input-hover-border-color !important;
}
.autocomplete-entry__control--is-focused {
border-color: $input-focus-border-color !important;
box-shadow: $input-focus-box-shadow-size $input-focus-box-shadow-color !important;
}
.autocomplete-entry__control--is-focused:hover {
border-color: $input-focus-border-color !important;
box-shadow: $input-focus-box-shadow-size $input-focus-box-shadow-color !important;
}
.autocomplete-entry__input {
color: $text-strong !important;
2021-11-16 15:35:03 +01:00
}
.breadcrumb {
& .prefix-button {
border-right: 1px solid lightgray;
}
& li:not(:last-child)::after {
color: $breadcrumb-item-separator-color;
content: "\0002f";
}
}