Skip to content

Commit 0505212

Browse files
committed
Fix dark mode design compatibility
1 parent 9b46d82 commit 0505212

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

CHANGELOG.md

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

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

5+
# 1.23.1
6+
7+
- Fixed dark mode compatiblity, making some previously invisible elements visible
8+
59
# 1.23.0 - 2021-08-30
610

711
- Changed the way request/response body is displayed in profiler. symfony/var-dumper is used now.

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)