mirror of
https://shylinux.com/x/volcanos
synced 2025-04-25 16:58:06 +08:00
105 lines
2.7 KiB
CSS
105 lines
2.7 KiB
CSS
fieldset.editor>form.option div.item input.args[name=line] {
|
|
width:40px;
|
|
}
|
|
fieldset.editor>div.action div.file {
|
|
border:solid 2px red; padding:2px;
|
|
float:left; cursor:pointer;
|
|
}
|
|
fieldset.editor>div.action div.file.over {
|
|
background-color:blue;
|
|
}
|
|
fieldset.editor>div.action div.file.select {
|
|
background-color:green;
|
|
}
|
|
|
|
fieldset.editor>div.output {
|
|
color:white;
|
|
}
|
|
fieldset.editor>div.output div.project {
|
|
font-size:14px; font-family:monospace;
|
|
max-width:180px; overflow:auto;
|
|
}
|
|
fieldset.editor>div.output div.content {
|
|
font-size:16px; font-family:monospace;
|
|
overflow:auto; padding-right:25px;
|
|
position:relative;
|
|
color:white;
|
|
}
|
|
fieldset.editor>div.output div.content table.layout {
|
|
width:-webkit-fill-available;
|
|
}
|
|
fieldset.editor>div.output div.content tr.select td.line {
|
|
border:solid 1px red;
|
|
border-right:solid 2px red;
|
|
background-color:blue;
|
|
}
|
|
fieldset.editor>div.output div.content td.line:hover {
|
|
background-color:green;
|
|
}
|
|
fieldset.editor>div.output div.content td.line {
|
|
text-align:right; padding:0 6px;
|
|
border-right:solid 2px red;
|
|
}
|
|
fieldset.editor>div.output div.content td.text {
|
|
text-align:left; height:20px;
|
|
padding-left:10px;
|
|
white-space:pre;
|
|
}
|
|
|
|
fieldset.editor>div.output div.content td.text span.comment {
|
|
color:cyan; background-color:blue;
|
|
}
|
|
fieldset.editor>div.output div.content td.text span.keyword {
|
|
color:yellow; font-weight:bold;
|
|
}
|
|
fieldset.editor>div.output div.content td.text span.function {
|
|
color:cyan; font-weight:bold;
|
|
}
|
|
fieldset.editor>div.output div.content td.text span.datatype {
|
|
color:lightgreen; font-weight:bold;
|
|
}
|
|
fieldset.editor>div.output div.content td.text span.constant {
|
|
color:magenta;
|
|
}
|
|
fieldset.editor>div.output div.content td.text span.string {
|
|
color:magenta;
|
|
}
|
|
|
|
fieldset.editor>div.output div.search {
|
|
padding:6px; border:solid 1px red;
|
|
}
|
|
fieldset.editor>div.output div.search div.tags {
|
|
text-align:left; overflow:auto;
|
|
}
|
|
fieldset.editor>div.output div.search div.tags table {
|
|
width:-webkit-fill-available;
|
|
}
|
|
fieldset.editor>div.output div.search td>div {
|
|
max-height:100px;
|
|
overflow:hidden;
|
|
}
|
|
|
|
body.white fieldset.editor>div.output div.project {
|
|
color:#a2dad2;
|
|
}
|
|
body.white fieldset.editor>div.output div.content {
|
|
background-color:#013b675c;
|
|
}
|
|
body.white fieldset.editor>div.output div.content td.text span.string {
|
|
color:#a703a7;
|
|
}
|
|
|
|
body.white fieldset.editor>div.output div.content tr {
|
|
background-color:#e1f1ff00;
|
|
}
|
|
|
|
.unselectable {
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-khtml-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
-o-user-select:none;
|
|
user-select: none;
|
|
}
|