@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
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
.fwe-bottom-navigation {
|
|
2
|
+
width: 100%;
|
|
3
|
+
display: flex;
|
|
4
|
+
background: $white;
|
|
5
|
+
align-items: flex-start;
|
|
6
|
+
justify-content: space-between;
|
|
7
|
+
border-top: 1px solid $border;
|
|
8
|
+
height: 84px;
|
|
9
|
+
padding: 22px 16px;
|
|
10
|
+
.fwe-bottom-navigation-button {
|
|
11
|
+
user-select: none;
|
|
12
|
+
.fwe-icon {
|
|
13
|
+
line-height: 0px;
|
|
14
|
+
}
|
|
15
|
+
display: flex;
|
|
16
|
+
align-items: center;
|
|
17
|
+
background: none;
|
|
18
|
+
border: none;
|
|
19
|
+
outline: none;
|
|
20
|
+
color: $icon-gray;
|
|
21
|
+
&.fwe-selected {
|
|
22
|
+
color: $hero;
|
|
23
|
+
}
|
|
24
|
+
&:active {
|
|
25
|
+
color: $hero-darker;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
package/dist/scss/_layout.scss
CHANGED
|
@@ -16,3 +16,46 @@
|
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
|
+
|
|
20
|
+
.fwe-layout-1920 {
|
|
21
|
+
display: flex;
|
|
22
|
+
justify-content: center;
|
|
23
|
+
padding: 0px !important;
|
|
24
|
+
.fwe-container {
|
|
25
|
+
padding: 0px !important;
|
|
26
|
+
max-width: 1920px - 128;
|
|
27
|
+
margin-right: 64px;
|
|
28
|
+
margin-left: 64px;
|
|
29
|
+
@media (max-width: $grid-breakpoint-lg) {
|
|
30
|
+
margin-right: 32px;
|
|
31
|
+
margin-left: 32px;
|
|
32
|
+
}
|
|
33
|
+
@media (max-width: $grid-breakpoint-sm) {
|
|
34
|
+
margin-right: 16px;
|
|
35
|
+
margin-left: 16px;
|
|
36
|
+
}
|
|
37
|
+
@media (max-width: $grid-breakpoint-xs) {
|
|
38
|
+
margin-right: 8px;
|
|
39
|
+
margin-left: 8px;
|
|
40
|
+
}
|
|
41
|
+
.fwe-app-logo-container {
|
|
42
|
+
position: unset;
|
|
43
|
+
margin-bottom: 17px;
|
|
44
|
+
margin-right: 24px;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.fwe-layout-1440 {
|
|
50
|
+
@extend .fwe-layout-1920;
|
|
51
|
+
.fwe-container {
|
|
52
|
+
max-width: 1440px - 128px;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.fwe-layout-1024 {
|
|
57
|
+
@extend .fwe-layout-1920;
|
|
58
|
+
.fwe-container {
|
|
59
|
+
max-width: 1024px - 64px;
|
|
60
|
+
}
|
|
61
|
+
}
|
package/dist/scss/_navbar.scss
CHANGED
|
@@ -243,9 +243,11 @@ header.fwe-fixed-header {
|
|
|
243
243
|
}
|
|
244
244
|
|
|
245
245
|
.fwe-navbar-bottom-box {
|
|
246
|
-
@extend .fwe-container;
|
|
247
|
-
display: flex;
|
|
248
|
-
align-items: center;
|
|
249
|
-
height: $navbar-bottom-box-height;
|
|
250
246
|
background-color: $control;
|
|
247
|
+
.fwe-container {
|
|
248
|
+
overflow: hidden;
|
|
249
|
+
height: $navbar-bottom-box-height;
|
|
250
|
+
display: flex;
|
|
251
|
+
align-items: center;
|
|
252
|
+
}
|
|
251
253
|
}
|
package/package.json
CHANGED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
.fwe-bottom-navigation {
|
|
2
|
+
width: 100%;
|
|
3
|
+
display: flex;
|
|
4
|
+
background: $white;
|
|
5
|
+
align-items: flex-start;
|
|
6
|
+
justify-content: space-between;
|
|
7
|
+
border-top: 1px solid $border;
|
|
8
|
+
height: 84px;
|
|
9
|
+
padding: 22px 16px;
|
|
10
|
+
.fwe-bottom-navigation-button {
|
|
11
|
+
user-select: none;
|
|
12
|
+
.fwe-icon {
|
|
13
|
+
line-height: 0px;
|
|
14
|
+
}
|
|
15
|
+
display: flex;
|
|
16
|
+
align-items: center;
|
|
17
|
+
background: none;
|
|
18
|
+
border: none;
|
|
19
|
+
outline: none;
|
|
20
|
+
color: $icon-gray;
|
|
21
|
+
&.fwe-selected {
|
|
22
|
+
color: $hero;
|
|
23
|
+
}
|
|
24
|
+
&:active {
|
|
25
|
+
color: $hero-darker;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
package/scss/_breadcrumb.scss
CHANGED
package/scss/_layout.scss
CHANGED
|
@@ -16,3 +16,46 @@
|
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
|
+
|
|
20
|
+
.fwe-layout-1920 {
|
|
21
|
+
display: flex;
|
|
22
|
+
justify-content: center;
|
|
23
|
+
padding: 0px !important;
|
|
24
|
+
.fwe-container {
|
|
25
|
+
padding: 0px !important;
|
|
26
|
+
max-width: 1920px - 128;
|
|
27
|
+
margin-right: 64px;
|
|
28
|
+
margin-left: 64px;
|
|
29
|
+
@media (max-width: $grid-breakpoint-lg) {
|
|
30
|
+
margin-right: 32px;
|
|
31
|
+
margin-left: 32px;
|
|
32
|
+
}
|
|
33
|
+
@media (max-width: $grid-breakpoint-sm) {
|
|
34
|
+
margin-right: 16px;
|
|
35
|
+
margin-left: 16px;
|
|
36
|
+
}
|
|
37
|
+
@media (max-width: $grid-breakpoint-xs) {
|
|
38
|
+
margin-right: 8px;
|
|
39
|
+
margin-left: 8px;
|
|
40
|
+
}
|
|
41
|
+
.fwe-app-logo-container {
|
|
42
|
+
position: unset;
|
|
43
|
+
margin-bottom: 17px;
|
|
44
|
+
margin-right: 24px;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.fwe-layout-1440 {
|
|
50
|
+
@extend .fwe-layout-1920;
|
|
51
|
+
.fwe-container {
|
|
52
|
+
max-width: 1440px - 128px;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.fwe-layout-1024 {
|
|
57
|
+
@extend .fwe-layout-1920;
|
|
58
|
+
.fwe-container {
|
|
59
|
+
max-width: 1024px - 64px;
|
|
60
|
+
}
|
|
61
|
+
}
|
package/scss/_navbar.scss
CHANGED
|
@@ -243,9 +243,11 @@ header.fwe-fixed-header {
|
|
|
243
243
|
}
|
|
244
244
|
|
|
245
245
|
.fwe-navbar-bottom-box {
|
|
246
|
-
@extend .fwe-container;
|
|
247
|
-
display: flex;
|
|
248
|
-
align-items: center;
|
|
249
|
-
height: $navbar-bottom-box-height;
|
|
250
246
|
background-color: $control;
|
|
247
|
+
.fwe-container {
|
|
248
|
+
overflow: hidden;
|
|
249
|
+
height: $navbar-bottom-box-height;
|
|
250
|
+
display: flex;
|
|
251
|
+
align-items: center;
|
|
252
|
+
}
|
|
251
253
|
}
|