@clayui/css 3.54.0 → 3.55.0

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 (41) hide show
  1. package/lib/css/atlas.css +136 -155
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +54 -91
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/bootstrap.css +0 -0
  6. package/lib/css/bootstrap.css.map +0 -0
  7. package/lib/css/cadmin.css +0 -0
  8. package/lib/css/cadmin.css.map +1 -1
  9. package/lib/images/icons/icons.svg +1 -1
  10. package/package.json +2 -2
  11. package/src/scss/atlas/variables/_buttons.scss +1 -1
  12. package/src/scss/atlas/variables/_dropdowns.scss +1 -1
  13. package/src/scss/atlas/variables/_globals.scss +5 -5
  14. package/src/scss/atlas/variables/_navigation-bar.scss +1 -1
  15. package/src/scss/atlas/variables/_navs.scss +1 -1
  16. package/src/scss/atlas/variables/_panels.scss +2 -2
  17. package/src/scss/atlas/variables/_sheets.scss +2 -1
  18. package/src/scss/atlas/variables/_sidebar.scss +3 -2
  19. package/src/scss/atlas/variables/_type.scss +0 -2
  20. package/src/scss/components/_tables.scss +2 -2
  21. package/src/scss/mixins/_buttons.scss +4 -0
  22. package/src/scss/variables/_buttons.scss +116 -67
  23. package/src/scss/variables/_cards.scss +1 -1
  24. package/src/scss/variables/_date-picker.scss +1 -1
  25. package/src/scss/variables/_dropdowns.scss +4 -4
  26. package/src/scss/variables/_forms.scss +1 -1
  27. package/src/scss/variables/_globals.scss +2 -2
  28. package/src/scss/variables/_links.scss +1 -1
  29. package/src/scss/variables/_list-group.scss +2 -2
  30. package/src/scss/variables/_multi-step-nav.scss +1 -1
  31. package/src/scss/variables/_navbar.scss +2 -2
  32. package/src/scss/variables/_navs.scss +1 -1
  33. package/src/scss/variables/_pagination.scss +1 -1
  34. package/src/scss/variables/_panels.scss +5 -4
  35. package/src/scss/variables/_range.scss +2 -2
  36. package/src/scss/variables/_sheets.scss +1 -1
  37. package/src/scss/variables/_tables.scss +4 -4
  38. package/src/scss/variables/_tbar.scss +14 -13
  39. package/src/scss/variables/_time.scss +1 -1
  40. package/src/scss/variables/_type.scss +2 -2
  41. package/src/scss/variables/_utilities.scss +1 -1
@@ -68,8 +68,8 @@ $table-cell-expand-smallest-width: 10% !default;
68
68
  // TH
69
69
 
70
70
  $table-head-bg: $white !default;
71
- $table-head-border-bottom-width: 2 * $table-border-width !default;
72
- $table-head-border-top-width: 0 !default;
71
+ $table-head-border-bottom-width: calc(2 * #{$table-border-width}) !default;
72
+ $table-head-border-top-width: 0px !default;
73
73
  $table-head-color: $gray-700 !default;
74
74
  $table-head-font-size: null !default;
75
75
  $table-head-font-weight: null !default;
@@ -97,8 +97,8 @@ $c-table-tbody: () !default;
97
97
  // TD
98
98
 
99
99
  $table-data-border-bottom-width: $table-border-width !default;
100
- $table-data-border-left-width: 0 !default;
101
- $table-data-border-right-width: 0 !default;
100
+ $table-data-border-left-width: 0px !default;
101
+ $table-data-border-right-width: 0px !default;
102
102
  $table-data-border-top-width: $table-border-width !default;
103
103
 
104
104
  $table-data-border-color: $table-border-color !default;
@@ -44,8 +44,8 @@ $tbar-stacked: map-deep-merge(
44
44
  ),
45
45
  btn-monospaced: (
46
46
  border-color: transparent,
47
- border-radius: 0,
48
- border-width: 0,
47
+ border-radius: 0px,
48
+ border-width: 0px,
49
49
  color: inherit,
50
50
  height: 2.5rem,
51
51
  margin-bottom: 0,
@@ -58,12 +58,12 @@ $tbar-stacked: map-deep-merge(
58
58
  position: relative,
59
59
  width: 2.5rem,
60
60
  focus: (
61
- box-shadow: inset 0 0 0 0.125rem $primary-l1#{','} inset 0 0 0 0.25rem
62
- $white,
61
+ box-shadow: #{inset 0 0 0 0.125rem $primary-l1,
62
+ inset 0 0 0 0.25rem $white},
63
63
  ),
64
64
  active-focus: (
65
- box-shadow: inset 0 0 0 0.125rem $primary-l1#{','} inset 0 0 0 0.25rem
66
- $white,
65
+ box-shadow: #{inset 0 0 0 0.125rem $primary-l1,
66
+ inset 0 0 0 0.25rem $white},
67
67
  ),
68
68
  ),
