Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
malwaredllc
GitHub Repository: malwaredllc/byob
Path: blob/master/web-gui/buildyourownbotnet/assets/js/codemirror/addon/lint/lint.css
1294 views
1
/* The lint marker gutter */
2
.CodeMirror-lint-markers {
3
width: 16px;
4
}
5
6
.CodeMirror-lint-tooltip {
7
background-color: infobackground;
8
border: 1px solid black;
9
border-radius: 4px 4px 4px 4px;
10
color: infotext;
11
font-family: monospace;
12
font-size: 10pt;
13
overflow: hidden;
14
padding: 2px 5px;
15
position: fixed;
16
white-space: pre;
17
white-space: pre-wrap;
18
z-index: 100;
19
max-width: 600px;
20
opacity: 0;
21
transition: opacity .4s;
22
-moz-transition: opacity .4s;
23
-webkit-transition: opacity .4s;
24
-o-transition: opacity .4s;
25
-ms-transition: opacity .4s;
26
}
27
28
.CodeMirror-lint-mark-error, .CodeMirror-lint-mark-warning {
29
background-position: left bottom;
30
background-repeat: repeat-x;
31
}
32
33
.CodeMirror-lint-mark-error {
34
background-image:
35
url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJDw4cOCW1/KIAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAHElEQVQI12NggIL/DAz/GdA5/xkY/qPKMDAwAADLZwf5rvm+LQAAAABJRU5ErkJggg==")
36
;
37
}
38
39
.CodeMirror-lint-mark-warning {
40
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJFhQXEbhTg7YAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAMklEQVQI12NkgIIvJ3QXMjAwdDN+OaEbysDA4MPAwNDNwMCwiOHLCd1zX07o6kBVGQEAKBANtobskNMAAAAASUVORK5CYII=");
41
}
42
43
.CodeMirror-lint-marker-error, .CodeMirror-lint-marker-warning {
44
background-position: center center;
45
background-repeat: no-repeat;
46
cursor: pointer;
47
display: inline-block;
48
height: 16px;
49
width: 16px;
50
vertical-align: middle;
51
position: relative;
52
}
53
54
.CodeMirror-lint-message-error, .CodeMirror-lint-message-warning {
55
padding-left: 18px;
56
background-position: top left;
57
background-repeat: no-repeat;
58
}
59
60
.CodeMirror-lint-marker-error, .CodeMirror-lint-message-error {
61
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAHlBMVEW7AAC7AACxAAC7AAC7AAAAAAC4AAC5AAD///+7AAAUdclpAAAABnRSTlMXnORSiwCK0ZKSAAAATUlEQVR42mWPOQ7AQAgDuQLx/z8csYRmPRIFIwRGnosRrpamvkKi0FTIiMASR3hhKW+hAN6/tIWhu9PDWiTGNEkTtIOucA5Oyr9ckPgAWm0GPBog6v4AAAAASUVORK5CYII=");
62
}
63
64
.CodeMirror-lint-marker-warning, .CodeMirror-lint-message-warning {
65
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAANlBMVEX/uwDvrwD/uwD/uwD/uwD/uwD/uwD/uwD/uwD6twD/uwAAAADurwD2tQD7uAD+ugAAAAD/uwDhmeTRAAAADHRSTlMJ8mN1EYcbmiixgACm7WbuAAAAVklEQVR42n3PUQqAIBBFUU1LLc3u/jdbOJoW1P08DA9Gba8+YWJ6gNJoNYIBzAA2chBth5kLmG9YUoG0NHAUwFXwO9LuBQL1giCQb8gC9Oro2vp5rncCIY8L8uEx5ZkAAAAASUVORK5CYII=");
66
}
67
68
.CodeMirror-lint-marker-multiple {
69
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAMAAADzjKfhAAAACVBMVEUAAAAAAAC/v7914kyHAAAAAXRSTlMAQObYZgAAACNJREFUeNo1ioEJAAAIwmz/H90iFFSGJgFMe3gaLZ0od+9/AQZ0ADosbYraAAAAAElFTkSuQmCC");
70
background-repeat: no-repeat;
71
background-position: right bottom;
72
width: 100%; height: 100%;
73
}
74
75