kickstart_rails 3.0.58 → 3.0.59

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dc7415d7d043931debf3a9201fc419862bc43645
4
- data.tar.gz: 81896a5e60b3b3bbcbaad7f1ec51412f02d8a09a
3
+ metadata.gz: e91ff7bc290b802f9dcbc7b5fd9f1929fdd36899
4
+ data.tar.gz: 3fc8740b1b68919b669fa7b663fcb6dcbf3cc0b9
5
5
  SHA512:
6
- metadata.gz: 04e1fa12b6836e888b381749d8dd6ec4641e9c383320a24cd0afa949a042e52207e7df2adcd8739cdb1d8c1cda6a6b2f76e2e26be45fc0e721afbbc523d71dda
7
- data.tar.gz: 1155162197ff804d48669c59ecf833ba96b88ad9b99e5be5fe5cbe73205585253b9a08b19e01c3e730e6e4fc013be0c4335f53e14f5ef9f8f122bc3db3527435
6
+ metadata.gz: 23c173e644702a7cb821480eb411b46c621580b200e2c45f7d7d0706d0d8e3ed18015cc81833fede832c721ca775769535682dc363e04138cc9fda97d8eb6ecb
7
+ data.tar.gz: b5bb06f728063cb676b739667f8775022938f58984bb3504a0dce4340dd7626b3b97644fff371134c190318344ae68829e02dcf49d3ec4fe300b848bcfffe350
@@ -109,6 +109,7 @@ form
109
109
 
110
110
  &[data-type="status-yellow"]
111
111
  background: map-get($colors, yellow)
112
+ color: map-get($black, lighter)
112
113
 
113
114
  &[data-type="status-green"]
114
115
  background: map-get($colors, green)
@@ -34,7 +34,9 @@ a
34
34
  border-radius: $space/5
35
35
  padding: ($space/5)
36
36
  font-family: $mono-font-family
37
- word-break: break-all
37
+ word-break: normal
38
+ hyphens: none
39
+ tab-size: 2
38
40
  word-wrap: break-word
39
41
  border: 0px !important
40
42
  margin: 0
@@ -16,7 +16,7 @@
16
16
  right: 1px solid map-get($white, darker)
17
17
  bottom: 1px solid map-get($white, darker)
18
18
  border-radius: map-get($rootElement, border-radius)
19
- box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25)
19
+ box-shadow: 2px 2px 0px 2px rgba(0, 0, 0, 0.1)
20
20
  background: white
21
21
 
22
22
  &:before
@@ -1,27 +1,33 @@
1
1
  =thumbnail-content-default
2
- display: flex
2
+ display: block
3
3
  overflow: hidden
4
4
  margin-bottom: $space
5
5
  align-items: flex-start
6
6
 
7
7
  img, figure
8
- flex-grow: 0
9
- flex-shrink: 0
10
-
11
- > :not(img)
12
- width: 100%
13
-
14
- + img, + figure
15
- margin-left: $space/2
8
+ margin-bottom: $space
16
9
 
17
10
  h1
18
11
  +heading-xs
19
12
 
20
- > img, > figure
21
- + :not(img)
22
- margin-left: $space/2
13
+ @media screen and (min-width: $desktop)
14
+ display: flex
15
+
16
+ img, figure
17
+ flex-grow: 0
18
+ flex-shrink: 0
19
+
20
+ > :not(img):not(figure)
23
21
  width: 100%
24
22
 
23
+ + img, + figure
24
+ margin-left: $space/2
25
+
26
+ > img, > figure
27
+ + :not(img):not(figure)
28
+ margin-left: $space/2
29
+ width: 100%
30
+
25
31
  @content
26
32
 
27
33
  =thumbnail-default
@@ -5,6 +5,9 @@
5
5
  color: white
6
6
  line-height: normal
7
7
  font-weight: bold
8
+ padding:
9
+ top: 3px
10
+ bottom: 3px
8
11
 
9
12
  @if $background-color == map-get($colors, yellow)
10
13
  color: $default-font-color
@@ -128,6 +128,7 @@
128
128
  ul
129
129
  left: auto
130
130
  right: -1px
131
+ box-shadow: -2px 2px 0px 2px rgba(0, 0, 0, 0.1)
131
132
 
132
133
  &:only-child
133
134
  @media screen and (min-width: $breakpoint)
@@ -246,7 +247,7 @@
246
247
  ul
247
248
  border-top-left-radius: 0
248
249
  border-top-right-radius: 0
249
- box-shadow: 3px 3px 3px -3px rgba(0, 0, 0, 0.25)
250
+ box-shadow: 2px 2px 0px 2px rgba(0, 0, 0, 0.1)
250
251
  display: none
251
252
 
252
253
  ul[role=button]
@@ -20,6 +20,8 @@
20
20
  th
21
21
  font-weight: bold
22
22
  text-align: left
23
+ border-color: $border-color
24
+ border-bottom-width: 0px
23
25
 
24
26
  th, td
25
27
  background-color: transparent
@@ -49,11 +51,17 @@
49
51
  @content
50
52
 
51
53
  =table-bordered
52
- th, td
53
- border-bottom: 1px solid $border-color
54
+ td
55
+ border-bottom-color: inherit
56
+ border-bottom-width: 1px
57
+ border-bottom-style: solid
58
+
59
+ thead
60
+ border-bottom-color: inherit
54
61
 
55
62
  =table-blank
56
63
  border-color: transparent
64
+ background: transparent
57
65
  table, tr, td, tbody, thead, th, tfoot
58
66
  border-color: transparent
59
67
  background: transparent
@@ -1,3 +1,3 @@
1
1
  module Kickstart_rails
2
- VERSION = "3.0.58"
2
+ VERSION = "3.0.59"
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.58
4
+ version: 3.0.59
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-29 00:00:00.000000000 Z
11
+ date: 2014-10-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -121,7 +121,7 @@ files:
121
121
  - app/assets/stylesheets/core/components/_tooltips.sass
122
122
  - app/assets/stylesheets/index.scss
123
123
  - app/assets/stylesheets/kickstart_rails.scss
124
- - app/assets/stylesheets/themes/default/theme.sass
124
+ - app/assets/stylesheets/themes/default/_theme.sass
125
125
  - app/assets/stylesheets/vendor/_index.sass
126
126
  - lib/kickstart_rails.rb
127
127
  - lib/kickstart_rails/version.rb