infolist.css
2.41 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
#infolist {
font-family: 'Microsoft YaHei', 'WenQuanYi Micro Hei', SimHei, tahoma, sans-serif;
position: relative;
}
#infolist .m-segment {
padding-top: 6px;
}
#infolist .btn-edit {
font-size: 16px;
}
#infolist .status li {
padding-right: 0px;
width: 25%;
}
#infolist .padding10 {
padding: 10px;
padding-top: 0px;
}
#infolist .pusher-panel {
position: relative;
left: 0;
z-index: 1;
height: 100%;
-webkit-transition: -webkit-transform 0.5s;
transition: transform 0.5s;
}
#infolist .selects-panel {
position: absolute;
top: 85px;
left: 0;
z-index: 0;
visibility: hidden;
width: 60px;
height: 100%;
background: transparent;
-webkit-transition: all 0.5s;
transition: all 0.5s;
}
#infolist .selects-panel .s-one {
margin-top: 10px;
line-height: 125px;
text-align: center;
}
#infolist .column {
margin-top: 10px;
padding: 10px;
border: 1px solid #ddd;
background: #fff;
position: relative;
}
#infolist .column .name {
font-size: 16px;
color: #333;
line-height: 30px;
<<<<<<< HEAD
=======
margin-right: 60px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
>>>>>>> b51924697e7ffdccee5d9d41bd2be4b3b02828fa
}
#infolist .column .status-label {
font-size: 14px;
color: #999;
position: absolute;
<<<<<<< HEAD
top: 15px;
=======
top: 19px;
>>>>>>> b51924697e7ffdccee5d9d41bd2be4b3b02828fa
right: 15px;
line-height: 30px;
}
#infolist .column .status-err {
color: #fa4535;
}
#infolist .column .field {
font-size: 14px;
color: #999;
}
#infolist .column .field .value {
color: #fa4535;
}
#infolist .column .advice {
font-size: 14px;
color: #999;
}
#infolist .column hr {
border: 0px solid #ddd;
border-top: 1px solid #ddd;
}
#infolist .column .bottom-row span {
line-height: 30px;
font-size: 14px;
color: #999;
}
#infolist .column .bottom-row .time {
float: right;
}
#infolist .m-footer {
padding: 0px;
height: 0px;
overflow: hidden;
-webkit-transition: height 0.3s;
transition: height 0.3s;
}
#infolist .m-footer .m-btn {
float: left;
width: 50%;
box-sizing: border-box;
}
#infolist.panel-open .pusher-panel {
-webkit-transform: translate3d(50px, 0, 0);
transform: translate3d(50px, 0, 0);
}
#infolist.panel-open .selects-panel {
visibility: visible ;
-webkit-transition: -webkit-transform 0.5s;
transition: transform 0.5s;
}
#infolist.panel-open .m-footer {
position: fixed;
display: block;
z-index: 9;
height: 50px;
}