layoutdesign_wev8.css
2 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
body{
font-family: 'microsoft yahei';
font-size: 12px;
overflow: hidden;
}
.layoutcontainer{
position: absolute;
left: 0px;
right: 2px;
top: 60px;
bottom: 2px;
}
.layoutcontainer .inch{
width: 5%;
height: 10px;
position: absolute;
top: 10px;
border-left: 1px solid #F0EAEA;
}
.layoutcontainer .inchmain{
width: 5%;
height: 20px;
position: absolute;
border-left: 1px solid #F0EAEA;
}
.layoutcontainer .inchvalue{
margin-left: -20px;
}
.layoutcontainer .layouttable {
width: 100%;
border-collapse: collapse;
height: 100%;
table-layout: fixed;
cursor: pointer;
}
.layouttable th{
width: 25%;
}
.layoutcontainer .layouttable tr {
height: 25%;
}
.layoutcontainer .layouttable thead tr{
height: 0;
}
.layoutcontainer .layouttable td {
border: 1px dashed #cccccc;
}
.layoutcontainer .layouttable td:hover{
background: #FFFAFA;
}
.layoutcontainer .layouttablewrapper{
position: relative;
width: 100%;
height: 100%;
}
.imageicons{
position: absolute;
bottom: 0px;
height: 33px;
display: none;
z-index: 10;
}
.imageicons div{
display: inline-block;
width: 33px;
height: 33px;
cursor: pointer;
}
.mergeicon{
background-image: url("../imgs/merge_wev8.png");
}
.mergeicon:hover{
background-image: url("../imgs/merge-hot_wev8.png");
}
.splitall{
background-image: url("../imgs/splitall_wev8.png");
}
.splitall:hover{
background-image: url("../imgs/splitall-hot_wev8.png");
}
.hsplit{
background-image: url("../imgs/hsplit_wev8.png");
}
.hsplit:hover{
background-image: url("../imgs/hsplit-hot_wev8.png");
}
.vsplit{
background-image: url("../imgs/vsplit_wev8.png");
}
.vsplit:hover{
background-image: url("../imgs/vsplit-hot_wev8.png");
}
.hline{
height: 1px;
border-top:1px solid #ff9701 ;
position: absolute;
display: none;
}
.vline{
width: 1px;
border-left:1px solid #ff9701 ;
position: absolute;
display: none;
}