kickstart_rails 0.3.411666413546 → 0.3.411737840873
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/kickstart_rails/kickstart.js +84 -48
- data/app/assets/javascripts/kickstart_rails/kickstart.min.js +1 -1
- data/app/assets/javascripts/kickstart_rails/test.js +141 -53
- data/app/assets/stylesheets/kickstart_rails/components/_buttons.sass +10 -4
- data/app/assets/stylesheets/kickstart_rails/components/_forms.sass +7 -13
- data/app/assets/stylesheets/kickstart_rails/components/_nav.sass +1 -1
- data/app/assets/stylesheets/kickstart_rails/core/_typography.sass +8 -3
- data/app/assets/stylesheets/kickstart_rails/docs.sass +5 -1
- data/app/assets/stylesheets/kickstart_rails/kickstart.sass +3 -0
- data/app/assets/stylesheets/kickstart_rails/themes/_default.sass +3 -0
- data/lib/kickstart_rails/version.rb +1 -1
- metadata +2 -2
@@ -5,6 +5,7 @@
|
|
5
5
|
color: map-get($black, light)
|
6
6
|
text-align: left
|
7
7
|
transition: box-shadow 0.15s
|
8
|
+
vertical-align: middle
|
8
9
|
|
9
10
|
&.with-submenu
|
10
11
|
position: relative
|
@@ -88,8 +89,6 @@
|
|
88
89
|
+ .button-dropdown + ul
|
89
90
|
// Button with dropdown
|
90
91
|
+button-dropdown-menu($size)
|
91
|
-
position: static
|
92
|
-
margin-top: -$space + 5px
|
93
92
|
|
94
93
|
&.open
|
95
94
|
+ .button-dropdown + ul
|
@@ -125,9 +124,15 @@
|
|
125
124
|
z-index: 10
|
126
125
|
|
127
126
|
=button-group-default($color, $size)
|
128
|
-
|
127
|
+
list-style: none
|
128
|
+
padding: 0
|
129
|
+
margin:
|
130
|
+
bottom: 0
|
131
|
+
top: 0
|
132
|
+
display: inline-block
|
133
|
+
vertical-align: middle
|
129
134
|
|
130
|
-
li
|
135
|
+
> li
|
131
136
|
color: inherit
|
132
137
|
display: inline-block
|
133
138
|
|
@@ -163,4 +168,5 @@
|
|
163
168
|
font-size: 90%
|
164
169
|
|
165
170
|
> li > ul
|
171
|
+
+button-dropdown-menu($size)
|
166
172
|
display: none
|
@@ -60,6 +60,10 @@ label, legend
|
|
60
60
|
label + &
|
61
61
|
margin-top: ($space/5)
|
62
62
|
|
63
|
+
&:focus
|
64
|
+
outline: 0px
|
65
|
+
box-shadow: 0px 0px 0px 2px $primary-color
|
66
|
+
|
63
67
|
+text-inputs
|
64
68
|
+input-styles
|
65
69
|
|
@@ -71,15 +75,9 @@ input[type="checkbox"],
|
|
71
75
|
input[type="radio"]
|
72
76
|
display: inline-block
|
73
77
|
width: 14px
|
74
|
-
margin
|
75
|
-
|
76
|
-
|
77
|
-
width: 100%
|
78
|
-
margin: 0
|
79
|
-
margin-left: -15px
|
80
|
-
margin-bottom: 3px
|
81
|
-
padding-left: 19px
|
82
|
-
font-weight: normal
|
78
|
+
margin:
|
79
|
+
left: 1px
|
80
|
+
right: 5px
|
83
81
|
|
84
82
|
select
|
85
83
|
+button
|
@@ -102,13 +100,9 @@ select
|
|
102
100
|
+ input[type="text"]
|
103
101
|
width: 50%
|
104
102
|
display: inline-block
|
105
|
-
input[type="checkbox"]
|
106
|
-
+ label
|
107
|
-
text-align: left
|
108
103
|
|
109
104
|
=form_group-default($orientation)
|
110
105
|
display: block
|
111
|
-
overflow: hidden
|
112
106
|
margin-bottom: $space
|
113
107
|
|
114
108
|
@if $orientation == 'horizontal'
|
@@ -10,7 +10,8 @@ html
|
|
10
10
|
color: map-get($black, lightest)
|
11
11
|
|
12
12
|
ul
|
13
|
-
margin
|
13
|
+
margin: 0
|
14
|
+
bottom: $space
|
14
15
|
|
15
16
|
h1, h2, h3, h4, h5, h6, p
|
16
17
|
margin: 0
|
@@ -153,12 +154,16 @@ a
|
|
153
154
|
bottom: 0.5rem
|
154
155
|
+heading-break
|
155
156
|
|
157
|
+
=list-default
|
158
|
+
margin-bottom: $space
|
159
|
+
|
156
160
|
=list-unstyled-default
|
157
161
|
padding: 0
|
158
|
-
margin: 0
|
159
|
-
bottom: $space
|
160
162
|
list-style: none
|
161
163
|
|
164
|
+
> li
|
165
|
+
margin-bottom: 0.85rem
|
166
|
+
|
162
167
|
=list-horizontal-default
|
163
168
|
> li
|
164
169
|
display: inline-block
|
@@ -78,9 +78,10 @@
|
|
78
78
|
background: map-get($white, dark)
|
79
79
|
|
80
80
|
.example
|
81
|
+
+root-element
|
81
82
|
padding: $space
|
82
83
|
margin-bottom: $space
|
83
|
-
|
84
|
+
border-color: map-get($white, darker)
|
84
85
|
|
85
86
|
> *:last-child
|
86
87
|
margin-bottom: 0
|
@@ -112,6 +113,9 @@ h1.example-
|
|
112
113
|
ul, ul li, .navbar
|
113
114
|
text-align: left
|
114
115
|
|
116
|
+
.button-group
|
117
|
+
color: $default-font-color
|
118
|
+
|
115
119
|
.logo
|
116
120
|
width: 600px
|
117
121
|
max-width: 95%
|
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: 0.3.
|
4
|
+
version: 0.3.411737840873
|
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-09-
|
11
|
+
date: 2014-09-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|