timequake 1.0.4 → 1.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/timequake.js +1 -1
- data/app/assets/stylesheets/timequake/buttons.scss +7 -7
- data/app/assets/stylesheets/timequake/colors.scss +14 -0
- data/app/assets/stylesheets/timequake/forms.scss +15 -0
- data/app/assets/stylesheets/timequake/modals.scss +3 -7
- data/app/assets/stylesheets/timequake/typography.scss +4 -2
- data/lib/generators/timequake/templates/timequake_overrides.scss +7 -3
- data/lib/timequake/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 15f79eee3d85c33cdfefdb0c1619f59d2303e7a64c59b16c05164e04a395cb78
|
4
|
+
data.tar.gz: 7e9120932bfb40c722c774232fd4d5cb80b03ae44525783ee354376caceaeac1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3556afeb6f4bb034ec5991a5da31ab9b5bf2b89145a939a6451b3adbf4e142603467038bf6bd2703edb559040a1c6014c6c4e64e0a72937115578877af1b9b1f
|
7
|
+
data.tar.gz: eded1a631a670936a65c1a35849e5db202af026ee2cdf6928ce29b29c5cb3a28b8e39f2b434c6dae6ad2863ea91914eb127b7c48772ab88ec377ff61120d2ea4
|
@@ -48,7 +48,7 @@ $btn-mini-padding: 8px !default;
|
|
48
48
|
}
|
49
49
|
}
|
50
50
|
|
51
|
-
&.secondary {
|
51
|
+
&.btn-secondary {
|
52
52
|
color: $secondary-btn-text-color;
|
53
53
|
background-color: $secondary-btn-color;
|
54
54
|
border-color: $secondary-btn-border-color;
|
@@ -66,7 +66,7 @@ $btn-mini-padding: 8px !default;
|
|
66
66
|
}
|
67
67
|
}
|
68
68
|
|
69
|
-
&.tertiary {
|
69
|
+
&.btn-tertiary {
|
70
70
|
color: $tertiary-btn-text-color;
|
71
71
|
background-color: $tertiary-btn-color;
|
72
72
|
border-color: $tertiary-btn-border-color;
|
@@ -84,31 +84,31 @@ $btn-mini-padding: 8px !default;
|
|
84
84
|
}
|
85
85
|
}
|
86
86
|
|
87
|
-
&.info {
|
87
|
+
&.btn-info {
|
88
88
|
background-color: $info-color;
|
89
89
|
border-color: $info-color;
|
90
90
|
&:hover { background-color: lighten($info-color, 5%); }
|
91
91
|
}
|
92
92
|
|
93
|
-
&.success {
|
93
|
+
&.btn-success {
|
94
94
|
background-color: $success-color;
|
95
95
|
border-color: $success-color;
|
96
96
|
&:hover { background-color: lighten($success-color, 5%); }
|
97
97
|
}
|
98
98
|
|
99
|
-
&.danger {
|
99
|
+
&.btn-danger {
|
100
100
|
background-color: $danger-color;
|
101
101
|
border-color: $danger-color;
|
102
102
|
&:hover { background-color: lighten($danger-color, 5%); }
|
103
103
|
}
|
104
104
|
|
105
|
-
&.warning {
|
105
|
+
&.btn-warning {
|
106
106
|
background-color: $warning-color;
|
107
107
|
border-color: $warning-color;
|
108
108
|
&:hover { background-color: lighten($warning-color, 5%); }
|
109
109
|
}
|
110
110
|
|
111
|
-
&.mini {
|
111
|
+
&.btn-mini {
|
112
112
|
min-width: $btn-mini-min-width;
|
113
113
|
padding: $btn-mini-padding;
|
114
114
|
}
|
@@ -35,9 +35,16 @@ $warning-color: #EAC435 !default;
|
|
35
35
|
.violet { color: $violet !important; }
|
36
36
|
.teal { color: $teal !important; }
|
37
37
|
.copy-color { color: $copy-color !important; }
|
38
|
+
.primary { color: $primary-color !important; }
|
39
|
+
.secondary { color: $secondary-color !important; }
|
40
|
+
.tertiary { color: $tertiary-color !important; }
|
38
41
|
.primary-color { color: $primary-color !important; }
|
39
42
|
.secondary-color { color: $secondary-color !important; }
|
40
43
|
.tertiary-color { color: $tertiary-color !important; }
|
44
|
+
.success { color: $success-color !important; }
|
45
|
+
.info { color: $info-color !important; }
|
46
|
+
.danger { color: $danger-color !important; }
|
47
|
+
.warning { color: $warning-color !important; }
|
41
48
|
|
42
49
|
.black-bg { background-color: $black !important; }
|
43
50
|
.gray-bg { background-color: $gray !important; }
|
@@ -53,6 +60,13 @@ $warning-color: #EAC435 !default;
|
|
53
60
|
.indigo-bg { background-color: $indigo !important; }
|
54
61
|
.violet-bg { background-color: $violet !important; }
|
55
62
|
.teal-bg { background-color: $teal !important; }
|
63
|
+
.primary-bg { background-color: $primary-color !important; }
|
64
|
+
.secondary-bg { background-color: $secondary-color !important; }
|
65
|
+
.tertiary-bg { background-color: $tertiary-color !important; }
|
56
66
|
.primary-color-bg { background-color: $primary-color !important; }
|
57
67
|
.secondary-color-bg { background-color: $secondary-color !important; }
|
58
68
|
.tertiary-color-bg { background-color: $tertiary-color !important; }
|
69
|
+
.success-bg { background-color: $success-color !important; }
|
70
|
+
.info-bg { background-color: $info-color !important; }
|
71
|
+
.danger-bg { background-color: $danger-color !important; }
|
72
|
+
.warning-bg { background-color: $warning-color !important; }
|
@@ -11,6 +11,10 @@ $label-font: $form-font !default;
|
|
11
11
|
$input-font-size: $copy-font-size !default;
|
12
12
|
$label-font-size: $copy-font-size !default;
|
13
13
|
$file-font-size: 14px !default;
|
14
|
+
$checkbox-width: 16px !default;
|
15
|
+
$checkbox-margin-bottom: 8px !default;
|
16
|
+
$radio-width: 13px !default;
|
17
|
+
$radio-margin-bottom: 8px !default;
|
14
18
|
|
15
19
|
form {
|
16
20
|
input,
|
@@ -39,6 +43,17 @@ form {
|
|
39
43
|
|
40
44
|
input[type='submit'] { height: auto; }
|
41
45
|
|
46
|
+
input[type='checkbox'] {
|
47
|
+
width: $checkbox-width;
|
48
|
+
margin-bottom: $checkbox-margin-bottom;
|
49
|
+
}
|
50
|
+
|
51
|
+
input[type='radio'] {
|
52
|
+
width: $radio-width;
|
53
|
+
height: auto;
|
54
|
+
margin-bottom: $radio-margin-bottom;
|
55
|
+
}
|
56
|
+
|
42
57
|
label {
|
43
58
|
display: inline-block;
|
44
59
|
margin-bottom: $label-margin-bottom;
|
@@ -2,9 +2,7 @@ $modal-bg-color: $white !default;
|
|
2
2
|
$modal-max-width: 1200px !default;
|
3
3
|
$modal-content-padding: 20px !default;
|
4
4
|
$modal-border-radius: 5px !default;
|
5
|
-
$modal-border
|
6
|
-
$modal-border-width: 5px !default;
|
7
|
-
$modal-border-style: solid !default;
|
5
|
+
$modal-border: 5px solid $white !default;
|
8
6
|
$modal-close-size: 30px !default;
|
9
7
|
$modal-close-color: $copy-color !default;
|
10
8
|
$modal-close-transform: rotate(45deg) !default;
|
@@ -19,7 +17,7 @@ $modal-close-transform: rotate(45deg) !default;
|
|
19
17
|
display: flex;
|
20
18
|
justify-content: center;
|
21
19
|
align-items: center;
|
22
|
-
z-index:
|
20
|
+
z-index: -1;
|
23
21
|
opacity: 0;
|
24
22
|
transition: 500ms all;
|
25
23
|
|
@@ -39,9 +37,7 @@ $modal-close-transform: rotate(45deg) !default;
|
|
39
37
|
background: $modal-bg-color;
|
40
38
|
border-radius: $modal-border-radius;
|
41
39
|
padding: $modal-content-padding;
|
42
|
-
border
|
43
|
-
border-style: $modal-border-style;
|
44
|
-
border-color: $modal-border-color;
|
40
|
+
border: $modal-border;
|
45
41
|
max-width: $modal-max-width;
|
46
42
|
|
47
43
|
.modal-close {
|
@@ -9,6 +9,8 @@ $heading-3-font-size: 1.17rem !default;
|
|
9
9
|
$heading-4-font-size: 1.12rem !default;
|
10
10
|
$heading-5-font-size: .83rem !default;
|
11
11
|
$heading-6-font-size: .75rem !default;
|
12
|
+
$heading-margin: 0 0 .5rem 0 !default;
|
13
|
+
$copy-margin: 0 0 .5rem 0 !default;
|
12
14
|
$btn-font: $copy-font !default;
|
13
15
|
|
14
16
|
html {
|
@@ -19,7 +21,7 @@ html {
|
|
19
21
|
.copy {
|
20
22
|
font-family: $copy-font;
|
21
23
|
color: $copy-color;
|
22
|
-
margin:
|
24
|
+
margin: $copy-margin;
|
23
25
|
font-size: $copy-font-size;
|
24
26
|
}
|
25
27
|
|
@@ -31,7 +33,7 @@ html {
|
|
31
33
|
.heading-5,
|
32
34
|
.heading-6, {
|
33
35
|
font-family: $heading-font;
|
34
|
-
margin:
|
36
|
+
margin: $heading-margin;
|
35
37
|
}
|
36
38
|
|
37
39
|
.heading-1 { font-size: $heading-1-font-size; }
|
@@ -42,6 +42,8 @@ $heading-3-font-size: 1.17rem;
|
|
42
42
|
$heading-4-font-size: 1.12rem;
|
43
43
|
$heading-5-font-size: .83rem;
|
44
44
|
$heading-6-font-size: .75rem;
|
45
|
+
$heading-margin: 0 0 .5rem 0;
|
46
|
+
$copy-margin: 0 0 .5rem 0;
|
45
47
|
|
46
48
|
// BUTTONS
|
47
49
|
$btn-min-width: 145px;
|
@@ -77,15 +79,17 @@ $label-font: $form-font;
|
|
77
79
|
$input-font-size: $copy-font-size;
|
78
80
|
$label-font-size: $copy-font-size;
|
79
81
|
$file-font-size: 14px;
|
82
|
+
$checkbox-width: 16px;
|
83
|
+
$checkbox-margin-bottom: 8px;
|
84
|
+
$radio-width: 13px;
|
85
|
+
$radio-margin-bottom: 8px;
|
80
86
|
|
81
87
|
// MODALS
|
82
88
|
$modal-bg-color: $white;
|
83
89
|
$modal-max-width: 1200px;
|
84
90
|
$modal-content-padding: 20px;
|
85
91
|
$modal-border-radius: 5px;
|
86
|
-
$modal-border
|
87
|
-
$modal-border-width: 5px;
|
88
|
-
$modal-border-style: solid;
|
92
|
+
$modal-border: 5px solid $white;
|
89
93
|
$modal-close-size: 30px;
|
90
94
|
$modal-close-color: $copy-color;
|
91
95
|
$modal-close-transform: rotate(45deg);
|
data/lib/timequake/version.rb
CHANGED
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: 1.0.
|
4
|
+
version: 1.0.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- George Morris
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jquery-rails
|