@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.
@@ -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
+ }
@@ -1,4 +1,5 @@
1
1
  .fwe-breadcrumb {
2
+ white-space: nowrap;
2
3
  display: flex;
3
4
  justify-items: center;
4
5
  align-items: center;
@@ -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
+ }
@@ -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
  }
@@ -44,3 +44,4 @@
44
44
  @import "navbar-menu";
45
45
  @import "scroll";
46
46
  @import "search-input";
47
+ @import "bottom-navigation";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@festo-ui/web-essentials",
3
- "version": "3.0.0",
3
+ "version": "3.1.0-pre-20220214.3",
4
4
  "description": "CSS framework and utils to build FESTO web applications",
5
5
  "main": "jest.config.js",
6
6
  "style": "dist/css/festo-web-essentials.css",
@@ -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
+ }
@@ -1,4 +1,5 @@
1
1
  .fwe-breadcrumb {
2
+ white-space: nowrap;
2
3
  display: flex;
3
4
  justify-items: center;
4
5
  align-items: center;
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
  }
@@ -44,3 +44,4 @@
44
44
  @import "navbar-menu";
45
45
  @import "scroll";
46
46
  @import "search-input";
47
+ @import "bottom-navigation";