kickstart_rails 3.0.68 → 3.0.69

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: b94d4ecba2514e006e2ab1efeb6d7b8096ec091c
4
- data.tar.gz: fbdcc8d92ee78f811a54e5c67d617562b6d158cb
3
+ metadata.gz: f1a46dcf6104d4fcf2ad0a847e3af56ff9f02cfa
4
+ data.tar.gz: b00c442f693cddf17a690a568a25e903b072f535
5
5
  SHA512:
6
- metadata.gz: 04469755f276d6387b08a3d4b5461816f642d7f9a3c0de9cf0692072c04255cfd3009582b1baf3f984211cbdc4332905180df4e12396bbdd7a9480e1949ac9b5
7
- data.tar.gz: a2244a03c6e53aee0ccbad50d9e89b0fd66e96c6206777a9a52b19e93c81524980ec3616c4f4a6d42629215cf31088b75b20b9fd1000e6b96e1645a2a8c2b9d1
6
+ metadata.gz: b8778af3108c6834c5e8166deadcad880f7d93c4078f941903877db88b4c099768a7b294bf58842da4514e301e7740a74cca033928bcde0fd78e8b711386ec1c
7
+ data.tar.gz: b8b3b8f96338ecacb9c60e8c6adff0f4b81170ba967ee47c74a88651322f69f98d26c6d33358859a8e3953c69e62b9aa6a9f13aa4714ba0d02377a38e26f79af
@@ -6,7 +6,7 @@
6
6
  @import components/_alerts
7
7
  @import components/_buttons
8
8
  @import components/_hr
9
- @import components/_images
9
+ @import components/_containers
10
10
  @import components/_labels
11
11
  @import components/_modals
12
12
  @import components/_progress
@@ -99,17 +99,17 @@ form
99
99
  overflow: auto
100
100
  max-height: 100vh
101
101
 
102
- .growl
103
- box-shadow: 0px 0px $space/2 rgba(0, 0, 0, 0.5)
104
- transition: all 0.5s
102
+ .growl
103
+ box-shadow: 0px 0px $space/2 rgba(0, 0, 0, 0.5)
104
+ transition: all 0.5s
105
105
 
106
- &.show, &.hide
107
- +fadeInDown
106
+ &.show, &.hide
107
+ +fadeInDown
108
108
 
109
- &.hide
110
- animation-direction: reverse
109
+ &.hide
110
+ animation-direction: reverse
111
111
 
112
- +growl
112
+ +growl
113
113
 
114
114
  // Status
115
115
  // ------
@@ -156,12 +156,14 @@ form
156
156
  display: block
157
157
  opacity: 0
158
158
  bottom: 100%
159
+ left: 50%
160
+ margin-left: -20px
159
161
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.25)
160
162
  pointer-events: none
161
- max-width: 350px
162
163
  min-width: 100px
163
164
  text-align: center
164
- transition: all 0.25s
165
+ pointer-events: none
166
+ transition: transform 0.25s
165
167
 
166
168
  =tooltip_arrow
167
169
  border-top-style: solid
@@ -176,6 +178,7 @@ form
176
178
  position: absolute
177
179
  left: 50%
178
180
  margin-left: -8px
181
+ pointer-events: none
179
182
  opacity: 0
180
183
 
181
184
  =pseudo-tooltip-color($color: $primary-color)
@@ -238,7 +241,7 @@ form
238
241
  &:before
239
242
  transform: rotate(-90deg)
240
243
  top: 50%
241
- margin-top: -4px
244
+ margin-top: -6px
242
245
  bottom: auto
243
246
  left: auto
244
247
  right: 100%
@@ -257,7 +260,7 @@ form
257
260
  &:before
258
261
  transform: rotate(90deg)
259
262
  top: 50%
260
- margin-top: -4px
263
+ margin-top: -6px
261
264
  margin-left: 4px
262
265
  bottom: auto
263
266
  left: 100%
@@ -283,16 +286,19 @@ form
283
286
 
284
287
  .tooltip
285
288
  +tooltip_base
