mirror of
https://shylinux.com/x/volcanos
synced 2025-04-26 01:04:06 +08:00
83 lines
2.1 KiB
CSS
83 lines
2.1 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 {
|
|
max-width:180px; overflow:auto;
|
|
font-size:14px; font-family:monospace;
|
|
}
|
|
fieldset.editor>div.output div.content {
|
|
font-size:16px; font-family:monospace;
|
|
position:relative;
|
|
overflow:auto;
|
|
color:white;
|
|
}
|
|
|
|
fieldset.editor>div.output div.content tr.select td.line {
|
|
border:solid 1px yellow;
|
|
background-color:red;
|
|
}
|
|
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.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.content {
|
|
background-color:#013b675c;
|
|
}
|
|
body.white fieldset.editor>div.output div.content td.text span.string {
|
|
color:#a703a7;
|
|
}
|
|
|