@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.
- package/lib/css/atlas.css +136 -155
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +54 -91
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css +0 -0
- package/lib/css/bootstrap.css.map +0 -0
- package/lib/css/cadmin.css +0 -0
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/scss/atlas/variables/_buttons.scss +1 -1
- package/src/scss/atlas/variables/_dropdowns.scss +1 -1
- package/src/scss/atlas/variables/_globals.scss +5 -5
- package/src/scss/atlas/variables/_navigation-bar.scss +1 -1
- package/src/scss/atlas/variables/_navs.scss +1 -1
- package/src/scss/atlas/variables/_panels.scss +2 -2
- package/src/scss/atlas/variables/_sheets.scss +2 -1
- package/src/scss/atlas/variables/_sidebar.scss +3 -2
- package/src/scss/atlas/variables/_type.scss +0 -2
- package/src/scss/components/_tables.scss +2 -2
- package/src/scss/mixins/_buttons.scss +4 -0
- package/src/scss/variables/_buttons.scss +116 -67
- package/src/scss/variables/_cards.scss +1 -1
- package/src/scss/variables/_date-picker.scss +1 -1
- package/src/scss/variables/_dropdowns.scss +4 -4
- package/src/scss/variables/_forms.scss +1 -1
- package/src/scss/variables/_globals.scss +2 -2
- package/src/scss/variables/_links.scss +1 -1
- package/src/scss/variables/_list-group.scss +2 -2
- package/src/scss/variables/_multi-step-nav.scss +1 -1
- package/src/scss/variables/_navbar.scss +2 -2
- package/src/scss/variables/_navs.scss +1 -1
- package/src/scss/variables/_pagination.scss +1 -1
- package/src/scss/variables/_panels.scss +5 -4
- package/src/scss/variables/_range.scss +2 -2
- package/src/scss/variables/_sheets.scss +1 -1
- package/src/scss/variables/_tables.scss +4 -4
- package/src/scss/variables/_tbar.scss +14 -13
- package/src/scss/variables/_time.scss +1 -1
- package/src/scss/variables/_type.scss +2 -2
- 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:
|
|
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:
|
|
101
|
-
$table-data-border-right-width:
|
|
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:
|
|
48
|
-
border-width:
|
|
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
|
|
62
|
-
|
|
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
|
|
66
|
-
|
|
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:
|
|
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)
|
|
171
|
-
|
|
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)
|
|
213
|
-
|
|
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:
|
|
373
|
-
link-monospaced-border-width:
|
|
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,
|
|
@@ -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:
|
|
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:
|
|
77
|
+
border-width: 0px,
|
|
78
78
|
font-weight: $font-weight-light,
|
|
79
79
|
height: auto,
|
|
80
80
|
line-height: inherit,
|