Merge branches/quickjs to trunk. This is the way.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3621 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
2021-01-02 18:10:00 +00:00
parent d293637741
commit 79022e1e1f
703 changed files with 419987 additions and 30640 deletions

View File

@ -20,25 +20,10 @@ body {
margin: 4px;
}
#terminals {
flex: 1;
flex-flow: column;
margin: 4px;
}
#logo {
vertical-align: middle;
}
.terminal {
outline: none;
white-space: pre-wrap;
resize: none;
overflow: auto;
height: auto;
width: auto;
}
.hbox {
display: flex;
flex-direction: row;
@ -49,30 +34,6 @@ body {
flex-direction: column;
}
.terminal > img {
vertical-align: middle;
}
a:link, .command {
color: #268bd2;
cursor: pointer;
}
a:visited, .command:visited {
color: #6c71c4;
cursor: pointer;
}
a:hover, .command:hover {
color: #2aa198;
cursor: pointer;
}
a:active, .command:active {
color: #dc322f;
cursor: pointer;
}
.input {
display: flex;
flex-flow: row;
@ -100,6 +61,11 @@ a:active, .command:active {
.CodeMirror {
height: 100%;
padding: 0;
top: 0;
left: 0;
right: 0;
bottom: 0;
position: absolute;
}
.cm-tab {
@ -179,3 +145,18 @@ a:active, .command:active {
.blue { color: #268bd2; }
.cyan { color: #2aa198; }
.green { color: #859900; }
#files {
list-style-type: none;
margin: 0;
padding: 0;
}
#files > li {
padding: 0.5em;
}
#files > li.current {
font-weight: bold;
background-color: #2aa198;
}