rapido-css 0.0.4 → 0.0.5
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,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NjNkNTVlNTRlYjJkY2YzMTliNjY5YmQ1YzA5ZDJkNjdiZWExN2YzOQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YTU2YjYwNjc2YTE4ZDA3MWIxZmI4MTMzNjE3NjQ5ZTA2OTMzZWEyNg==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
Mjk3N2VkMjRmOTYyYTk3MWNjZjgyOWUwNDcyZGI5YTgyMTEwNGMwMDJlOGQ4
|
10
|
+
YzI2M2JhOTc1OGIxMmQ0NDk3OWRmNDQ2MDA0MjE1NmVmODhkYjgzYWVmMDVl
|
11
|
+
NjVmYzA5ZmE0YjFmYmE3ZDdlYjMxYzQ3NzM5YjdhNDc1MWJjMDY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MzUwNjIyZWEwYjk5M2M0MWE4MmQzMTA3NmQ4YzQzMWU3NjU1ZjViYzQ5Y2Q0
|
14
|
+
YzlhMWVlZmEwOWM3ZmRhMTkwZjlmNjA4ZTNiZDE4NDQyMmM0MThmODc1YWQ2
|
15
|
+
YTQxZWE5ZTY3MDIyODliNjcyNTI2MGI5OTUxODBjNTBmOTZjNjI=
|
@@ -315,14 +315,14 @@ Styleguide 30.8
|
|
315
315
|
|
316
316
|
Breadcrumbs
|
317
317
|
|
318
|
-
%
|
319
|
-
%
|
318
|
+
%breadcrumbs # Base style of breadcrumbs
|
319
|
+
%breadcrumbs__current # For the current selected link
|
320
320
|
|
321
321
|
Styleguide 30.9
|
322
322
|
|
323
323
|
-------------------------------------------------------------------------------------------------------------------- */
|
324
324
|
|
325
|
-
%
|
325
|
+
%breadcrumbs {
|
326
326
|
> li {
|
327
327
|
&:after {
|
328
328
|
color: #ccc;
|
@@ -338,7 +338,7 @@ Styleguide 30.9
|
|
338
338
|
}
|
339
339
|
}
|
340
340
|
|
341
|
-
%
|
341
|
+
%breadcrumbs__current { color: $grayLight; }
|
342
342
|
|
343
343
|
/* --------------------------------------------------------------------------------------------------------------------
|
344
344
|
|
@@ -4,7 +4,7 @@ Breadcrumbs
|
|
4
4
|
|
5
5
|
Add a breadcrumb with a list with class `.breadcrumb`.
|
6
6
|
|
7
|
-
<ul class="
|
7
|
+
<ul class="breadcrumbs">
|
8
8
|
<li><a href="#">Home</a></li>
|
9
9
|
<li><a href="#">Library</a></li>
|
10
10
|
<li class="current">Data</li>
|
@@ -19,14 +19,14 @@ Styleguide 2.1
|
|
19
19
|
|
20
20
|
@if $breadcrumbs {
|
21
21
|
|
22
|
-
.
|
22
|
+
.breadcrumbs {
|
23
23
|
margin: 0 0 rhythm();
|
24
24
|
list-style: none;
|
25
|
-
@extend %
|
25
|
+
@extend %breadcrumbs !optional;
|
26
26
|
|
27
27
|
> li { @include inline-block(); }
|
28
28
|
|
29
|
-
.current {@extend %
|
29
|
+
.current {@extend %breadcrumbs__current !optional;}
|
30
30
|
}
|
31
31
|
|
32
32
|
}
|
@@ -103,21 +103,21 @@ Styleguide 12
|
|
103
103
|
li {
|
104
104
|
> a {
|
105
105
|
padding: $navs-padding;
|
106
|
-
@extend %nav--btn;
|
106
|
+
@extend %nav--btn !optional;
|
107
107
|
|
108
108
|
&:hover, &:focus {
|
109
|
-
@extend %nav--btn__hover;
|
109
|
+
@extend %nav--btn__hover !optional;
|
110
110
|
}
|
111
111
|
}
|
112
112
|
|
113
113
|
&.current > a,
|
114
114
|
&.current > a:hover,
|
115
115
|
&.current > a:focus {
|
116
|
-
@extend %nav--btn__current;
|
116
|
+
@extend %nav--btn__current !optional;
|
117
117
|
}
|
118
118
|
|
119
119
|
// Disabled
|
120
|
-
&.disabled > a { @extend %nav--btn__disabled; }
|
120
|
+
&.disabled > a { @extend %nav--btn__disabled !optional; }
|
121
121
|
}
|
122
122
|
}
|
123
123
|
|