Skip to content

Commit 234d6ab

Browse files
author
Kristan Kenney
committed
Update debug mode
1 parent 0ed8ded commit 234d6ab

File tree

5 files changed

+42
-3
lines changed

5 files changed

+42
-3
lines changed

web/css/src/themes/dark.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ body {
88
background-color: #282828;
99
}
1010

11+
.debug-panel-contents {
12+
background-color: #282828;
13+
}
14+
1115
b,
1216
strong {
1317
color: #cacaca;

web/css/src/themes/default.css

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,10 @@ body {
166166
background-color: #fff;
167167
}
168168

169+
.debug-panel-contents {
170+
background-color: #fff;
171+
}
172+
169173
/* HTML5 display definitions
170174
========================================================================== */
171175
/**
@@ -4166,6 +4170,36 @@ form#vstobjects.suspended {
41664170
}
41674171

41684172

4173+
.debug-panel-header {
4174+
width: 100%;
4175+
text-align: center;
4176+
border-bottom: 1px solid rgba(255,255,255,0.25);
4177+
box-shadow: 0px -2px 4px rgb(0 0 0 / 40%);
4178+
font-size: 0.75rem;
4179+
padding: 10px;
4180+
background-color: yellow;
4181+
color: #000;
4182+
position: sticky;
4183+
top: 0;
4184+
z-index: 3001;
4185+
}
4186+
4187+
.debug-panel-header a {
4188+
font-weight: 500;
4189+
color: #000;
4190+
}
4191+
4192+
.debug-panel-contents {
4193+
font-size:12px !important;
4194+
padding:18px;
4195+
position:sticky;
4196+
top:0;
4197+
z-index:3000;
4198+
height:250px;
4199+
overflow-x: hidden;
4200+
overflow-y: scroll;
4201+
}
4202+
41694203
@media screen and (max-width: 950px) {
41704204
.helper-container {
41714205
display: none;

0 commit comments

Comments
 (0)