-
Notifications
You must be signed in to change notification settings - Fork 4
/
layout.css
122 lines (119 loc) · 2.07 KB
/
layout.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
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
#main {
width: 100%;
display: flex;
justify-content: center;
}
#layout {
width: 90%;
}
#print-js {
width: 100% !important;
height: fit-content !important;
top: 0 !important;
padding: 0 40px;
}
.editormd-fullscreen {
z-index: 110;
}
#container {
position: absolute;
z-index: 100;
left: 20px;
bottom: 20px;
width: 160px;
text-align: center;
font-size: 16px;
}
#selector {
max-height: 300px;
z-index: 10000;
overflow-y: auto;
overflow-x: hidden;
/* border: 1px solid; */
background-color: #f4f5f7;
border-radius: 4px 4px 0 0;
visibility: hidden;
}
#selector:hover {
cursor: pointer;
}
.selector__item.active {
color: #67C23A;
}
button:hover {
cursor: pointer;
}
.action--delete {
background-color: #e6a23c;
border-color: #e6a23c;
}
.action--revert {
position: fixed;
bottom: 20px;
right: 20px;
width: 20px;
height: 20px;
background-color: #eeeeee;
border: 1px solid #d7d8da;
border-radius: 50%;
}
.action--revert:hover {
cursor: pointer;
background-color: #909399;
}
.input {
-webkit-appearance: none;
background-color: #eeeeee;
background-image: none;
border-radius: 4px;
border: 1px solid #d7d8da;
box-sizing: border-box;
color: #909399;
display: inline-block;
font-size: inherit;
height: 40px;
line-height: 40px;
outline: none;
padding: 0 15px;
margin-bottom: 20px;
transition: border-color .2s cubic-bezier(.645,.045,.355,1);
width: 100%;
}
.input:focus {
outline: none;
border-color: #409eff;
background-color: #fff;
}
.current-error {
border-color: #fb5549;
}
.selector__item {
position: relative;
color: #606266;
}
.selector__item:hover {
background-color: #909399;
}
.selector__item-span {
display: inline-block;
width: 100%;
box-sizing: border-box;
padding: 10px 30px 10px 30px;
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
}
.selector__item-delete {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
background-color: #F56C6C;
border-radius: 50%;
}
.tool-icon {
width: 22px;
}
.tool-icon:hover {
cursor: pointer;
}