customize-rails 0.0.1
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 +7 -0
- data/README.md +62 -0
- data/lib/customize-rails.rb +6 -0
- data/lib/customize-rails/version.rb +5 -0
- data/vendor/assets/stylesheets/customize.scss +10 -0
- data/vendor/assets/stylesheets/customize/_button.scss +47 -0
- data/vendor/assets/stylesheets/customize/_checkbox.scss +45 -0
- data/vendor/assets/stylesheets/customize/_file.scss +29 -0
- data/vendor/assets/stylesheets/customize/_generic.scss +7 -0
- data/vendor/assets/stylesheets/customize/_input.scss +27 -0
- data/vendor/assets/stylesheets/customize/_normalize.scss +426 -0
- data/vendor/assets/stylesheets/customize/_radio.scss +37 -0
- data/vendor/assets/stylesheets/customize/_range.scss +74 -0
- data/vendor/assets/stylesheets/customize/_select.scss +78 -0
- data/vendor/assets/stylesheets/customize/_table.scss +12 -0
- data/vendor/assets/stylesheets/customize/_variables.scss +75 -0
- metadata +95 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: df6e473a7d7e0a4e44e68291ab8f93924365890e
|
4
|
+
data.tar.gz: 57d4bbdfa33908f3d02b754307e6ff2c5ff91066
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 695f21e3a6974a3efe7cd9768cf77834cafc15b59de8ba0113cee8668bf54d9d68525fd82cbdeaf11cf86c0b399a2a81d0117a51f44ccb3f40d9dabeb1d3fec8
|
7
|
+
data.tar.gz: 4646f08a03b2a430f074467629b41852d767c85fdbb70e11f51148cd56505cbc983f16d56f820909fb1a9e6a37c3dbb2664ae5d305222dbeee2241919720412f
|
data/README.md
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
# Customize.css
|
2
|
+
|
3
|
+
customize.css provides you with the base styling for your application and gives you ability to easily customize the look of your app.
|
4
|
+
The main advantage of this lib that you don't have to overwrite styles you can just set it.
|
5
|
+
Another advantage is that all inputs, checkboxes, radio buttons, select boxes have the same look and behaviour in all browsers.
|
6
|
+
Also you can change the look of select or checkbox by setting several `sass` maps.
|
7
|
+
This is the engine that supports themes so developers are able to share themes between each other.
|
8
|
+
|
9
|
+
## Rails instalation
|
10
|
+
|
11
|
+
In your Gemfile you need to add the `customize-rails` gem, and ensure that the `sass-rails` gem is present - it is added to new Rails applications by default.
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
gem 'customize-rails'
|
15
|
+
```
|
16
|
+
|
17
|
+
It is also recommended to use [Autoprefixer](https://github.com/ai/autoprefixer-rails)
|
18
|
+
to add browser vendor prefixes automatically. Simply add the gem:
|
19
|
+
|
20
|
+
```ruby
|
21
|
+
gem 'autoprefixer-rails'
|
22
|
+
```
|
23
|
+
|
24
|
+
`bundle install` and restart your server to make the files available through the pipeline.
|
25
|
+
|
26
|
+
Import main file in `app/assets/stylesheets/application.css.scss`:
|
27
|
+
|
28
|
+
```scss
|
29
|
+
@import 'customize';
|
30
|
+
```
|
31
|
+
|
32
|
+
Also you can import themes before it
|
33
|
+
|
34
|
+
```scss
|
35
|
+
@import 'some-awesome-theme';
|
36
|
+
@import 'customize';
|
37
|
+
```
|
38
|
+
|
39
|
+
Customize the look of anything before importing:
|
40
|
+
|
41
|
+
```scss
|
42
|
+
|
43
|
+
$inputs: (
|
44
|
+
border: 3px solid red;
|
45
|
+
);
|
46
|
+
|
47
|
+
@import 'some-awesome-theme';
|
48
|
+
@import 'customize';
|
49
|
+
```
|
50
|
+
Make sure the file has `.scss` extension (or `.sass` for Sass syntax). If you have just generated a new Rails app,
|
51
|
+
it may come with a `.css` file instead. If this file exists, it will be served instead of Sass, so remove it:
|
52
|
+
|
53
|
+
```console
|
54
|
+
$ rm app/assets/stylesheets/application.css
|
55
|
+
```
|
56
|
+
|
57
|
+
Do not use `//= require` in Sass or your other stylesheets will not be [able to access][antirequire] the variables.
|
58
|
+
|
59
|
+
##TO DO
|
60
|
+
|
61
|
+
1. Make example of theme
|
62
|
+
2. Select focus state
|
@@ -0,0 +1,10 @@
|
|
1
|
+
@import 'customize/normalize';
|
2
|
+
@import 'customize/variables';
|
3
|
+
@import 'customize/generic';
|
4
|
+
@import 'customize/input';
|
5
|
+
@import 'customize/button';
|
6
|
+
@import 'customize/select';
|
7
|
+
@import 'customize/checkbox';
|
8
|
+
@import 'customize/radio';
|
9
|
+
@import 'customize/range';
|
10
|
+
@import 'customize/file';
|
@@ -0,0 +1,47 @@
|
|
1
|
+
$button-base: map-merge($inputs, (
|
2
|
+
user-select: none,
|
3
|
+
text-decoration: none,
|
4
|
+
cursor: pointer,
|
5
|
+
padding: map-get($inputs, padding) map-get($inputs, padding) + 1em
|
6
|
+
));
|
7
|
+
|
8
|
+
$button: () !default;
|
9
|
+
$button-focus: $inputs-focus !default;
|
10
|
+
$button-hover: $inputs-hover !default;
|
11
|
+
$button-active: () !default;
|
12
|
+
|
13
|
+
$button: map-merge($button-base, $button);
|
14
|
+
$button-focus: map-merge($inputs-focus, $button-focus);
|
15
|
+
|
16
|
+
$button-hover: map-merge((
|
17
|
+
box-shadow: inset 0 0 0 100em rgba(0, 0, 0, .1),
|
18
|
+
), $button-hover);
|
19
|
+
|
20
|
+
$button-active: map-merge((
|
21
|
+
box-shadow: inset 0 0 0 100em rgba(0, 0, 0, .3)
|
22
|
+
), $button-active);
|
23
|
+
|
24
|
+
.button, a.button:visited {
|
25
|
+
@include properties($button);
|
26
|
+
|
27
|
+
&:hover {
|
28
|
+
@include properties($button-hover);
|
29
|
+
}
|
30
|
+
|
31
|
+
&:focus {
|
32
|
+
outline: none;
|
33
|
+
@include properties($button-focus);
|
34
|
+
}
|
35
|
+
|
36
|
+
&:active {
|
37
|
+
@include properties($button-active);
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
button,
|
42
|
+
input[type='submit'],
|
43
|
+
input[type='button'],
|
44
|
+
input[type='image'],
|
45
|
+
input[type='reset'] {
|
46
|
+
@extend .button;
|
47
|
+
}
|
@@ -0,0 +1,45 @@
|
|
1
|
+
$checkbox-base: map-merge($inputs, (
|
2
|
+
content: '\2714',
|
3
|
+
font-size: map-get($inputs, font-size) - .2em,
|
4
|
+
display: inline-block,
|
5
|
+
width: 1em,
|
6
|
+
height: 1em,
|
7
|
+
line-height: 1.1em,
|
8
|
+
text-align: center,
|
9
|
+
margin: -.2em 0 0 0,
|
10
|
+
box-sizing: content-box,
|
11
|
+
padding: 0
|
12
|
+
));
|
13
|
+
|
14
|
+
$checkbox-focus: $inputs-focus !default;
|
15
|
+
$checkbox-hover: $inputs-hover !default;
|
16
|
+
$checkbox: () !default;
|
17
|
+
|
18
|
+
$checkbox: map-merge($checkbox-base, $checkbox);
|
19
|
+
$checkbox-focus: map-merge($inputs-focus, $checkbox-focus);
|
20
|
+
$checkbox-hover: map-merge($inputs-hover, $checkbox-hover);
|
21
|
+
|
22
|
+
input[type=checkbox].checkbox {
|
23
|
+
opacity: 0;
|
24
|
+
position: absolute;
|
25
|
+
z-index: -1;
|
26
|
+
|
27
|
+
& + label {
|
28
|
+
@include properties($label-base);
|
29
|
+
|
30
|
+
&:before {
|
31
|
+
@include properties($checkbox);
|
32
|
+
color: transparent;
|
33
|
+
}
|
34
|
+
}
|
35
|
+
|
36
|
+
&:checked + label:before {
|
37
|
+
color: map-get($checkbox, color);
|
38
|
+
}
|
39
|
+
&:focus + label:before {
|
40
|
+
@include properties($checkbox-focus);
|
41
|
+
}
|
42
|
+
&:hover + label:before {
|
43
|
+
@include properties($checkbox-hover);
|
44
|
+
}
|
45
|
+
}
|
@@ -0,0 +1,29 @@
|
|
1
|
+
$file-base: map-merge($inputs, (
|
2
|
+
padding: map-get($inputs, padding) map-get($inputs, padding) + 1em
|
3
|
+
));
|
4
|
+
|
5
|
+
$file-focus: $inputs-focus !default;
|
6
|
+
$file-hover: $inputs-hover !default;
|
7
|
+
$file: () !default;
|
8
|
+
|
9
|
+
$file: map-merge($file-base, $file);
|
10
|
+
$file-focus: map-merge($inputs-focus, $file-focus);
|
11
|
+
$file-hover: map-merge($inputs-hover, $file-hover);
|
12
|
+
|
13
|
+
input[type=file].file {
|
14
|
+
opacity: 0;
|
15
|
+
position: absolute;
|
16
|
+
left: -9999em;
|
17
|
+
|
18
|
+
& + label {
|
19
|
+
@include properties(map-merge($label-base, $file));
|
20
|
+
}
|
21
|
+
|
22
|
+
&:focus + label {
|
23
|
+
@include properties($file-focus);
|
24
|
+
}
|
25
|
+
|
26
|
+
&:hover + label {
|
27
|
+
@include properties($file-hover);
|
28
|
+
}
|
29
|
+
}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
$input-invalid: () !default;
|
2
|
+
$input-focus-invalid: () !default;
|
3
|
+
|
4
|
+
$inputs-focus: map-merge($inputs-focus-base, $inputs-focus);
|
5
|
+
$inputs-hover: map-merge($inputs-hover-base, $inputs-hover);
|
6
|
+
|
7
|
+
$input: $inputs !default;
|
8
|
+
$input-focus: $inputs-focus !default;
|
9
|
+
$input-hover: $inputs-hover !default;
|
10
|
+
|
11
|
+
$input: map-merge($inputs, $input);
|
12
|
+
$input-invalid: map-merge($input-invalid-base, $input-invalid);
|
13
|
+
$input-focus-invalid: map-merge($input-focus-invalid-base, $input-focus-invalid);
|
14
|
+
$input-focus: map-merge($inputs-focus, $input-focus);
|
15
|
+
$input-hover: map-merge($inputs-hover, $input-hover);
|
16
|
+
|
17
|
+
input:not([type=checkbox]):not([type=radio]):not([type=range]):not([type=file]), textarea {
|
18
|
+
@include properties($input);
|
19
|
+
&:focus { @include properties($input-focus); }
|
20
|
+
&:hover { @include properties($input-hover); }
|
21
|
+
&:invalid { @include properties($input-invalid); }
|
22
|
+
&:focus:invalid { @include properties($input-focus-invalid); }
|
23
|
+
}
|
24
|
+
|
25
|
+
input[type=file], input[type=color] {
|
26
|
+
cursor: pointer;
|
27
|
+
}
|
@@ -0,0 +1,426 @@
|
|
1
|
+
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
|
2
|
+
|
3
|
+
/**
|
4
|
+
* 1. Set default font family to sans-serif.
|
5
|
+
* 2. Prevent iOS text size adjust after orientation change, without disabling
|
6
|
+
* user zoom.
|
7
|
+
*/
|
8
|
+
|
9
|
+
html {
|
10
|
+
font-family: sans-serif; /* 1 */
|
11
|
+
-ms-text-size-adjust: 100%; /* 2 */
|
12
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
13
|
+
}
|
14
|
+
|
15
|
+
/**
|
16
|
+
* Remove default margin.
|
17
|
+
*/
|
18
|
+
|
19
|
+
body {
|
20
|
+
margin: 0;
|
21
|
+
}
|
22
|
+
|
23
|
+
/* HTML5 display definitions
|
24
|
+
========================================================================== */
|
25
|
+
|
26
|
+
/**
|
27
|
+
* Correct `block` display not defined for any HTML5 element in IE 8/9.
|
28
|
+
* Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
|
29
|
+
* Correct `block` display not defined for `main` in IE 11.
|
30
|
+
*/
|
31
|
+
|
32
|
+
article,
|
33
|
+
aside,
|
34
|
+
details,
|
35
|
+
figcaption,
|
36
|
+
figure,
|
37
|
+
footer,
|
38
|
+
header,
|
39
|
+
hgroup,
|
40
|
+
main,
|
41
|
+
nav,
|
42
|
+
section,
|
43
|
+
summary {
|
44
|
+
display: block;
|
45
|
+
}
|
46
|
+
|
47
|
+
/**
|
48
|
+
* 1. Correct `inline-block` display not defined in IE 8/9.
|
49
|
+
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
|
50
|
+
*/
|
51
|
+
|
52
|
+
audio,
|
53
|
+
canvas,
|
54
|
+
progress,
|
55
|
+
video {
|
56
|
+
display: inline-block; /* 1 */
|
57
|
+
vertical-align: baseline; /* 2 */
|
58
|
+
}
|
59
|
+
|
60
|
+
/**
|
61
|
+
* Prevent modern browsers from displaying `audio` without controls.
|
62
|
+
* Remove excess height in iOS 5 devices.
|
63
|
+
*/
|
64
|
+
|
65
|
+
audio:not([controls]) {
|
66
|
+
display: none;
|
67
|
+
height: 0;
|
68
|
+
}
|
69
|
+
|
70
|
+
/**
|
71
|
+
* Address `[hidden]` styling not present in IE 8/9/10.
|
72
|
+
* Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
|
73
|
+
*/
|
74
|
+
|
75
|
+
[hidden],
|
76
|
+
template {
|
77
|
+
display: none;
|
78
|
+
}
|
79
|
+
|
80
|
+
/* Links
|
81
|
+
========================================================================== */
|
82
|
+
|
83
|
+
/**
|
84
|
+
* Remove the gray background color from active links in IE 10.
|
85
|
+
*/
|
86
|
+
|
87
|
+
a {
|
88
|
+
background: transparent;
|
89
|
+
}
|
90
|
+
|
91
|
+
/**
|
92
|
+
* Improve readability when focused and also mouse hovered in all browsers.
|
93
|
+
*/
|
94
|
+
|
95
|
+
a:active,
|
96
|
+
a:hover {
|
97
|
+
outline: 0;
|
98
|
+
}
|
99
|
+
|
100
|
+
/* Text-level semantics
|
101
|
+
========================================================================== */
|
102
|
+
|
103
|
+
/**
|
104
|
+
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
|
105
|
+
*/
|
106
|
+
|
107
|
+
abbr[title] {
|
108
|
+
border-bottom: 1px dotted;
|
109
|
+
}
|
110
|
+
|
111
|
+
/**
|
112
|
+
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
|
113
|
+
*/
|
114
|
+
|
115
|
+
b,
|
116
|
+
strong {
|
117
|
+
font-weight: bold;
|
118
|
+
}
|
119
|
+
|
120
|
+
/**
|
121
|
+
* Address styling not present in Safari and Chrome.
|
122
|
+
*/
|
123
|
+
|
124
|
+
dfn {
|
125
|
+
font-style: italic;
|
126
|
+
}
|
127
|
+
|
128
|
+
/**
|
129
|
+
* Address variable `h1` font-size and margin within `section` and `article`
|
130
|
+
* contexts in Firefox 4+, Safari, and Chrome.
|
131
|
+
*/
|
132
|
+
|
133
|
+
h1 {
|
134
|
+
font-size: 2em;
|
135
|
+
margin: 0.67em 0;
|
136
|
+
}
|
137
|
+
|
138
|
+
/**
|
139
|
+
* Address styling not present in IE 8/9.
|
140
|
+
*/
|
141
|
+
|
142
|
+
mark {
|
143
|
+
background: #ff0;
|
144
|
+
color: #000;
|
145
|
+
}
|
146
|
+
|
147
|
+
/**
|
148
|
+
* Address inconsistent and variable font size in all browsers.
|
149
|
+
*/
|
150
|
+
|
151
|
+
small {
|
152
|
+
font-size: 80%;
|
153
|
+
}
|
154
|
+
|
155
|
+
/**
|
156
|
+
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
157
|
+
*/
|
158
|
+
|
159
|
+
sub,
|
160
|
+
sup {
|
161
|
+
font-size: 75%;
|
162
|
+
line-height: 0;
|
163
|
+
position: relative;
|
164
|
+
vertical-align: baseline;
|
165
|
+
}
|
166
|
+
|
167
|
+
sup {
|
168
|
+
top: -0.5em;
|
169
|
+
}
|
170
|
+
|
171
|
+
sub {
|
172
|
+
bottom: -0.25em;
|
173
|
+
}
|
174
|
+
|
175
|
+
/* Embedded content
|
176
|
+
========================================================================== */
|
177
|
+
|
178
|
+
/**
|
179
|
+
* Remove border when inside `a` element in IE 8/9/10.
|
180
|
+
*/
|
181
|
+
|
182
|
+
img {
|
183
|
+
border: 0;
|
184
|
+
}
|
185
|
+
|
186
|
+
/**
|
187
|
+
* Correct overflow not hidden in IE 9/10/11.
|
188
|
+
*/
|
189
|
+
|
190
|
+
svg:not(:root) {
|
191
|
+
overflow: hidden;
|
192
|
+
}
|
193
|
+
|
194
|
+
/* Grouping content
|
195
|
+
========================================================================== */
|
196
|
+
|
197
|
+
/**
|
198
|
+
* Address margin not present in IE 8/9 and Safari.
|
199
|
+
*/
|
200
|
+
|
201
|
+
figure {
|
202
|
+
margin: 1em 40px;
|
203
|
+
}
|
204
|
+
|
205
|
+
/**
|
206
|
+
* Address differences between Firefox and other browsers.
|
207
|
+
*/
|
208
|
+
|
209
|
+
hr {
|
210
|
+
-moz-box-sizing: content-box;
|
211
|
+
box-sizing: content-box;
|
212
|
+
height: 0;
|
213
|
+
}
|
214
|
+
|
215
|
+
/**
|
216
|
+
* Contain overflow in all browsers.
|
217
|
+
*/
|
218
|
+
|
219
|
+
pre {
|
220
|
+
overflow: auto;
|
221
|
+
}
|
222
|
+
|
223
|
+
/**
|
224
|
+
* Address odd `em`-unit font size rendering in all browsers.
|
225
|
+
*/
|
226
|
+
|
227
|
+
code,
|
228
|
+
kbd,
|
229
|
+
pre,
|
230
|
+
samp {
|
231
|
+
font-family: monospace, monospace;
|
232
|
+
font-size: 1em;
|
233
|
+
}
|
234
|
+
|
235
|
+
/* Forms
|
236
|
+
========================================================================== */
|
237
|
+
|
238
|
+
/**
|
239
|
+
* Known limitation: by default, Chrome and Safari on OS X allow very limited
|
240
|
+
* styling of `select`, unless a `border` property is set.
|
241
|
+
*/
|
242
|
+
|
243
|
+
/**
|
244
|
+
* 1. Correct color not being inherited.
|
245
|
+
* Known issue: affects color of disabled elements.
|
246
|
+
* 2. Correct font properties not being inherited.
|
247
|
+
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
|
248
|
+
*/
|
249
|
+
|
250
|
+
button,
|
251
|
+
input,
|
252
|
+
optgroup,
|
253
|
+
select,
|
254
|
+
textarea {
|
255
|
+
color: inherit; /* 1 */
|
256
|
+
font: inherit; /* 2 */
|
257
|
+
margin: 0; /* 3 */
|
258
|
+
}
|
259
|
+
|
260
|
+
/**
|
261
|
+
* Address `overflow` set to `hidden` in IE 8/9/10/11.
|
262
|
+
*/
|
263
|
+
|
264
|
+
button {
|
265
|
+
overflow: visible;
|
266
|
+
}
|
267
|
+
|
268
|
+
/**
|
269
|
+
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
270
|
+
* All other form control elements do not inherit `text-transform` values.
|
271
|
+
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
|
272
|
+
* Correct `select` style inheritance in Firefox.
|
273
|
+
*/
|
274
|
+
|
275
|
+
button,
|
276
|
+
select {
|
277
|
+
text-transform: none;
|
278
|
+
}
|
279
|
+
|
280
|
+
/**
|
281
|
+
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
282
|
+
* and `video` controls.
|
283
|
+
* 2. Correct inability to style clickable `input` types in iOS.
|
284
|
+
* 3. Improve usability and consistency of cursor style between image-type
|
285
|
+
* `input` and others.
|
286
|
+
*/
|
287
|
+
|
288
|
+
button,
|
289
|
+
html input[type="button"], /* 1 */
|
290
|
+
input[type="reset"],
|
291
|
+
input[type="submit"] {
|
292
|
+
-webkit-appearance: button; /* 2 */
|
293
|
+
cursor: pointer; /* 3 */
|
294
|
+
}
|
295
|
+
|
296
|
+
/**
|
297
|
+
* Re-set default cursor for disabled elements.
|
298
|
+
*/
|
299
|
+
|
300
|
+
button[disabled],
|
301
|
+
html input[disabled] {
|
302
|
+
cursor: default;
|
303
|
+
}
|
304
|
+
|
305
|
+
/**
|
306
|
+
* Remove inner padding and border in Firefox 4+.
|
307
|
+
*/
|
308
|
+
|
309
|
+
button::-moz-focus-inner,
|
310
|
+
input::-moz-focus-inner {
|
311
|
+
border: 0;
|
312
|
+
padding: 0;
|
313
|
+
}
|
314
|
+
|
315
|
+
/**
|
316
|
+
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
|
317
|
+
* the UA stylesheet.
|
318
|
+
*/
|
319
|
+
|
320
|
+
input {
|
321
|
+
line-height: normal;
|
322
|
+
}
|
323
|
+
|
324
|
+
/**
|
325
|
+
* It's recommended that you don't attempt to style these elements.
|
326
|
+
* Firefox's implementation doesn't respect box-sizing, padding, or width.
|
327
|
+
*
|
328
|
+
* 1. Address box sizing set to `content-box` in IE 8/9/10.
|
329
|
+
* 2. Remove excess padding in IE 8/9/10.
|
330
|
+
*/
|
331
|
+
|
332
|
+
input[type="checkbox"],
|
333
|
+
input[type="radio"] {
|
334
|
+
box-sizing: border-box; /* 1 */
|
335
|
+
padding: 0; /* 2 */
|
336
|
+
}
|
337
|
+
|
338
|
+
/**
|
339
|
+
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
|
340
|
+
* `font-size` values of the `input`, it causes the cursor style of the
|
341
|
+
* decrement button to change from `default` to `text`.
|
342
|
+
*/
|
343
|
+
|
344
|
+
input[type="number"]::-webkit-inner-spin-button,
|
345
|
+
input[type="number"]::-webkit-outer-spin-button {
|
346
|
+
height: auto;
|
347
|
+
}
|
348
|
+
|
349
|
+
/**
|
350
|
+
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
|
351
|
+
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome
|
352
|
+
* (include `-moz` to future-proof).
|
353
|
+
*/
|
354
|
+
|
355
|
+
input[type="search"] {
|
356
|
+
-webkit-appearance: textfield; /* 1 */
|
357
|
+
-moz-box-sizing: content-box;
|
358
|
+
-webkit-box-sizing: content-box; /* 2 */
|
359
|
+
box-sizing: content-box;
|
360
|
+
}
|
361
|
+
|
362
|
+
/**
|
363
|
+
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
|
364
|
+
* Safari (but not Chrome) clips the cancel button when the search input has
|
365
|
+
* padding (and `textfield` appearance).
|
366
|
+
*/
|
367
|
+
|
368
|
+
input[type="search"]::-webkit-search-cancel-button,
|
369
|
+
input[type="search"]::-webkit-search-decoration {
|
370
|
+
-webkit-appearance: none;
|
371
|
+
}
|
372
|
+
|
373
|
+
/**
|
374
|
+
* Define consistent border, margin, and padding.
|
375
|
+
*/
|
376
|
+
|
377
|
+
fieldset {
|
378
|
+
border: 1px solid #c0c0c0;
|
379
|
+
margin: 0 2px;
|
380
|
+
padding: 0.35em 0.625em 0.75em;
|
381
|
+
}
|
382
|
+
|
383
|
+
/**
|
384
|
+
* 1. Correct `color` not being inherited in IE 8/9/10/11.
|
385
|
+
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
386
|
+
*/
|
387
|
+
|
388
|
+
legend {
|
389
|
+
border: 0; /* 1 */
|
390
|
+
padding: 0; /* 2 */
|
391
|
+
}
|
392
|
+
|
393
|
+
/**
|
394
|
+
* Remove default vertical scrollbar in IE 8/9/10/11.
|
395
|
+
*/
|
396
|
+
|
397
|
+
textarea {
|
398
|
+
overflow: auto;
|
399
|
+
}
|
400
|
+
|
401
|
+
/**
|
402
|
+
* Don't inherit the `font-weight` (applied by a rule above).
|
403
|
+
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
|
404
|
+
*/
|
405
|
+
|
406
|
+
optgroup {
|
407
|
+
font-weight: bold;
|
408
|
+
}
|
409
|
+
|
410
|
+
/* Tables
|
411
|
+
========================================================================== */
|
412
|
+
|
413
|
+
/**
|
414
|
+
* Remove most spacing between table cells.
|
415
|
+
*/
|
416
|
+
|
417
|
+
table {
|
418
|
+
border-collapse: collapse;
|
419
|
+
border-spacing: 0;
|
420
|
+
}
|
421
|
+
|
422
|
+
td,
|
423
|
+
th {
|
424
|
+
padding: 0;
|
425
|
+
}
|
426
|
+
|
@@ -0,0 +1,37 @@
|
|
1
|
+
$radio-base: map-merge($checkbox-base, (
|
2
|
+
content: '',
|
3
|
+
border-radius: 50%,
|
4
|
+
box-shadow: (inset 0 0 0 $radio-body-width map-get($inputs, background), map-get($inputs, box-shadow)),
|
5
|
+
));
|
6
|
+
|
7
|
+
$radio-focus: $inputs-focus !default;
|
8
|
+
$radio-hover: $inputs-hover !default;
|
9
|
+
$radio: () !default;
|
10
|
+
|
11
|
+
$radio: map-merge($radio-base, $radio);
|
12
|
+
$radio-focus: map-merge($inputs-focus, $radio-focus);
|
13
|
+
$radio-hover: map-merge($inputs-hover, $radio-hover);
|
14
|
+
|
15
|
+
input[type=radio].radio {
|
16
|
+
opacity: 0;
|
17
|
+
position: absolute;
|
18
|
+
z-index: -1;
|
19
|
+
|
20
|
+
& + label {
|
21
|
+
@include properties($label-base);
|
22
|
+
|
23
|
+
&:before {
|
24
|
+
box-shadow: inset 0 0 0 $radio-body-width map-get($radio, background);
|
25
|
+
@include properties($radio)
|
26
|
+
}
|
27
|
+
}
|
28
|
+
&:checked + label:before {
|
29
|
+
background: map-get($radio, color);
|
30
|
+
}
|
31
|
+
&:focus + label:before {
|
32
|
+
@include properties($radio-focus);
|
33
|
+
}
|
34
|
+
&:hover + label:before {
|
35
|
+
@include properties($radio-hover);
|
36
|
+
}
|
37
|
+
}
|
@@ -0,0 +1,74 @@
|
|
1
|
+
$range-base: map-merge($inputs, (
|
2
|
+
width: 99%,
|
3
|
+
height: 1.9em,
|
4
|
+
cursor: pointer,
|
5
|
+
padding: 0,
|
6
|
+
margin: 0
|
7
|
+
));
|
8
|
+
|
9
|
+
$range-thumb-base: map-merge($inputs, (
|
10
|
+
width: 1em,
|
11
|
+
height: 1.83em,
|
12
|
+
padding: 0,
|
13
|
+
margin: -0.05em 0 0 0,
|
14
|
+
cursor: pointer
|
15
|
+
));
|
16
|
+
|
17
|
+
$ms-fill: (
|
18
|
+
background: transparent,
|
19
|
+
border: none,
|
20
|
+
box-shadow: none
|
21
|
+
);
|
22
|
+
|
23
|
+
$range: () !default;
|
24
|
+
$range-thumb: () !default;
|
25
|
+
|
26
|
+
$range-focus: $inputs-focus !default;
|
27
|
+
$range-focus-thumb: $inputs-focus !default;
|
28
|
+
|
29
|
+
$range-hover: () !default;
|
30
|
+
$range-hover-thumb: () !default;
|
31
|
+
|
32
|
+
$range: map-merge($range-base, $range);
|
33
|
+
$range-thumb: map-merge($range-thumb-base, $range-thumb);
|
34
|
+
|
35
|
+
input[type=range] {
|
36
|
+
border: none;
|
37
|
+
padding: map-get($inputs, padding);
|
38
|
+
background: transparent;
|
39
|
+
-webkit-appearance: none;
|
40
|
+
margin: map-get($inputs, margin);
|
41
|
+
box-shadow: none;
|
42
|
+
vertical-align: middle;
|
43
|
+
|
44
|
+
&::-webkit-slider-runnable-track { @include properties($range); }
|
45
|
+
|
46
|
+
&::-webkit-slider-thumb {
|
47
|
+
@include properties($range-thumb);
|
48
|
+
-webkit-appearance: none;
|
49
|
+
}
|
50
|
+
|
51
|
+
&::-moz-range-track { @include properties($range); }
|
52
|
+
&::-moz-range-thumb { @include properties($range-thumb); }
|
53
|
+
&::-moz-focus-outer { border: 0; }
|
54
|
+
|
55
|
+
&::-ms-track {
|
56
|
+
@include properties($range);
|
57
|
+
color: transparent;
|
58
|
+
}
|
59
|
+
|
60
|
+
&::-ms-thumb { @include properties($range-thumb); }
|
61
|
+
&::-ms-fill-lower { @include properties($ms-fill); }
|
62
|
+
&::-ms-fill-upper { @include properties($ms-fill); }
|
63
|
+
|
64
|
+
&:focus {
|
65
|
+
outline: none;
|
66
|
+
|
67
|
+
&::-webkit-slider-runnable-track { @include properties($range-focus); }
|
68
|
+
&::-webkit-slider-thumb { @include properties($range-focus-thumb); }
|
69
|
+
&::-moz-range-track { @include properties($range-focus); }
|
70
|
+
&::-moz-range-thumb { @include properties($range-focus-thumb); }
|
71
|
+
&::-ms-track { @include properties($range-focus); }
|
72
|
+
&::-ms-thumb { @include properties($range-focus-thumb); }
|
73
|
+
}
|
74
|
+
}
|
@@ -0,0 +1,78 @@
|
|
1
|
+
$select-base: map-merge($inputs, (
|
2
|
+
position: relative,
|
3
|
+
display: inline-block,
|
4
|
+
min-width: 50px,
|
5
|
+
overflow: hidden,
|
6
|
+
padding: 0,
|
7
|
+
));
|
8
|
+
|
9
|
+
$select-hover-base: map-merge((
|
10
|
+
border-color: $aqua
|
11
|
+
), $inputs-hover) !default;
|
12
|
+
|
13
|
+
$select: () !default;
|
14
|
+
$select-hover: () !default;
|
15
|
+
|
16
|
+
$select: map-merge($select-base, $select);
|
17
|
+
$select-hover: map-merge($select-hover-base, $select-hover);
|
18
|
+
|
19
|
+
.select {
|
20
|
+
@include properties($select);
|
21
|
+
|
22
|
+
&:before {
|
23
|
+
background: map-get($inputs, background);
|
24
|
+
content: '';
|
25
|
+
display: block;
|
26
|
+
position: absolute;
|
27
|
+
right: 0;
|
28
|
+
top: 0;
|
29
|
+
bottom: 0;
|
30
|
+
width: 1.5em;
|
31
|
+
pointer-events: none;
|
32
|
+
border-radius: map-get($inputs, border-radius);
|
33
|
+
}
|
34
|
+
|
35
|
+
&:after {
|
36
|
+
color: $select-arrow-color;
|
37
|
+
content: $select-arrow;
|
38
|
+
display: block;
|
39
|
+
position: absolute;
|
40
|
+
right: 0;
|
41
|
+
top: 24%;
|
42
|
+
width: 1.8em;
|
43
|
+
height: 1.2em;
|
44
|
+
pointer-events: none;
|
45
|
+
font-size: 0.8em;
|
46
|
+
text-align: center;
|
47
|
+
border-radius: map-get($inputs, border-radius);
|
48
|
+
}
|
49
|
+
|
50
|
+
select {
|
51
|
+
height: 1.8em;
|
52
|
+
padding: map-get($inputs, padding) - .1em;
|
53
|
+
padding-right: 0.4em;
|
54
|
+
margin-right: 1em;
|
55
|
+
background: none;
|
56
|
+
-moz-appearance: none;
|
57
|
+
-webkit-appearance: none;
|
58
|
+
appearance: none;
|
59
|
+
border: none;
|
60
|
+
border-radius: map-get($inputs, border-radius);
|
61
|
+
cursor: pointer;
|
62
|
+
font-size: inherit;
|
63
|
+
width: 100%;
|
64
|
+
|
65
|
+
&:-moz-focusring {
|
66
|
+
color: transparent;
|
67
|
+
text-shadow: 0 0 0 #000;
|
68
|
+
}
|
69
|
+
|
70
|
+
&::-ms-expand { display: none; }
|
71
|
+
|
72
|
+
option { padding: .2em .5em; }
|
73
|
+
|
74
|
+
&:focus { outline: none; }
|
75
|
+
}
|
76
|
+
|
77
|
+
&:hover { @include properties($select-hover); }
|
78
|
+
}
|
@@ -0,0 +1,75 @@
|
|
1
|
+
$aqua: #7FDBFF;
|
2
|
+
$orange: #FF851B;
|
3
|
+
$red: #FF4136;
|
4
|
+
$white: #fff;
|
5
|
+
$gray: #aaa;
|
6
|
+
$black: #111;
|
7
|
+
|
8
|
+
$warning: $orange !default;
|
9
|
+
$error: $red !default;
|
10
|
+
$dull: $gray !default;
|
11
|
+
|
12
|
+
$inputs-base: (
|
13
|
+
background: $white,
|
14
|
+
font-size: 1em,
|
15
|
+
color: $black,
|
16
|
+
line-height: normal,
|
17
|
+
margin: .3em 0,
|
18
|
+
padding: .3em,
|
19
|
+
border: 1px solid $dull,
|
20
|
+
border-radius: .2em,
|
21
|
+
transition: border-color .3s,
|
22
|
+
vertical-align: middle,
|
23
|
+
box-shadow: none,
|
24
|
+
box-sizing: border-box,
|
25
|
+
outline: none
|
26
|
+
);
|
27
|
+
|
28
|
+
$inputs-focus-base: (
|
29
|
+
border-color: $aqua
|
30
|
+
);
|
31
|
+
|
32
|
+
$inputs-hover-base: ();
|
33
|
+
|
34
|
+
$input-invalid-base: (
|
35
|
+
border-color: $error
|
36
|
+
);
|
37
|
+
|
38
|
+
$input-focus-invalid-base: (
|
39
|
+
border-color: $warning
|
40
|
+
);
|
41
|
+
|
42
|
+
$inputs: () !default;
|
43
|
+
$inputs-focus: () !default;
|
44
|
+
$inputs-hover: () !default;
|
45
|
+
|
46
|
+
$inputs: map-merge($inputs-base, $inputs);
|
47
|
+
|
48
|
+
$label-base: (
|
49
|
+
display: inline-block,
|
50
|
+
margin: map-get($inputs, margin),
|
51
|
+
vertical-align: middle,
|
52
|
+
cursor: pointer
|
53
|
+
);
|
54
|
+
|
55
|
+
$body: (
|
56
|
+
color: $black,
|
57
|
+
line-height: 1.2em
|
58
|
+
) !default;
|
59
|
+
|
60
|
+
$a: (
|
61
|
+
color: inherit,
|
62
|
+
text-decoration: none
|
63
|
+
) !default;
|
64
|
+
|
65
|
+
$select-arrow-color: map-get($inputs, color) !default;
|
66
|
+
$select-padding: map-get($inputs, padding) - .04em !default;
|
67
|
+
$select-arrow: '\25BC' !default;
|
68
|
+
|
69
|
+
$radio-body-width: 3px !default;
|
70
|
+
|
71
|
+
@mixin properties($attrs) {
|
72
|
+
@each $key, $val in $attrs {
|
73
|
+
#{$key}: $val;
|
74
|
+
}
|
75
|
+
}
|
metadata
ADDED
@@ -0,0 +1,95 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: customize-rails
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- galulex
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-03-01 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.7'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.7'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
description: "\n customize.css provides you the base styling
|
42
|
+
for your application and gives you ability to easily customize the look of your
|
43
|
+
app.\n The main advantage of this lib that you don't have
|
44
|
+
to overwrite styles you can just set it.\n Another advantage
|
45
|
+
is that all inputs, checkboxes, radio buttons, select boxes have the same look and
|
46
|
+
behaviour in all browsers.\n Also you can change the look
|
47
|
+
of select or checkbox by setting several `sass` maps.\n This
|
48
|
+
is the engine that supports themes so developers are able to share themes between
|
49
|
+
each other.\n "
|
50
|
+
email:
|
51
|
+
- galulex@gmail.com
|
52
|
+
executables: []
|
53
|
+
extensions: []
|
54
|
+
extra_rdoc_files: []
|
55
|
+
files:
|
56
|
+
- README.md
|
57
|
+
- lib/customize-rails.rb
|
58
|
+
- lib/customize-rails/version.rb
|
59
|
+
- vendor/assets/stylesheets/customize.scss
|
60
|
+
- vendor/assets/stylesheets/customize/_button.scss
|
61
|
+
- vendor/assets/stylesheets/customize/_checkbox.scss
|
62
|
+
- vendor/assets/stylesheets/customize/_file.scss
|
63
|
+
- vendor/assets/stylesheets/customize/_generic.scss
|
64
|
+
- vendor/assets/stylesheets/customize/_input.scss
|
65
|
+
- vendor/assets/stylesheets/customize/_normalize.scss
|
66
|
+
- vendor/assets/stylesheets/customize/_radio.scss
|
67
|
+
- vendor/assets/stylesheets/customize/_range.scss
|
68
|
+
- vendor/assets/stylesheets/customize/_select.scss
|
69
|
+
- vendor/assets/stylesheets/customize/_table.scss
|
70
|
+
- vendor/assets/stylesheets/customize/_variables.scss
|
71
|
+
homepage: http://github.com/activebridge/customize.css
|
72
|
+
licenses:
|
73
|
+
- MIT
|
74
|
+
metadata: {}
|
75
|
+
post_install_message:
|
76
|
+
rdoc_options: []
|
77
|
+
require_paths:
|
78
|
+
- lib
|
79
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '0'
|
84
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
89
|
+
requirements: []
|
90
|
+
rubyforge_project:
|
91
|
+
rubygems_version: 2.4.5
|
92
|
+
signing_key:
|
93
|
+
specification_version: 4
|
94
|
+
summary: Customize.css
|
95
|
+
test_files: []
|