rapido-css 0.0.7 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NGY5ZmM4NDRjNzEzNmUzYWY5ZDEwYTMxNDZkMmZkODQzMThkMTM3Mw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MGQ2M2U1ZmFmYTZlMjA0OTBiNTA4ODIyMjExODcyMmZkYjA2YjUzMQ==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZGM0NGQ1MThlODJmOTVkOTliNzRmOTFiZjU1NzZlZWNjYTU4NmQ0NzY0Yjhj
|
10
|
+
MmFkNzk0YTNjZWI2MzBhMjJiNTNhZjg1MWUyNWUyNDc4YjA2YjRlN2E0NTgy
|
11
|
+
YzJhYzAxMWQ5YTVhOGIxMzlmYWVlYTdjYjc1ZjcyZTMwNDU0MjU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NWQ0ZmYzZGRjNjFkZjJjMWQwMTg5YmQwMzk0NmM1ZTBkZGNkZWZjZmNhN2U4
|
14
|
+
NzE0MGVkNzVhMjBkMTE4OTIzOThhM2NmODRhZThkYzEyYWYxNmYxMmExZTQ1
|
15
|
+
ZTk2MDJlMjEwMGRjYWZkNzgwYTJhNTk1ZjZmZTYwMzZjMDZhZmQ=
|
@@ -144,7 +144,7 @@ select[size] {
|
|
144
144
|
|
145
145
|
input,
|
146
146
|
textarea {
|
147
|
-
@include placeholder();
|
147
|
+
@include placeholder($placeholder-color);
|
148
148
|
}
|
149
149
|
|
150
150
|
// input[disabled],
|
@@ -155,6 +155,7 @@ textarea {
|
|
155
155
|
// textarea[readonly] {
|
156
156
|
// cursor: not-allowed;
|
157
157
|
// }
|
158
|
+
|
158
159
|
input[type="radio"][disabled],
|
159
160
|
input[type="checkbox"][disabled],
|
160
161
|
input[type="radio"][readonly],
|
@@ -38,6 +38,10 @@ Styleguide 26.1
|
|
38
38
|
-------------------------------------------------------------------------------------------------------------------- */
|
39
39
|
|
40
40
|
$text-color: #333 !default;
|
41
|
+
$title-color: #333 !default;
|
42
|
+
|
43
|
+
$link-color: #0066cc !default;
|
44
|
+
$link-color-hover: darken($link-color, 10) !default;
|
45
|
+
|
46
|
+
$placeholder-color: $gray !default;
|
41
47
|
|
42
|
-
$link-color: #0066cc !default;
|
43
|
-
$link-color-hover: darken($link-color, 10) !default;
|
@@ -185,15 +185,20 @@ Styleguide 23.7
|
|
185
185
|
-------------------------------------------------------------------------------------------------------------------- */
|
186
186
|
|
187
187
|
@mixin placeholder($color: $gray) {
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
188
|
+
|
189
|
+
&:-moz-placeholder {
|
190
|
+
color: $color;
|
191
|
+
}
|
192
|
+
&::-moz-placeholder {
|
193
|
+
color: $color;
|
194
|
+
}
|
195
|
+
&:-ms-input-placeholder {
|
196
|
+
color: $color;
|
197
|
+
}
|
198
|
+
&::-webkit-input-placeholder {
|
199
|
+
color: $color;
|
200
|
+
}
|
201
|
+
|
197
202
|
}
|
198
203
|
|
199
204
|
|
@@ -500,14 +505,15 @@ Styleguide 23.15
|
|
500
505
|
|
501
506
|
/* --------------------------------------------------------------------------------------------------------------------
|
502
507
|
|
503
|
-
|
508
|
+
Box Inset Shadow
|
504
509
|
|
505
|
-
|
510
|
+
Usefull for adding inset shadows to sidebars or large block where the shadow is only on one side and full width/height.
|
506
511
|
|
507
|
-
|
508
|
-
|
512
|
+
@include shadow-shadow($position $size $color);
|
513
|
+
|
514
|
+
* `$position`: top, right, bottom, left
|
509
515
|
* `$size`: Size of the shadow
|
510
|
-
* `$
|
516
|
+
* `$color`: Color of the shadow
|
511
517
|
|
512
518
|
Styleguide 23.16
|
513
519
|
|
@@ -700,4 +706,4 @@ Styleguide 23.20
|
|
700
706
|
@if $nth-omega { &:nth-child(#{$nth-omega}) {background: blue;} }
|
701
707
|
}
|
702
708
|
}
|
703
|
-
}
|
709
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rapido-css
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Raffaele Rasini
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-11-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: compass
|
@@ -82,7 +82,8 @@ files:
|
|
82
82
|
- templates/project/manifest.rb
|
83
83
|
- templates/project/screen.scss
|
84
84
|
homepage: https://github.com/raffone/rapido
|
85
|
-
licenses:
|
85
|
+
licenses:
|
86
|
+
- Apache License Version 2.0
|
86
87
|
metadata: {}
|
87
88
|
post_install_message:
|
88
89
|
rdoc_options: []
|