Skip to content

Commit a7f34dd

Browse files
authored
Fix dark mode design compatibility (#401)
1 parent 98cf2c5 commit a7f34dd

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
44

5-
# 1.23.1
5+
# 1.23.1 - unreleased
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, #eee);
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, #FFF);
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, white);
112+
color: var(--color-text, black);
113113
font-size: 0; /*hide line return spacings*/
114114
}
115115

0 commit comments

Comments
 (0)