claritas-web-framework 6.0.0-beta-2 → 6.0.0-beta-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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claritas-web-framework",
3
- "version": "6.0.0-beta-2",
3
+ "version": "6.0.0-beta-3",
4
4
  "updated": "30/09/2022",
5
5
  "description": "The CSS framework built for Claritas front end.",
6
6
  "main": "index.js",
@@ -445,12 +445,12 @@ $border-opacity: 0.2 !default;
445
445
  $border-opacity-hover: 0.3 !default;
446
446
  $border-width: 1px !default;
447
447
  $border-style: solid !default;
448
- $border-radius: calc($spacer * 0.275) !default;
449
448
  $border-radius-small: calc($spacer * 0.15) !default;
450
- $border-radius-medium: $border-radius !default;
449
+ $border-radius-medium: calc($spacer * 0.275) !default;
451
450
  $border-radius-large: calc($spacer * 0.5) !default;
452
451
  $border-radius-round: calc($spacer * 99) !default;
453
452
  $border-radius-none: 0 !default;
453
+ $border-radius-default: $border-radius-medium !default;
454
454
 
455
455
  $hr-margin-y: $spacer !default;
456
456
  $hr-color: inherit !default;
@@ -552,7 +552,7 @@ $input-button-border-width: $border-width !default;
552
552
  $input-button-border-style: $border-style !default;
553
553
  $input-button-border-color: rgba($border-color-main, $border-opacity) !default;
554
554
  $input-button-border-color-hover: rgba($border-color-main, $border-opacity-hover) !default;
555
- $input-button-border-radius: $border-radius-medium !default;
555
+ $input-button-border-radius: $border-radius-default !default;
556
556
  $input-button-border-radius-large: $border-radius-large !default;
557
557
  $input-button-border-radius-small: $border-radius-small !default;
558
558
 
@@ -650,7 +650,7 @@ $button-close-width-large: calc($spacer * 2) !default;
650
650
  $card-border-width: $border-width !default;
651
651
  $card-border-style: $border-style !default;
652
652
  $card-border-color: rgba($border-color-main, $border-opacity) !default;
653
- $card-border-radius: $border-radius-medium !default;
653
+ $card-border-radius: $border-radius-default !default;
654
654
  $card-background-color: $white !default;
655
655
  $card-header-footer-padding: calc(($spacer * 0.375) - 1px) $spacer !default;
656
656
 
@@ -1,7 +1,7 @@
1
1
  .alert {
2
2
  border: 1px solid rgba($border-color-main, $border-opacity);
3
3
  padding: $spacer;
4
- border-radius: $border-radius-medium;
4
+ border-radius: $border-radius-default;
5
5
  background-color: tint-color($body-color, 87.5%);
6
6
  color: $body-color;
7
7
  position: relative;
@@ -40,7 +40,7 @@
40
40
  background-color: $white;
41
41
  border: 1px solid rgba($border-color-main, $border-opacity);
42
42
  box-shadow: $box-shadow-small;
43
- border-radius: $border-radius-medium;
43
+ border-radius: $border-radius-default;
44
44
  align-items: stretch;
45
45
  min-width: calc($spacer * 10);
46
46
 
@@ -43,14 +43,14 @@ dl {
43
43
  position: relative;
44
44
 
45
45
  &:first-child {
46
- border-top-left-radius: $border-radius-medium;
47
- border-top-right-radius: $border-radius-medium;
46
+ border-top-left-radius: $border-radius-default;
47
+ border-top-right-radius: $border-radius-default;
48
48
  }
49
49
 
50
50
  &:last-child {
51
51
  border-bottom: 1px solid rgba($border-color-main, $border-opacity);
52
- border-bottom-left-radius: $border-radius-medium;
53
- border-bottom-right-radius: $border-radius-medium;
52
+ border-bottom-left-radius: $border-radius-default;
53
+ border-bottom-right-radius: $border-radius-default;
54
54
  }
55
55
  }
56
56
  }
@@ -60,7 +60,7 @@ dl {
60
60
 
61
61
  & > li {
62
62
  background-color: $white;
63
- border-radius: $border-radius-medium;
63
+ border-radius: $border-radius-default;
64
64
  border: 1px solid rgba($border-color-main, $border-opacity);
65
65
 
66
66
  @if $enable-margins {
@@ -19,7 +19,7 @@
19
19
  & > * {
20
20
  border: 1px solid rgba($border-color-main, $border-opacity);
21
21
  border-bottom-color: transparent;
22
- border-radius: $border-radius-medium $border-radius-medium 0 0;
22
+ border-radius: $border-radius-default $border-radius-default 0 0;
23
23
  margin-bottom: -1px;
24
24
 
25
25
  &:not(:last-child) {
@@ -3,7 +3,7 @@
3
3
  color: $tag-color;
4
4
  background-color: $tag-background;
5
5
  padding: calc(($spacer * 0.25) - 1px) calc(($spacer * 0.5) - 1px);
6
- border-radius: $border-radius-medium;
6
+ border-radius: $border-radius-default;
7
7
  align-items: center;
8
8
  display: inline-flex;
9
9
  vertical-align: top;
@@ -20,8 +20,8 @@
20
20
  border-right: $input-border-width $input-border-style $input-border-color;
21
21
  border-bottom: $input-border-width $input-border-style $input-border-color;
22
22
  border-left: $input-border-width $input-border-style $input-border-color;
23
- border-bottom-right-radius: $border-radius-medium;
24
- border-bottom-left-radius: $border-radius-medium;
23
+ border-bottom-right-radius: $border-radius-default;
24
+ border-bottom-left-radius: $border-radius-default;
25
25
  padding: $input-padding-y $input-padding-x;
26
26
  white-space: nowrap;
27
27
  overflow: hidden;
@@ -32,8 +32,8 @@
32
32
 
33
33
  &:empty {
34
34
  & ~ .form--label {
35
- border-bottom-right-radius: $border-radius-medium;
36
- border-bottom-left-radius: $border-radius-medium;
35
+ border-bottom-right-radius: $border-radius-default;
36
+ border-bottom-left-radius: $border-radius-default;
37
37
  }
38
38
  }
39
39
  }
@@ -48,8 +48,8 @@
48
48
  text-align: center;
49
49
  padding: $spacer $spacer calc($spacer * 3);
50
50
  border: $input-border-width $input-border-style $input-border-color;
51
- border-top-left-radius: $border-radius-medium;
52
- border-top-right-radius: $border-radius-medium;
51
+ border-top-left-radius: $border-radius-default;
52
+ border-top-right-radius: $border-radius-default;
53
53
  background-color: $gray-1;
54
54
  transition: $form-transition;
55
55