-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodals.css
More file actions
209 lines (185 loc) · 3.65 KB
/
modals.css
File metadata and controls
209 lines (185 loc) · 3.65 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
.modal-wrapper {
position: absolute;
top: 0;
left: 0;
display: block;
height: 100vh;
width: 100vw;
z-index: 999;
overflow: auto;
animation: toDark 1s forwards;
}
.modal {
position: absolute;
top: 50px;
margin: auto;
left: 20vw;
right: 20vw;
width: 60vw;
background: #fff;
z-index: 999;
box-shadow: 0 0 15px 0 #000;
/*animation: fromRight 0.5s;*/
resize: both;
overflow: hidden;
display: grid;
grid-template-rows: 52px 1fr 56px;
min-width: 950px;
border-radius: 5px;
user-select: none;
max-height: 80vh;
min-height: 500px;
}
.modal-confirm {
top: 20vh;
left: 25vw;
right: 25vw;
width: 50vw;
min-height: 250px;
min-width: 620px;
max-height: 800px;
border-radius: 5px;
}
.modal-header {
height: 28px;
padding: 14px 20px 10px 20px;
font-size: 20px;
border-bottom: 0;
background: #fff;
user-select: none;
z-index: 3;
color: #000;
text-align: center;
}
.modal-header::after {
content: " ";
display: block;
height: 1px;
margin-top: 11px;
position: relative;
left: 0;
background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #4caf50, purple, red, orange, #2196f3, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
width: 100%;
}
.modal-content {
/*padding: 5px 20px 20px 20px;*/
min-height: 100px;
background: #eee;
color: #000;
overflow: auto;
max-height: 500px;
}
.modal-content-notabs {
font-size: 12px;
}
.modal-content-confirm {
min-height: 0px;
background: #eee;
color: #000;
padding: 30px;
padding-bottom: 40px;
font-size: 13px;
overflow: auto;
}
.modal-footer {
border-top: 0;
padding: 12px 14px 8px 14px;
text-align: right;
font-size: 14px;
color: #000;
background: #fff;
}
.modal .im-tabs-tablist {
padding-left: 2px;
}
.modal-content .newColForm {
margin: 2px;
border-radius: 2px;
border: 0px solid #fff;
background: #dfdfdf;
}
.modal-content .im-cat-header {
border: 1px solid #ddd;
}
.modal-content .im-tabs-area {
padding-top: 20px;
padding: 20px;
}
.modal-toolbar {
position: fixed;
position: absolute;
right: 85px;
padding: 0;
background: transparent;
z-index: 100;
text-align: right;
max-width: 450px;
bottom: 13px;
display: flex;
}
.modal-toolbar button {
display: flex;
flex-direction: row;
margin-left: auto;
margin-right: 12px;
}
.modal-toolbar i {
color: #fff;
margin-right: 5px;
}
.im-feedback-title {
font-size: 18px;
}
.im-feedback-subtitle {
font-size: 14px;
}
.im-feedback-grid {
display: grid;
grid-template-columns: 180px 1fr;
grid-row-gap: 3px;
grid-column-gap: 3px;
justify-content: stretch;
justify-items: stretch;
padding-bottom: 3px;
}
.im-feedback-content textarea {
min-height: 180px !important;
}
.im-items-selection,
.im-items-selection-header {
display: grid;
grid-template-columns: 20px 3fr 1fr 1fr;
column-gap: 5px;
row-gap: 0;
margin-bottom: 0;
margin-left: 30px;
margin-right: 40px;
padding: 3px 10px;
font-size: 13px;
border-radius: 2px;
}
.im-items-selection:hover {
background: #2196f3;
color: #fff;
cursor: pointer;
}
.im-items-selection div {
padding-top: 1px;
}
.im-diagram-items-modal {
position: sticky;
top: 0px;
background: #eee;
box-shadow: 0 0 8px -4px #000;
padding-top: 4px;
padding-bottom: 4px;
z-index: 2;
margin-bottom: 8px;
}
.im-diagram-items-modal .im-search-bar {
margin: 0px 50px 8px 50px;
position: absolute;
top: -50px;
right: 50px;
z-index: 999100;
}