Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.

Commit 0edd9cf

Browse files
ericawrightjasonLaster
authored andcommitted
color fixes (#5314)
1 parent 2c00135 commit 0edd9cf

File tree

8 files changed

+11
-13
lines changed

8 files changed

+11
-13
lines changed

src/components/PrimaryPanes/Sources.css

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,6 @@
5151
transform: rotate(0deg);
5252
}
5353

54-
.theme-dark .sources-list .tree .node:not(.focused) img.arrow {
55-
background: var(--theme-content-color3);
56-
}
57-
5854
.theme-dark .source-list .tree .node.focused {
5955
background-color: var(--theme-tab-toolbar-background);
6056
}

src/components/SecondaryPanes/Expressions.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@
3939
.input-expression::placeholder {
4040
text-align: center;
4141
font-style: italic;
42-
color: var(--theme-comment-alt);
43-
opacity: 1;
42+
color: var(--theme-comment);
4443
}
4544

4645
.input-expression:focus {

src/components/SecondaryPanes/SecondaryPanes.css

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,6 @@
4343
cursor: default;
4444
}
4545

46-
.theme-dark .secondary-panes .accordion .arrow svg {
47-
fill: var(--theme-content-color3);
48-
}
49-
5046
.secondary-panes .breakpoints-buttons {
5147
display: flex;
5248
}

src/components/WelcomeBox.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
text-align: left;
5656
float: left;
5757
margin-left: 25px;
58+
color: var(--theme-comment);
5859
}
5960

6061
html .welcomebox .toggle-button-end.collapsed {

src/components/shared/Accordion.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@
44

55
:root {
66
--accordion-header-background: var(--theme-toolbar-background);
7+
--disclosure-arrow: #b2b2b2;
78
}
89

910
:root.theme-dark {
1011
--accordion-header-background: #222225;
12+
--disclosure-arrow: #7f7f81;
1113
}
1214

1315
.accordion {
@@ -78,3 +80,7 @@
7880
.accordion .header-buttons button::-moz-focus-inner {
7981
border: none;
8082
}
83+
84+
.accordion .arrow svg {
85+
fill: var(--disclosure-arrow);
86+
}

src/components/shared/Button/Close.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
.close-btn .close {
1717
mask: url(/images/close.svg) no-repeat;
1818
mask-size: 100%;
19-
background-color: var(--theme-comment-alt);
19+
background-color: var(--theme-comment);
2020
width: 8px;
2121
height: 8px;
2222
transition: all 0.15s ease-in-out;

src/components/shared/SearchInput.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757

5858
.search-field .magnifying-glass path,
5959
.search-field .magnifying-glass ellipse {
60-
stroke: var(--theme-splitter-color);
60+
stroke: var(--theme-comment);
6161
}
6262

6363
.search-field input::placeholder {

src/components/shared/Svg.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ img.arrow {
7979
width: 9px;
8080
height: 9px;
8181
padding-top: 9px;
82-
background: var(--theme-splitter-color);
82+
background: var(--disclosure-arrow);
8383
mask-size: 100%;
8484
display: inline-block;
8585
margin-bottom: 1px;

0 commit comments

Comments
 (0)