Skip to content

Commit 4c27cdf

Browse files
committed
Fix dark mode design compatibility
1 parent 98cf2c5 commit 4c27cdf

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee
44

55
# 1.23.1
66
- Fix issue with whitespaces in URL when URL in tab was copied
7+
- Fixed dark mode compatiblity, making some previously invisible elements visible
78

89
# 1.23.0 - 2021-08-30
910

src/Resources/views/style/httplug.css.twig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
border-radius: 2px 0px 0px 2px;
4747
border: 0;
4848
line-height: inherit;
49-
background-color: #eee;
49+
background-color: var(--metric-value-background);
5050
opacity: 1;
5151
font-size: 14px;
5252
flex: 1;
@@ -88,7 +88,7 @@
8888
display: flex;
8989
justify-content: space-between;
9090

91-
background: #FFF;
91+
background: var(--table-background);
9292
border: 1px solid #E0E0E0;
9393
box-shadow: 0px 0px 1px rgba(128, 128, 128, .2);
9494
margin: 1em 0;
@@ -108,8 +108,8 @@
108108
overflow: hidden;
109109
text-overflow: ellipsis;
110110
white-space: nowrap;
111-
background: white;
112-
color: black;
111+
background: var(--table-background);
112+
color: var(--color-text);
113113
font-size: 0; /*hide line return spacings*/
114114
}
115115

0 commit comments

Comments
 (0)