kickstart_rails 3.0.47 → 3.0.48

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
  SHA1:
3
- metadata.gz: d76d5079d0ae4e8e6ede0d07bb1707c8f26052f6
4
- data.tar.gz: f73b030403422b3de9b15bf477f52ffff91739ec
3
+ metadata.gz: 3041a3c0e7ea110983355e7a0f2afa98be8258a6
4
+ data.tar.gz: 6cc81763067fd82315479a3e5a5d0cd64f94e73e
5
5
  SHA512:
6
- metadata.gz: 4cd61a6399efeae53cb70977e26f223602883e17633d28fe2856512dfafba372884368c2603f9a7dc048fe329306ec72bc3a40912bbd3d21c77df84fd05c947f
7
- data.tar.gz: 1e6585686fc1daa7041034908bbd4209891d9aa9451f31f9588614c4de8e41cbaa5b9a4d054fbc0292ef8327d232db0e7a4535ed366f179c8c683fa453b653b3
6
+ metadata.gz: e5ca1c24e2d0a86da6f9f51080daafab7bb59ec55beae0740a48bacdac2acb776854bbf23185cac791ecb97cca7f1fd6a0f157c31644d8df81439ed64f92f4ae
7
+ data.tar.gz: 2928932f754c197fe6956eb2249fe7dd7d70a14ee01e1766522da388786eadf50ac353f26030a6fe94436e30146fa652b6b187be66395a48c5c38bb9820b259e
@@ -15,8 +15,6 @@ body
15
15
  button,
16
16
  input[type="submit"],
17
17
  input[type="button"],
18
- +button
19
-
20
18
  input[type="file"]::-webkit-file-upload-button
21
19
  +button
22
20
 
@@ -101,23 +99,25 @@ form
101
99
  .status_bar
102
100
  +status_bar
103
101
  .status_bar-status
102
+ +label
103
+
104
104
  &[data-type="status-red"]
105
- +label(map-get($colors, red))
105
+ background: map-get($colors, red)
106
106
 
107
107
  &[data-type="status-orange"]
108
- +label(map-get($colors, orange))
108
+ background: map-get($colors, orange)
109
109
 
110
110
  &[data-type="status-yellow"]
111
- +label(map-get($colors, yellow))
111
+ background: map-get($colors, yellow)
112
112
 
113
113
  &[data-type="status-green"]
114
- +label(map-get($colors, green))
114
+ background: map-get($colors, green)
115
115
 
116
116
  &[data-type="status-blue"]
117
- +label(map-get($colors, blue))
117
+ background: map-get($colors, blue)
118
118
 
119
119
  &[data-type="status-violet"]
120
- +label(map-get($colors, violet))
120
+ background: map-get($colors, violet)
121
121
 
122
122
  // Tabs
123
123
  // ----
@@ -313,25 +313,25 @@ form
313
313
  top: 8px
314
314
 
315
315
  &.tooltip-red
316
- +label(map-get($colors, red))
316
+ background-color: map-get($colors, red)
317
317
 
318
318
  &.tooltip-orange
319
- +label(map-get($colors, orange))
319
+ background-color: map-get($colors, orange)
320
320
 
321
321
  &.tooltip-yellow
322
- +label(map-get($colors, yellow))
322
+ background-color: map-get($colors, yellow)
323
323
 
324
324
  &.tooltip-green
325
- +label(map-get($colors, green))
325
+ background-color: map-get($colors, green)
326
326
 
327
327
  &.tooltip-blue
328
- +label(map-get($colors, blue))
328
+ background-color: map-get($colors, blue)
329
329
 
330
330
  &.tooltip-violet
331
- +label(map-get($colors, violet))
331
+ background-color: map-get($colors, violet)
332
332
 
333
333
  &.tooltip-primary
334
- +label(map-get($colors, primary))
334
+ background-color: $primary-color
335
335
 
336
336
  &.tooltip-secondary
337
- +label(map-get($colors, secondary))
337
+ background-color: $secondary-color
@@ -14,4 +14,4 @@
14
14
  @if $size != 1
15
15
  font-size: #{$size}rem
16
16
  line-height: $size * $default-line-height
17
- font-family: $body-font-family
17
+ font-family: $default-font-family
@@ -1,5 +1,5 @@
1
1
  =type-default
2
- font-family: $default-font
2
+ font-family: $default-font-family
3
3
  font-size: $default-font-size
