kickstart_rails 3.0.67 → 3.0.68
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b94d4ecba2514e006e2ab1efeb6d7b8096ec091c
|
|
4
|
+
data.tar.gz: fbdcc8d92ee78f811a54e5c67d617562b6d158cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 04469755f276d6387b08a3d4b5461816f642d7f9a3c0de9cf0692072c04255cfd3009582b1baf3f984211cbdc4332905180df4e12396bbdd7a9480e1949ac9b5
|
|
7
|
+
data.tar.gz: a2244a03c6e53aee0ccbad50d9e89b0fd66e96c6206777a9a52b19e93c81524980ec3616c4f4a6d42629215cf31088b75b20b9fd1000e6b96e1645a2a8c2b9d1
|
|
@@ -34,18 +34,15 @@
|
|
|
34
34
|
box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.1) inset, 0px -2px 0px 0px rgba(255, 255, 255, 0.1) inset
|
|
35
35
|
text-decoration: none
|
|
36
36
|
|
|
37
|
-
// TODO: Done this way, these properties are not mutex
|
|
38
|
-
// in the case of missing params.
|
|
39
|
-
|
|
40
37
|
+root-element($size: $size)
|
|
41
|
-
+button-size($size)
|
|
42
|
-
+button-color($background-color)
|
|
38
|
+
+button-size-default($size)
|
|
39
|
+
+button-color-default($background-color)
|
|
43
40
|
|
|
44
41
|
@content
|
|
45
42
|
|
|
46
43
|
// Separated from main mixin for access by non-semantic library.
|
|
47
44
|
|
|
48
|
-
=button-color($background-color)
|
|
45
|
+
=button-color-default($background-color)
|
|
49
46
|
background-color: $background-color
|
|
50
47
|
border-color: $background-color
|
|
51
48
|
|
|
@@ -63,7 +60,7 @@
|
|
|
63
60
|
@if $background-color == transparent
|
|
64
61
|
color: map-get($black, lighter)
|
|
65
62
|
|
|
66
|
-
=button-size($size)
|
|
63
|
+
=button-size-default($size)
|
|
67
64
|
padding: ($size * $size * map-get($rootElement, paddingV)) ($size * $size * map-get($rootElement, paddingH))
|
|
68
65
|
line-height: $size * $default-line-height
|
|
69
66
|
margin-bottom: 0
|
|
@@ -107,6 +104,7 @@
|
|
|
107
104
|
margin-top: 5px
|
|
108
105
|
right: -$space
|
|
109
106
|
border: 1px solid map-get($white, darker)
|
|
107
|
+
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2)
|
|
110
108
|
|
|
111
109
|
=button-group-default($background-color: map-get($white, darker), $size: 1)
|
|
112
110
|
list-style: none
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
|
|
51
51
|
@content
|
|
52
52
|
|
|
53
|
-
=table-bordered
|
|
53
|
+
=table-bordered-default
|
|
54
54
|
td
|
|
55
55
|
border-bottom-color: inherit
|
|
56
56
|
border-bottom-width: 1px
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
thead
|
|
60
60
|
border-bottom-color: inherit
|
|
61
61
|
|
|
62
|
-
=table-blank
|
|
62
|
+
=table-blank-default
|
|
63
63
|
border-color: transparent
|
|
64
64
|
background: transparent
|
|
65
65
|
table, tr, td, tbody, thead, th, tfoot
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
left: 0px
|
|
71
71
|
right: 0px
|
|
72
72
|
|
|
73
|
-
=table-hover
|
|
73
|
+
=table-hover-default
|
|
74
74
|
tbody, thead
|
|
75
75
|
tr:hover
|
|
76
76
|
background-color: $primary-color
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
td, th
|
|
79
79
|
color: white
|
|
80
80
|
|
|
81
|
-
=table-zebra
|
|
81
|
+
=table-zebra-default
|
|
82
82
|
tbody, thead
|
|
83
83
|
tr:nth-child(even)
|
|
84
84
|
background-color: map-get($white, dark)
|