coer-elements 2.0.70 → 2.0.72

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.
@@ -68,8 +68,8 @@
68
68
 
69
69
  //App Colors
70
70
  'breadcrumbs' : var(--breadcrumbs-inner),
71
- 'app-background': var(--background-inner),
72
71
  'containers' : var(--containers-inner),
72
+ 'app-background': var(--background-inner),
73
73
 
74
74
  //Inputs
75
75
  'inputs' : var(--inputs-inner),
@@ -87,7 +87,10 @@
87
87
  'toolbar-text': var(--toolbar-text-inner)
88
88
  ) {
89
89
  // Text
90
- .#{$breakpoint}text-#{$key} { color: $value !important; }
90
+ .#{$breakpoint}text-#{$key},
91
+ .#{$breakpoint}color-#{$key} {
92
+ color: $value !important;
93
+ }
91
94
 
92
95
  // Backgrounds
93
96
  .#{$breakpoint}background-color-#{$key} { background-color: $value !important; }
@@ -10,7 +10,7 @@
10
10
  @use "../components/lib/coer-sidenav/coer-sidenav.component.scss";
11
11
  @use "../components/lib/coer-sidenav/coer-menu-option/coer-menu-option.component.scss";
12
12
  @use "../components/lib/coer-sidenav/coer-tree-accordion/coer-tree-accordion.component.scss";
13
- @use "../components/lib/coer-sidenav/coer-toolbar/coer-toolbar.component.scss";
13
+ @use "../components/lib/coer-toolbar/coer-toolbar.component.scss";
14
14
  @use "../components/lib/coer-switch/coer-switch.component.scss";
15
15
  @use "../components/lib/coer-tab/coer-tab.component.scss";
16
16
  @use "../tools/lib/coer-alert/coer-alert.component.scss";
@@ -342,6 +342,7 @@ coer-textbox,
342
342
  coer-numberbox,
343
343
  coer-dropdown,
344
344
  coer-selectbox,
345
- coer-filebox {
345
+ coer-filebox,
346
+ login-page {
346
347
  display: contents !important;
347
348
  }
@@ -6,7 +6,7 @@
6
6
  'inline': inline,
7
7
  'inline-block': inline-block,
8
8
  'inline-flex' : inline-flex,
9
- 'contents': contents
9
+ 'contents' : contents
10
10
  ) {
11
11
  .#{$breakpoint}display-#{$key} {
12
12
  display: $value !important;
@@ -0,0 +1,22 @@
1
+ @mixin mixin($breakpoint) {
2
+
3
+ @for $i from 0 through 100 {
4
+ .#{$breakpoint}font-size-#{$i}px {
5
+ font-size: $i * 1px !important;
6
+ }
7
+ }
8
+
9
+ @each $key, $value in (
10
+ 'xx-small': xx-small,
11
+ 'x-small' : x-small,
12
+ 'small' : small,
13
+ 'medium' : medium,
14
+ 'large' : large,
15
+ 'x-large' : x-large,
16
+ 'xx-large': xx-large
17
+ ) {
18
+ .#{$breakpoint}font-size-#{$key} {
19
+ font-size: $value;
20
+ }
21
+ }
22
+ }
package/styles/fonts.scss CHANGED
@@ -12,14 +12,7 @@
12
12
 
13
13
  .#{$breakpoint}font-weight-bold {
14
14
  font-weight: bold !important;
15
- }
16
-
17
- //Font Size
18
- @for $i from 0 through 100 {
19
- .#{$breakpoint}font-size-#{$i}px {
20
- font-size: $i * 1px !important;
21
- }
22
- }
15
+ }
23
16
  }
24
17
 
25
18
 
package/styles/index.scss CHANGED
@@ -1,10 +1,11 @@
1
1
  @use "./animations.scss" as _animations;
2
- @use "./borders.scss" as _borders;
2
+ @use "./border.scss" as _border;
3
3
  @use "./colors.scss" as _colors;
4
4
  @use "./components.scss";
5
5
  @use "./containers.scss";
6
6
  @use "./cursors.scss" as _cursors;
7
7
  @use "./displays.scss" as _displays;
8
+ @use "./font-size.scss" as _font-size;
8
9
  @use "./fonts.scss" as _fonts;
9
10
  @use "./icons/icons.scss";
10
11
  @use "./layout-flex-wrap.scss" as _layout-flex-wrap;
@@ -30,14 +31,34 @@
30
31
  'xl-' : 1200px,
31
32
  'xxl-' : 1400px,
32
33
  ) {
34
+ @if ($breakpoint == '') {
35
+ @include _animations.mixin($breakpoint);
36
+ @include _border.mixin($breakpoint);
37
+ @include _colors.mixin($breakpoint);
38
+ @include _cursors.mixin($breakpoint);
39
+ @include _displays.mixin($breakpoint);
40
+ @include _font-size.mixin($breakpoint);
41
+ @include _fonts.mixin($breakpoint);
42
+ @include _layout-flex-wrap.mixin($breakpoint);
43
+ @include _layout-flex.mixin($breakpoint);
44
+ @include _layout-grid.mixin($breakpoint);
45
+ @include _margins.mixin($breakpoint);
46
+ @include _orders.mixin($breakpoint);
47
+ @include _overflow.mixin($breakpoint);
48
+ @include _padding.mixin($breakpoint);
49
+ @include _paragraphs.mixin($breakpoint);
50
+ @include _positions.mixin($breakpoint);
51
+ @include _width-height.mixin($breakpoint);
52
+ }
33
53
 
34
- @if ($breakpoint == 'mv-') {
54
+ @else if ($breakpoint == 'mv-') {
35
55
  @media (min-width: $min-width) and (max-width: 499px) {
36
56
  @include _animations.mixin($breakpoint);
37
- @include _borders.mixin($breakpoint);
57
+ @include _border.mixin($breakpoint);
38
58
  @include _colors.mixin($breakpoint);
39
59
  @include _cursors.mixin($breakpoint);
40
60
  @include _displays.mixin($breakpoint);
61
+ @include _font-size.mixin($breakpoint);
41
62
  @include _fonts.mixin($breakpoint);
42
63
  @include _layout-flex-wrap.mixin($breakpoint);
43
64
  @include _layout-flex.mixin($breakpoint);
@@ -55,10 +76,11 @@
55
76
  @else {
56
77
  @media (min-width: $min-width) {
57
78
  @include _animations.mixin($breakpoint);
58
- @include _borders.mixin($breakpoint);
79
+ @include _border.mixin($breakpoint);
59
80
  @include _colors.mixin($breakpoint);
60
81
  @include _cursors.mixin($breakpoint);
61
82
  @include _displays.mixin($breakpoint);
83
+ @include _font-size.mixin($breakpoint);
62
84
  @include _fonts.mixin($breakpoint);
63
85
  @include _layout-flex-wrap.mixin($breakpoint);
64
86
  @include _layout-flex.mixin($breakpoint);
File without changes