Skip to content

Commit 001c04b

Browse files
authored
Some style tweaks
+ Moved #universe in the extension pop up down 2px and gave it a bottom margin of 3px, to make it feel vertically centered against the white background. + Moved #version-notice up and to the right a bit to suit the changes to #universe.
1 parent 2ea30cc commit 001c04b

1 file changed

Lines changed: 25 additions & 2 deletions

File tree

chrome extension/style.css

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,10 @@ border-radius: 4px;
125125
width: calc(100% - 4px);
126126
background-color: #424242;
127127
color: #ffffff;
128+
129+
position: relative;
130+
top: 2px;
131+
margin-bottom: 3px;
128132
}
129133

130134
a, a:visited {
@@ -338,8 +342,8 @@ input.textbox {
338342
#version-notice {
339343
display: block;
340344
position: fixed;
341-
bottom: 0;
342-
left: 0;
345+
bottom: 2px;
346+
left: 4px;
343347
float: left;
344348
opacity: 0.5;
345349
}
@@ -352,4 +356,23 @@ input.textbox {
352356
font-size: 10px;
353357
color: rgba(255,255,255,0.5);
354358
z-index: -1;
359+
}
360+
361+
#logger {
362+
display: block;
363+
overflow: auto;
364+
overflow-y: auto;
365+
white-space: pre;
366+
-ms-word-break: break-all;
367+
word-break: break-all;
368+
word-break: break-word;
369+
overflow-wrap: break-word;
370+
word-wrap: break-word;
371+
-webkit-hyphens: auto;
372+
-ms-hyphens: auto;
373+
-moz-hyphens: auto;
374+
hyphens: auto;
375+
max-height: 250px;
376+
border-top: solid 1px #c6c6c6;
377+
border-bottom: solid 1px #c6c6c6;
355378
}

0 commit comments

Comments
 (0)