shift-ui-kit 0.0.48 → 0.0.49

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 01229c82d68215d6f4d7446385f9b227b759ff7b
4
- data.tar.gz: f7b0c64076c972499293c996aff77a48019334bb
3
+ metadata.gz: 5be04c7951d121caa4a8acbd0810e6d930f39b5f
4
+ data.tar.gz: 1a7f26e48b20830d8f4a9702ad5bbf1675ba7a47
5
5
  SHA512:
6
- metadata.gz: f4cb15ae639dd715b4b07dd311bc95a298044a5085aae746b2b885a807de858ceca0c44e0b7cc5ce6e58c6d24256cefee1d2bbf31d6e8eee42fc6f2a2093aa7c
7
- data.tar.gz: d77007621405e4cf138af2966ac74470b9a72b36d22f983414b37e906abeb75c5c0022df09bcd5736e4ef78fb9b5b177d9cb7eac9be3d970e33cd2d06a9b4edc
6
+ metadata.gz: 3a2ff8b63bc10f7946ae6105af1af41a6274e690b476964db13441744baa9cc53502544e357905b442bf5f3c020efab7299334d1b7b326bf21b2e5678a4a384b
7
+ data.tar.gz: 1531abae71a487583f49ac8fa67434bf19dbcdea786f87d61d6c4db8cae1b862c2ad686033fed9ac9954789551679577ee15a40b57ec4b5061aec721232c2875
@@ -2,14 +2,6 @@
2
2
  background: #fff;
3
3
  display: block;
4
4
 
5
- & + & {
6
- margin-top: 1px;
7
- @media (min-width: 640px) {
8
- margin-top: 0;
9
- margin-left: 1px;
10
- }
11
- }
12
-
13
5
  &__label, &__validation_message {
14
6
  font-size: 13px;
15
7
  padding: $tight-spacing $tight-spacing 0;
@@ -25,7 +17,7 @@
25
17
  &--failure { color: color(unsafe) }
26
18
  }
27
19
 
28
- &__input, &__static_value, &__wrapper {
20
+ &__input, &__static_value {
29
21
  width: 100%;
30
22
  padding: $tight-spacing;
31
23
  border: 0;
@@ -0,0 +1,6 @@
1
+ .c-form-grid {
2
+ &__cell {
3
+ $border-color: mix(color(background, $tone: shadow), #fff);
4
+ border: 0 solid $border-color;
5
+ }
6
+ }
@@ -10,6 +10,7 @@
10
10
  @import 'c-dropdown-group';
11
11
  @import 'c-form-field';
12
12
  @import 'c-form-footer';
13
+ @import 'c-form-grid';
13
14
  @import 'c-form-group';
14
15
  @import 'c-form-message';
15
16
  @import 'c-data-table';
@@ -14,3 +14,23 @@
14
14
  }
15
15
  }
16
16
  }
17
+
18
+ @each $side in (top, left, bottom, right) {
19
+ .u-border-#{$side} {
20
+ border-#{$side}-width: 1px;
21
+ }
22
+ .u-no-border-#{$side} {
23
+ border-#{$side}-width: 0;
24
+ }
25
+
26
+ @each $key, $size in $breakpoints {
27
+ @media (min-width: $size) {
28
+ .u-border-#{$side}\@#{$key} {
29
+ border-#{$side}-width: 1px;
30
+ }
31
+ .u-no-border-#{$side}\@#{$key} {
32
+ border-#{$side}-width: 0;
33
+ }
34
+ }
35
+ }
36
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shift-ui-kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.48
4
+ version: 0.0.49
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Townsend
@@ -146,6 +146,7 @@ files:
146
146
  - assets/stylesheets/6-components/_c-flash-message.scss
147
147
  - assets/stylesheets/6-components/_c-form-field.scss
148
148
  - assets/stylesheets/6-components/_c-form-footer.scss
149
+ - assets/stylesheets/6-components/_c-form-grid.scss
149
150
  - assets/stylesheets/6-components/_c-form-group.scss
150
151
  - assets/stylesheets/6-components/_c-form-message.scss
151
152
  - assets/stylesheets/6-components/_c-loader.scss