tungsten 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 673dfff61fd0f2f9e8934275ace00ac423660e40
4
- data.tar.gz: 56c1ee80dd42927cad7f3a077e9d741aba5e2347
2
+ SHA256:
3
+ metadata.gz: 27aa53b15e8ca61dc37cc865a391d7ceb8f6ecc316987e82799bd35bb6bc9d28
4
+ data.tar.gz: dd0b5aaa537da77fda2d1889a2f4ecb5d41a43a1334f7e3b9273ff1ee9260d5d
5
5
  SHA512:
6
- metadata.gz: 29dfd8aa40547e12b99115ee4f13959adf12f206f6e64653fc125a0265617650a3b65749b8a54daf3c747ffa1aae991c2c680a8f943efd1a047c5e233a5c6098
7
- data.tar.gz: d54748f66c185a2e5663322de952a8c62fc0f550d3b7f002c7fb15c3afc39ef21759af9b604396b083cfe6f4cc9d7ef0ce9e044ea91055ca8b25192a0dea6d99
6
+ metadata.gz: efb38d74e8499edf5bc63c90c874a9e35ea5dbce20da2e3c8f2af5f0c7eb92361115a1361d5e42f45e1ad4cb16cae97f52002024c6c2f1cc4ffe02c40167b547
7
+ data.tar.gz: 5d791495cc11d960bd0485abc5036de3e3444d0a33453c414e894f450aae8b2842bf62d59ee235093b1777df3ac45e848b79693e8370e5f41cfc850801726ecb
@@ -7,6 +7,7 @@
7
7
  flex-wrap: wrap;
8
8
  padding: $card-padding 0;
9
9
  position: relative;
10
+ $flex-width: 870px;
10
11
 
11
12
  border-top: 1px solid $gray-04;
12
13
 
@@ -31,15 +32,17 @@
31
32
 
32
33
  &-title {
33
34
  flex: 1 0 240px;
34
- padding: 0 $card-padding/2 0;
35
+ @include at-least($medium-width) {
36
+ padding-right: $card-padding/2;
37
+ }
35
38
  @include at-least($large-width) {
36
- padding: 0 $card-padding 0;
39
+ padding-right: $card-padding;
37
40
  }
38
41
  }
39
42
 
40
43
  &-heading {
41
44
  font-size: 18px;
42
- @include at-least($medium-width) {
45
+ @include at-least($flex-width) {
43
46
  &:first-child {
44
47
  padding: $card-padding 0 0;
45
48
  }
@@ -55,8 +58,11 @@
55
58
 
56
59
  &-content {
57
60
  flex: 2 1 500px;
61
+ @include at-least($flex-width) {
62
+ padding-left: $card-padding/2;
63
+ }
58
64
  @include at-least($large-width) {
59
- padding: 0 $card-padding 0;
65
+ padding-left: $card-padding;
60
66
  }
61
67
  }
62
68
 
@@ -1,3 +1,3 @@
1
1
  module Tungsten
2
- VERSION = "0.2.3"
2
+ VERSION = "0.2.4"
3
3
  end
File without changes
@@ -952,14 +952,16 @@ pre {
952
952
  border-top: none;
953
953
  padding-top: 0; }
954
954
  .app-section-title {
955
- flex: 1 0 240px;
956
- padding: 0 10px 0; }
955
+ flex: 1 0 240px; }
956
+ @media all and (min-width: 600px) {
957
+ .app-section-title {
958
+ padding-right: 10px; } }
957
959
  @media all and (min-width: 1000px) {
958
960
  .app-section-title {
959
- padding: 0 20px 0; } }
961
+ padding-right: 20px; } }
960
962
  .app-section-heading {
961
963
  font-size: 18px; }
962
- @media all and (min-width: 600px) {
964
+ @media all and (min-width: 870px) {
963
965
  .app-section-heading:first-child {
964
966
  padding: 20px 0 0; } }
965
967
  .app-section-title-anchor, .app-section-title-anchor:hover {
@@ -967,9 +969,12 @@ pre {
967
969
  text-decoration: none; }
968
970
  .app-section-content {
969
971
  flex: 2 1 500px; }
972
+ @media all and (min-width: 870px) {
973
+ .app-section-content {
974
+ padding-left: 10px; } }
970
975
  @media all and (min-width: 1000px) {
971
976
  .app-section-content {
972
- padding: 0 20px 0; } }
977
+ padding-left: 20px; } }
973
978
  .app-section.narrow {
974
979
  max-width: 600px;
975
980
  margin-left: auto;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tungsten
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Mathis
@@ -316,12 +316,12 @@ files:
316
316
  - lib/tungsten.rb
317
317
  - lib/tungsten/helper.rb
318
318
  - lib/tungsten/version.rb
319
- - public/code-0.2.3.js
320
- - public/code-0.2.3.js.gz
321
- - public/tungsten-0.2.3.css
322
- - public/tungsten-0.2.3.css.gz
323
- - public/tungsten-0.2.3.js
324
- - public/tungsten-0.2.3.js.gz
319
+ - public/code-0.2.4.js
320
+ - public/code-0.2.4.js.gz
321
+ - public/tungsten-0.2.4.css
322
+ - public/tungsten-0.2.4.css.gz
323
+ - public/tungsten-0.2.4.js
324
+ - public/tungsten-0.2.4.js.gz
325
325
  homepage:
326
326
  licenses:
327
327
  - MIT
@@ -342,7 +342,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
342
342
  version: '0'
343
343
  requirements: []
344
344
  rubyforge_project:
345
- rubygems_version: 2.6.11
345
+ rubygems_version: 2.7.3
346
346
  signing_key:
347
347
  specification_version: 4
348
348
  summary: The Tungsten Design System
Binary file