rapido-css 0.1.1 → 0.1.2
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.
- data/stylesheets/_default-styles.scss +352 -352
- data/stylesheets/_functions.scss +77 -50
- data/stylesheets/_susy.scss +15 -12
- data/stylesheets/components/_alerts.scss +21 -21
- data/stylesheets/components/_breadcrumbs.scss +15 -15
- data/stylesheets/components/_button-groups.scss +51 -53
- data/stylesheets/components/_buttons.scss +94 -97
- data/stylesheets/components/_captions.scss +45 -45
- data/stylesheets/components/_close.scss +27 -27
- data/stylesheets/components/_dropdowns.scss +121 -121
- data/stylesheets/components/_forms.scss +246 -248
- data/stylesheets/components/_grids.scss +35 -35
- data/stylesheets/components/_labels.scss +38 -38
- data/stylesheets/components/_modals.scss +242 -248
- data/stylesheets/components/_navs.scss +86 -91
- data/stylesheets/components/_pager.scss +53 -53
- data/stylesheets/components/_pagination.scss +83 -85
- data/stylesheets/components/_responsive-navs.scss +84 -84
- data/stylesheets/components/_sliders.scss +54 -58
- data/stylesheets/components/_tables.scss +69 -74
- data/stylesheets/components/_tabs.scss +54 -54
- data/stylesheets/components/_type.scss +134 -140
- data/stylesheets/{_rapido.scss → rapido.scss} +0 -8
- data/stylesheets/settings/_base.scss +23 -23
- data/stylesheets/settings/_colors.scss +13 -13
- data/stylesheets/settings/_components.scss +43 -42
- data/stylesheets/settings/_dimensions.scss +91 -91
- data/stylesheets/settings/_effects.scss +28 -14
- data/stylesheets/susy/{_susy_background.scss → _background.scss} +0 -0
- data/stylesheets/susy/{_susy_functions.scss → _functions.scss} +0 -0
- data/stylesheets/susy/{_susy_grid.scss → _grid.scss} +0 -0
- data/stylesheets/susy/{_susy_isolation.scss → _isolation.scss} +1 -0
- data/stylesheets/susy/{_susy_margin.scss → _margin.scss} +0 -0
- data/stylesheets/susy/{_susy_media.scss → _media.scss} +0 -0
- data/stylesheets/susy/{_susy_padding.scss → _padding.scss} +0 -0
- data/stylesheets/susy/{_susy_settings.scss → _settings.scss} +0 -0
- data/stylesheets/susy/{_susy_support.scss → _support.scss} +0 -0
- data/stylesheets/susy/{_susy_units.scss → _units.scss} +0 -0
- data/stylesheets/utilities/_animations.scss +638 -597
- data/stylesheets/utilities/_debug.scss +43 -43
- data/stylesheets/utilities/_helper-classes.scss +70 -54
- data/stylesheets/utilities/_icon-fonts.scss +90 -90
- data/stylesheets/utilities/_mixins.scss +390 -357
- metadata +20 -17
- checksums.yaml +0 -15
- data/stylesheets/config.rb +0 -8
@@ -1,4 +1,4 @@
|
|
1
|
-
/*
|
1
|
+
/*
|
2
2
|
|
3
3
|
Grids
|
4
4
|
|
@@ -23,64 +23,64 @@ Markup:
|
|
23
23
|
|
24
24
|
Styleguide 9
|
25
25
|
|
26
|
-
|
26
|
+
*/
|
27
27
|
|
28
28
|
$media-queries: palm, lap, portable, lap-and-up, desk;
|
29
29
|
|
30
30
|
@if $grids {
|
31
|
-
|
31
|
+
@each $device in $media-queries {
|
32
32
|
|
33
|
-
|
33
|
+
$i: $total-columns + 1;
|
34
34
|
|
35
|
-
|
35
|
+
@include media($device) {
|
36
36
|
|
37
|
-
|
37
|
+
@while $i > 0 {
|
38
38
|
|
39
|
-
|
39
|
+
$nth: $total-columns / $i;
|
40
40
|
|
41
|
-
|
42
|
-
|
43
|
-
|
41
|
+
.#{$device}-#{$i} {
|
42
|
+
@include span-columns($i);
|
43
|
+
}
|
44
44
|
|
45
|
-
|
46
|
-
|
47
|
-
|
45
|
+
[class*="#{$device}-#{$i}"]:nth-child(#{$nth}n) {
|
46
|
+
@include omega()
|
47
|
+
}
|
48
48
|
|
49
|
-
|
49
|
+
$i: $i - 1;
|
50
50
|
|
51
|
-
|
52
|
-
|
53
|
-
|
51
|
+
}
|
52
|
+
}
|
53
|
+
}
|
54
54
|
}
|
55
55
|
|
56
|
-
/*
|
56
|
+
/*
|
57
57
|
|
58
58
|
Show and Hide
|
59
59
|
|
60
60
|
There're also available some helper classes:
|
61
61
|
|
62
62
|
* **Hide element**: Used to hide an element at a breackpoint
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
63
|
+
* `.palm-hide`
|
64
|
+
* `.lap-hide`
|
65
|
+
* `.portable-hide`
|
66
|
+
* `.lap-and-up-hide`
|
67
|
+
* `.desk-hide`
|
68
68
|
* **Show element**: Used to show an element at a breackpoint
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
69
|
+
* `.palm-show`
|
70
|
+
* `.lap-show`
|
71
|
+
* `.portable-show`
|
72
|
+
* `.lap-and-up-show`
|
73
|
+
* `.desk-show`
|
74
74
|
|
75
75
|
Styleguide 9.1
|
76
76
|
|
77
|
-
|
77
|
+
*/
|
78
78
|
|
79
79
|
@if $grids-helpers {
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
80
|
+
@each $device in $media-queries {
|
81
|
+
@include media($device) {
|
82
|
+
.#{$device}-hide { display: none !important; }
|
83
|
+
.#{$device}-show { display: block !important; }
|
84
|
+
}
|
85
|
+
}
|
86
86
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
/*
|
1
|
+
/*
|
2
2
|
|
3
3
|
Badge & Pills
|
4
4
|
|
@@ -8,40 +8,40 @@ Markup:
|
|
8
8
|
<span class="badge">Badge Label</span>
|
9
9
|
<span class="pill">Pill label</span>
|
10
10
|
|
11
|
-
Styleguide 10
|
11
|
+
Styleguide 10
|
12
12
|
|
13
|
-
|
13
|
+
*/
|
14
14
|
|
15
15
|
@if $labels {
|
16
16
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
/*
|
17
|
+
.badge,
|
18
|
+
.pill {
|
19
|
+
@extend %pill !optional;
|
20
|
+
display: inline-block;
|
21
|
+
padding: $pills-padding;
|
22
|
+
vertical-align: baseline;
|
23
|
+
white-space: nowrap;
|
24
|
+
}
|
25
|
+
|
26
|
+
.badge { @include border-radius($base-border-radius); }
|
27
|
+
.pill { @include border-radius(500em); }
|
28
|
+
|
29
|
+
.badge, .pill {
|
30
|
+
&:empty { display: none; }
|
31
|
+
}
|
32
|
+
|
33
|
+
a {
|
34
|
+
&.label:hover,
|
35
|
+
&.label:focus,
|
36
|
+
&.badge:hover,
|
37
|
+
&.badge:focus {
|
38
|
+
color: $white;
|
39
|
+
text-decoration: none;
|
40
|
+
cursor: pointer;
|
41
|
+
}
|
42
|
+
}
|
43
|
+
|
44
|
+
/*
|
45
45
|
|
46
46
|
Labels used in buttons.
|
47
47
|
|
@@ -51,13 +51,13 @@ Markup:
|
|
51
51
|
|
52
52
|
Styleguide 10.1
|
53
53
|
|
54
|
-
|
54
|
+
*/
|
55
55
|
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
56
|
+
.btn {
|
57
|
+
.badge,
|
58
|
+
.pill {
|
59
|
+
margin: -(nth($pills-padding, 1)) -(nth($pills-padding, 2)) 0 0 ;
|
60
|
+
}
|
61
|
+
}
|
62
62
|
|
63
63
|
}
|