mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-08 07:31:32 +00:00
52 lines
822 B
CSS
52 lines
822 B
CSS
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
.dim > #root,
|
|
.font:not(.has-code) .font-css-code,
|
|
.font-is-local,
|
|
.font-is-remote,
|
|
.font.is-local .font-format-url,
|
|
#template {
|
|
display: none;
|
|
}
|
|
|
|
.font.is-remote .font-is-remote,
|
|
.font.is-local .font-is-local {
|
|
display: inline;
|
|
}
|
|
|
|
.font-format::before {
|
|
content: "(";
|
|
}
|
|
|
|
.font-format::after {
|
|
content: ")";
|
|
}
|
|
|
|
.preview-input-toolbar {
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
|
|
.font-preview-container {
|
|
overflow-x: auto;
|
|
}
|
|
|
|
#preview-text-input {
|
|
font: inherit;
|
|
margin-top: 1px;
|
|
margin-bottom: 1px;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
flex: 1;
|
|
}
|
|
|
|
:root {
|
|
height: 100%;
|
|
}
|
|
|
|
#root {
|
|
overflow: auto;
|
|
}
|