@castlabs/ui 7.21.0 → 7.21.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.
@@ -0,0 +1 @@
1
+ <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#CFC8C8' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m2 5 6 6 6-6'/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#a0a0a0' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m2 5 6 6 6-6'/></svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@castlabs/ui",
3
- "version": "7.21.0",
3
+ "version": "7.21.1",
4
4
  "repository": "https://github.com/castlabs/ui-styleguide",
5
5
  "private": false,
6
6
  "description": "A vanilla HTML/CS/JS & Vue.js component library for Castlabs.",
@@ -40,11 +40,11 @@
40
40
  .cl-section-fullscreen {
41
41
  height: 100%;
42
42
 
43
- .container,
44
- .container-fluid,
45
- .row,
46
- .col-12,
47
- .cl-table-scroll {
43
+ .cl-table-scroll,
44
+ > .container,
45
+ > .container-fluid,
46
+ > * > .row,
47
+ > * > * > .col-12 {
48
48
  height: 100%;
49
49
  margin-bottom: 0 !important;
50
50
  margin-top: 0 !important;
@@ -1,3 +1,3 @@
1
1
  :root {
2
- #{'--cl-version'}: 'v7.21.0';
2
+ #{'--cl-version'}: 'v7.21.1';
3
3
  }
@@ -132,12 +132,12 @@ $cl-url-postfix: '' !default;
132
132
  }
133
133
 
134
134
  .form-select {
135
- background-image: url('#{$cl-url-prefix}select.dark.svg#{$cl-url-postfix}'), none, none;
135
+ background-image: url('#{$cl-url-prefix}select-dark.svg#{$cl-url-postfix}'), none, none;
136
136
 
137
137
  &:disabled,
138
138
  &.disabled {
139
139
  background-image:
140
- url('#{$cl-url-prefix}select-disabled.dark.svg#{$cl-url-postfix}'), none, none;
140
+ url('#{$cl-url-prefix}select-disabled-dark.svg#{$cl-url-postfix}'), none, none;
141
141
  }
142
142
  }
143
143