@festo-ui/web-essentials 3.0.0 → 3.1.0-pre-20220214.3
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 +14 -13
- package/dist/css/festo-web-essentials.css +88 -9
- package/dist/css/festo-web-essentials.css.map +1 -1
- package/dist/css/festo-web-essentials.min.css +1 -1
- package/dist/css/festo-web-essentials.min.css.map +1 -1
- package/dist/scss/_bottom-navigation.scss +28 -0
- package/dist/scss/_breadcrumb.scss +1 -0
- package/dist/scss/_layout.scss +43 -0
- package/dist/scss/_navbar.scss +6 -4
- package/dist/scss/festo-web-essentials.scss +1 -0
- package/package.json +1 -1
- package/scss/_bottom-navigation.scss +28 -0
- package/scss/_breadcrumb.scss +1 -0
- package/scss/_layout.scss +43 -0
- package/scss/_navbar.scss +6 -4
- package/scss/festo-web-essentials.scss +1 -0
package/README.md
CHANGED
|
@@ -36,22 +36,23 @@ Installing the libraries is very easy. Just use this command to install the Web
|
|
|
36
36
|
If you just need the static CSS resources then you can find them inside the `dist` directory.
|
|
37
37
|
|
|
38
38
|
Import the css like this:
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
@import '~@festo-ui/web-essentials/dist/css/festo-web-essentials.min.css'
|
|
42
|
-
|
|
43
|
-
```
|
|
39
|
+
|
|
40
|
+
```css
|
|
41
|
+
... @import '~@festo-ui/web-essentials/dist/css/festo-web-essentials.min.css' ...;
|
|
42
|
+
```
|
|
44
43
|
|
|
45
44
|
### Using the SCSS variables in your project
|
|
45
|
+
|
|
46
46
|
If you want to use the variables (color or more) from the web essentials library, you can add the scss resources.
|
|
47
47
|
|
|
48
|
-
You'll find them inside the directory
|
|
48
|
+
You'll find them inside the directory `node_modules/@festo-ui/web-essentials/scss`.
|
|
49
|
+
|
|
50
|
+
You can use the variables like this:
|
|
51
|
+
`example.scss`
|
|
49
52
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
```scss
|
|
53
|
-
@import '~@festo-ui/web-essentials/scss/variables';
|
|
53
|
+
```scss
|
|
54
|
+
@import '~@festo-ui/web-essentials/scss/variables';
|
|
54
55
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
56
|
+
background: $hero; // background is carul now
|
|
57
|
+
@extend .fwe-icon-menu-close; // add the menu-close icon as ::before element
|
|
58
|
+
```
|
|
@@ -13493,32 +13493,75 @@ template {
|
|
|
13493
13493
|
justify-items: legacy center !important;
|
|
13494
13494
|
}
|
|
13495
13495
|
}
|
|
13496
|
-
.fwe-container
|
|
13496
|
+
.fwe-container {
|
|
13497
13497
|
padding: 0 8px 0 8px;
|
|
13498
13498
|
box-sizing: border-box;
|
|
13499
13499
|
width: 100%;
|
|
13500
13500
|
}
|
|
13501
13501
|
|
|
13502
13502
|
@media (min-width: 600px) {
|
|
13503
|
-
.fwe-container
|
|
13503
|
+
.fwe-container {
|
|
13504
13504
|
padding: 0 16px 0 16px;
|
|
13505
13505
|
}
|
|
13506
13506
|
}
|
|
13507
13507
|
@media (min-width: 1025px) {
|
|
13508
|
-
.fwe-container
|
|
13508
|
+
.fwe-container {
|
|
13509
13509
|
padding: 0 24px 0 24px;
|
|
13510
13510
|
}
|
|
13511
13511
|
}
|
|
13512
13512
|
@media (min-width: 1281px) {
|
|
13513
|
-
.fwe-container
|
|
13513
|
+
.fwe-container {
|
|
13514
13514
|
padding: 0 60px 0 60px;
|
|
13515
13515
|
}
|
|
13516
13516
|
}
|
|
13517
13517
|
@media (min-width: 1921px) {
|
|
13518
|
-
.fwe-container
|
|
13518
|
+
.fwe-container {
|
|
13519
13519
|
padding: 0 86px 0 86px;
|
|
13520
13520
|
}
|
|
13521
13521
|
}
|
|
13522
|
+
.fwe-layout-1920, .fwe-layout-1024, .fwe-layout-1440 {
|
|
13523
|
+
display: flex;
|
|
13524
|
+
justify-content: center;
|
|
13525
|
+
padding: 0px !important;
|
|
13526
|
+
}
|
|
13527
|
+
.fwe-layout-1920 .fwe-container, .fwe-layout-1024 .fwe-container, .fwe-layout-1440 .fwe-container {
|
|
13528
|
+
padding: 0px !important;
|
|
13529
|
+
max-width: 1792px;
|
|
13530
|
+
margin-right: 64px;
|
|
13531
|
+
margin-left: 64px;
|
|
13532
|
+
}
|
|
13533
|
+
@media (max-width: 1281px) {
|
|
13534
|
+
.fwe-layout-1920 .fwe-container, .fwe-layout-1024 .fwe-container, .fwe-layout-1440 .fwe-container {
|
|
13535
|
+
margin-right: 32px;
|
|
13536
|
+
margin-left: 32px;
|
|
13537
|
+
}
|
|
13538
|
+
}
|
|
13539
|
+
@media (max-width: 769px) {
|
|
13540
|
+
.fwe-layout-1920 .fwe-container, .fwe-layout-1024 .fwe-container, .fwe-layout-1440 .fwe-container {
|
|
13541
|
+
margin-right: 16px;
|
|
13542
|
+
margin-left: 16px;
|
|
13543
|
+
}
|
|
13544
|
+
}
|
|
13545
|
+
@media (max-width: 600px) {
|
|
13546
|
+
.fwe-layout-1920 .fwe-container, .fwe-layout-1024 .fwe-container, .fwe-layout-1440 .fwe-container {
|
|
13547
|
+
margin-right: 8px;
|
|
13548
|
+
margin-left: 8px;
|
|
13549
|
+
}
|
|
13550
|
+
}
|
|
13551
|
+
.fwe-layout-1920 .fwe-container .fwe-app-logo-container, .fwe-layout-1024 .fwe-container .fwe-app-logo-container, .fwe-layout-1440 .fwe-container .fwe-app-logo-container {
|
|
13552
|
+
position: unset;
|
|
13553
|
+
margin-bottom: 17px;
|
|
13554
|
+
margin-right: 24px;
|
|
13555
|
+
}
|
|
13556
|
+
|
|
13557
|
+
.fwe-layout-1440 .fwe-container {
|
|
13558
|
+
max-width: 1312px;
|
|
13559
|
+
}
|
|
13560
|
+
|
|
13561
|
+
.fwe-layout-1024 .fwe-container {
|
|
13562
|
+
max-width: 960px;
|
|
13563
|
+
}
|
|
13564
|
+
|
|
13522
13565
|
.fwe-toolbar {
|
|
13523
13566
|
width: 60px;
|
|
13524
13567
|
padding: 0;
|
|
@@ -14299,13 +14342,13 @@ header.fwe-fixed-header {
|
|
|
14299
14342
|
display: block;
|
|
14300
14343
|
}
|
|
14301
14344
|
}
|
|
14302
|
-
.fwe-navbar .fwe-container
|
|
14345
|
+
.fwe-navbar .fwe-container {
|
|
14303
14346
|
display: flex;
|
|
14304
14347
|
align-items: flex-end;
|
|
14305
14348
|
height: 64px;
|
|
14306
14349
|
max-height: 64px;
|
|
14307
14350
|
}
|
|
14308
|
-
.fwe-navbar .fwe-container img.fwe-logo
|
|
14351
|
+
.fwe-navbar .fwe-container img.fwe-logo {
|
|
14309
14352
|
position: relative;
|
|
14310
14353
|
top: 4px;
|
|
14311
14354
|
left: 0px;
|
|
@@ -14515,13 +14558,17 @@ header.fwe-fixed-header {
|
|
|
14515
14558
|
}
|
|
14516
14559
|
|
|
14517
14560
|
.fwe-navbar-bottom-box {
|
|
14561
|
+
background-color: var(--fwe-control);
|
|
14562
|
+
}
|
|
14563
|
+
.fwe-navbar-bottom-box .fwe-container {
|
|
14564
|
+
overflow: hidden;
|
|
14565
|
+
height: 48px;
|
|
14518
14566
|
display: flex;
|
|
14519
14567
|
align-items: center;
|
|
14520
|
-
height: 48px;
|
|
14521
|
-
background-color: var(--fwe-control);
|
|
14522
14568
|
}
|
|
14523
14569
|
|
|
14524
14570
|
.fwe-breadcrumb {
|
|
14571
|
+
white-space: nowrap;
|
|
14525
14572
|
display: flex;
|
|
14526
14573
|
justify-items: center;
|
|
14527
14574
|
align-items: center;
|
|
@@ -17284,4 +17331,36 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
17284
17331
|
background: var(--fwe-background);
|
|
17285
17332
|
}
|
|
17286
17333
|
|
|
17334
|
+
.fwe-bottom-navigation {
|
|
17335
|
+
width: 100%;
|
|
17336
|
+
display: flex;
|
|
17337
|
+
background: var(--fwe-white);
|
|
17338
|
+
align-items: flex-start;
|
|
17339
|
+
justify-content: space-between;
|
|
17340
|
+
border-top: 1px solid var(--fwe-border);
|
|
17341
|
+
height: 84px;
|
|
17342
|
+
padding: 22px 16px;
|
|
17343
|
+
}
|
|
17344
|
+
.fwe-bottom-navigation .fwe-bottom-navigation-button {
|
|
17345
|
+
-webkit-user-select: none;
|
|
17346
|
+
-moz-user-select: none;
|
|
17347
|
+
-ms-user-select: none;
|
|
17348
|
+
user-select: none;
|
|
17349
|
+
display: flex;
|
|
17350
|
+
align-items: center;
|
|
17351
|
+
background: none;
|
|
17352
|
+
border: none;
|
|
17353
|
+
outline: none;
|
|
17354
|
+
color: var(--fwe-icon-gray);
|
|
17355
|
+
}
|
|
17356
|
+
.fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-icon, .fwe-bottom-navigation .fwe-bottom-navigation-button table.fwe-table tr th.fwe-table-order, table.fwe-table tr .fwe-bottom-navigation .fwe-bottom-navigation-button th.fwe-table-order, .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-navbar .fwe-navbar-burger-menu, .fwe-navbar .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-navbar-burger-menu, .fwe-bottom-navigation .fwe-bottom-navigation-button label.fwe-checkbox .fwe-checkbox-checkmark, label.fwe-checkbox .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-checkbox-checkmark, .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-select-wrapper, .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-pagination .fwe-navigate-btn, .fwe-pagination .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-navigate-btn, .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-pagination .fwe-navigate-btn-up, .fwe-pagination .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-navigate-btn-up, .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-pagination .fwe-navigate-btn-down, .fwe-pagination .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-navigate-btn-down, .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-notification-menu .fwe-notification-list .fwe-notification-item-content, .fwe-notification-menu .fwe-notification-list .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-notification-item-content, .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-notification-menu .fwe-notification-list .fwe-notification-info, .fwe-notification-menu .fwe-notification-list .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-notification-info, .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-notification-menu .fwe-notification-list .fwe-notification-warning, .fwe-notification-menu .fwe-notification-list .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-notification-warning, .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-notification-menu .fwe-notification-list .fwe-notification-error, .fwe-notification-menu .fwe-notification-list .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-notification-error, .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-search-input .fwe-search-icon, .fwe-search-input .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-search-icon, .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-search-input .fwe-clear-icon, .fwe-search-input .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-clear-icon {
|
|
17357
|
+
line-height: 0px;
|
|
17358
|
+
}
|
|
17359
|
+
.fwe-bottom-navigation .fwe-bottom-navigation-button.fwe-selected {
|
|
17360
|
+
color: var(--fwe-hero);
|
|
17361
|
+
}
|
|
17362
|
+
.fwe-bottom-navigation .fwe-bottom-navigation-button:active {
|
|
17363
|
+
color: var(--fwe-hero-darker);
|
|
17364
|
+
}
|
|
17365
|
+
|
|
17287
17366
|
/*# sourceMappingURL=festo-web-essentials.css.map */
|