Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Avatar for KuCalc : devops.
Download
50675 views
1
.CodeMirror-simplescroll-horizontal div, .CodeMirror-simplescroll-vertical div {
2
position: absolute;
3
background: #ccc;
4
-moz-box-sizing: border-box;
5
box-sizing: border-box;
6
border: 1px solid #bbb;
7
border-radius: 2px;
8
}
9
10
.CodeMirror-simplescroll-horizontal, .CodeMirror-simplescroll-vertical {
11
position: absolute;
12
z-index: 6;
13
background: #eee;
14
}
15
16
.CodeMirror-simplescroll-horizontal {
17
bottom: 0; left: 0;
18
height: 8px;
19
}
20
.CodeMirror-simplescroll-horizontal div {
21
bottom: 0;
22
height: 100%;
23
}
24
25
.CodeMirror-simplescroll-vertical {
26
right: 0; top: 0;
27
width: 8px;
28
}
29
.CodeMirror-simplescroll-vertical div {
30
right: 0;
31
width: 100%;
32
}
33
34
35
.CodeMirror-overlayscroll .CodeMirror-scrollbar-filler, .CodeMirror-overlayscroll .CodeMirror-gutter-filler {
36
display: none;
37
}
38
39
.CodeMirror-overlayscroll-horizontal div, .CodeMirror-overlayscroll-vertical div {
40
position: absolute;
41
background: #bcd;
42
border-radius: 3px;
43
}
44
45
.CodeMirror-overlayscroll-horizontal, .CodeMirror-overlayscroll-vertical {
46
position: absolute;
47
z-index: 6;
48
}
49
50
.CodeMirror-overlayscroll-horizontal {
51
bottom: 0; left: 0;
52
height: 6px;
53
}
54
.CodeMirror-overlayscroll-horizontal div {
55
bottom: 0;
56
height: 100%;
57
}
58
59
.CodeMirror-overlayscroll-vertical {
60
right: 0; top: 0;
61
width: 6px;
62
}
63
.CodeMirror-overlayscroll-vertical div {
64
right: 0;
65
width: 100%;
66
}
67
68