Skip to content

Commit

Permalink
client: default language
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizzick committed Jan 18, 2023
1 parent ca9abc1 commit 1ff34f7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/src/components/App/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
--rt-nodata-bgcolor: #1c1c1c;
--rt-nodata-color: #fff;
--modal-overlay-bgcolor: #1c1c1c;
--logs__table-bgcolor: #a5a5a5;
--logs__table-bgcolor: #3d3d3d;
--logs__row--blue-bgcolor: #467fcf;
--logs__row--white-bgcolor: #1c1c1c;
--detailed-info-color: #fff;
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Logs/Logs.css
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@

.logs__no-data {
color: var(--mcolor);
background-color: var(--logs__row--white-bgcolor);
background-color: var(--logs__table-bgcolor);
pointer-events: none;
font-weight: 600;
text-align: center;
Expand Down
13 changes: 12 additions & 1 deletion client/src/components/ui/Select.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@
}

.basic-multi-select .select__control {
border: 1px solid rgba(0, 40, 100, 0.12);
border: 1px solid var(--card-border-color);;
border-radius: 3px;
background-color: var(--ctrl-bgcolor);
}

.basic-multi-select .select__control:hover {
Expand All @@ -53,4 +54,14 @@

.basic-multi-select .select__menu {
z-index: 3;
background-color: var(--ctrl-bgcolor);
}

[data-theme=dark] .basic-multi-select .select__option:hover {
background-color: var(--ctrl-select-bgcolor);
color: var(--ctrl-dropdown-color);
}

[data-theme=dark] .select__multi-value__remove svg {
filter: invert(1);
}

0 comments on commit 1ff34f7

Please sign in to comment.