-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
executable file
·137 lines (133 loc) · 2.49 KB
/
app.css
File metadata and controls
executable file
·137 lines (133 loc) · 2.49 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/* Write your styles */
.table-sort{
width: 60px;
}
/*状态进度标记开始*/
.console-step .step-pass {
background-color: #99dcf3;
}
.console-step .step {
font-size: 14px;
height: 24px;
line-height: 24px;
color: #FFF;
z-index: 1;
text-align: center;
}
.console-step .step-active {
background-color: #00a0c7;
}
.row:before, .row:after {
display: table;
content: " ";
}
.row:after {
clear: both;
}
.console-step .step:before {
content: '';
display: block;
position: absolute;
left: -12px;
z-index: 8;
top: 0px;
border-top: 12px solid #cacaca;
border-left: 12px solid transparent !important;
border-bottom: 12px solid #cacaca;
}
.console-step .step-pass:before {
border-color: #99dcf3;
}
.console-step .step-active:before {
border-color: #00a0c7;
}
.console-step .step-first:before {
display: none;
}
.console-step .step:after {
content: '';
display: block;
width: 16px;
height: 24px;
position: absolute;
right: 0px;
z-index: 9;
top: 0px;
border-top: 12px solid transparent !important;
border-left: 12px solid #cacaca;
border-bottom: 12px solid transparent !important;
background-color: #FFF;
}
.console-step .step-pass:after {
border-color: #99dcf3;
}
.console-step .step-active:after {
border-color: #00a0c7;
}
.console-step .step-end:after {
display: none;
}
/*状态标记结束*/
/*工单内容描述开始*/
.pt-info-panel{
background-color: #f8f8f8;
}
.pt-text-explode {
color: #999 !important;
}
/*工单内容描述结束*/
/*鼠标移动至li上的背景颜色*/
.am-list-hover li:hover{
background: #f5f5f5;
}
/*鼠标移动至li上的背景颜色*/
/*扩展颜色*/
.am-text-gray{
color: #999;
}
/*扩展颜色*/
/*
===================
图标 导航、版块管理
展开收起、所属
===================
*/
.start_icon,
.away_icon,
.zero_icon,
.plus_icon,
.plus_end_icon{
background:url(../i/icon_list.png) no-repeat;
display:inline-block;
vertical-align:middle;
}
.start_icon,
.away_icon,
.zero_icon,
.plus_none_icon{
width:20px;
height:20px;
overflow:hidden;
cursor:pointer;
}
.away_icon{
background-position:0 -20px;
}
.zero_icon{
background-position:-20px 0;
cursor:default;
}
.plus_icon,
.plus_end_icon{
width:40px;
height:24px;
background-position:0 -43px;
margin-right:5px;
}
.plus_end_icon{
background-position:0 -70px;
}
.plus_on_icon{
background-position:0 -100px;
cursor:default;
}