286
- left: -30px
287
- right: -30px
288
289
  transform: translateY(8px)
289
290
  z-index: 10
290
291
  +label(map-get($colors, blue))
291
292
  margin: 10px auto
293
+ left: 25%
294
+ border-top-color: map-get($colors, blue)
292
295
 
293
296
  &:after
294
297
  +tooltip_arrow
295
298
  top: 100%
299
+ left: 0
300
+ margin-left: 8px
301
+ border-top-color: inherit
296
302
 
297
303
  &.tooltip-bottom
298
304
  top: 100%
@@ -303,13 +309,24 @@ form
303
309
  top: auto
304
310
  transform: rotate(180deg)
305
311
 
312
+ &.tooltip-left,
313
+ &.tooltip-right
314
+ top: 50%
315
+ margin: 0
316
+ top: -18px
317
+ bottom: auto
318
+
306
319
  &.tooltip-left
307
320
  right: 100%
308
321
  left: auto
322
+ margin:
323
+ left: -8px
309
324
 
310
325
  &:after
311
326
  transform: rotate(-90deg)
312
327
  left: 100%
328
+ margin-left: -8px
329
+ top: 5px
313
330
 
314
331
  &.tooltip-right
315
332
  left: 100%
@@ -322,35 +339,37 @@ form
322
339
  margin:
323
340
  left: 0
324
341
  right: -8px
325
-
326
- &.tooltip-right, &.tooltip-left
327
- top: 0
328
- bottom: auto
329
- margin: 0
330
-
331
- &:after
332
- top: 8px
342
+ top: 5px
333
343
 
334
344
  &.tooltip-red
335
345
  background-color: map-get($colors, red)
346
+ border-top-color: map-get($colors, red)
336
347
 
337
348
  &.tooltip-orange
338
349
  background-color: map-get($colors, orange)
350
+ border-top-color: map-get($colors, orange)
339
351
 
340
352
  &.tooltip-yellow
341
353
  background-color: map-get($colors, yellow)
354
+ border-top-color: map-get($colors, yellow)
355
+ color: $default-font-color
342
356
 
343
357
  &.tooltip-green
344
358
  background-color: map-get($colors, green)
359
+ border-top-color: map-get($colors, green)
345
360
 
346
361
  &.tooltip-blue
347
362
  background-color: map-get($colors, blue)
363
+ border-top-color: map-get($colors, blue)
348
364
 
349
365
  &.tooltip-violet
350
366
  background-color: map-get($colors, violet)
367
+ border-top-color: map-get($colors, violet)
351
368
 
352
369
  &.tooltip-primary
353
370
  background-color: $primary-color
371
+ border-top-color: $primary-color
354
372
 
355
373
  &.tooltip-secondary
356
374
  background-color: $secondary-color
375
+ border-top-color: $secondary-color
@@ -1,3 +1,6 @@
1
+ =container-default
2
+ +root-element
3
+
1
4
  =thumbnail-content-default($breakpoint: $desktop)
2
5
  display: block
3
6
  overflow: hidden
@@ -1,2 +1,3 @@
1
1
  =growl-default
2
+ +alert
2
3
  @content
@@ -161,7 +161,7 @@
161
161
  align-items: center
162
162
 
163
163
  @media screen and (min-width: $breakpoint)
164
- padding: 0
164
+ padding: 0 (map-get($rootElement, paddingH))
165
165
 
166
166
  > h1, > h2, > h3, > h4, > h5, > h6
167
167
  padding: (map-get($rootElement, paddingV) - 1) (map-get($rootElement, paddingH))
@@ -197,13 +197,6 @@
197
197
 
198
198
  ul
199
199
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1)
200
- //
201
- // li
202
- // border-color: white
203
- //
204
- // a:not([role=button])
205
- // background: inherit
206
- // border-color: inherit
207
200
 
208
201
  &:before
209
202
  content: '='
@@ -291,7 +284,7 @@
291
284
  bottom: (-2 * map-get($rootElement, paddingV)) + 2 // Repeated to override navbar-title
