welcome_css 0.33 → 0.37
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.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/_fonts.scss +32 -0
- data/app/assets/stylesheets/_welcome-ui-buttons.scss +17 -4
- data/app/assets/stylesheets/_welcome-ui-menu-app.scss +4 -1
- data/app/assets/stylesheets/_welcome-ui-navbar.scss +52 -1
- data/app/assets/stylesheets/_welcome-ui-responsive.scss +44 -1
- data/app/assets/stylesheets/_welcome-ui-sidebar.scss +106 -84
- data/app/assets/stylesheets/_welcome-ui-tables.scss +260 -31
- data/app/assets/stylesheets/_welcome-ui-typography.scss +10 -0
- data/app/assets/stylesheets/_welcome-ui.scss +190 -11
- data/app/assets/stylesheets/_welcome_bootstrap_variables.scss +0 -1
- data/lib/welcome_css/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f1f894349b5d65f0e3f93dbc73307a90f55236b3f1857ac0cc520d2add079a01
|
|
4
|
+
data.tar.gz: d396516ffbb2c35ede8656fb06634c0bad6a187750f8ca66339c63cd2049066c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ace8e510b76f40ddd60d1ab1cb9bea4c71671589ff302eb68221c5705d64189c73b9dac0a50a849c599d1630976ea6b4310f8edbef28d5d21431c557270ea250
|
|
7
|
+
data.tar.gz: e68701b26b6dc64091fda436198f00d48eb49ebfe2f6fad656df7df38aa4c47c6a87b37efc32b2842bd02ef74ce6466ce7e29164b25c2f31737ffd18f74c8bb4
|
|
@@ -1,6 +1,38 @@
|
|
|
1
1
|
/***************************************/
|
|
2
2
|
/*GT Eesti*/
|
|
3
3
|
/**************************************/
|
|
4
|
+
|
|
5
|
+
@font-face {
|
|
6
|
+
font-family: 'gilroy-bold';
|
|
7
|
+
src: asset-url('gilroy/bold/gilroy-bold.woff2') format('woff2'),
|
|
8
|
+
asset-url('gilroy/bold/gilroy-bold.woff') format('woff'),
|
|
9
|
+
asset-url('gilroy/bold/gilroy-bold.ttf') format('truetype'),
|
|
10
|
+
asset-url('gilroy/bold/gilroy-bold.svg#gilroy-bold') format('svg');
|
|
11
|
+
font-weight: normal;
|
|
12
|
+
font-style: normal;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@font-face {
|
|
16
|
+
font-family: 'nunitosans-regular';
|
|
17
|
+
src: asset-url('nunito/regular/nunitosans-regular.woff2') format('woff2'),
|
|
18
|
+
asset-url('nunito/regular/nunitosans-regular.woff') format('woff'),
|
|
19
|
+
asset-url('nunito/regular/nunitosans-regular.ttf') format('truetype'),
|
|
20
|
+
asset-url('nunito/regular/nunitosans-regular.svg#nunitosans-regular') format('svg');
|
|
21
|
+
font-weight: normal;
|
|
22
|
+
font-style: normal;
|
|
23
|
+
}
|
|
24
|
+
@font-face {
|
|
25
|
+
font-family: 'nunitosans-bold';
|
|
26
|
+
src: asset-url('nunito/bold/nunitosans-bold.woff2') format('woff2'),
|
|
27
|
+
asset-url('nunito/bold/nunitosans-bold.woff') format('woff'),
|
|
28
|
+
asset-url('nunito/bold/nunitosans-bold.ttf') format('truetype'),
|
|
29
|
+
asset-url('nunito/bold/nunitosans-bold.svg#nunitosans-bold') format('svg');
|
|
30
|
+
font-weight: normal;
|
|
31
|
+
font-style: normal;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
/**************************************/
|
|
35
|
+
|
|
4
36
|
@font-face {
|
|
5
37
|
font-family: 'gt-eesti-light';
|
|
6
38
|
src: asset-url('GT-Eesti/Light/GTEestiDisplay-Light.eot');
|
|
@@ -47,6 +47,8 @@
|
|
|
47
47
|
width: 100%;
|
|
48
48
|
font-size: $ui_font_small;
|
|
49
49
|
border-bottom: 1px solid $ui_middlegray;
|
|
50
|
+
text-align: left;
|
|
51
|
+
padding: 6px 20px 6px 20px;
|
|
50
52
|
}
|
|
51
53
|
.ui-app-area .dropdown .btn-group .btn:hover {
|
|
52
54
|
color: $ui_white;
|
|
@@ -98,7 +100,7 @@
|
|
|
98
100
|
background-color: $ui_white;
|
|
99
101
|
font-size: $ui_font_normal;
|
|
100
102
|
color: $ui_back;
|
|
101
|
-
border: 1px solid
|
|
103
|
+
border: 1px solid #D9D9D9;
|
|
102
104
|
font-family: 'hk_groteskmedium';
|
|
103
105
|
font-weight: 400;
|
|
104
106
|
}
|
|
@@ -117,6 +119,9 @@
|
|
|
117
119
|
border: 1px solid $ui_back;
|
|
118
120
|
font-family: 'gt-eesti-medium';
|
|
119
121
|
}
|
|
122
|
+
.btn-pad-lg {
|
|
123
|
+
padding: 6px 30px !important;
|
|
124
|
+
}
|
|
120
125
|
|
|
121
126
|
/* ========================================= */
|
|
122
127
|
|
|
@@ -228,7 +233,7 @@
|
|
|
228
233
|
background-position: right 10px top 18px;
|
|
229
234
|
}
|
|
230
235
|
#ui-tabs .dropdown.dropdown-select .dropdown-menu {
|
|
231
|
-
width:
|
|
236
|
+
width: 300px;
|
|
232
237
|
}
|
|
233
238
|
.btn-dot {
|
|
234
239
|
top: 6px;
|
|
@@ -259,6 +264,14 @@
|
|
|
259
264
|
height: 30px;
|
|
260
265
|
}*/
|
|
261
266
|
|
|
267
|
+
.btn.btn-upload {
|
|
268
|
+
padding: 6px 12px 6px 30px !important;
|
|
269
|
+
background-image: image-url('icons/icn-upload.svg');
|
|
270
|
+
background-repeat: no-repeat;
|
|
271
|
+
background-size: 14px;
|
|
272
|
+
background-position: left 8px top 9px;
|
|
273
|
+
}
|
|
274
|
+
|
|
262
275
|
/* ========================================= */
|
|
263
276
|
|
|
264
277
|
.am-content.ui-app-area .btn-add {
|
|
@@ -283,8 +296,8 @@
|
|
|
283
296
|
.parcel-pdf-dropdown {
|
|
284
297
|
display: block;
|
|
285
298
|
position: absolute !important;
|
|
286
|
-
right:
|
|
287
|
-
top:
|
|
299
|
+
right: 20px;
|
|
300
|
+
top: 6px;
|
|
288
301
|
}
|
|
289
302
|
|
|
290
303
|
/* ========================================= */
|
|
@@ -3,12 +3,15 @@
|
|
|
3
3
|
|
|
4
4
|
.menu-app {
|
|
5
5
|
background-color: $ui_white;
|
|
6
|
+
/*box-shadow: $ui-shadow-right;*/
|
|
7
|
+
border-right: 1px solid #D9D9D9;
|
|
6
8
|
}
|
|
7
9
|
.menu-app .list-group-item {
|
|
8
10
|
border: none;
|
|
9
11
|
font-size: $ui_font_normal;
|
|
10
12
|
border-left: 2px solid $ui_white;
|
|
11
|
-
font-family: '
|
|
13
|
+
font-family: 'nunitosans-semibold';
|
|
14
|
+
/*font-family: 'nunitosans-bold';*/
|
|
12
15
|
}
|
|
13
16
|
.menu-app .list-group-item-action:hover,
|
|
14
17
|
.menu-app .list-group-item-action:focus {
|
|
@@ -1,11 +1,62 @@
|
|
|
1
1
|
// Variables
|
|
2
2
|
// Welcome UI - Navbar
|
|
3
3
|
|
|
4
|
+
ul#navbar {
|
|
5
|
+
float: left;
|
|
6
|
+
}
|
|
4
7
|
.navbar-ui {
|
|
5
8
|
border-bottom: 1px solid $ui_lightergray;
|
|
6
9
|
}
|
|
7
10
|
.navbar-ui .nav-link {
|
|
8
11
|
color: $ui_back;
|
|
9
12
|
font-size: $ui_font_small;
|
|
10
|
-
font-family: 'hk-grotesk-semibold'
|
|
13
|
+
/*font-family: 'hk-grotesk-semibold';*/
|
|
14
|
+
font-family: 'nunitosans-semibold';
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.alert-msg {
|
|
18
|
+
position: fixed;
|
|
19
|
+
top: 6px;
|
|
20
|
+
right: 12px;
|
|
21
|
+
left: auto;
|
|
22
|
+
z-index: 1030;
|
|
23
|
+
background-color: #EBF7EE;
|
|
24
|
+
border: 1px solid #C0E3CA;
|
|
25
|
+
width: 292px !important;
|
|
26
|
+
padding: 19px 20px;
|
|
27
|
+
font-size: 14px;
|
|
28
|
+
}
|
|
29
|
+
.am-top-header .col-6:first-child {
|
|
30
|
+
display: none;
|
|
31
|
+
}
|
|
32
|
+
.col-6.admin-options {
|
|
33
|
+
max-width: 100%;
|
|
34
|
+
width: 100%;
|
|
35
|
+
flex: auto;
|
|
36
|
+
}
|
|
37
|
+
.navbar-nav.am-icons-nav {
|
|
38
|
+
position: absolute;
|
|
39
|
+
left: -12px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
@media (max-width: 768px) {
|
|
43
|
+
.am-top-header .col-6:first-child {
|
|
44
|
+
display: block;
|
|
45
|
+
}
|
|
46
|
+
.navbar-nav.am-icons-nav {
|
|
47
|
+
position: fixed;
|
|
48
|
+
left: unset;
|
|
49
|
+
}
|
|
50
|
+
.am-left-sidebar .am-logo {
|
|
51
|
+
display: none !important;
|
|
52
|
+
}
|
|
53
|
+
.am-wrapper.main-app .ui-app-area.construction-area {
|
|
54
|
+
width: 100%;
|
|
55
|
+
padding: 0;
|
|
56
|
+
position: fixed;
|
|
57
|
+
z-index: 9999;
|
|
58
|
+
}
|
|
59
|
+
.am-wrapper.main-app .ui-app-area.construction-area nav {
|
|
60
|
+
height: 50px !important;
|
|
61
|
+
}
|
|
11
62
|
}
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
width: 100% !important;
|
|
121
121
|
}
|
|
122
122
|
.land-app .navbar {
|
|
123
|
-
display:
|
|
123
|
+
display: none;
|
|
124
124
|
position: fixed;
|
|
125
125
|
width: 100%;
|
|
126
126
|
height: 58px;
|
|
@@ -163,6 +163,10 @@
|
|
|
163
163
|
.ui-app-area {
|
|
164
164
|
padding-top: 80px;
|
|
165
165
|
}
|
|
166
|
+
.menu-app {
|
|
167
|
+
position: fixed;
|
|
168
|
+
z-index: 9999;
|
|
169
|
+
}
|
|
166
170
|
.block-stats-area .form-control,
|
|
167
171
|
.card.card-body .form-control {
|
|
168
172
|
margin-bottom: 12px;
|
|
@@ -194,6 +198,16 @@
|
|
|
194
198
|
float: left;
|
|
195
199
|
text-align: left;
|
|
196
200
|
}
|
|
201
|
+
.white-header .col-lg-7,
|
|
202
|
+
.white-header .col-lg-5 {
|
|
203
|
+
width: 50%;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
@media (min-width: 769px) {
|
|
208
|
+
.navbar .logo-area {
|
|
209
|
+
display: none;
|
|
210
|
+
}
|
|
197
211
|
}
|
|
198
212
|
|
|
199
213
|
@media (max-width: 768px) {
|
|
@@ -224,6 +238,22 @@
|
|
|
224
238
|
.land-app .ui-app-area .filter-block .w-50 {
|
|
225
239
|
width: 100% !important;
|
|
226
240
|
}
|
|
241
|
+
.am-left-sidebar {
|
|
242
|
+
padding-top: 55px !important;
|
|
243
|
+
}
|
|
244
|
+
.am-left-sidebar .logo-area {
|
|
245
|
+
display: none;
|
|
246
|
+
}
|
|
247
|
+
label[data-function*=swipe] {
|
|
248
|
+
z-index: 9999999;
|
|
249
|
+
}
|
|
250
|
+
.am-navbar-header {
|
|
251
|
+
width: 150px;
|
|
252
|
+
}
|
|
253
|
+
.am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item,
|
|
254
|
+
.am-content.ui-app-area .block-widget .blocks-container .blocks_areas .block_area-item {
|
|
255
|
+
width: 25%;
|
|
256
|
+
}
|
|
227
257
|
}
|
|
228
258
|
|
|
229
259
|
@media (max-width: 580px) {
|
|
@@ -311,6 +341,7 @@
|
|
|
311
341
|
}
|
|
312
342
|
|
|
313
343
|
/* =========================== */
|
|
344
|
+
|
|
314
345
|
.land-app .ui-app-area .small-tabs .px-4,
|
|
315
346
|
.land-app .ui-app-area .small-tabs .py-4 {
|
|
316
347
|
padding-left: 0 !important;
|
|
@@ -328,6 +359,12 @@
|
|
|
328
359
|
.land-app .ui-app-area .full-block .full-block-content .w-20 {
|
|
329
360
|
margin-bottom: 15px;
|
|
330
361
|
}
|
|
362
|
+
|
|
363
|
+
/* =========================== */
|
|
364
|
+
|
|
365
|
+
.ui-app-area .table-item {
|
|
366
|
+
width: 32%;
|
|
367
|
+
}
|
|
331
368
|
}
|
|
332
369
|
|
|
333
370
|
@media (max-width: 460px) {
|
|
@@ -347,6 +384,12 @@
|
|
|
347
384
|
float: right;
|
|
348
385
|
text-align: right;
|
|
349
386
|
}
|
|
387
|
+
|
|
388
|
+
/* =========================== */
|
|
389
|
+
|
|
390
|
+
.ui-app-area .table-item {
|
|
391
|
+
width: 48%;
|
|
392
|
+
}
|
|
350
393
|
}
|
|
351
394
|
|
|
352
395
|
@media (min-width: 576px) {
|