spectre_scss 0.5.4.0 → 0.5.5.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b2cd9ab46565dc71ca114340dffb962dc11f0afc77d68237bf351e0a645535c2
4
- data.tar.gz: 20e791aec52f3a48e1b086a3fcbf073215fe398b4961f6743035c5cff1fb37cb
3
+ metadata.gz: cee4800c834f3cd72e107c75b9f5346afd455722dc240ed1a26052e63ac31699
4
+ data.tar.gz: c2142ade66f5cb6455c50e4f3aa1e727e83bfddc95c7ce8e21ae0b6b3a208c83
5
5
  SHA512:
6
- metadata.gz: 457bc40945c2a83666949528bf9e3418c810c5203791c5ae78bd77d4d3058a3b8a2832d6c1f6a2904b57ebdfe4eb88e2cf178f63e4ade9fc92ff9acb61dfcc5d
7
- data.tar.gz: '005757181c47896cd21f05c0d7eaf90348a2224399fc00cb0a0e1b28cb50c05bc333d454a378d3c05290de4ae7e999f6c978880d40714881be96ddc1f4eabe32'
6
+ metadata.gz: 7f916b6a629e77aff7f6c4d864d0fc96bb6540846ee10fd7d3c34aa88ea82e8315ad12a9167515b68977cf36d400ee15a4f42004962b6905006362b6726da933
7
+ data.tar.gz: 57a3f99c84ece4f16ce577843599b45f4ec8f9f224d9ffc26159b4d9c827f66d89a04ac6b83e763463fcc350239bd121889dc2b6cca6d1f107a5fe9b7dbe52a8
@@ -1,3 +1,3 @@
1
1
  module SpectreScss
2
- VERSION = '0.5.4.0'
2
+ VERSION = '0.5.5.0'
3
3
  end
@@ -1,24 +1,29 @@
1
1
  // Optimized for East Asian CJK
2
- :lang(zh),
3
- :lang(zh-Hans) {
2
+ html:lang(zh),
3
+ html:lang(zh-Hans),
4
+ .lang-zh,
5
+ .lang-zh-hans {
4
6
  font-family: $cjk-zh-hans-font-family;
5
7
  }
6
8
 
7
- :lang(zh-Hant) {
9
+ html:lang(zh-Hant),
10
+ .lang-zh-hant {
8
11
  font-family: $cjk-zh-hant-font-family;
9
12
  }
10
13
 
11
- :lang(ja) {
14
+ html:lang(ja),
15
+ .lang-ja {
12
16
  font-family: $cjk-jp-font-family;
13
17
  }
14
18
 
15
- :lang(ko) {
19
+ html:lang(ko),
20
+ .lang-ko {
16
21
  font-family: $cjk-ko-font-family;
17
22
  }
18
23
 
19
24
  :lang(zh),
20
25
  :lang(ja),
21
- .cjk {
26
+ .lang-cjk {
22
27
  ins,
23
28
  u {
24
29
  border-bottom: $border-width solid;
@@ -9,7 +9,7 @@
9
9
  line-height: $unit-4;
10
10
  margin: $unit-h;
11
11
  max-width: $control-width-sm;
12
- overflow-x: hidden;
12
+ overflow: hidden;
13
13
  padding: $unit-1 $unit-2;
14
14
  text-decoration: none;
15
15
  text-overflow: ellipsis;
@@ -427,6 +427,7 @@ textarea.form-input {
427
427
  .form-select {
428
428
  .has-success &,
429
429
  &.is-success {
430
+ background: lighten($success-color, 53%);
430
431
  border-color: $success-color;
431
432
  &:focus {
432
433
  @include control-shadow($success-color);
@@ -435,6 +436,7 @@ textarea.form-input {
435
436
 
436
437
  .has-error &,
437
438
  &.is-error {
439
+ background: lighten($error-color, 53%);
438
440
  border-color: $error-color;
439
441
  &:focus {
440
442
  @include control-shadow($error-color);
@@ -484,6 +486,7 @@ textarea.form-input {
484
486
  border-color: $error-color;
485
487
  &:focus {
486
488
  @include control-shadow($error-color);
489
+ background: lighten($error-color, 10%);
487
490
  }
488
491
 
489
492
  & + .form-input-hint {
@@ -23,7 +23,6 @@
23
23
 
24
24
  .navbar-brand {
25
25
  font-size: $font-size-lg;
26
- font-weight: 500;
27
26
  text-decoration: none;
28
27
  }
29
28
  }
@@ -24,7 +24,7 @@
24
24
  }
25
25
 
26
26
  a {
27
- color: $gray-color;
27
+ color: $primary-color;
28
28
  display: inline-block;
29
29
  padding: 20px 10px 0;
30
30
  text-decoration: none;
@@ -59,9 +59,10 @@
59
59
  }
60
60
 
61
61
  a {
62
+ color: $gray-color;
62
63
 
63
64
  &::before {
64
- background: $gray-color-light;
65
+ background: $border-color;
65
66
  }
66
67
  }
67
68
  }
@@ -1,5 +1,5 @@
1
1
  // Core variables
2
- $version: "0.5.4";
2
+ $version: "0.5.5";
3
3
 
4
4
  // Core features
5
5
  $rtl: false !default;
@@ -3,7 +3,7 @@
3
3
 
4
4
  @include text-color-variant(".text-secondary", $secondary-color-dark);
5
5
 
6
- @include text-color-variant(".text-gray", $gray-color-dark);
6
+ @include text-color-variant(".text-gray", $gray-color);
7
7
 
8
8
  @include text-color-variant(".text-light", $light-color);
9
9
 
@@ -21,4 +21,4 @@
21
21
 
22
22
  .c-auto {
23
23
  cursor: auto;
24
- }
24
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spectre_scss
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.4.0
4
+ version: 0.5.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zoran
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-11-04 00:00:00.000000000 Z
11
+ date: 2018-11-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler