@festo-ui/web-essentials 3.1.0 → 3.2.1

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.
Files changed (87) hide show
  1. package/README.md +14 -13
  2. package/dist/css/festo-web-essentials.css +4679 -2406
  3. package/dist/css/festo-web-essentials.css.map +1 -1
  4. package/dist/css/festo-web-essentials.min.css +5 -1
  5. package/dist/css/festo-web-essentials.min.css.map +1 -1
  6. package/dist/css/fonts/festo_icons-16.woff2 +0 -0
  7. package/dist/css/fonts/festo_icons-24.woff2 +0 -0
  8. package/dist/css/fonts/festo_icons-32.woff2 +0 -0
  9. package/dist/css/organisms/festo-web-essentials-organisms.css +309 -5
  10. package/dist/css/organisms/festo-web-essentials-organisms.css.map +1 -1
  11. package/dist/css/organisms/festo-web-essentials-organisms.min.css +5 -1
  12. package/dist/css/organisms/festo-web-essentials-organisms.min.css.map +1 -1
  13. package/dist/css/themes/flatpickr/festo.css +28 -23
  14. package/dist/css/themes/flatpickr/festo.css.map +1 -1
  15. package/dist/css/themes/flatpickr/festo.min.css +5 -1
  16. package/dist/css/themes/flatpickr/festo.min.css.map +1 -1
  17. package/dist/fonts/festo_icons-16.woff2 +0 -0
  18. package/dist/fonts/festo_icons-24.woff2 +0 -0
  19. package/dist/fonts/festo_icons-32.woff2 +0 -0
  20. package/dist/scss/_accordion.scss +107 -0
  21. package/dist/scss/_badge.scss +1 -1
  22. package/dist/scss/_bottom-navigation.scss +44 -0
  23. package/dist/scss/_breadcrumb.scss +3 -2
  24. package/dist/scss/_button.scss +15 -15
  25. package/dist/scss/_cards.scss +1 -1
  26. package/dist/scss/_checkbox.scss +1 -1
  27. package/dist/scss/_chips.scss +5 -5
  28. package/dist/scss/_fonts.scss +3 -3
  29. package/dist/scss/_icons.scss +144 -9
  30. package/dist/scss/_layout.scss +43 -0
  31. package/dist/scss/_mobile-flyout.scss +108 -0
  32. package/dist/scss/_modal.scss +47 -123
  33. package/dist/scss/_navbar-menu.scss +5 -4
  34. package/dist/scss/_navbar.scss +8 -4
  35. package/dist/scss/_normalize.scss +4 -4
  36. package/dist/scss/_pagination.scss +15 -2
  37. package/dist/scss/_popover.scss +1 -0
  38. package/dist/scss/_root.scss +38 -5
  39. package/dist/scss/_segment.scss +0 -4
  40. package/dist/scss/_stepper-horizontal.scss +126 -0
  41. package/dist/scss/_stepper-vertical.scss +120 -0
  42. package/dist/scss/_text-input.scss +13 -8
  43. package/dist/scss/_timepicker.scss +2 -2
  44. package/dist/scss/_variables.scss +37 -14
  45. package/dist/scss/festo-web-essentials.scss +11 -0
  46. package/dist/scss/fonts/festo_icons-16.woff2 +0 -0
  47. package/dist/scss/fonts/festo_icons-24.woff2 +0 -0
  48. package/dist/scss/fonts/festo_icons-32.woff2 +0 -0
  49. package/dist/scss/organisms/_footer.scss +5 -5
  50. package/dist/scss/organisms/_header-modul.scss +109 -0
  51. package/dist/scss/organisms/_image-gallery.scss +196 -0
  52. package/dist/scss/organisms/_teaser.scss +42 -0
  53. package/dist/scss/organisms/festo-web-essentials-organisms.scss +8 -0
  54. package/dist/scss/themes/flatpickr/festo.scss +28 -14
  55. package/package.json +1 -1
  56. package/scss/_accordion.scss +107 -0
  57. package/scss/_badge.scss +1 -1
  58. package/scss/_bottom-navigation.scss +44 -0
  59. package/scss/_breadcrumb.scss +3 -2
  60. package/scss/_button.scss +15 -15
  61. package/scss/_cards.scss +1 -1
  62. package/scss/_checkbox.scss +1 -1
  63. package/scss/_chips.scss +5 -5
  64. package/scss/_fonts.scss +3 -3
  65. package/scss/_icons.scss +144 -9
  66. package/scss/_layout.scss +43 -0
  67. package/scss/_mobile-flyout.scss +108 -0
  68. package/scss/_modal.scss +47 -123
  69. package/scss/_navbar-menu.scss +5 -4
  70. package/scss/_navbar.scss +8 -4
  71. package/scss/_normalize.scss +4 -4
  72. package/scss/_pagination.scss +15 -2
  73. package/scss/_popover.scss +1 -0
  74. package/scss/_root.scss +38 -5
  75. package/scss/_segment.scss +0 -4
  76. package/scss/_stepper-horizontal.scss +126 -0
  77. package/scss/_stepper-vertical.scss +120 -0
  78. package/scss/_text-input.scss +13 -8
  79. package/scss/_timepicker.scss +2 -2
  80. package/scss/_variables.scss +37 -14
  81. package/scss/festo-web-essentials.scss +11 -0
  82. package/scss/organisms/_footer.scss +5 -5
  83. package/scss/organisms/_header-modul.scss +109 -0
  84. package/scss/organisms/_image-gallery.scss +196 -0
  85. package/scss/organisms/_teaser.scss +42 -0
  86. package/scss/organisms/festo-web-essentials-organisms.scss +8 -0
  87. package/scss/themes/flatpickr/festo.scss +28 -14
