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
|
body {
margin: 0;
font-family: Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,SimSun,sans-serif;
font-weight: 400;
color: rgb(96, 98, 102);
}
.el-container {
height: 100%;
}
.el-main {
padding: 10px;
}
.el-header {
padding: 10px 20px;
box-shadow: 0 1px 7px rgba(0,0,0,0.3);
height: 52px !important;
}
.el-footer {
padding: 3px 20px;
font-size: 14px;
height: 38px !important;
}
a {
color: #66b1ff;
text-decoration: none;
}
a:hover, a:focus {
color: #409EFF;
text-decoration: none;
}
.el-table a {
color: rgb(96, 98, 102);
}
.el-table a:hover {
color: #66b1ff;
}
.el-table td {
padding: 5px 0;
cursor: pointer;
font-size: 14px;
}
.el-table th {
font-size: 12px;
}
.el-table__row .list-actions .el-button {
visibility: hidden;
}
.el-table__row:hover .list-actions .el-button {
visibility: visible;
}
.el-breadcrumb {
border: 1px solid #ebeef5;
border-radius: 5px;
padding: 7px;
}
/* old */
.wrapper {
display: table;
width: 100%;
height: 100%;
}
.content {
display: table-cell;
width: 100%;
height: 100%;
text-align: center;
vertical-align: middle;
}
pre {
margin: auto;
text-align: left;
width: 400px;
}
[v-cloak] {
display: none;
}
.hand {
cursor: pointer;
}
.main {
margin-bottom: 40px;
}
td {
vertical-align: middle !important;
overflow: hidden;
}
.entry-toolbar {
opacity: 0;
transition: opacity .25s;
}
tr:hover .entry-toolbar {
opacity: 1;
}
table.sortable th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort):after {
content: " \25B4\25BE"
}
th {
cursor: pointer;
}
|