forked from c9/c9.ide.ace.split
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
61 lines (55 loc) · 1.33 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
.splitgrabber {
display: block;
width: 16px;
height: 7px;
position: absolute;
right: 0;
top: 0;
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
vertical-align: top;
line-height: 9px;
font-family: Courier New;
font-size: 15px;
cursor: ns-resize;
pointer-events: all;
text-align: right;
padding-right: 3px;
z-index: 100;
color: rgba(0, 0, 0, 0.4);
text-shadow: 0 1px white;
}
.dark .splitgrabber {
color: rgba(255, 255, 255, 0.2);
text-shadow: 0 1px rgba(0, 0, 0, 0.34);
}
.splitgrabber:hover{
}
.ace_split{
height : 100%;
}
.ace_split .splitter.horizontal:after {
content: "=";
text-align: center;
width: 100%;
/*background: rgba(255, 255, 255, 0.105);*/
position: absolute;
height: 7px;
line-height: 8px;
font-size: 15px;
font-family: Courier New;
box-sizing: border-box;
color: rgba(0, 0, 0, 0.3);
border-top: 1px solid rgba(255, 255, 255, 0.6);
box-shadow: 0 -1px rgb(211, 211, 211);
text-shadow: 0 1px white;
}
.dark .ace_split .splitter.horizontal:after {
color: rgba(255, 255, 255, 0.23);
border-top: 1px solid rgba(255, 255, 255, 0.06);
box-shadow: 0 -1px rgba(0, 0, 0, 0.29);
text-shadow: none;
}
.ace_split .splitter.horizontal{
background: transparent !important;
}