mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-01 16:33:06 +01:00
Fix bad font size in DOM inspector
Candidate for a revision for current stable release.
This commit is contained in:
parent
80f58a6357
commit
934b57019c
@ -1,5 +1,4 @@
|
||||
.codeMirrorContainer {
|
||||
font-size: 12px;
|
||||
line-height: 1.25;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
@ -9,6 +8,7 @@
|
||||
box-sizing: border-box;
|
||||
color: var(--ink-1);
|
||||
flex-grow: 1;
|
||||
font-size: var(--monospace-size);
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
@ -62,7 +62,7 @@ a:hover {
|
||||
code, .code {
|
||||
background-color: var(--surface-2);
|
||||
font-family: monospace;
|
||||
font-size: smaller;
|
||||
font-size: var(--monospace-size);
|
||||
padding: 2px 4px;
|
||||
}
|
||||
hr {
|
||||
|
@ -72,7 +72,7 @@ textarea {
|
||||
.vscrollable {
|
||||
direction: ltr;
|
||||
flex-grow: 1;
|
||||
font-size: small;
|
||||
font-size: var(--font-size-smaller);
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
@ -129,11 +129,13 @@
|
||||
--font-size: 14px;
|
||||
--font-size-smaller: 13px;
|
||||
--font-family: Inter, sans-serif;
|
||||
--monospace-size: 12px;
|
||||
}
|
||||
|
||||
:root.mobile {
|
||||
--font-size: 16px;
|
||||
--font-size-smaller: 14px;
|
||||
--monospace-size: 13px;
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user