spina-template 0.2.6 → 0.2.7
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 +4 -4
- data/app/assets/stylesheets/spina/_buttons.css.sass +17 -1
- data/lib/spina/template/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7e819a3ff5fbeb2b40d02c391e884291ad1b845a
|
|
4
|
+
data.tar.gz: 06500612d1af3247a9c1d75acfdd197f1c3f1bbb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 172b2a1ca04bc409508c1b6c1632d1c4bdec106c2cef65357ba04d6a56199a7efe12fd160bcafee360d2d30f858cf61cec6894568a31e598a54c21720bf8a561
|
|
7
|
+
data.tar.gz: 96264d82e01021d873146e42e0f78d2456f9ef4a0e9977125e23f60d430a980539ee3d4a044e0c309d9ae00fc7e9544863521f75b007683aa22a4bb7b114b27f
|
|
@@ -14,7 +14,7 @@ button, input[type="submit"]
|
|
|
14
14
|
margin: 0 4px 4px 0
|
|
15
15
|
padding: 0 16px
|
|
16
16
|
text-decoration: none
|
|
17
|
-
@include transition(all .
|
|
17
|
+
@include transition(all .3s ease)
|
|
18
18
|
|
|
19
19
|
&:hover
|
|
20
20
|
background: tint(#efefef, 20%)
|
|
@@ -25,6 +25,9 @@ button, input[type="submit"]
|
|
|
25
25
|
&:active, &.button-active, &.button-shaded, &.button-shaded:active
|
|
26
26
|
background: shade(#efefef, 10%)
|
|
27
27
|
|
|
28
|
+
&:focus
|
|
29
|
+
outline: none
|
|
30
|
+
|
|
28
31
|
&.button-primary
|
|
29
32
|
background: $primary-color
|
|
30
33
|
color: #fff
|
|
@@ -111,6 +114,19 @@ button, input[type="submit"]
|
|
|
111
114
|
&.button-round
|
|
112
115
|
border-radius: 21px
|
|
113
116
|
|
|
117
|
+
&.button-saving
|
|
118
|
+
background: #999 !important
|
|
119
|
+
|
|
120
|
+
&.button-saving:before
|
|
121
|
+
display: inline-block
|
|
122
|
+
@include animation(rotate 3.0s linear infinite)
|
|
123
|
+
|
|
124
|
+
@include keyframes(rotate)
|
|
125
|
+
from
|
|
126
|
+
@include transform(rotate(0deg))
|
|
127
|
+
to
|
|
128
|
+
@include transform(rotate(360deg))
|
|
129
|
+
|
|
114
130
|
.pull-right .button
|
|
115
131
|
margin: 0 0 4px 4px
|
|
116
132
|
|