forked from adphi/occweb
776 lines
18 KiB
CSS
776 lines
18 KiB
CSS
::selection {
|
|
background: #FF5E99;
|
|
}
|
|
.full-width{
|
|
min-width: 100%;
|
|
/*min-height: 100%;*/
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#app-content {
|
|
font-size: 11pt;
|
|
font-family: Inconsolata, monospace;
|
|
color: white;
|
|
background-color: black;
|
|
min-width: 100%;
|
|
min-height: 100%;
|
|
overflow-x: hidden;
|
|
overflow-y: hidden;
|
|
}
|
|
/*!
|
|
* __ _____ ________ __
|
|
* / // _ /__ __ _____ ___ __ _/__ ___/__ ___ ______ __ __ __ ___ / /
|
|
* __ / // // // // // _ // _// // / / // _ // _// // // \/ // _ \/ /
|
|
* / / // // // // // ___// / / // / / // ___// / / / / // // /\ // // / /__
|
|
* \___//____ \\___//____//_/ _\_ / /_//____//_/ /_/ /_//_//_/ /_/ \__\_\___/
|
|
* \/ /____/ version 2.0.2
|
|
* http://terminal.jcubic.pl
|
|
*
|
|
* This file is part of jQuery Terminal.
|
|
*
|
|
* Copyright (c) 2011-2018 Jakub Jankiewicz <http://jcubic.pl>
|
|
* Released under the MIT license
|
|
*
|
|
* Date: Sat, 22 Dec 2018 15:04:14 +0000
|
|
*/
|
|
.terminal .terminal-output .format, .cmd .format,
|
|
.cmd .prompt, .cmd .prompt div, .terminal .terminal-output div div{
|
|
display: inline-block;
|
|
}
|
|
.terminal h1, .terminal h2, .terminal h3, .terminal h4, .terminal h5, .terminal h6, .terminal pre, .cmd {
|
|
margin: 0;
|
|
}
|
|
.terminal h1, .terminal h2, .terminal h3, .terminal h4, .terminal h5, .terminal h6 {
|
|
line-height: 1.5em;
|
|
}
|
|
/*
|
|
.cmd .mask {
|
|
width: 10px;
|
|
height: 11px;
|
|
background: black;
|
|
z-index: 100;
|
|
}
|
|
*/
|
|
.cmd .clipboard {
|
|
position: absolute;
|
|
left: -16px;
|
|
top: 0;
|
|
/*width: 16px;*/
|
|
/*height: 16px;*/
|
|
/* this seems to work after all on Android */
|
|
left: -99999px;
|
|
clip: rect(1px,1px,1px,1px);
|
|
/* on desktop textarea appear when paste */
|
|
/* opacity is needed for Edge and IE
|
|
opacity: 0.01;
|
|
filter: alpha(opacity = 0.01);
|
|
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.01);*/
|
|
background-color: transparent;
|
|
border: none;
|
|
color: transparent;
|
|
outline: none;
|
|
padding: 0;
|
|
resize: none;
|
|
z-index: 1000;
|
|
overflow: hidden;
|
|
white-space: pre;
|
|
text-indent: -9999em; /* better cursor hiding for Safari and IE */
|
|
top: calc(var(--cursor-line, 0) * 1em);
|
|
/*visibility: hidden;*/
|
|
}
|
|
.cmd .noselect, .cmd [role="presentation"]:not(.cursor-line) > span:last-child,
|
|
.cmd .cursor-line > span:last-child > span:last-child {
|
|
-webkit-touch-callout: none; /* iOS Safari */
|
|
-webkit-user-select: none; /* Safari */
|
|
-khtml-user-select: none; /* Konqueror HTML */
|
|
-moz-user-select: none; /* Firefox */
|
|
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
|
|
}
|
|
.terminal img, .terminal audio, .terminal object, .terminal canvas {
|
|
cursor: default;
|
|
}
|
|
.terminal {
|
|
position: relative;
|
|
/*overflow: hidden;*/
|
|
overflow-y: auto;
|
|
/* overflow-x: hidden; */
|
|
}
|
|
terminal.temp {
|
|
visibility: hidden;
|
|
}
|
|
.terminal {
|
|
contain: content;
|
|
}
|
|
body.terminal {
|
|
min-height: 100vh;
|
|
height: 100%;
|
|
}
|
|
html {
|
|
height: 100%;
|
|
}
|
|
body.terminal, body.full-screen-terminal {
|
|
margin: 0;
|
|
height: 100%;
|
|
}
|
|
body.full-screen-terminal .terminal {
|
|
height: 100%;
|
|
}
|
|
.terminal > div:not(.font) {
|
|
min-height: 100%;
|
|
}
|
|
.terminal > .resizer, .terminal > .font .resizer {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
overflow: hidden;
|
|
pointer-events: none;
|
|
z-index: -1;
|
|
height: 100%;
|
|
border: none;
|
|
padding: 0;
|
|
width: 100%
|
|
}
|
|
.cmd {
|
|
padding: 0;
|
|
position: relative;
|
|
float: left;
|
|
}
|
|
.terminal a[tabindex="1000"],
|
|
.terminal a[tabindex="1000"]:active,
|
|
.terminal a[tabindex="1000"]:focus {
|
|
outline: none;
|
|
}
|
|
.terminal .inverted, .cmd .inverted {
|
|
background-color: #fff;
|
|
color: #000;
|
|
}
|
|
.cmd .cursor {
|
|
display: inline-block;
|
|
position: relative;
|
|
height: 14px;
|
|
min-width: 1ch;
|
|
/* box-sizing: border-box; */
|
|
}
|
|
.cmd .cursor span span {
|
|
border-bottom: 3px solid transparent;
|
|
margin-bottom: -3px;
|
|
background-clip: content-box;
|
|
border-left: 1px solid transparent;
|
|
position: absolute;
|
|
top: 0;
|
|
/* margin-left: -1px; */
|
|
background-color: inherit;
|
|
color: inherit;
|
|
bottom: 0;
|
|
left: -1px;
|
|
}
|
|
.cmd .cursor-line > span:empty {
|
|
/* display: none; */
|
|
}
|
|
.cmd .cursor-line > span:empty + .cursor + span {
|
|
/*margin-left: -1px;*/
|
|
}
|
|
.cmd .cursor-line > span:not(.cursor):not(:empty) {
|
|
/* margin-left: -1px; */
|
|
}
|
|
.cmd .cursor-line > span {
|
|
display: inline-block;
|
|
float: left;
|
|
}
|
|
.cmd .cursor.blink span span {
|
|
-webkit-animation: terminal-blink 1s infinite linear;
|
|
-moz-animation: terminal-blink 1s infinite linear;
|
|
-ms-animation: terminal-blink 1s infinite linear;
|
|
animation: terminal-blink 1s infinite linear;
|
|
}
|
|
.bar.terminal .inverted, .bar.cmd .inverted {
|
|
border-left-color: #fff;
|
|
}
|
|
.terminal .terminal .terminal-output > div > div, .cmd .prompt {
|
|
display: block;
|
|
line-height: 16pt;
|
|
height: auto;
|
|
}
|
|
.terminal .terminal-output > div:not(.raw) div {
|
|
white-space: nowrap;
|
|
}
|
|
.cmd .prompt > span {
|
|
float: left;
|
|
}
|
|
.terminal,
|
|
.terminal-output > :not(.raw) span:not(.token),
|
|
.terminal-output > :not(.raw) a,
|
|
.terminal-output > :not(.raw) div,
|
|
.cmd,
|
|
.cmd span,
|
|
.cmd div {
|
|
font-family: Inconsolata, monospace;
|
|
/*font-family: FreeMono, monospace; this don't work on Android */
|
|
color: white;
|
|
background-color: black;
|
|
font-size: 12pt;
|
|
line-height: 16pt;
|
|
}
|
|
.terminal, .cmd {
|
|
box-sizing: border-box;
|
|
cursor: text;
|
|
}
|
|
.cmd .cursor span:not(.token) {
|
|
color: inherit;
|
|
background-color: inherit;
|
|
}
|
|
.cmd .cursor * {
|
|
background-color: transparent;
|
|
}
|
|
.cmd div {
|
|
clear: both;
|
|
}
|
|
.cmd .prompt + div {
|
|
clear: right;
|
|
}
|
|
.terminal-output > div > div, .cmd div {
|
|
min-height: 16pt;
|
|
}
|
|
terminal .terminal-output > div {
|
|
margin-top: -1px;
|
|
}
|
|
.terminal-output > div.raw > div * {
|
|
overflow-wrap: break-word;
|
|
word-wrap: break-word;
|
|
}
|
|
.terminal .font {
|
|
position: absolute;
|
|
float: left;
|
|
font-size: inherit;
|
|
line-height: inherit;
|
|
top: -100%;
|
|
left: 0;
|
|
margin-bottom: 1px;
|
|
}
|
|
.terminal .terminal-output div span {
|
|
display: inline-block;
|
|
}
|
|
.cmd > span:not(.prompt) {
|
|
float: left;
|
|
}
|
|
.cmd .prompt span.line {
|
|
display: block;
|
|
float: none;
|
|
}
|
|
.terminal table {
|
|
border-collapse: collapse;
|
|
}
|
|
.terminal td {
|
|
border: 1px solid #fff;
|
|
}
|
|
.cmd span[data-text] span {
|
|
background-color: inherit;
|
|
color: inherit;
|
|
}
|
|
.cmd [role="presentation"] {
|
|
overflow: hidden;
|
|
padding-bottom: 3px;
|
|
margin-bottom: -3px;
|
|
}
|
|
/*
|
|
* this is set so animation can select original color as backgound for cursor
|
|
* so span can have --color for selection
|
|
*/
|
|
.cmd {
|
|
--original-color: var(--color, #fff);
|
|
}
|
|
@-webkit-keyframes terminal-blink {
|
|
0%, 50% {
|
|
background-color: #bbb;
|
|
background-color: var(--original-color, #bbb);
|
|
color: #000;
|
|
color: var(--background, #000);
|
|
}
|
|
50.1%, 100% {
|
|
background-color: inherit;
|
|
color: inherit;
|
|
}
|
|
}
|
|
@-ms-keyframes terminal-blink {
|
|
0%, 50% {
|
|
background-color: #bbb;
|
|
background-color: var(--original-color, #bbb);
|
|
color: #000;
|
|
color: var(--background, #000);
|
|
}
|
|
50.1%, 100% {
|
|
background-color: inherit;
|
|
color: inherit;
|
|
}
|
|
}
|
|
@-moz-keyframes terminal-blink {
|
|
0%, 50% {
|
|
background-color: #fff;
|
|
background-color: var(--original-color, #fff);
|
|
color: #000;
|
|
color: var(--background, #000);
|
|
}
|
|
50.1%, 100% {
|
|
background-color: inherit;
|
|
color: inherit;
|
|
}
|
|
}
|
|
@keyframes terminal-blink {
|
|
0%, 50% {
|
|
background-color: #fff;
|
|
background-color: var(--original-color, #fff);
|
|
color: #000;
|
|
color: var(--background, #000);
|
|
}
|
|
50.1%, 100% {
|
|
background-color: inherit;
|
|
color: inherit;
|
|
}
|
|
}
|
|
@-webkit-keyframes terminal-bar {
|
|
0%, 50% {
|
|
border-left-color: #fff;
|
|
border-left-color: var(--color, #fff);
|
|
}
|
|
50.1%, 100% {
|
|
border-left-color: #000;
|
|
border-left-color: var(--background, #000);
|
|
}
|
|
}
|
|
@-ms-keyframes terminal-bar {
|
|
0%, 50% {
|
|
border-left-color: #fff;
|
|
border-left-color: var(--color, #fff);
|
|
}
|
|
50.1%, 100% {
|
|
border-left-color: #000;
|
|
border-left-color: var(--background, #000);
|
|
}
|
|
}
|
|
@-moz-keyframes terminal-bar {
|
|
0%, 50% {
|
|
border-left-color: #fff;
|
|
border-left-color: var(--color, #fff);
|
|
}
|
|
50.1%, 100% {
|
|
border-left-color: #000;
|
|
border-left-color: var(--background, #000);
|
|
}
|
|
}
|
|
@keyframes terminal-bar {
|
|
0%, 50% {
|
|
border-left-color: #fff;
|
|
border-left-color: var(--color, #fff);
|
|
}
|
|
50.1%, 100% {
|
|
border-left-color: #000;
|
|
border-left-color: var(--background, #000);
|
|
}
|
|
}
|
|
@-webkit-keyframes terminal-underline {
|
|
0%, 50% {
|
|
border-left: none;
|
|
border-bottom-color: #fff;
|
|
border-bottom-color: var(--color, #fff);
|
|
}
|
|
50.1%, 100% {
|
|
border-left: none;
|
|
border-bottom-color: #000;
|
|
border-bottom-color: var(--background, #000);
|
|
}
|
|
}
|
|
@-ms-keyframes terminal-underline {
|
|
0%, 50% {
|
|
border-left: none;
|
|
border-bottom-color: #fff;
|
|
border-bottom-color: var(--color, #fff);
|
|
}
|
|
50.1%, 100% {
|
|
border-left: none;
|
|
border-bottom-color: #000;
|
|
border-bottom-color: var(--background, #000);
|
|
}
|
|
}
|
|
@-moz-keyframes terminal-underline {
|
|
0%, 50% {
|
|
border-left: none;
|
|
border-bottom-color: #fff;
|
|
border-bottom-color: var(--color, #fff);
|
|
}
|
|
50.1%, 100% {
|
|
border-left: none;
|
|
border-bottom-color: #000;
|
|
border-bottom-color: var(--background, #000);
|
|
}
|
|
}
|
|
@keyframes terminal-underline {
|
|
0%, 50% {
|
|
border-bottom-color: #fff;
|
|
border-bottom-color: var(--color, #fff);
|
|
}
|
|
50.1%, 100% {
|
|
border-bottom-color: #000;
|
|
border-bottom-color: var(--background, #000);
|
|
}
|
|
}
|
|
.underline-animation .cursor.blink span span {
|
|
/* margin-top: 2px; */
|
|
border-left: none;
|
|
/* margin-left: 0; */
|
|
margin-right: -1px;
|
|
-webkit-animation-name: terminal-underline;
|
|
-moz-animation-name: terminal-underline;
|
|
-ms-animation-name: terminal-underline;
|
|
animation-name: terminal-underline;
|
|
right: 1px;
|
|
}
|
|
.bar-animation .cursor.blink span span {
|
|
-webkit-animation-name: terminal-bar;
|
|
-moz-animation-name: terminal-bar;
|
|
-ms-animation-name: terminal-bar;
|
|
animation-name: terminal-bar;
|
|
}
|
|
/*
|
|
Internet Explorer & Edge *, Safari ≤ 6
|
|
source: https://w3reign.com/internet-explorer-edge-css-hacks/
|
|
*/
|
|
|
|
|
|
@supports (-ms-ime-align:auto) {
|
|
.cmd .clipboard {
|
|
margin-left: -9999px;
|
|
}
|
|
@keyframes terminal-blink {
|
|
0%, 50% {
|
|
background-color: var(--original-color, #fff);
|
|
color: var(--background, #000);
|
|
}
|
|
50.1%, 100% {
|
|
background-color: var(--background, #000);
|
|
color: var(--original-color, #fff);
|
|
}
|
|
}
|
|
@keyframes terminal-bar {
|
|
0%, 50% {
|
|
border-left-color: var(--color, #fff);
|
|
}
|
|
50.1%, 100% {
|
|
border-left-color: var(--background, #000);
|
|
}
|
|
}
|
|
@keyframes terminal-underline {
|
|
0%, 50% {
|
|
border-bottom-color: var(--color, #fff);
|
|
line-height: 12pt;
|
|
line-height: calc(var(--size, 1) * 12pt);
|
|
}
|
|
50.1%, 100% {
|
|
border-bottom-color: var(--background, #000);
|
|
line-height: 12pt;
|
|
line-height: calc(var(--size, 1) * 12pt);
|
|
}
|
|
}
|
|
}
|
|
/* IE hack Edge one don't work in IE11 */
|
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
|
.cmd .clipboard {
|
|
margin-left: -9999px;
|
|
}
|
|
.underline-animation .cursor.blink span span {
|
|
margin-top: 1px;
|
|
}
|
|
@-ms-keyframes terminal-blink {
|
|
0%, 50% {
|
|
background-color: #fff;
|
|
color: #000;
|
|
}
|
|
50.1%, 100% {
|
|
background-color: #000;
|
|
color: #fff;
|
|
}
|
|
}
|
|
}
|
|
.terminal h1::-moz-selection,
|
|
.terminal h2::-moz-selection,
|
|
.terminal h3::-moz-selection,
|
|
.terminal h4::-moz-selection,
|
|
.terminal h5::-moz-selection,
|
|
.terminal h6::-moz-selection,
|
|
.terminal pre::-moz-selection,
|
|
.terminal td::-moz-selection,
|
|
.terminal .terminal-output div div::-moz-selection,
|
|
.terminal .terminal-output div span::-moz-selection,
|
|
.terminal .terminal-output div div a::-moz-selection,
|
|
.terminal .terminal-output .raw div::-moz-selection,
|
|
.cmd div::-moz-selection,
|
|
.cmd > span::-moz-selection,
|
|
.cmd > span span::-moz-selection,
|
|
.cmd > div::-moz-selection,
|
|
.cmd > div span::-moz-selection,
|
|
.cmd .prompt span::-moz-selection {
|
|
background-color: #fff;
|
|
color: #000;
|
|
}
|
|
/* this don't work in Chrome
|
|
.terminal tr td::-moz-selection {
|
|
border-color: #000;
|
|
}
|
|
.terminal tr td::selection {
|
|
border-color: #000;
|
|
}
|
|
*/
|
|
.terminal h1::selection,
|
|
.terminal h2::selection,
|
|
.terminal h3::selection,
|
|
.terminal h4::selection,
|
|
.terminal h5::selection,
|
|
.terminal h6::selection,
|
|
.terminal pre::selection,
|
|
.terminal td::selection,
|
|
.terminal .terminal-output div div::selection,
|
|
.terminal .terminal-output div div a::selection,
|
|
.terminal .terminal-output div span::selection,
|
|
.terminal .terminal-output .raw div::selection,
|
|
.cmd div::selection,
|
|
.cmd > span::selection,
|
|
.cmd > span span::selection,
|
|
.cmd > div::selection,
|
|
.cmd > div span::selection,
|
|
.cmd .prompt span::selection {
|
|
/*
|
|
* use rgba to fix transparent selection in chrome
|
|
* http://stackoverflow.com/questions/7224445/css3-selection-behaves-differently-in-ff-chrome
|
|
*/
|
|
background-color: #ff5e99;
|
|
color: white;
|
|
}
|
|
|
|
.terminal .terminal-output > :not(.raw) .error,
|
|
.terminal .terminal-output > :not(.raw) .error * {
|
|
color: red;
|
|
color: var(--error-color, red);
|
|
}
|
|
.tilda {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
z-index: 1100;
|
|
}
|
|
.ui-dialog-content .terminal {
|
|
width: 100%;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
.ui-dialog .ui-dialog-content.dterm {
|
|
padding: 0;
|
|
}
|
|
.clear {
|
|
clear: both;
|
|
}
|
|
.terminal .terminal-output > :not(.raw) > div {
|
|
padding-bottom: 1px;
|
|
}
|
|
.terminal .terminal-output > :not(.raw) a[href] {
|
|
color: #0F60FF;
|
|
color: var(--link-color, #0F60FF);
|
|
cursor: pointer;
|
|
}
|
|
.terminal .terminal-output > :not(.raw) a[href]:hover {
|
|
background-color: #0F60FF;
|
|
background-color: var(--link-color, #0F60FF);
|
|
color: var(--background, #000);
|
|
text-decoration: none;
|
|
}
|
|
.terminal .terminal-fill {
|
|
position: absolute;
|
|
left: 0;
|
|
top: -100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 6px 0 0;
|
|
border: none;
|
|
opacity: 0.01;
|
|
pointer-events: none;
|
|
box-sizing: border-box;
|
|
}
|
|
.terminal, .terminal .terminal-fill {
|
|
padding: 10px;
|
|
}
|
|
/* padding added as margin to .cmd to fix FireFox bug see: https://stackoverflow.com/q/29986977/387194 */
|
|
.terminal {
|
|
padding-bottom: 0;
|
|
}
|
|
.terminal .cmd {
|
|
margin-bottom: 10px;
|
|
}
|
|
@supports (--css: variables) {
|
|
.terminal,
|
|
.terminal-output > :not(.raw) span:not(.token),
|
|
.terminal-output > :not(.raw) a,
|
|
.terminal-output > :not(.raw) div,
|
|
.cmd,
|
|
.cmd span,
|
|
.cmd div {
|
|
color: var(--color, #fff);
|
|
background-color: var(--background, #000);
|
|
}
|
|
.terminal span[style*="--length"] {
|
|
/*
|
|
* default value for char-width taken from Google Chrome for default font
|
|
* to silence warning in webpack #371
|
|
*/
|
|
width: calc(var(--length, 1) * var(--char-width, 7.23438) * 1px);
|
|
display: inline-block;
|
|
}
|
|
.terminal,
|
|
.terminal-output > :not(.raw) span:not(.token),
|
|
.terminal-output > :not(.raw) a,
|
|
.terminal-output > :not(.raw) div,
|
|
.cmd,
|
|
.cmd span,
|
|
.cmd div {
|
|
font-size: calc(var(--size, 1) * 12pt);
|
|
line-height: calc(var(--size, 1) * 12pt + 3px);
|
|
}
|
|
.cmd .clipboard {
|
|
top: calc(var(--size, 1) * 14 * var(--cursor-line, 0) * 1px);
|
|
}
|
|
.terminal .terminal-output > div > div, .cmd div{
|
|
min-height: calc(var(--size, 1) * 16pt);
|
|
}
|
|
.terminal .inverted, .cmd .inverted {
|
|
background-color: var(--color, #fff);
|
|
color: var(--background, #000);
|
|
}
|
|
.cmd div {
|
|
min-height: calc(var(--size, 1) * 14px);
|
|
}
|
|
.cmd .cursor.blink {
|
|
color: var(--color, #fff);
|
|
background-color: var(--background, #000);
|
|
}
|
|
.cmd .cursor.blink span span {
|
|
-webkit-animation: var(--animation, terminal-blink) 1s infinite linear;
|
|
-moz-animation: var(--animation, terminal-blink) 1s infinite linear;
|
|
-ms-animation: var(--animation, terminal-blink) 1s infinite linear;
|
|
animation: var(--animation, terminal-blink) 1s infinite linear;
|
|
}
|
|
.cmd .cursor {
|
|
height: calc(var(--size, 1) * 14px);
|
|
min-width: calc(var(--char-width, 7.23438) * 1px);
|
|
}
|
|
.terminal h1::-moz-selection,
|
|
.terminal h2::-moz-selection,
|
|
.terminal h3::-moz-selection,
|
|
.terminal h4::-moz-selection,
|
|
.terminal h5::-moz-selection,
|
|
.terminal h6::-moz-selection,
|
|
.terminal pre::-moz-selection,
|
|
.terminal td::-moz-selection,
|
|
.terminal .terminal-output div div::-moz-selection,
|
|
.terminal .terminal-output div span::-moz-selection,
|
|
.terminal .terminal-output div div a::-moz-selection,
|
|
.cmd div::-moz-selection,
|
|
.cmd > span::-moz-selection,
|
|
.cmd > span span::-moz-selection,
|
|
.cmd > div::-moz-selection,
|
|
.cmd > div span::-moz-selection,
|
|
.cmd .prompt span::-moz-selection {
|
|
background-color: var(--color, #ff5e99);
|
|
color: var(--background, white);
|
|
}
|
|
.terminal h1::selection,
|
|
.terminal h2::selection,
|
|
.terminal h3::selection,
|
|
.terminal h4::selection,
|
|
.terminal h5::selection,
|
|
.terminal h6::selection,
|
|
.terminal pre::selection,
|
|
.terminal td::selection,
|
|
.terminal .terminal-output div div::selection,
|
|
.terminal .terminal-output div div a::selection,
|
|
.terminal .terminal-output div span::selection,
|
|
.cmd div::selection,
|
|
.cmd > span::selection,
|
|
.cmd > span span::selection,
|
|
.cmd > div::selection,
|
|
.cmd > div span::selection,
|
|
.cmd .prompt span::selection {
|
|
background-color: var(--color, #ff5e99);
|
|
color: var(--background, #fff) !important;
|
|
}
|
|
}
|
|
/*
|
|
* overwrite css variables that don't work with selection in Edge
|
|
*/
|
|
@supports (-ms-ime-align:auto) {
|
|
.terminal h1::selection,
|
|
.terminal h2::selection,
|
|
.terminal h3::selection,
|
|
.terminal h4::selection,
|
|
.terminal h5::selection,
|
|
.terminal h6::selection,
|
|
.terminal pre::selection,
|
|
.terminal td::selection,
|
|
.terminal .terminal-output div div::selection,
|
|
.terminal .terminal-output div div a::selection,
|
|
.terminal .terminal-output div span::selection,
|
|
.cmd div::selection,
|
|
.cmd > span::selection,
|
|
.cmd > span span::selection,
|
|
.cmd > div::selection,
|
|
.cmd > div span::selection,
|
|
.cmd .prompt span::selection {
|
|
background-color: #ff5e99;
|
|
color: #ffffff;
|
|
}
|
|
}
|
|
/* PrismJS style overwrites */
|
|
.terminal .token.operator,
|
|
.terminal .token.entity,
|
|
.terminal .token.variable,
|
|
.terminal .token.url,
|
|
.terminal .token.string,
|
|
.terminal .style .token.string,
|
|
.terminal .token.token,
|
|
.cmd .token.operator,
|
|
.cmd .token.entity,
|
|
.cmd .token.variable,
|
|
.cmd .token.url,
|
|
.cmd .token.string,
|
|
.cmd .style .token.string,
|
|
.cmd .token.token {
|
|
background-color: inherit;
|
|
}
|
|
/* FireFox hack
|
|
@supports (-moz-animation: foo) {
|
|
.terminal,
|
|
.terminal .terminal-output > :not(.raw) span,
|
|
.terminal .terminal-output > :not(.raw) a,
|
|
.terminal .terminal-output > :not(.raw) div,
|
|
.cmd,
|
|
.cmd span,
|
|
.cmd div {
|
|
line-height: calc(var(--size, 1) * 13px);
|
|
}
|
|
}
|
|
*/
|
|
|
|
::selection {
|
|
background: #ff5e99;
|
|
color: white;
|
|
}
|
|
|
|
.terminal-output div div {
|
|
padding: 0 !important;
|
|
margin: 0 !important;
|
|
border: 0 !important;
|
|
}
|
|
.prompt span, .cursor-line span span, .command div span{
|
|
color: #009ae3 !important;
|
|
}
|