@@ -1,7 +1,17 @@
1
+ /*!
2
+ * Festo UI - Web Essentials v3.2.1 (https://storybook.festo.design/)
3
+ * Copyright 2022 Festo SE & Co. KG
4
+ * Licensed under Apache-2.0
5
+ */
6
+
1
7
  @import "../../variables";
2
8
 
3
- span {
4
- user-select: none;
9
+ .fng-flatpickr {
10
+ span {
11
+ -webkit-user-select: none;
12
+ -ms-user-select: none;
13
+ user-select: none;
14
+ }
5
15
  }
6
16
 
7
17
  .flatpickr-calendar {
@@ -10,8 +20,8 @@ span {
10
20
  animation: none;
11
21
  direction: ltr;
12
22
  border: 0;
13
- font-size: 14px;
14
- line-height: 24px;
23
+ font-size: $font-size-md;
24
+ line-height: font-size-md + 10px;
15
25
  position: absolute;
16
26
  box-sizing: border-box;
17
27
  touch-action: manipulation;
@@ -153,6 +163,8 @@ span {
153
163
  line-height: 24px;
154
164
  text-align: center;
155
165
  position: relative;
166
+ -webkit-user-select: none;
167
+ -ms-user-select: none;
156
168
  user-select: none;
157
169
  overflow: hidden;
158
170
  flex: 1;
@@ -279,20 +291,20 @@ span {
279
291
  }
280
292
 
281
293
  .flatpickr-current-month {
282
- font-size: 16px;
283
- font-weight: normal;
294
+ font-size: $font-size-base;
295
+ font-weight: $font-weight-normal;
284
296
  position: absolute;
285
297
  width: 75%;
286
298
  left: 12.5%;
287
299
  padding: 7px 0 0 0;
288
- line-height: 24px;
300
+ line-height: calc(#{$font-size-base} + 8px);
289
301
  height: 34px;
290
302
  display: inline-block;
291
303
  text-align: center;
292
304
  transform: translate3d(0, 0, 0);
293
305
  span.cur-month {
294
306
  font-family: inherit;
295
- font-weight: 700;
307
+ font-weight: $font-weight-bold;
296
308
  color: inherit;
297
309
  display: inline-block;
298
310
  margin-left: 0.5ch;
@@ -397,7 +409,7 @@ span {
397
409
 
398
410
  span.flatpickr-weekday {
399
411
  cursor: default;
400
- font-size: 14px;
412
+ font-size: $font-size-md;
401
413
  background: transparent;
402
414
  color: $text-light;
403
415
  line-height: 1;
@@ -405,7 +417,7 @@ span.flatpickr-weekday {
405
417
  text-align: center;
406
418
  display: block;
407
419
  flex: 1;
408
- font-weight: normal;
420
+ font-weight: $font-weight-normal;
409
421
  }
410
422
 
411
423
  .dayContainer,
@@ -452,7 +464,7 @@ span.flatpickr-weekday {
452
464
  box-sizing: border-box;
453
465
  color: $text;
454
466
  cursor: pointer;
455
- font-weight: 400;
467
+ font-weight: $font-weight-normal;
456
468
  width: 14.2857143%;
457
469
  -ms-flex-preferred-size: 14.2857143%;
458
470
  flex-basis: 14.2857143%;
@@ -757,7 +769,7 @@ span.flatpickr-weekday {
757
769
  height: inherit;
758
770
  line-height: inherit;
759
771
  color: $text;
760
- font-size: 14px;
772
+ font-size: $font-size-md;
761
773
  position: relative;
762
774
  box-sizing: border-box;
763
775
  appearance: textfield;
@@ -769,7 +781,7 @@ span.flatpickr-weekday {
769
781
 
770
782
  .flatpickr-time input.flatpickr-minute,
771
783
  .flatpickr-time input.flatpickr-second {
772
- font-weight: 400;
784
+ font-weight: $font-weight-normal;
773
785
  }
774
786
 
775
787
  .flatpickr-time input:focus {
@@ -785,6 +797,8 @@ span.flatpickr-weekday {
785
797
  color: $text;
786
798
  font-weight: $font-weight-bold;
787
799
  width: 2%;
800
+ -webkit-user-select: none;
801
+ -ms-user-select: none;
788
802
  user-select: none;
789
803
  align-self: center;
790
804
  }
@@ -794,7 +808,7 @@ span.flatpickr-weekday {
794
808
  width: 18%;
795
809
  cursor: pointer;
796
810
  text-align: center;
797
- font-weight: 400;
811
+ font-weight: $font-weight-normal;
798
812
  }
799
813
 
800
814
  .flatpickr-time input:hover,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@festo-ui/web-essentials",
3
- "version": "3.1.0",
3
+ "version": "3.2.1",
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,107 @@
1
+ .fwe-accordion {
2
+ background-color: $white;
3
+
4
+ &-header {
5
+ display: flex;
6
+ align-items: center;
7
+ height: $spacer-xl;
8
+ padding: 0 $spacer-s 0 $spacer-m;
9
+ font-size: $font-size-md;
10
+ font-weight: $font-weight-bold;
11
+ color: $text;
12
+ border-bottom: 1px solid $gray-100;
13
+ }
14
+
15
+ &-item {
16
+ position: relative;
17
+ padding: 0 $spacer-s 0 $spacer-m;
18
+ border-top: 1px solid $gray-100;
19
+ border-bottom: 1px solid $gray-100;
20
+
21
+ &-header {
22
+ outline: none;
23
+ display: flex;
24
+ align-items: center;
25
+ padding: $spacer-m $spacer-xxl $spacer-m 0;
26
+ min-height: $spacer-xl;
27
+ cursor: pointer;
28
+ }
29
+
30
+ &::-webkit-details-marker {
31
+ display: none;
32
+ }
33
+
34
+ &::before {
35
+ position: absolute;
36
+ top: 0;
37
+ left: 0;
38
+ display: block;
39
+ content: "";
40
+ width: $spacer-xxxs;
41
+ height: 0px;
42
+ background-color: $caerul;
43
+ }
44
+
45
+ &::after {
46
+ position: absolute;
47
+ top: 21px;
48
+ right: $spacer-s;
49
+ display: block;
50
+ font-family: $font-family-icons-32;
51
+ font-size: $font-size-xxl;
52
+ content: "\e900";
53
+ height: $spacer-l;
54
+ line-height: $spacer-l;
55
+ transition: transform 0.2s ease;
56
+ pointer-events: none;
57
+ }
58
+
59
+ &[open] {
60
+ .fwe-accordion-item-header {
61
+ font-weight: $font-weight-bold;
62
+ }
63
+
64
+ &::after {
65
+ transform: rotate(-180deg);
66
+ }
67
+
68
+ &::before {
69
+ height: 100%;
70
+ }
71
+ }
72
+
73
+ &:not([open]) .fwe-accordion-item-header {
74
+ font-weight: $font-weight-normal;
75
+ }
76
+
77
+ &-body {
78
+ overflow: hidden;
79
+ margin-right: 0;
80
+ margin-bottom: $spacer-m;
81
+
82
+ > :first-child {
83
+ margin-top: 0 !important;
84
+ padding-top: 0 !important;
85
+ }
86
+
87
+ > :last-child {
88
+ margin-bottom: 0 !important;
89
+ padding-bottom: 0 !important;
90
+ }
91
+
92
+ > :not(.fwe-accordion) {
93
+ margin-right: 0px;
94
+ }
95
+ }
96
+ }
97
+ }
98
+
99
+ @media (min-width: $grid-breakpoint-xs) {
100
+ .fwe-accordion {
101
+ &-item {
102
+ &-body {
103
+ margin-right: $spacer-xxl;
104
+ }
105
+ }
106
+ }
107
+ }
package/scss/_badge.scss CHANGED
@@ -9,7 +9,7 @@
9
9
  height: 19px;
10
10
  line-height: 17px;
11
11
  background-color: $hero;
12
- font-weight: bold;
12
+ font-weight: $font-weight-bold;
13
13
 
14
14
  &.fwe-badge-sm {
15
15
  font-size: $font-size-small;
@@ -0,0 +1,44 @@
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
+ cursor: pointer;
12
+ user-select: none;
13
+ .fwe-icon {
14
+ line-height: 0px;
15
+ }
16
+ display: flex;
17
+ align-items: center;
18
+ background: none;
19
+ border: none;
20
+ outline: none;
21
+ color: $icon-gray;
22
+ position: relative;
23
+ :after {
24
+ content: "";
25
+ position: absolute;
26
+ top: -23px;
27
+ left: 0px;
28
+ right: 0px;
29
+ height: 0px;
30
+ background: $hero;
31
+ transition: height 0.3s ease;
32
+ }
33
+ &.fwe-selected {
34
+ color: $hero;
35
+ cursor: default;
36
+ :after {
37
+ height: 4px;
38
+ }
39
+ }
40
+ &:active {
41
+ color: $hero-darker;
42
+ }
43
+ }
44
+ }
@@ -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;
@@ -15,8 +16,8 @@
15
16
  color: $text-light;
16
17
  text-decoration: none;
17
18
  user-select: none;
18
- font-size: 14px;
19
- line-height: 16px;
19
+ font-size: $font-size-md;
20
+ line-height: calc(#{$font-size-md} + 2px);
20
21
  &:focus {
21
22
  outline: none;
22
23
  }
package/scss/_button.scss CHANGED
@@ -5,12 +5,13 @@ button.fwe-btn {
5
5
  display: inline-flex;
6
6
  align-items: center;
7
7
  text-align: center;
8
+ justify-content: center;
8
9
  font-family: $font-family-base;
9
10
  font-size: $font-size-base;
10
11
  padding: 4px 16px;
11
12
  min-height: 32px;
12
- color: $text;
13
- background: $control;
13
+ color: $btn-text;
14
+ background: $btn;
14
15
  border-radius: $control-border-radius;
15
16
  cursor: pointer;
16
17
  border: none;
@@ -25,12 +26,12 @@ button.fwe-btn {
25
26
  }
26
27
 
27
28
  &:hover {
28
- color: $text;
29
- background: $control-dark;
29
+ color: $btn-text-hover;
30
+ background: $btn-hover;
30
31
  }
31
32
 
32
33
  &:active {
33
- background: $control-darker;
34
+ background: $btn-active;
34
35
  }
35
36
 
36
37
  &:focus {
@@ -40,33 +41,32 @@ button.fwe-btn {
40
41
  &:disabled,
41
42
  &.fwe-disabled {
42
43
  cursor: default;
43
- background: $control-disabled;
44
- color: $text-disabled;
44
+ background: $btn-disabled;
45
+ color: $btn-text-disabled;
45
46
  }
46
47
 
47
48
  &.fwe-btn-hero {
48
- color: $white;
49
- background: $hero;
49
+ color: $btn-hero-text;
50
+ background: $btn-hero;
50
51
 
51
52
  &:hover {
52
- color: $white;
53
- background: $hero-dark;
53
+ color: $btn-hero-text-hover;
54
+ background: $btn-hero-hover;
54
55
  }
55
56
 
56
57
  &:active {
57
- background: $hero-darker;
58
+ background: $btn-hero-active;
58
59
  }
59
60
 
60
61
  &:disabled,
61
62
  &.fwe-disabled {
62
- background: $control-disabled;
63
- color: $text-disabled;
63
+ background: $btn-hero-disabled;
64
+ color: $btn-hero-text-disabled;
64
65
  }
65
66
  }
66
67
 
67
68
  &.fwe-btn-block {
68
69
  width: 100%;
69
- justify-content: center;
70
70
  }
71
71
 
72
72
  &.fwe-btn-link {
package/scss/_cards.scss CHANGED
@@ -83,7 +83,7 @@
83
83
  h6 {
84
84
  line-height: $font-size-base;
85
85
  font-size: $font-size-base;
86
- font-weight: bold;
86
+ font-weight: $font-weight-bold;
87
87
  margin: 0;
88
88
  padding: 0;
89
89
  }
@@ -75,7 +75,7 @@ label.fwe-checkbox {
75
75
  background-color: $white;
76
76
  border-radius: 2px;
77
77
  margin-top: 2px;
78
- font-size: 14px;
78
+ font-size: $font-size-md;
79
79
  @extend .fwe-icon;
80
80
  @extend .fwe-icon-menu-check;
81
81
  &:before {
package/scss/_chips.scss CHANGED
@@ -1,5 +1,5 @@
1
1
  %chip-lg {
2
- font-size: 16px;
2
+ font-size: $font-size-base;
3
3
  line-height: 22px;
4
4
  border-radius: 16px;
5
5
  padding: 3px 16px 5px 16px;
@@ -14,8 +14,8 @@
14
14
  &::after {
15
15
  top: 4px;
16
16
  font-family: $font-family-icons-24;
17
- font-size: 24px;
18
- line-height: 24px;
17
+ font-size: $font-size-xl;
18
+ line-height: $font-size-xl;
19
19
  }
20
20
  }
21
21
  &.fwe-filter {
@@ -45,8 +45,8 @@
45
45
  position: relative;
46
46
  display: flex;
47
47
  align-items: flex-end;
48
- font-size: 14px;
49
- line-height: 21px;
48
+ font-size: $font-size-md;
49
+ line-height: calc(#{$font-size-md} + 7px);
50
50
  text-align: center;
51
51
  border-radius: 12px;
52
52
  cursor: pointer;
package/scss/_fonts.scss CHANGED
@@ -12,7 +12,7 @@
12
12
  }
13
13
 
14
14
  @font-face {
15
- font-family: $font-family-icons-16;
15
+ font-family: "festo_icons-16";
16
16
  src: url("../fonts/festo_icons-16.woff2") format("woff2");
17
17
  font-weight: normal;
18
18
  font-style: normal;
@@ -20,7 +20,7 @@
20
20
  }
21
21
 
22
22
  @font-face {
23
- font-family: $font-family-icons-24;
23
+ font-family: "festo_icons-24";
24
24
  src: url("../fonts/festo_icons-24.woff2") format("woff2");
25
25
  font-weight: normal;
26
26
  font-style: normal;
@@ -28,7 +28,7 @@
28
28
  }
29
29
 
30
30
  @font-face {
31
- font-family: $font-family-icons-32;
31
+ font-family: "festo_icons-32";
32
32
  src: url("../fonts/festo_icons-32.woff2") format("woff2");
33
33
  font-weight: normal;
34
34
  font-style: normal;
package/scss/_icons.scss CHANGED
@@ -11,7 +11,7 @@
11
11
  text-transform: none;
12
12
  -webkit-font-smoothing: antialiased;
13
13
  -moz-osx-font-smoothing: grayscale;
14
- font-family: "#{$font-family-icons-16}";
14
+ font-family: $font-family-icons-16;
15
15
  }
16
16
  }
17
17
 
@@ -20,30 +20,30 @@
20
20
  }
21
21
 
22
22
  .fwe-icon-lg {
23
- font-size: $font-size-xl;
23
+ font-size: 24px;
24
24
  &:before {
25
- font-family: "#{$font-family-icons-24}" !important;
25
+ font-family: $font-family-icons-24 !important;
26
26
  }
27
27
  }
28
28
 
29
29
  .fwe-icon-2x {
30
- font-size: $font-size-xxl;
30
+ font-size: 32px;
31
31
  &:before {
32
- font-family: "#{$font-family-icons-32}" !important;
32
+ font-family: $font-family-icons-32 !important;
33
33
  }
34
34
  }
35
35
 
36
36
  .fwe-icon-3x {
37
37
  font-size: 48px;
38
38
  &:before {
39
- font-family: "#{$font-family-icons-24}" !important;
39
+ font-family: $font-family-icons-24 !important;
40
40
  }
41
41
  }
42
42
 
43
43
  .fwe-icon-4x {
44
44
  font-size: 64px;
45
45
  &:before {
46
- font-family: "#{$font-family-icons-32}" !important;
46
+ font-family: $font-family-icons-32 !important;
47
47
  }
48
48
  }
49
49
 
@@ -147,7 +147,7 @@
147
147
  .fwe-icon-communication-emergency-hotline:before {
148
148
  content: "\e919";
149
149
  }
150
- .fwe-icon-communication-audio-on:before {
150
+ .fwe-icon-communication-headset:before {
151
151
  content: "\e91a";
152
152
  }
153
153
  .fwe-icon-communication-infoportal:before {
@@ -540,7 +540,7 @@
540
540
  .fwe-icon-file-search:before {
541
541
  content: "\e99c";
542
542
  }
543
- .fwe-icon-file-lock:before {
543
+ .fwe-icon-file-secure:before {
544
544
  content: "\e99d";
545
545
  }
546
546
  .fwe-icon-file-share:before {
@@ -1311,3 +1311,138 @@
1311
1311
  .fwe-icon-simulation:before {
1312
1312
  content: "\ea9d";
1313
1313
  }
1314
+ .fwe-icon-control-valve:before {
1315
+ content: "\ea9e";
1316
+ }
1317
+ .fwe-icon-country-selector:before {
1318
+ content: "\ea9f";
1319
+ }
1320
+ .fwe-icon-dosing-heads:before {
1321
+ content: "\eaa0";
1322
+ }
1323
+ .fwe-icon-single-valve:before {
1324
+ content: "\eaa1";
1325
+ }
1326
+ .fwe-icon-show-course:before {
1327
+ content: "\eaa2";
1328
+ }
1329
+ .fwe-icon-show-equipment:before {
1330
+ content: "\eaa3";
1331
+ }
1332
+ .fwe-icon-show-group:before {
1333
+ content: "\eaa4";
1334
+ }
1335
+ .fwe-icon-show-results:before {
1336
+ content: "\eaa5";
1337
+ }
1338
+ .fwe-icon-show-user:before {
1339
+ content: "\eaa6";
1340
+ }
1341
+ .fwe-icon-align-bottom:before {
1342
+ content: "\eaa7";
1343
+ }
1344
+ .fwe-icon-align-center:before {
1345
+ content: "\eaa8";
1346
+ }
1347
+ .fwe-icon-align-left:before {
1348
+ content: "\eaa9";
1349
+ }
1350
+ .fwe-icon-align-middle:before {
1351
+ content: "\eaaa";
1352
+ }
1353
+ .fwe-icon-align-right:before {
1354
+ content: "\eaab";
1355
+ }
1356
+ .fwe-icon-align-top:before {
1357
+ content: "\eaac";
1358
+ }
1359
+ .fwe-icon-artificial-intelligence-AI:before {
1360
+ content: "\eaad";
1361
+ }
1362
+ .fwe-icon-assign-to-learner:before {
1363
+ content: "\eaae";
1364
+ }
1365
+ .fwe-icon-augmented-reality:before {
1366
+ content: "\eaaf";
1367
+ }
1368
+ .fwe-icon-bus-systems:before {
1369
+ content: "\eab0";
1370
+ }
1371
+ .fwe-icon-cobotic:before {
1372
+ content: "\eab1";
1373
+ }
1374
+ .fwe-icon-controlled:before {
1375
+ content: "\eab2";
1376
+ }
1377
+ .fwe-icon-distribute-columns:before {
1378
+ content: "\eab3";
1379
+ }
1380
+ .fwe-icon-electrics:before {
1381
+ content: "\eab4";
1382
+ }
1383
+ .fwe-icon-energy-efficiency:before {
1384
+ content: "\eab5";
1385
+ }
1386
+ .fwe-icon-fast-delivery:before {
1387
+ content: "\eab6";
1388
+ }
1389
+ .fwe-icon-funk:before {
1390
+ content: "\eab7";
1391
+ }
1392
+ .fwe-icon-hide-label:before {
1393
+ content: "\eab8";
1394
+ }
1395
+ .fwe-icon-iiot:before {
1396
+ content: "\eab9";
1397
+ }
1398
+ .fwe-icon-iot:before {
1399
+ content: "\eaba";
1400
+ }
1401
+ .fwe-icon-learning-path1:before {
1402
+ content: "\eabb";
1403
+ }
1404
+ .fwe-icon-mobotic:before {
1405
+ content: "\eabc";
1406
+ }
1407
+ .fwe-icon-new-link:before {
1408
+ content: "\eabd";
1409
+ }
1410
+ .fwe-icon-numeric-value:before {
1411
+ content: "\eabe";
1412
+ }
1413
+ .fwe-icon-piezo:before {
1414
+ content: "\eabf";
1415
+ }
1416
+ .fwe-icon-pneumatics:before {
1417
+ content: "\eac0";
1418
+ }
1419
+ .fwe-icon-recycling:before {
1420
+ content: "\eac1";
1421
+ }
1422
+ .fwe-icon-remove-link:before {
1423
+ content: "\eac2";
1424
+ }
1425
+ .fwe-icon-remove-user:before {
1426
+ content: "\eac3";
1427
+ }
1428
+ .fwe-icon-safety:before {
1429
+ content: "\eac4";
1430
+ }
1431
+ .fwe-icon-show-label:before {
1432
+ content: "\eac5";
1433
+ }
1434
+ .fwe-icon-show-link:before {
1435
+ content: "\eac6";
1436
+ }
1437
+ .fwe-icon-smart:before {
1438
+ content: "\eac7";
1439
+ }
1440
+ .fwe-icon-sustainable-materials:before {
1441
+ content: "\eac9";
1442
+ }
1443
+ .fwe-icon-text-value:before {
1444
+ content: "\eaca";
1445
+ }
1446
+ .fwe-icon-virtual-reality:before {
1447
+ content: "\eacb";
1448
+ }
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
+ }