-
Notifications
You must be signed in to change notification settings - Fork 0
/
AXToolBar.css
71 lines (71 loc) · 1.53 KB
/
AXToolBar.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
62
63
64
65
66
67
68
69
70
71
.none {
display: none;
}
.util-border-radius-none {
-webkit-border-radius: none;
-moz-border-radius: none;
border-radius: none;
}
.util-text-ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.util-textHidden {
text-indent: 99999px;
overflow: hidden;
}
.AXToolBar .ax-root-menu-item {
position: relative;
display: block;
float: left;
margin: 5px 1px;
}
.AXToolBar .ax-root-menu-item .ax-menu-item {
display: block;
height: 28px;
line-height: 28px;
padding: 0px 30px 0px 10px;
text-decoration: none;
color: #6e7a85;
font-weight: bold;
border: 1px solid transparent;
border-radius: 4px;
cursor: pointer;
}
.AXToolBar .ax-root-menu-item .ax-menu-item i.axi {
vertical-align: middle;
line-height: inherit;
font-size: 1.2em;
}
.AXToolBar .ax-root-menu-item .ax-menu-item.noexpand {
padding: 0px 10px 0px 10px;
}
.AXToolBar .ax-root-menu-item .ax-menu-handel {
font-family: axicon;
position: absolute;
right: 1px;
top: 1px;
display: block;
width: 20px;
height: 28px;
line-height: 28px;
font-size: 20px;
overflow: hidden;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
.AXToolBar .ax-root-menu-item .ax-menu-handel:before {
content: "\e92e";
}
.AXToolBar .ax-root-menu-item .ax-menu-handel:hover {
background: #e8e8e8;
border-left: 1px solid #b9babc;
color: #6e7a85;
}
.AXToolBar .ax-root-menu-item:hover .ax-menu-item,
.AXToolBar .ax-root-menu-item.hover .ax-menu-item {
color: #6e7a85;
border: 1px solid #b9babc;
background: #e8e8e8;
}