timequake 2.0.4 → 2.0.8

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
2
  SHA256:
3
- metadata.gz: '044652995ba425f5fecc3529acc86c19eecadaa2d69da132e22d49e2c1a759ed'
4
- data.tar.gz: 482692f0326d48df850fbe899f2e739db989ccfeb5e02e60024cc2ba77adc53f
3
+ metadata.gz: 193a805475242b011d8e2b552a4e96b43945fd650fd5e20c08a2362e79f4e3b8
4
+ data.tar.gz: 6972bee6a2b36f90f5b95013a003657f25be2f2aba53035ea87db6a6d8061ac4
5
5
  SHA512:
6
- metadata.gz: 877e3e970bf9aecb79fd1bebe3c66e2a4672cf6e435c0fbbd9aa5d05cade0e39c824884462035e9d935583e616df53c5eaa88a32031a3d568e5af096bab5838d
7
- data.tar.gz: 3e1c62c6779c0628bd47d4e42108a36ad106da2f453bf9d4c3406ebf1f89bebdc7a218839a2d820f39fd78804c8015c4cc3aa91647e2b073614614686bd4c90c
6
+ metadata.gz: 1429423e52ef8d80c923d53c1e8b9b1296f65766104a2ffe0a402b7ecee60ef582219688dce369bdb1f4b502a385526e56427db9d16097c2956166769aae1a06
7
+ data.tar.gz: 59869d42a0a6eb5b716bd5415e2178f48a6ae0304f6af631eff9787bea455eb080f185d4afd24c0fdcb7752028ea074a9267770e3930caeb547275a0b8199395
@@ -114,4 +114,10 @@ $btn-mini-padding: 8px !default;
114
114
  min-width: $btn-mini-min-width;
115
115
  padding: $btn-mini-padding;
116
116
  }
117
+
118
+ &[disabled] {
119
+ background-color: $light-gray;
120
+ border-color: $light-gray;
121
+ color: $gray
122
+ }
117
123
  }
@@ -19,7 +19,7 @@ $modal-close-transform: rotate(45deg) !default;
19
19
  align-items: center;
20
20
  z-index: -1;
21
21
  opacity: 0;
22
- transition: 500ms all;
22
+ transition: 500ms opacity;
23
23
 
24
24
  &.modal-tall {
25
25
  align-items: flex-start;
@@ -11,6 +11,8 @@ $heading-5-font-size: .83rem !default;
11
11
  $heading-6-font-size: .75rem !default;
12
12
  $heading-margin: 0 0 .5rem 0 !default;
13
13
  $copy-margin: 0 0 .5rem 0 !default;
14
+ $copy-line-height: 1.2 !default;
15
+ $heading-line-height: 1.2 !default;
14
16
  $btn-font: $copy-font !default;
15
17
 
16
18
  html {
@@ -24,6 +26,7 @@ html {
24
26
  color: $copy-color;
25
27
  margin: $copy-margin;
26
28
  font-size: $copy-font-size;
29
+ line-height: $copy-line-height;
27
30
  }
28
31
 
29
32
  .heading,
@@ -35,6 +38,7 @@ html {
35
38
  .heading-6, {
36
39
  font-family: $heading-font;
37
40
  margin: $heading-margin;
41
+ line-height: $heading-line-height;
38
42
  }
39
43
 
40
44
  .heading-1 { font-size: $heading-1-font-size; }
@@ -46,6 +50,22 @@ html {
46
50
 
47
51
  @for $i from 1 through 200 {
48
52
  .fz-#{$i} { font-size: #{$i}px !important; }
53
+
54
+ @media (min-width: $medium) {
55
+ .md-fz-#{$i} { font-size: #{$i}px !important; }
56
+ }
57
+
58
+ @media (min-width: $large) {
59
+ .lg-fz-#{$i} { font-size: #{$i}px !important; }
60
+ }
61
+
62
+ @media (min-width: $xlarge) {
63
+ .xlg-fz-#{$i} { font-size: #{$i}px !important; }
64
+ }
65
+
66
+ @media (min-width: $xxlarge) {
67
+ .xxlg-fz-#{$i} { font-size: #{$i}px !important; }
68
+ }
49
69
  }
50
70
 
51
71
  .fw-100 { font-weight: 100 !important; }
@@ -58,6 +78,12 @@ html {
58
78
  .fw-800 { font-weight: 800 !important; }
59
79
  .fw-900 { font-weight: 900 !important; }
60
80
 
81
+ .lh-1 { line-height: 1 !important; }
82
+ .lh-normal { line-height: 1.2 !important; }
83
+ .lh-2 { line-height: 2 !important; }
84
+ .lh-lg { line-height: 2.5 !important; }
85
+ .lh-xl { line-height: 3.5 !important; }
86
+
61
87
  /* TEXT HELPERS */
62
88
  .bold { font-weight: bold !important; }
63
89
  .italic { font-style: italic !important; }
@@ -62,6 +62,8 @@ $heading-5-font-size: .83rem;
62
62
  $heading-6-font-size: .75rem;
63
63
  $heading-margin: 0 0 .5rem 0;
64
64
  $copy-margin: 0 0 .5rem 0;
65
+ $copy-line-height: 1.2;
66
+ $heading-line-height: 1.2;
65
67
 
66
68
  // BUTTONS
67
69
  $btn-min-width: 145px;
@@ -1,3 +1,3 @@
1
1
  module Timequake
2
- VERSION = "2.0.4"
2
+ VERSION = "2.0.8"
3
3
  end
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: timequake
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.4
4
+ version: 2.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - George Morris
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-11-10 00:00:00.000000000 Z
11
+ date: 2021-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jquery-rails
@@ -117,6 +117,10 @@ files:
117
117
  - timequake-2.0.1.gem
118
118
  - timequake-2.0.2.gem
119
119
  - timequake-2.0.3.gem
120
+ - timequake-2.0.4.gem
121
+ - timequake-2.0.5.gem
122
+ - timequake-2.0.6.gem
123
+ - timequake-2.0.7.gem
120
124
  - timequake.gemspec
121
125
  homepage:
122
126
  licenses: