tungsten 0.2.3 → 0.2.4
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 +5 -5
- data/app/assets/stylesheets/tungsten/core/_sections.scss +10 -4
- data/lib/tungsten/version.rb +1 -1
- data/public/{code-0.2.3.js → code-0.2.4.js} +0 -0
- data/public/{code-0.2.3.js.gz → code-0.2.4.js.gz} +0 -0
- data/public/{tungsten-0.2.3.css → tungsten-0.2.4.css} +10 -5
- data/public/tungsten-0.2.4.css.gz +0 -0
- data/public/{tungsten-0.2.3.js → tungsten-0.2.4.js} +0 -0
- data/public/{tungsten-0.2.3.js.gz → tungsten-0.2.4.js.gz} +0 -0
- metadata +8 -8
- data/public/tungsten-0.2.3.css.gz +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 27aa53b15e8ca61dc37cc865a391d7ceb8f6ecc316987e82799bd35bb6bc9d28
|
|
4
|
+
data.tar.gz: dd0b5aaa537da77fda2d1889a2f4ecb5d41a43a1334f7e3b9273ff1ee9260d5d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
35
|
+
@include at-least($medium-width) {
|
|
36
|
+
padding-right: $card-padding/2;
|
|
37
|
+
}
|
|
35
38
|
@include at-least($large-width) {
|
|
36
|
-
padding:
|
|
39
|
+
padding-right: $card-padding;
|
|
37
40
|
}
|
|
38
41
|
}
|
|
39
42
|
|
|
40
43
|
&-heading {
|
|
41
44
|
font-size: 18px;
|
|
42
|
-
@include at-least($
|
|
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:
|
|
65
|
+
padding-left: $card-padding;
|
|
60
66
|
}
|
|
61
67
|
}
|
|
62
68
|
|
data/lib/tungsten/version.rb
CHANGED
|
File without changes
|
|
Binary file
|
|
@@ -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
|
-
|
|
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:
|
|
961
|
+
padding-right: 20px; } }
|
|
960
962
|
.app-section-heading {
|
|
961
963
|
font-size: 18px; }
|
|
962
|
-
@media all and (min-width:
|
|
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:
|
|
977
|
+
padding-left: 20px; } }
|
|
973
978
|
.app-section.narrow {
|
|
974
979
|
max-width: 600px;
|
|
975
980
|
margin-left: auto;
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
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.
|
|
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.
|
|
320
|
-
- public/code-0.2.
|
|
321
|
-
- public/tungsten-0.2.
|
|
322
|
-
- public/tungsten-0.2.
|
|
323
|
-
- public/tungsten-0.2.
|
|
324
|
-
- public/tungsten-0.2.
|
|
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.
|
|
345
|
+
rubygems_version: 2.7.3
|
|
346
346
|
signing_key:
|
|
347
347
|
specification_version: 4
|
|
348
348
|
summary: The Tungsten Design System
|
|
Binary file
|