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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
.splitpanel-vertical {
display: flex;
flex-direction: row;
overflow: auto;
}
.splitpanel-vertical > *:first-child {
max-width: calc(100% - 9px);
}
.splitpanel-vertical > * {
flex: 0 0 auto;
overflow: auto;
}
.splitpanel-vertical > *:last-child {
flex: 1 1 auto;
overflow: auto;
}
.splitpanel-horizontal {
display: flex;
flex-direction: column;
overflow: auto;
}
.splitpanel-horizontal > *:first-child {
max-height: calc(100% - 9px);
}
.splitpanel-horizontal > * {
flex: 0 0 auto;
overflow: auto;
}
.splitpanel-horizontal > *:last-child {
flex: 1 1 auto;
overflow: auto;
}
.splitter-vertical {
flex: 0 0 auto;
width: 9px;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAhCAQAAABOpSL+AAAAIklEQVR4AWMwbb/PdR+JZDD9f1/oPhI5sgVGBSruc9xHIgGdSQqqQJGkRgAAAABJRU5ErkJggg==') center center no-repeat #cecece;
cursor: col-resize;
}
.splitter-horizontal {
flex: 0 0 auto;
height: 9px;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAICAQAAADdTl4aAAAAIElEQVQoz2MwrTD9TxFsZ7jPcV+IIsjFQAUw6hFqegQA+xzRHT2p7pEAAAAASUVORK5CYII=') center center no-repeat #cecece;
cursor: row-resize;
}
.trix-control {
overflow-y: auto;
}
trix-toolbar .trix-button-group {
margin-bottom: 3px;
}
.tabulator-row .tabulator-cell.tabulator-editing input, .tabulator-row .tabulator-cell.tabulator-editing select {
border: 1px solid #ccc;
border-radius: 4px;
}
.tabulator-row .tabulator-cell.tabulator-editing input:focus, .tabulator-row .tabulator-cell.tabulator-editing select:focus {
border-color: #66afe9;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.tabulator-row .tabulator-cell.tabulator-editing {
border-right: 1px solid #1d68cd !important;
padding: 2px !important;
}
|