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
- Nzk0ZDZlYTc4ZTM4NDA5NWM2MTg1NzYyM2M5NGFjOTE2YTI0ODI1Zg==
4
+ NjNkNTVlNTRlYjJkY2YzMTliNjY5YmQ1YzA5ZDJkNjdiZWExN2YzOQ==
5
5
  data.tar.gz: !binary |-
6
- NTc2MzU0ZDVkYzY4MTQ5NDYzNTg5ZGVmNmQzMWRlZjYzNTM1ZWI1OQ==
6
+ YTU2YjYwNjc2YTE4ZDA3MWIxZmI4MTMzNjE3NjQ5ZTA2OTMzZWEyNg==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- NmYwNTEyYTc4ZjBmZmMwOTc1OWZiYzU2ZTUzMmQ0ODExMDdlMmVlMTdkZTgw
10
- ZDAxOGU2OTUxODA4NzI4YzgyZjYxNmVhMTk3NWI1N2NhYWJkNTYyMDAyMTVh
11
- YmJjOTA2NjY4MzUzZGNjZjkxNGY3ZjMxYTRhMjg4OTMyMmNlZDg=
9
+ Mjk3N2VkMjRmOTYyYTk3MWNjZjgyOWUwNDcyZGI5YTgyMTEwNGMwMDJlOGQ4
10
+ YzI2M2JhOTc1OGIxMmQ0NDk3OWRmNDQ2MDA0MjE1NmVmODhkYjgzYWVmMDVl
11
+ NjVmYzA5ZmE0YjFmYmE3ZDdlYjMxYzQ3NzM5YjdhNDc1MWJjMDY=
12
12
  data.tar.gz: !binary |-
13
- ZjFjZDk1YWY4OTY5OWU5ZjQ2MzdkOTU3YzhhYjU4MDllYzQ5MDU5OGY0YTQ0
14
- MTUxZDI4MmYxMTkzNGI0MGQwZWM4MTkwZmZmMjg3OTJkZDRhMmFlOGQyNTEx
15
- MGI5ZThmMDU1OTE5NzNkZDg4N2VkNTliMjU5NGRkNTNmYjNjNDk=
13
+ MzUwNjIyZWEwYjk5M2M0MWE4MmQzMTA3NmQ4YzQzMWU3NjU1ZjViYzQ5Y2Q0
14
+ YzlhMWVlZmEwOWM3ZmRhMTkwZjlmNjA4ZTNiZDE4NDQyMmM0MThmODc1YWQ2
15
+ YTQxZWE5ZTY3MDIyODliNjcyNTI2MGI5OTUxODBjNTBmOTZjNjI=
@@ -315,14 +315,14 @@ Styleguide 30.8
315
315
 
316
316
  Breadcrumbs
317
317
 
318
- %breadcrumb # Base style of breadcrumbs
319
- %breadcrumb__current # For the current selected link
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
- %breadcrumb {
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
- %breadcrumb__current { color: $grayLight; }
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="breadcrumb">
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
- .breadcrumb {
22
+ .breadcrumbs {
23
23
  margin: 0 0 rhythm();
24
24
  list-style: none;
25
- @extend %breadcrumb !optional;
25
+ @extend %breadcrumbs !optional;
26
26
 
27
27
  > li { @include inline-block(); }
28
28
 
29
- .current {@extend %breadcrumb__current;}
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
 
@@ -89,7 +89,7 @@ Styleguide 16.
89
89
  .bx-loading {
90
90
  @include square(100%);
91
91
  @include position(absolute, 0px 0 0 0px);
92
- @extend %slider__loading-style;
92
+ @extend %slider__loading-style !optional;
93
93
  z-index: 2000;
94
94
  }
95
95
 
@@ -195,8 +195,6 @@ ol.inline {
195
195
  list-style: none;
196
196
  > li {
197
197
  @include inline-block();
198
- padding-left: 5px;
199
- padding-right: 5px;
200
198
  }
201
199
  }
202
200
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rapido-css
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Raffaele Rasini