isite 2022.8.4 → 2022.8.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -7
- package/apps/client-side/app.js +8 -3
- package/apps/client-side/site_files/css/bootstrap5-addon.css +55 -7
- package/apps/client-side/site_files/css/bootstrap5.css +1 -1
- package/apps/client-side/site_files/css/bootstrap5.css.map +1 -0
- package/apps/client-side/site_files/css/dropdown.css +3 -0
- package/apps/client-side/site_files/css/effect.css +136 -77
- package/apps/client-side/site_files/css/images.css +0 -3
- package/apps/client-side/site_files/css/layout.css +45 -51
- package/apps/client-side/site_files/css/modal.css +5 -6
- package/apps/client-side/site_files/css/normalize.css +146 -0
- package/apps/client-side/site_files/css/scrollbar.css +5 -5
- package/apps/client-side/site_files/css/table.css +3 -3
- package/apps/client-side/site_files/html/directive/i-button.html +5 -0
- package/apps/client-side/site_files/html/directive/i-checkbox.html +4 -0
- package/apps/client-side/site_files/html/directive/i-checklist.html +6 -0
- package/apps/client-side/site_files/html/directive/i-control.html +5 -0
- package/apps/client-side/site_files/html/directive/i-date.html +21 -16
- package/apps/client-side/site_files/html/directive/i-datetime.html +32 -0
- package/apps/client-side/site_files/html/{sub/i-file.content.html → directive/i-file.html} +3 -5
- package/apps/client-side/site_files/html/directive/i-image.html +7 -0
- package/apps/client-side/site_files/html/{sub/i-list2.content.html → directive/i-list.html} +2 -2
- package/apps/client-side/site_files/html/directive/i-radio.html +4 -0
- package/apps/client-side/site_files/html/directive/i-textarea.html +4 -0
- package/apps/client-side/site_files/html/directive/i-treenode.html +20 -0
- package/apps/client-side/site_files/html/directive/i-treeview.html +13 -0
- package/apps/client-side/site_files/html/directive/i-upload.html +5 -0
- package/apps/client-side/site_files/html/directive-core/i-date.html +64 -0
- package/apps/client-side/site_files/html/directive-core/i-list.html +22 -0
- package/apps/client-side/site_files/js/bootstrap-5-addon.js +1 -0
- package/apps/client-side/site_files/js/bootstrap-5-directive.js +171 -862
- package/apps/client-side/site_files/js/bootstrap.js.map +1 -0
- package/apps/client-side/site_files/js/directive.js +1865 -2044
- package/apps/client-side/site_files/js/directive.min.js +2 -2
- package/apps/client-side/site_files/js/site.js +26 -3
- package/apps/client-side/site_files/js/site.min.js +1 -1
- package/apps/security/site_files/html/login_modal.html +18 -26
- package/index.js +277 -278
- package/lib/email.js +108 -0
- package/lib/integrated.js +10 -26
- package/lib/parser.js +538 -514
- package/lib/routing.js +21 -15
- package/lib/security.js +1109 -1081
- package/lib/sessions.js +182 -247
- package/object-options/index.js +24 -4
- package/object-options/lib/fn.js +9 -3
- package/package.json +5 -3
- package/pull.bat +3 -0
- package/push.bat +2 -5
- package/apps/client-side/site_files/html/sub/i-list.content.html +0 -31
|
@@ -1,6 +1,89 @@
|
|
|
1
1
|
@media all {
|
|
2
|
+
.flex,
|
|
3
|
+
.display-flex {
|
|
4
|
+
display: flex !important;
|
|
5
|
+
}
|
|
6
|
+
.inline-flex,
|
|
7
|
+
.display-inline-flex {
|
|
8
|
+
display: inline-flex !important;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.flexbox,
|
|
12
|
+
.display-flexbox {
|
|
13
|
+
display: flexbox !important;
|
|
14
|
+
}
|
|
15
|
+
.flexbox,
|
|
16
|
+
.display-flexbox {
|
|
17
|
+
display: inline-flexbox !important;
|
|
18
|
+
}
|
|
19
|
+
.block,
|
|
20
|
+
.display-block {
|
|
21
|
+
display: block !important;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.none,
|
|
25
|
+
.display-none {
|
|
26
|
+
display: none !important;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.inline,
|
|
30
|
+
.display-inline {
|
|
31
|
+
display: inline !important;
|
|
32
|
+
}
|
|
33
|
+
.inline-block,
|
|
34
|
+
.display-inline-block {
|
|
35
|
+
display: inline-block !important;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.inline-grid,
|
|
39
|
+
.display-inline-grid {
|
|
40
|
+
display: inline-grid !important;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.fixed,
|
|
44
|
+
.position-fixed {
|
|
45
|
+
position: fixed !important;
|
|
46
|
+
}
|
|
47
|
+
.relative,
|
|
48
|
+
.position-relative {
|
|
49
|
+
position: relative !important;
|
|
50
|
+
}
|
|
51
|
+
.static,
|
|
52
|
+
.position-static {
|
|
53
|
+
position: static !important;
|
|
54
|
+
}
|
|
55
|
+
.sticky,
|
|
56
|
+
.position-sticky {
|
|
57
|
+
position: sticky !important;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.left,
|
|
61
|
+
.float-left {
|
|
62
|
+
float: left !important;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.right,
|
|
66
|
+
.float-right {
|
|
67
|
+
float: right !important;
|
|
68
|
+
}
|
|
69
|
+
.float-none {
|
|
70
|
+
float: none !important;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.text-center {
|
|
74
|
+
text-align: center !important;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.text-left {
|
|
78
|
+
text-align: left !important;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.text-right {
|
|
82
|
+
text-align: right !important;
|
|
83
|
+
}
|
|
84
|
+
|
|
2
85
|
.pointer {
|
|
3
|
-
cursor: pointer;
|
|
86
|
+
cursor: pointer !important;
|
|
4
87
|
}
|
|
5
88
|
|
|
6
89
|
.bold {
|
|
@@ -22,144 +105,120 @@
|
|
|
22
105
|
text-align: center !important;
|
|
23
106
|
}
|
|
24
107
|
|
|
25
|
-
.float-none {
|
|
26
|
-
float: none !important;
|
|
27
|
-
}
|
|
28
108
|
.center i.center {
|
|
29
109
|
vertical-align: text-bottom;
|
|
30
110
|
}
|
|
31
111
|
|
|
32
|
-
.
|
|
33
|
-
|
|
112
|
+
.border {
|
|
113
|
+
border: 1px solid var(--theme-color) !important;
|
|
34
114
|
}
|
|
35
115
|
|
|
36
|
-
.
|
|
37
|
-
|
|
116
|
+
.dashed {
|
|
117
|
+
border: 2px dashed var(--theme-color) !important;
|
|
38
118
|
}
|
|
39
119
|
|
|
40
|
-
.
|
|
41
|
-
|
|
120
|
+
.no-border {
|
|
121
|
+
border: none !important;
|
|
42
122
|
}
|
|
43
123
|
|
|
44
|
-
.
|
|
45
|
-
|
|
124
|
+
.no-border-left {
|
|
125
|
+
border-left: none !important;
|
|
46
126
|
}
|
|
47
127
|
|
|
48
|
-
.
|
|
49
|
-
|
|
128
|
+
.no-border-right {
|
|
129
|
+
border-right: none !important;
|
|
50
130
|
}
|
|
51
131
|
|
|
52
|
-
.border {
|
|
53
|
-
border:
|
|
132
|
+
.no-border-top {
|
|
133
|
+
border-top: none !important;
|
|
134
|
+
}
|
|
135
|
+
.no-border-bottom {
|
|
136
|
+
border-bottom: none !important;
|
|
54
137
|
}
|
|
55
138
|
|
|
56
|
-
.
|
|
57
|
-
border:
|
|
139
|
+
.no-border-radius {
|
|
140
|
+
border-radius: 0px !important;
|
|
58
141
|
}
|
|
59
142
|
|
|
143
|
+
.border-radius {
|
|
144
|
+
border-radius: 5px !important;
|
|
145
|
+
}
|
|
60
146
|
.margin {
|
|
61
|
-
margin:
|
|
147
|
+
margin: 5px !important;
|
|
62
148
|
}
|
|
63
149
|
|
|
64
150
|
.padding {
|
|
65
|
-
padding:
|
|
151
|
+
padding: 5px !important;
|
|
66
152
|
}
|
|
67
153
|
|
|
68
154
|
.text-shadow {
|
|
69
|
-
text-shadow: 1px 1px 1px #000;
|
|
155
|
+
text-shadow: 1px 1px 1px #000 !important;
|
|
70
156
|
}
|
|
71
157
|
|
|
72
158
|
.box-shadow {
|
|
73
|
-
box-shadow: 1px 1px 8px 2px #000;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.block {
|
|
77
|
-
display: block;
|
|
159
|
+
box-shadow: 1px 1px 8px 2px #000 !important;
|
|
78
160
|
}
|
|
79
161
|
|
|
80
|
-
.
|
|
81
|
-
|
|
162
|
+
.font-small {
|
|
163
|
+
font-size: small !important;
|
|
82
164
|
}
|
|
83
165
|
|
|
84
|
-
.
|
|
85
|
-
|
|
166
|
+
.font-smaller {
|
|
167
|
+
font-size: smaller !important;
|
|
86
168
|
}
|
|
87
169
|
|
|
88
|
-
.
|
|
89
|
-
|
|
170
|
+
.font-x-small {
|
|
171
|
+
font-size: x-small !important;
|
|
90
172
|
}
|
|
91
173
|
|
|
92
|
-
.small {
|
|
93
|
-
font-size: small;
|
|
174
|
+
.font-xx-small {
|
|
175
|
+
font-size: xx-small !important;
|
|
94
176
|
}
|
|
95
177
|
|
|
96
|
-
.
|
|
97
|
-
font-size:
|
|
178
|
+
.font-medium {
|
|
179
|
+
font-size: medium !important;
|
|
98
180
|
}
|
|
99
181
|
|
|
100
|
-
.
|
|
101
|
-
font-size:
|
|
182
|
+
.font-large {
|
|
183
|
+
font-size: large !important;
|
|
102
184
|
}
|
|
103
185
|
|
|
104
|
-
.
|
|
105
|
-
font-size:
|
|
186
|
+
.font-larger {
|
|
187
|
+
font-size: larger !important;
|
|
106
188
|
}
|
|
107
189
|
|
|
108
|
-
.
|
|
109
|
-
font-size:
|
|
190
|
+
.font-x-large {
|
|
191
|
+
font-size: x-large !important;
|
|
110
192
|
}
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
font-size: large;
|
|
193
|
+
.font-xx-large {
|
|
194
|
+
font-size: xx-large !important;
|
|
114
195
|
}
|
|
115
196
|
|
|
116
|
-
.
|
|
117
|
-
|
|
197
|
+
.rtl {
|
|
198
|
+
direction: rtl;
|
|
118
199
|
}
|
|
119
200
|
|
|
120
|
-
.
|
|
121
|
-
|
|
201
|
+
.ltr {
|
|
202
|
+
direction: ltr;
|
|
122
203
|
}
|
|
123
204
|
|
|
205
|
+
.height-auto{
|
|
206
|
+
height: auto !important;
|
|
207
|
+
};
|
|
208
|
+
.width-auto{
|
|
209
|
+
height: auto !important;
|
|
210
|
+
};
|
|
124
211
|
.error {
|
|
125
212
|
text-align: center;
|
|
126
213
|
color: red;
|
|
127
214
|
}
|
|
128
215
|
|
|
129
|
-
.xx-large {
|
|
130
|
-
font-size: xx-large;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
216
|
.appearance-none {
|
|
134
217
|
-moz-appearance: none;
|
|
135
218
|
-webkit-appearance: none;
|
|
136
219
|
appearance: none;
|
|
137
220
|
}
|
|
138
221
|
|
|
139
|
-
.no-border {
|
|
140
|
-
border: none !important;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
.no-border-left {
|
|
144
|
-
border-left: none !important;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
.no-border-right {
|
|
148
|
-
border-right: none !important;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
.no-border-top {
|
|
152
|
-
border-top: none !important;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
.no-border-bottom {
|
|
156
|
-
border-bottom: none !important;
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
.no-border-radius {
|
|
160
|
-
border-radius: 0px !important;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
222
|
.paper {
|
|
164
223
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 10px 0 -5px #eee, 0 10px 1px -4px rgba(0, 0, 0, 0.15), 0 20px 0 -10px #eee, 0 20px 1px -9px rgba(0, 0, 0, 0.15);
|
|
165
224
|
}
|
|
@@ -21,9 +21,6 @@ i-image img {
|
|
|
21
21
|
-moz-transition: all 0.5s ease;
|
|
22
22
|
-webkit-transition: all 0.5s ease;
|
|
23
23
|
-ms-transition: all 0.5s ease;
|
|
24
|
-
background-image: url('/x-images/no.jpg');
|
|
25
|
-
background-size: contain;
|
|
26
|
-
background-repeat: no-repeat;
|
|
27
24
|
border: 1px dashed var(--theme-color);
|
|
28
25
|
}
|
|
29
26
|
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
html {
|
|
14
14
|
background-color: var(--body-background);
|
|
15
|
+
scroll-behavior: smooth;
|
|
15
16
|
}
|
|
16
17
|
|
|
17
18
|
body {
|
|
@@ -86,7 +87,8 @@ h5 {
|
|
|
86
87
|
.col11,
|
|
87
88
|
.col12 {
|
|
88
89
|
vertical-align: top;
|
|
89
|
-
padding:
|
|
90
|
+
padding: 0;
|
|
91
|
+
margin: 0;
|
|
90
92
|
float: var(--float);
|
|
91
93
|
display: inline;
|
|
92
94
|
}
|
|
@@ -103,114 +105,106 @@ h5 {
|
|
|
103
105
|
.col-11,
|
|
104
106
|
.col-12 {
|
|
105
107
|
vertical-align: top;
|
|
106
|
-
padding:
|
|
107
|
-
margin:
|
|
108
|
+
padding: 0;
|
|
109
|
+
margin: 0;
|
|
108
110
|
float: var(--float);
|
|
109
111
|
display: inline;
|
|
110
112
|
}
|
|
111
113
|
|
|
112
|
-
.
|
|
113
|
-
width: calc(1 /
|
|
114
|
+
.col1 {
|
|
115
|
+
width: calc(1 / 12 * 100%) !important;
|
|
114
116
|
}
|
|
115
117
|
|
|
116
|
-
.
|
|
117
|
-
width: calc(2 /
|
|
118
|
+
.col2 {
|
|
119
|
+
width: calc(2 / 12 * 100%) !important;
|
|
118
120
|
}
|
|
119
121
|
|
|
120
|
-
.
|
|
121
|
-
width: calc(3 /
|
|
122
|
+
.col3 {
|
|
123
|
+
width: calc(3 / 12 * 100%) !important;
|
|
122
124
|
}
|
|
123
125
|
|
|
124
|
-
.
|
|
125
|
-
width: calc(4 /
|
|
126
|
+
.col4 {
|
|
127
|
+
width: calc(4 / 12 * 100%) !important;
|
|
126
128
|
}
|
|
127
129
|
|
|
128
|
-
.
|
|
129
|
-
width: calc(5 /
|
|
130
|
+
.col5 {
|
|
131
|
+
width: calc(5 / 12 * 100%) !important;
|
|
130
132
|
}
|
|
131
133
|
|
|
132
|
-
.
|
|
133
|
-
width: calc(6 /
|
|
134
|
+
.col6 {
|
|
135
|
+
width: calc(6 / 12 * 100%) !important;
|
|
134
136
|
}
|
|
135
137
|
|
|
136
|
-
.
|
|
137
|
-
width: calc(7 /
|
|
138
|
+
.col7 {
|
|
139
|
+
width: calc(7 / 12 * 100%) !important;
|
|
138
140
|
}
|
|
139
141
|
|
|
140
|
-
.
|
|
141
|
-
width: calc(8 /
|
|
142
|
+
.col8 {
|
|
143
|
+
width: calc(8 / 12 * 100%) !important;
|
|
142
144
|
}
|
|
143
145
|
|
|
144
|
-
.
|
|
145
|
-
width: calc(9 /
|
|
146
|
+
.col9 {
|
|
147
|
+
width: calc(9 / 12 * 100%) !important;
|
|
146
148
|
}
|
|
147
149
|
|
|
148
|
-
.
|
|
149
|
-
width: calc(10 /
|
|
150
|
+
.col10 {
|
|
151
|
+
width: calc(10 / 12 * 100%) !important;
|
|
150
152
|
}
|
|
151
153
|
|
|
152
|
-
.
|
|
153
|
-
width: calc(11 /
|
|
154
|
+
.col11 {
|
|
155
|
+
width: calc(11 / 12 * 100%) !important;
|
|
154
156
|
}
|
|
155
157
|
|
|
156
|
-
.
|
|
157
|
-
width: calc(12 /
|
|
158
|
+
.col12 {
|
|
159
|
+
width: calc(12 / 12 * 100%) !important;
|
|
158
160
|
}
|
|
159
161
|
|
|
160
162
|
.col-1 {
|
|
161
|
-
width: calc(0.9 /
|
|
163
|
+
width: calc(0.9 / 12 * 100%) !important;
|
|
162
164
|
}
|
|
163
165
|
|
|
164
166
|
.col-2 {
|
|
165
|
-
width: calc(1.9 /
|
|
167
|
+
width: calc(1.9 / 12 * 100%) !important;
|
|
166
168
|
}
|
|
167
169
|
|
|
168
170
|
.col-3 {
|
|
169
|
-
width: calc(2.9 /
|
|
171
|
+
width: calc(2.9 / 12 * 100%) !important;
|
|
170
172
|
}
|
|
171
173
|
|
|
172
174
|
.col-4 {
|
|
173
|
-
width: calc(3.9 /
|
|
175
|
+
width: calc(3.9 / 12 * 100%) !important;
|
|
174
176
|
}
|
|
175
177
|
|
|
176
178
|
.col-5 {
|
|
177
|
-
width: calc(4.9 /
|
|
179
|
+
width: calc(4.9 / 12 * 100%) !important;
|
|
178
180
|
}
|
|
179
181
|
|
|
180
182
|
.col-6 {
|
|
181
|
-
width: calc(5.9 /
|
|
183
|
+
width: calc(5.9 / 12 * 100%) !important;
|
|
182
184
|
}
|
|
183
185
|
|
|
184
186
|
.col-7 {
|
|
185
|
-
width: calc(6.9 /
|
|
187
|
+
width: calc(6.9 / 12 * 100%) !important;
|
|
186
188
|
}
|
|
187
189
|
|
|
188
190
|
.col-8 {
|
|
189
|
-
width: calc(7.9 /
|
|
191
|
+
width: calc(7.9 / 12 * 100%) !important;
|
|
190
192
|
}
|
|
191
193
|
|
|
192
194
|
.col-9 {
|
|
193
|
-
width: calc(8.9 /
|
|
195
|
+
width: calc(8.9 / 12 * 100%) !important;
|
|
194
196
|
}
|
|
195
197
|
|
|
196
198
|
.col-10 {
|
|
197
|
-
width: calc(9.9 /
|
|
199
|
+
width: calc(9.9 / 12 * 100%) !important;
|
|
198
200
|
}
|
|
199
201
|
|
|
200
202
|
.col-11 {
|
|
201
|
-
width: calc(10.9 /
|
|
203
|
+
width: calc(10.9 / 12 * 100%) !important;
|
|
202
204
|
}
|
|
203
205
|
|
|
204
206
|
.col-12 {
|
|
205
|
-
width: calc(11.9 /
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
.rtl {
|
|
209
|
-
direction: rtl;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
.ltr {
|
|
213
|
-
direction: ltr;
|
|
207
|
+
width: calc(11.9 / 12 * 100%) !important;
|
|
214
208
|
}
|
|
215
209
|
|
|
216
210
|
/* Small devices (landscape phones, 576px and down) */
|
|
@@ -225,7 +219,7 @@ h5 {
|
|
|
225
219
|
.col8,
|
|
226
220
|
.col9 {
|
|
227
221
|
vertical-align: top;
|
|
228
|
-
width: calc(12 /
|
|
222
|
+
width: calc(12 / 12 * 100%) !important;
|
|
229
223
|
}
|
|
230
224
|
|
|
231
225
|
.desktop {
|
|
@@ -241,7 +235,7 @@ h5 {
|
|
|
241
235
|
.col4,
|
|
242
236
|
.col5 {
|
|
243
237
|
vertical-align: top;
|
|
244
|
-
width: calc(12 /
|
|
238
|
+
width: calc(12 / 12 * 100%) !important;
|
|
245
239
|
}
|
|
246
240
|
}
|
|
247
241
|
|
|
@@ -253,7 +247,7 @@ h5 {
|
|
|
253
247
|
.col4,
|
|
254
248
|
.col5 {
|
|
255
249
|
vertical-align: top;
|
|
256
|
-
width: calc(12 /
|
|
250
|
+
width: calc(12 / 12 * 100%) !important;
|
|
257
251
|
}
|
|
258
252
|
.mobile {
|
|
259
253
|
display: none !important;
|
|
@@ -266,7 +260,7 @@ h5 {
|
|
|
266
260
|
.col2,
|
|
267
261
|
.col3 {
|
|
268
262
|
vertical-align: top;
|
|
269
|
-
width: calc(12 /
|
|
263
|
+
width: calc(12 / 12 * 100%) !important;
|
|
270
264
|
}
|
|
271
265
|
.mobile {
|
|
272
266
|
display: none !important;
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
padding-bottom: 20px;
|
|
7
7
|
left: 0;
|
|
8
8
|
top: 0;
|
|
9
|
-
width: 100
|
|
10
|
-
height: 100
|
|
11
|
-
background-color: var(--modal-background);
|
|
9
|
+
width: 100% !important;
|
|
10
|
+
height: 100% !important;
|
|
11
|
+
background-color: var(--modal-background) !important;
|
|
12
12
|
overflow: auto;
|
|
13
13
|
}
|
|
14
14
|
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
margin: auto;
|
|
21
21
|
padding: 0;
|
|
22
22
|
width: 90%;
|
|
23
|
+
height: auto !important;
|
|
23
24
|
box-shadow: 0 4px 8px 0 var(--modal-box-shadow-color), 0 6px 20px 0 var(--modal-box-shadow-color);
|
|
24
25
|
-webkit-animation-name: var(--modal-animation-name);
|
|
25
26
|
-webkit-animation-duration: var(--modal-animation-duration);
|
|
@@ -40,10 +41,8 @@
|
|
|
40
41
|
|
|
41
42
|
.modal-body {
|
|
42
43
|
display: contents;
|
|
43
|
-
padding: 2px 16px;
|
|
44
44
|
color: var(--modal-color);
|
|
45
|
-
overflow:
|
|
46
|
-
max-height: 85vh;
|
|
45
|
+
overflow: visible;
|
|
47
46
|
}
|
|
48
47
|
|
|
49
48
|
.modal-footer {
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
html {
|
|
2
|
+
line-height: 1.15;
|
|
3
|
+
-webkit-text-size-adjust: 100%;
|
|
4
|
+
}
|
|
5
|
+
body {
|
|
6
|
+
margin: 0;
|
|
7
|
+
}
|
|
8
|
+
main {
|
|
9
|
+
display: block;
|
|
10
|
+
}
|
|
11
|
+
h1 {
|
|
12
|
+
font-size: 2em;
|
|
13
|
+
margin: 0.67em 0;
|
|
14
|
+
}
|
|
15
|
+
hr {
|
|
16
|
+
box-sizing: content-box;
|
|
17
|
+
height: 0;
|
|
18
|
+
overflow: visible;
|
|
19
|
+
}
|
|
20
|
+
pre {
|
|
21
|
+
font-family: monospace, monospace;
|
|
22
|
+
font-size: 1em;
|
|
23
|
+
}
|
|
24
|
+
a {
|
|
25
|
+
background-color: transparent;
|
|
26
|
+
}
|
|
27
|
+
abbr[title] {
|
|
28
|
+
border-bottom: none;
|
|
29
|
+
text-decoration: underline;
|
|
30
|
+
text-decoration: underline dotted;
|
|
31
|
+
}
|
|
32
|
+
b,
|
|
33
|
+
strong {
|
|
34
|
+
font-weight: bolder;
|
|
35
|
+
}
|
|
36
|
+
code,
|
|
37
|
+
kbd,
|
|
38
|
+
samp {
|
|
39
|
+
font-family: monospace, monospace;
|
|
40
|
+
font-size: 1em;
|
|
41
|
+
}
|
|
42
|
+
small {
|
|
43
|
+
font-size: 80%;
|
|
44
|
+
}
|
|
45
|
+
sub,
|
|
46
|
+
sup {
|
|
47
|
+
font-size: 75%;
|
|
48
|
+
line-height: 0;
|
|
49
|
+
position: relative;
|
|
50
|
+
vertical-align: baseline;
|
|
51
|
+
}
|
|
52
|
+
sub {
|
|
53
|
+
bottom: -0.25em;
|
|
54
|
+
}
|
|
55
|
+
sup {
|
|
56
|
+
top: -0.5em;
|
|
57
|
+
}
|
|
58
|
+
img {
|
|
59
|
+
border-style: none;
|
|
60
|
+
}
|
|
61
|
+
button,
|
|
62
|
+
input,
|
|
63
|
+
optgroup,
|
|
64
|
+
select,
|
|
65
|
+
textarea {
|
|
66
|
+
font-family: inherit;
|
|
67
|
+
font-size: 100%;
|
|
68
|
+
line-height: 1.15;
|
|
69
|
+
margin: 0;
|
|
70
|
+
}
|
|
71
|
+
button,
|
|
72
|
+
input {
|
|
73
|
+
overflow: visible;
|
|
74
|
+
}
|
|
75
|
+
button,
|
|
76
|
+
select {
|
|
77
|
+
text-transform: none;
|
|
78
|
+
}
|
|
79
|
+
[type="button"],
|
|
80
|
+
[type="reset"],
|
|
81
|
+
[type="submit"],
|
|
82
|
+
button {
|
|
83
|
+
-webkit-appearance: button;
|
|
84
|
+
}
|
|
85
|
+
[type="button"]::-moz-focus-inner,
|
|
86
|
+
[type="reset"]::-moz-focus-inner,
|
|
87
|
+
[type="submit"]::-moz-focus-inner,
|
|
88
|
+
button::-moz-focus-inner {
|
|
89
|
+
border-style: none;
|
|
90
|
+
padding: 0;
|
|
91
|
+
}
|
|
92
|
+
[type="button"]:-moz-focusring,
|
|
93
|
+
[type="reset"]:-moz-focusring,
|
|
94
|
+
[type="submit"]:-moz-focusring,
|
|
95
|
+
button:-moz-focusring {
|
|
96
|
+
outline: 1px dotted ButtonText;
|
|
97
|
+
}
|
|
98
|
+
fieldset {
|
|
99
|
+
padding: 0.35em 0.75em 0.625em;
|
|
100
|
+
}
|
|
101
|
+
legend {
|
|
102
|
+
box-sizing: border-box;
|
|
103
|
+
color: inherit;
|
|
104
|
+
display: table;
|
|
105
|
+
max-width: 100%;
|
|
106
|
+
padding: 0;
|
|
107
|
+
white-space: normal;
|
|
108
|
+
}
|
|
109
|
+
progress {
|
|
110
|
+
vertical-align: baseline;
|
|
111
|
+
}
|
|
112
|
+
textarea {
|
|
113
|
+
overflow: auto;
|
|
114
|
+
}
|
|
115
|
+
[type="checkbox"],
|
|
116
|
+
[type="radio"] {
|
|
117
|
+
box-sizing: border-box;
|
|
118
|
+
padding: 0;
|
|
119
|
+
}
|
|
120
|
+
[type="number"]::-webkit-inner-spin-button,
|
|
121
|
+
[type="number"]::-webkit-outer-spin-button {
|
|
122
|
+
height: auto;
|
|
123
|
+
}
|
|
124
|
+
[type="search"] {
|
|
125
|
+
-webkit-appearance: textfield;
|
|
126
|
+
outline-offset: -2px;
|
|
127
|
+
}
|
|
128
|
+
[type="search"]::-webkit-search-decoration {
|
|
129
|
+
-webkit-appearance: none;
|
|
130
|
+
}
|
|
131
|
+
::-webkit-file-upload-button {
|
|
132
|
+
-webkit-appearance: button;
|
|
133
|
+
font: inherit;
|
|
134
|
+
}
|
|
135
|
+
details {
|
|
136
|
+
display: block;
|
|
137
|
+
}
|
|
138
|
+
summary {
|
|
139
|
+
display: list-item;
|
|
140
|
+
}
|
|
141
|
+
template {
|
|
142
|
+
display: none;
|
|
143
|
+
}
|
|
144
|
+
[hidden] {
|
|
145
|
+
display: none;
|
|
146
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
::-webkit-scrollbar {
|
|
2
|
-
|
|
2
|
+
width: 10px;
|
|
3
3
|
}
|
|
4
|
-
|
|
4
|
+
|
|
5
5
|
::-webkit-scrollbar-track {
|
|
6
|
-
|
|
6
|
+
-webkit-box-shadow: inset 0 0 6px var(--scrollbar-box-shadow-color);
|
|
7
7
|
}
|
|
8
|
-
|
|
8
|
+
|
|
9
9
|
::-webkit-scrollbar-thumb {
|
|
10
10
|
background-color: var(--scrollbar-background-color);
|
|
11
11
|
outline: 1px solid var(--scrollbar-color);
|
|
12
|
-
}
|
|
12
|
+
}
|