oulu 0.13.1 → 0.13.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.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/settings/initializers/_sanitize.sass +79 -64
- data/app/assets/stylesheets/settings/variables/_default.sass +1 -1
- data/app/assets/stylesheets/settings/variables/_sanitize.sass +0 -1
- data/bower.json +1 -1
- data/lib/oulu/version.rb +1 -1
- data/package.json +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 20b03683146d1d322974d4dedde9950c3d8d7d95
|
4
|
+
data.tar.gz: 86ec10e0a9c2ddbc145078fb78dbba05548b2a58
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '005804762f9651075a1d123d04670efcf9b456128729ae12d53c2dd3d472aa6a3326b5df9bc5f911aad56973b2d9eeb27b9dd3a7ca28301602be164cc5a1d215'
|
7
|
+
data.tar.gz: e033b9d42d75a4b558e800473169960944cb840a681a2a41942384631c1bf51a920e8f7a829f91f3147dc7c19e928cba5d4c81ff6ce0d5ef837b5c2d09deb099
|
@@ -1,10 +1,8 @@
|
|
1
|
-
|
1
|
+
// ! sanitize.css v3.3.0 | CC0 1.0 Public Domain | github.com/10up/sanitize.css */
|
2
2
|
|
3
3
|
// Latest tested: Android 6, Chrome 48, Edge 13, Firefox 44, Internet Explorer 11, iOS 9, Opera 35, Safari 9, Windows Phone 8.1
|
4
4
|
|
5
|
-
|
6
|
-
* Normalization
|
7
|
-
*/
|
5
|
+
// Normalization
|
8
6
|
|
9
7
|
audio:not([controls])
|
10
8
|
display: none // Chrome 44-, iOS 8+, Safari 9+
|
@@ -20,72 +18,92 @@ button
|
|
20
18
|
button,
|
21
19
|
input
|
22
20
|
&::-moz-focus-inner
|
23
|
-
|
24
|
-
|
21
|
+
// Firefox 4+
|
22
|
+
border: 0
|
23
|
+
// Firefox 4+
|
24
|
+
padding: 0
|
25
25
|
|
26
26
|
&:-moz-focusring
|
27
|
-
|
27
|
+
// Firefox 4+
|
28
|
+
outline: 1px dotted ButtonText
|
28
29
|
|
29
30
|
button,
|
30
31
|
select
|
31
|
-
|
32
|
+
// Firefox 40+, Internet Explorer 11-
|
33
|
+
text-transform: none
|
32
34
|
|
33
35
|
details
|
34
|
-
|
36
|
+
// Edge 12+, Firefox 40+, Internet Explorer 11-, Windows Phone 8.1+
|
37
|
+
display: block
|
35
38
|
|
36
39
|
hr
|
37
|
-
|
40
|
+
// Internet Explorer 11-, Edge 12+
|
41
|
+
overflow: visible
|
38
42
|
|
39
43
|
html
|
40
|
-
|
44
|
+
// Edge 12+, Internet Explorer 11-
|
45
|
+
-ms-overflow-style: -ms-autohiding-scrollbar
|
41
46
|
//overflow-y: scroll // All browsers without overlaying scrollbars
|
42
|
-
|
47
|
+
|
48
|
+
// iOS 8+, Windows Phone 8.1+
|
49
|
+
-webkit-text-size-adjust: 100%
|
43
50
|
|
44
51
|
input
|
45
|
-
|
52
|
+
// iOS 8+
|
53
|
+
-webkit-border-radius: 0
|
46
54
|
|
47
55
|
&[type="button"],
|
48
56
|
&[type="reset"],
|
49
57
|
&[type="submit"]
|
50
|
-
|
58
|
+
// iOS 8+
|
59
|
+
-webkit-appearance: button
|
51
60
|
|
52
61
|
&[type="number"]
|
53
|
-
|
62
|
+
// Firefox 36+
|
63
|
+
width: auto
|
54
64
|
|
55
65
|
&[type="search"]
|
56
|
-
|
66
|
+
// Chrome 45+, Safari 9+
|
67
|
+
-webkit-appearance: textfield
|
57
68
|
|
58
69
|
&::-webkit-search-cancel-button,
|
59
70
|
&::-webkit-search-decoration
|
60
|
-
|
71
|
+
// Chrome 45+, Safari 9+
|
72
|
+
-webkit-appearance: none
|
61
73
|
|
62
74
|
main
|
63
|
-
|
75
|
+
// Android 4.3-, Internet Explorer 11-, Windows Phone 8.1+
|
76
|
+
display: block
|
64
77
|
|
65
78
|
pre
|
66
|
-
|
79
|
+
// Internet Explorer 11-
|
80
|
+
overflow: auto
|
67
81
|
|
68
82
|
progress
|
69
|
-
|
83
|
+
// Internet Explorer 11-, Windows Phone 8.1+
|
84
|
+
display: inline-block
|
70
85
|
|
71
86
|
summary
|
72
|
-
|
87
|
+
// Firefox 40+, Internet Explorer 11-, Windows Phone 8.1+
|
88
|
+
display: block
|
73
89
|
|
74
90
|
svg:not(:root)
|
75
|
-
|
91
|
+
// Internet Explorer 11-
|
92
|
+
overflow: hidden
|
76
93
|
|
77
94
|
template
|
78
|
-
|
95
|
+
// Android 4.3-, Internet Explorer 11-, iOS 7-, Safari 7-, Windows Phone 8.1+
|
96
|
+
display: none
|
79
97
|
|
80
98
|
textarea
|
81
|
-
|
99
|
+
// Edge 12+, Internet Explorer 11-
|
100
|
+
overflow: auto
|
82
101
|
|
83
102
|
[hidden]
|
84
|
-
|
103
|
+
// Internet Explorer 10-
|
104
|
+
display: none
|
85
105
|
|
86
|
-
|
87
|
-
* Universal inheritance
|
88
|
-
*/
|
106
|
+
// Universal inheritance
|
89
107
|
|
90
108
|
*,
|
91
109
|
::before,
|
@@ -111,9 +129,7 @@ textarea
|
|
111
129
|
|
112
130
|
|
113
131
|
|
114
|
-
|
115
|
-
* Opinionated defaults
|
116
|
-
*/
|
132
|
+
// Opinionated defaults
|
117
133
|
|
118
134
|
// specify the margin and padding of all elements
|
119
135
|
|
@@ -144,14 +160,16 @@ textarea,
|
|
144
160
|
// specify the standard appearance of selects
|
145
161
|
|
146
162
|
select
|
147
|
-
|
148
|
-
-
|
149
|
-
|
163
|
+
// Firefox 40+
|
164
|
+
-moz-appearance: none
|
165
|
+
// Chrome 45+
|
166
|
+
-webkit-appearance: none
|
150
167
|
&::-ms-expand
|
151
|
-
|
152
|
-
|
168
|
+
// Edge 12+, Internet Explorer 11-
|
169
|
+
display: none
|
153
170
|
&::-ms-value
|
154
|
-
|
171
|
+
// Edge 12+, Internet Explorer 11-
|
172
|
+
color: currentColor
|
155
173
|
|
156
174
|
// use current current as the default fill of svg elements
|
157
175
|
|
@@ -183,25 +201,22 @@ svg
|
|
183
201
|
&:focus
|
184
202
|
clip: auto
|
185
203
|
|
186
|
-
|
187
|
-
* Configurable defaults
|
188
|
-
*/
|
204
|
+
// Configurable defaults
|
189
205
|
|
190
206
|
// specify the core styles of all elements
|
191
207
|
|
192
208
|
*
|
193
|
-
background-repeat:
|
209
|
+
background-repeat: $background-repeat
|
194
210
|
|
195
211
|
// specify the root styles of the document
|
196
212
|
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
font: if(variable-exists(root-font-size), $root-font-size, 100%)#{$slash}if(variable-exists(root-line-height), $root-line-height, 1.5) if(variable-exists(root-font-family), $root-font-family, sans-serif)
|
213
|
+
html
|
214
|
+
background-color: $root-background-color
|
215
|
+
box-sizing: $root-box-sizing
|
216
|
+
color: $root-color
|
217
|
+
font-family: $root-font-family
|
218
|
+
line-height: $root-line-height
|
219
|
+
font-size: $root-font-size
|
205
220
|
|
206
221
|
// specify the text decoration of anchors
|
207
222
|
|
@@ -216,7 +231,7 @@ iframe,
|
|
216
231
|
img,
|
217
232
|
svg,
|
218
233
|
video
|
219
|
-
vertical-align:
|
234
|
+
vertical-align: $media-element-vertical-align
|
220
235
|
|
221
236
|
// specify the background color of form elements
|
222
237
|
|
@@ -224,8 +239,8 @@ button,
|
|
224
239
|
input,
|
225
240
|
select,
|
226
241
|
textarea
|
227
|
-
background-color:
|
228
|
-
color:
|
242
|
+
background-color: $form-element-background-color
|
243
|
+
color: $form-element-color
|
229
244
|
|
230
245
|
// specify the minimum height of form elements
|
231
246
|
|
@@ -248,7 +263,7 @@ button,
|
|
248
263
|
[type="week"],
|
249
264
|
select,
|
250
265
|
textarea
|
251
|
-
min-height:
|
266
|
+
min-height: $form-element-min-height
|
252
267
|
|
253
268
|
// specify the font family of code elements
|
254
269
|
|
@@ -256,33 +271,33 @@ code,
|
|
256
271
|
kbd,
|
257
272
|
pre,
|
258
273
|
samp
|
259
|
-
font-family:
|
274
|
+
font-family: $monospace-font-family, monospace
|
260
275
|
|
261
276
|
// specify the list style of nav lists
|
262
277
|
|
263
278
|
nav ol,
|
264
279
|
nav ul
|
265
|
-
list-style:
|
280
|
+
list-style: $nav-list-style
|
266
281
|
|
267
282
|
// specify the border styling of tables
|
268
283
|
|
269
284
|
table
|
270
|
-
border-collapse:
|
271
|
-
border-spacing:
|
285
|
+
border-collapse: $table-border-collapse
|
286
|
+
border-spacing: $table-border-spacing
|
272
287
|
|
273
288
|
// specify the resizability of textareas
|
274
289
|
|
275
290
|
textarea
|
276
|
-
resize:
|
291
|
+
resize: $textarea-resize
|
277
292
|
|
278
293
|
// specify the background color, font color, and drop shadow of text selections
|
279
294
|
|
280
295
|
::-moz-selection
|
281
|
-
background-color:
|
282
|
-
color:
|
283
|
-
text-shadow:
|
296
|
+
background-color: $selection-background-color
|
297
|
+
color: $selection-color
|
298
|
+
text-shadow: $selection-text-shadow
|
284
299
|
|
285
300
|
::selection
|
286
|
-
background-color:
|
287
|
-
color:
|
288
|
-
text-shadow:
|
301
|
+
background-color: $selection-background-color
|
302
|
+
color: $selection-color
|
303
|
+
text-shadow: $selection-text-shadow
|
@@ -40,7 +40,7 @@ $grid-gutter-width: 2rem !default
|
|
40
40
|
// font
|
41
41
|
////////////////
|
42
42
|
|
43
|
-
$basic-sans-serif: "
|
43
|
+
$basic-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif !default
|
44
44
|
$basic-bold-sans-serif: "ヒラギノ角ゴ StdN", "Hiragino Kaku Gothic StdN", "メイリオ", Meiryo, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "MS Pゴシック", Helvetica, Arial, Verdana, sans-serif, "MS Pゴシック", Helvetica, Arial, Verdana, sans-serif !default
|
45
45
|
$basic-serif: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "HGS明朝E", "游明朝", YuMincho,'MS P明朝','MS PMincho', serif !default
|
46
46
|
$basic-mono: Osaka-mono, "MS Gothic", monospace !default
|
@@ -1,7 +1,6 @@
|
|
1
1
|
$root-background-color: #FFFFFF !default
|
2
2
|
$root-box-sizing: border-box !default
|
3
3
|
$root-color: $default-text !default
|
4
|
-
$root-cursor: default !default
|
5
4
|
$root-font-family: sans-serif !default
|
6
5
|
$root-font-size: if($base-px = 100px, 100%, $base-px) !default
|
7
6
|
$root-line-height: 1 !default
|
data/bower.json
CHANGED
data/lib/oulu/version.rb
CHANGED
data/package.json
CHANGED