4
4
  font-size: calc(#{$default-font-size - 2} + #{$scalingFactor})
5
5
  line-height: $default-line-height
@@ -9,6 +9,8 @@
9
9
  flex-shrink: 0
10
10
 
11
11
  > :not(img)
12
+ width: 100%
13
+
12
14
  + img, + figure
13
15
  margin-left: $space/2
14
16
 
@@ -18,6 +20,7 @@
18
20
  > img, > figure
19
21
  + :not(img)
20
22
  margin-left: $space/2
23
+ width: 100%
21
24
 
22
25
  @content
23
26
 
@@ -25,6 +25,29 @@
25
25
  +container(false)
26
26
  +navbar-align_menus($breakpoint)
27
27
 
28
+ =navbar-collapse($breakpoint: $tablet)
29
+ nav
30
+ &.expand
31
+ > ul > li
32
+ display: block
33
+
34
+ &.navbar-title
35
+ display: flex
36
+
37
+ > ul
38
+ > li
39
+ display: none
40
+
41
+ @media screen and (min-width: $breakpoint)
42
+ display: block
43
+
44
+ &.navbar-title
45
+ button
46
+ display: block
47
+
48
+ @media screen and (min-width: $breakpoint)
49
+ display: none
50
+
28
51
  =navbar-fixed
29
52
  position: fixed
30
53
  z-index: 100
@@ -79,16 +102,10 @@
79
102
  justify-content: space-between
80
103
  align-content: space-between
81
104
 
82
-
83
- &.expand
84
- @if $collapse == true
85
- > ul > li
86
- display: block
87
-
88
105
  h1
89
106
  +heading-xxs
90
107
  margin-bottom: 0
91
- font-size: $base-font-size
108
+ font-size: $default-font-size
92
109
  line-height: $default-line-height
93
110
 
94
111
  p
@@ -134,12 +151,6 @@
134
151
  @media screen and (min-width: $breakpoint)
135
152
  margin: 0
136
153
 
137
- @if $collapse == true
138
- display: none
139
-
140
- @media screen and (min-width: $breakpoint)
141
- display: block
142
-
143
154
  &.navbar-title
144
155
  display: flex
145
156
  justify-content: space-between
@@ -156,15 +167,13 @@
156
167
  background: transparent
157
168
  border-color: transparent
158
169
  color: inherit
159
- display: block
160
170
  margin-bottom: 0
161
171
  font-family: Kickstart, 'Kickstart'
162
172
  padding:
163
173
  left: 0
164
174
  right: 0
165
175
  opacity: 0.5
166
- @if ($collapse == false)
167
- display: none
176
+ display: none
168
177
 
169
178
  &:hover, &:active
170
179
  box-shadow: none
@@ -266,6 +275,9 @@
266
275
  @if ($fixed == true)
267
276
  +navbar-fixed
268
277
 
278
+ @if ($collapse == true)
279
+ +navbar-collapse($breakpoint)
280
+
269
281
  +navbar-color($background-color)
270
282
 
271
283
  @content
@@ -19,7 +19,7 @@ $gray: (lightest: #BBB, lighter: #AAA, light: #999, dark: #777, darker: #666, d
19
19
  $black: (lightest: #444, lighter: #333, light: #222)
20
20
 
21
21
  // Rainbow
22
- $colors: (red: #CA3518, orange: darkorange, yellow: #ffe312, green: #58AA00, blue: cornflowerblue, violet: darkmagenta)
22
+ $colors: (red: #CA3518, orange: darkorange, yellow: #ffe312, green: #58AA00, blue: #47A5DF, violet: darkmagenta)
23
23
 
24
24
  // Vendor libraries
25
25
  @import url(//fonts.googleapis.com/css?family=Lato:300,400,700,400italic)
@@ -32,9 +32,9 @@ $primary-color: map-get($colors, blue)
32
32
  $secondary-color: map-get($white, darker)
33
33
  $space: 25px
34
34
  $heading-font-family: 'museo-sans', 'Lato', helvetica neue, sans-serif
35
- $body-font-family: 'museo-sans', 'Lato', helvetica neue, sans-serif
35
+ $default-font-family: 'museo-sans', 'Lato', helvetica neue, sans-serif
36
36
  $mono-font-family: 'ubuntu-mono', monospace
37
- $base-font-size: 16px
37
+ $default-font-size: 16px
38
38
  $default-font-color: map-get($gray, darkest)
39
39
  $default-line-height: 1.4rem
40
40
 
@@ -44,9 +44,6 @@ $scalingFactor: 0.2vw
44
44
 
45
45
  $rootElement: (paddingV: 5px, paddingH: 12px, border-radius: 3px)
46
46
 
47
- $default-font: $body-font-family
48
- $default-font-size: $base-font-size
49
-
50
47
  //
51
48
  // Core styling
52
49
  // ------------
@@ -82,30 +79,39 @@ pre
82
79
 
83
80
  =hero
84
81
  +hero-default
82
+ @content
85
83
 
86
84
  =heading-xxl
87
85
  +heading-xxl-default
86
+ @content
88
87
 
89
88
  =heading-xl
90
89
  +heading-xl-default
90
+ @content
91
91
 
92
92
  =heading-lg
93
93
  +heading-lg-default
94
+ @content
94
95
 
95
96
  =heading-md
96
97
  +heading-md-default
98
+ @content
97
99
 
98
100
  =heading-rg
99
101
  +heading-rg-default
102
+ @content
100
103
 
101
104
  =heading-sm
102
105
  +heading-sm-default
106
+ @content
103
107
 
104
108
  =heading-xs
105
109
  +heading-xs-default
110
+ @content
106
111
 
107
112
  =heading-xxs
108
113
  +heading-xxs-default
114
+ @content
109
115
 
110
116
  h1, h2, h3, h4, h5, h6
111
117
  font-family: $heading-font-family
@@ -1,3 +1,3 @@
1
1
  module Kickstart_rails
2
- VERSION = "3.0.47"
2
+ VERSION = "3.0.48"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kickstart_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.47
4
+ version: 3.0.48
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Kochanowicz
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-24 00:00:00.000000000 Z
11
+ date: 2014-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -151,7 +151,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
151
151
  version: '0'
152
152
  requirements: []
153
153
  rubyforge_project:
154
- rubygems_version: 2.4.1
154
+ rubygems_version: 2.2.2
155
155
  signing_key:
156
156
  specification_version: 4
157
157
  summary: The front-end framework for clean HTML and fast websites.