292
285
  vertical-align: text-bottom
293
286
 
294
- > a:not([role=button])
287
+ > a:not([role=button]), &.navbar-title > h1
295
288
  text-decoration: none
296
289
  cursor: pointer
297
290
  display: block
@@ -6,6 +6,11 @@
6
6
  z-index: 2000 // Above modal
7
7
  display: flex
8
8
  pointer-events: none
9
+ transition: transform 0.25s
10
+ transform: translateY(0px)
11
+
12
+ &.hide
13
+ transform: translateY(-40px)
9
14
 
10
15
  .status_bar-status
11
16
  +label(map-get($colors, yellow))
@@ -1,3 +1,7 @@
1
+ =force-gone
2
+ top: -9999px
3
+ bottom: auto
4
+
1
5
  =tooltip_trigger-default($background-color: false)
2
6
  position: relative
3
7
  display: inline-block
@@ -7,7 +11,26 @@
7
11
  .tooltip
8
12
  +label($background-color)
9
13
 
10
- &:hover
14
+ &:not(:hover)
15
+ [data-ks-tooltip]
16
+ &:not(:hover)
17
+ &:after, &:before
18
+ +force-gone
19
+
20
+ [data-ks-tooltip]
21
+ &:hover
22
+ &:after, &:before
23
+ opacity: 1
24
+
25
+ &:after
26
+ transform: translateY(-8px)
27
+ transition: transform 0.25s
28
+
29
+ &:not(:hover)
30
+ .tooltip
31
+ +force-gone
32
+
33
+ &:hover
11
34
  [data-ks-tooltip]
12
35
  &:after, &:before
13
36
  opacity: 1
@@ -1,3 +1,3 @@
1
1
  module Kickstart_rails
2
- VERSION = "3.0.68"
2
+ VERSION = "3.0.69"
3
3
  end
metadata CHANGED
@@ -1,83 +1,83 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kickstart_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.68
4
+ version: 3.0.69
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-11-04 00:00:00.000000000 Z
11
+ date: 2014-11-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.6'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.6'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '10.0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '10.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: sass
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ~>
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: '3.3'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ~>
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '3.3'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: normalize-rails
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ~>
59
+ - - "~>"
60
60
  - !ruby/object:Gem::Version
61
61
  version: '3.0'
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ~>
66
+ - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '3.0'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: autoprefixer-rails
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ~>
73
+ - - "~>"
74
74
  - !ruby/object:Gem::Version
75
75
  version: '3.0'
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ~>
80
+ - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '3.0'
83
83
  description: The front-end framework for clean HTML and fast websites.
@@ -105,11 +105,11 @@ files:
105
105
  - app/assets/stylesheets/core/_typography.sass
106
106
  - app/assets/stylesheets/core/components/_alerts.sass
107
107
  - app/assets/stylesheets/core/components/_buttons.sass
108
+ - app/assets/stylesheets/core/components/_containers.sass
108
109
  - app/assets/stylesheets/core/components/_dropdown_menu.sass
109
110
  - app/assets/stylesheets/core/components/_forms.sass
110
111
  - app/assets/stylesheets/core/components/_growls.sass
111
112
  - app/assets/stylesheets/core/components/_hr.sass
112
- - app/assets/stylesheets/core/components/_images.sass
113
113
  - app/assets/stylesheets/core/components/_labels.sass
114
114
  - app/assets/stylesheets/core/components/_modals.sass
115
115
  - app/assets/stylesheets/core/components/_navbar.sass
@@ -135,12 +135,12 @@ require_paths:
135
135
  - lib
136
136
  required_ruby_version: !ruby/object:Gem::Requirement
137
137
  requirements:
138
- - - '>='
138
+ - - ">="
139
139
  - !ruby/object:Gem::Version
140
140
  version: '0'
141
141
  required_rubygems_version: !ruby/object:Gem::Requirement
142
142
  requirements:
143
- - - '>='
143
+ - - ">="
144
144
  - !ruby/object:Gem::Version
145
145
  version: '0'
146
146
  requirements: []