-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAXSplit.css
More file actions
41 lines (41 loc) · 857 Bytes
/
AXSplit.css
File metadata and controls
41 lines (41 loc) · 857 Bytes
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
/*
AXSplit class
*/
.AXSplit .AXSplit-cols {
float: left;
box-sizing: border-box;
height: 100%;
}
.AXSplit .AXSplit-col-handle {
cursor: col-resize;
display: block;
float: left;
box-sizing: border-box;
width: 13px;
height: 100%;
background: url("images/dx-col-resize-handle.png") no-repeat center center;
}
.AXSplit .AXSplit-col-handle.on {
background-color: #ddd;
}
.AXSplit .AXSplit-col-handle:hover {
background-color: #ddd;
}
.AXSplit .AXSplit-rows {
box-sizing: border-box;
width: 100%;
}
.AXSplit .AXSplit-row-handle {
cursor: row-resize;
display: block;
box-sizing: border-box;
width: 100%;
height: 13px;
background: url("images/dx-row-resize-handle.png") no-repeat center center;
}
.AXSplit .AXSplit-row-handle.on {
background-color: #ddd;
}
.AXSplit .AXSplit-row-handle:hover {
background-color: #ddd;
}