69
69
  ),
@@ -136,7 +136,8 @@ $tbar-light: () !default;
136
136
  $tbar-light: map-deep-merge(
137
137
  (
138
138
  background-color: $white,
139
- box-shadow: inset 1px 0 0 0 $gray-200#{','} inset -1px 0 0 0 $gray-200,
139
+ box-shadow: #{inset 1px 0 0 0 $gray-200,
140
+ inset -1px 0 0 0 $gray-200},
140
141
  color: $secondary,
141
142
  divider-before: (
142
143
  background-color: $gray-200,
@@ -167,8 +168,8 @@ $tbar-dark-d1: () !default;
167
168
  $tbar-dark-d1: map-deep-merge(
168
169
  (
169
170
  background-color: $dark-d1,
170
- box-shadow: inset 1px 0 0 0 rgba($white, 0.06) #{','} inset -1px 0 0 0
171
- rgba($white, 0.06),
171
+ box-shadow: #{inset 1px 0 0 0 rgba($white, 0.06),
172
+ inset -1px 0 0 0 rgba($white, 0.06)},
172
173
  color: $gray-500,
173
174
  divider-before: (
174
175
  background-color: rgba($white, 0.06),
@@ -209,8 +210,8 @@ $tbar-dark-l2: () !default;
209
210
  $tbar-dark-l2: map-deep-merge(
210
211
  (
211
212
  background-color: $dark-l2,
212
- box-shadow: inset 1px 0 0 0 rgba($white, 0.06) #{','} inset -1px 0 0 0
213
- rgba($white, 0.06),
213
+ box-shadow: #{inset 1px 0 0 0 rgba($white, 0.06),
214
+ inset -1px 0 0 0 rgba($white, 0.06)},
214
215
  border-color: rgba($white, 0.06),
215
216
  color: $gray-500,
216
217
  divider-before: (
@@ -369,8 +370,8 @@ $subnav-tbar-primary: map-deep-merge(
369
370
  padding-y: 0.625rem,
370
371
  item-justify-content: flex-start,
371
372
  item-padding-x: 0.25rem,
372
- link-monospaced-border-radius: 0,
373
- link-monospaced-border-width: 0,
373
+ link-monospaced-border-radius: 0px,
374
+ link-monospaced-border-width: 0px,
374
375
  link-monospaced-margin-y: -0.625rem,
375
376
  link-monospaced-size: 3rem,
376
377
  component-link: $subnav-tbar-primary-component-link,
@@ -99,7 +99,7 @@ $clay-time-inner-spin-btn: map-deep-merge(
99
99
  (
100
100
  align-items: center,
101
101
  border-radius: map-get($clay-time-inner-spin, border-radius),
102
- border-width: 0,
102
+ border-width: 0px,
103
103
  display: inline-flex,
104
104
  font-size: 8px,
105
105
  height: auto,
@@ -52,7 +52,7 @@ $c-kbd: map-deep-merge(
52
52
  $c-kbd-c-kbd: () !default;
53
53
  $c-kbd-c-kbd: map-merge(
54
54
  (
55
- border-width: 0,
55
+ border-width: 0px,
56
56
  font-size: inherit,
57
57
  font-weight: inherit,
58
58
  height: auto,
@@ -74,7 +74,7 @@ $c-kbd-monospaced: map-deep-merge(
74
74
  $c-kbd-inline: () !default;
75
75
  $c-kbd-inline: map-deep-merge(
76
76
  (
77
- border-width: 0,
77
+ border-width: 0px,
78
78
  font-weight: $font-weight-light,
79
79
  height: auto,
80
80
  line-height: inherit,
@@ -34,7 +34,7 @@ $close: map-deep-merge(
34
34
  appearance: none,
35
35
  background-color: transparent,
36
36
  border-radius: $border-radius-sm,
37
- border-width: 0,
37
+ border-width: 0px,
38
38
  color: $close-color,
39
39
  cursor: $link-cursor,
40
40
  display: inline-flex,