de-marginalize usercss editor; fix narrow @media
This commit is contained in:
parent
74701810b7
commit
4fc54450b7
|
@ -1,3 +1,7 @@
|
||||||
|
:root {
|
||||||
|
--header-narrow-min-height: 12em;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font: 12px arial,sans-serif;
|
font: 12px arial,sans-serif;
|
||||||
|
@ -19,6 +23,10 @@ body {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.hidden {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
/************ header ************/
|
/************ header ************/
|
||||||
#header {
|
#header {
|
||||||
width: 280px;
|
width: 280px;
|
||||||
|
@ -29,7 +37,9 @@ body {
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
border-right: 1px dashed #AAA;
|
border-right: 1px dashed #AAA;
|
||||||
-webkit-box-shadow: 0 0 3rem -1.2rem black;
|
-webkit-box-shadow: 0 0 3rem -1.2rem black;
|
||||||
|
box-shadow: 0 0 3rem -1.2rem black;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
z-index: 10;
|
||||||
}
|
}
|
||||||
#header h1 {
|
#header h1 {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
@ -136,6 +146,12 @@ input:invalid {
|
||||||
#header summary svg {
|
#header summary svg {
|
||||||
margin-top: -3px;
|
margin-top: -3px;
|
||||||
}
|
}
|
||||||
|
#options:not([open]) + #lint h2 {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
#lint:not([open]) h2 {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
/* options */
|
/* options */
|
||||||
#options [type="number"] {
|
#options [type="number"] {
|
||||||
width: 3.5em;
|
width: 3.5em;
|
||||||
|
@ -154,6 +170,7 @@ input:invalid {
|
||||||
/* footer */
|
/* footer */
|
||||||
#footer {
|
#footer {
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
|
margin-bottom: .5em;
|
||||||
}
|
}
|
||||||
/************ content ***********/
|
/************ content ***********/
|
||||||
#sections > div {
|
#sections > div {
|
||||||
|
@ -452,9 +469,6 @@ body[data-match-highlight="selection"] .CodeMirror-selection-highlight-scrollbar
|
||||||
}
|
}
|
||||||
|
|
||||||
/************ lint ************/
|
/************ lint ************/
|
||||||
#lint {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
#lint > div {
|
#lint > div {
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
@ -526,13 +540,41 @@ body[data-match-highlight="selection"] .CodeMirror-selection-highlight-scrollbar
|
||||||
}
|
}
|
||||||
|
|
||||||
/************ single editor **************/
|
/************ single editor **************/
|
||||||
|
.usercss body {
|
||||||
|
display: flex;
|
||||||
|
height: 100vh;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-items: normal;
|
||||||
|
}
|
||||||
|
|
||||||
#sections .single-editor {
|
#sections .single-editor {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
height: 100%;
|
padding: 0;
|
||||||
|
display: flex;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
.single-editor .CodeMirror {
|
.single-editor .CodeMirror {
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
border: none;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#footer a {
|
||||||
|
color: #333;
|
||||||
|
transition: color .5s;
|
||||||
|
text-decoration-skip: ink;
|
||||||
|
animation: fadein 10s;
|
||||||
|
}
|
||||||
|
|
||||||
|
#footer a:hover {
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
|
||||||
|
.usercss.firefox #sections,
|
||||||
|
.usercss.firefox .single-editor,
|
||||||
|
.usercss.firefox .CodeMirror {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -567,6 +609,8 @@ body[data-match-highlight="selection"] .CodeMirror-selection-highlight-scrollbar
|
||||||
position: inherit;
|
position: inherit;
|
||||||
border-right: none;
|
border-right: none;
|
||||||
border-bottom: 1px dashed #AAA;
|
border-bottom: 1px dashed #AAA;
|
||||||
|
min-height: var(--header-narrow-min-height);
|
||||||
|
max-height: 50vh;
|
||||||
}
|
}
|
||||||
#header section:not(:last-child) {
|
#header section:not(:last-child) {
|
||||||
margin-bottom: 0.4rem;
|
margin-bottom: 0.4rem;
|
||||||
|
@ -628,18 +672,12 @@ body[data-match-highlight="selection"] .CodeMirror-selection-highlight-scrollbar
|
||||||
position: relative;
|
position: relative;
|
||||||
top: 0.2rem;
|
top: 0.2rem;
|
||||||
}
|
}
|
||||||
#options:not([open]) + #lint h2 {
|
#options:not([open]) ~ #lint {
|
||||||
margin-top: 0;
|
margin-top: -1ex;
|
||||||
}
|
|
||||||
#lint:not([open]) h2 {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
}
|
||||||
#lint > div {
|
#lint > div {
|
||||||
max-height: 20vh;
|
max-height: 20vh;
|
||||||
}
|
}
|
||||||
#lint.collapsed > div {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
#lint table {
|
#lint table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
@ -658,6 +696,13 @@ body[data-match-highlight="selection"] .CodeMirror-selection-highlight-scrollbar
|
||||||
.applies-type {
|
.applies-type {
|
||||||
width: 30%;
|
width: 30%;
|
||||||
}
|
}
|
||||||
|
.usercss .CodeMirror-scroll {
|
||||||
|
max-height: calc(100vh - var(--header-narrow-min-height));
|
||||||
|
}
|
||||||
|
.usercss #options:not([open]) ~ #lint.hidden ~ #footer,
|
||||||
|
.usercss #lint:not([open]) + #footer {
|
||||||
|
margin-top: -.25em;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@media(max-width:500px) {
|
@media(max-width:500px) {
|
||||||
#options {
|
#options {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user