middleman-oulu 0.7.7 → 0.8.0

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,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b49953e672b7176c8efe90c02e45bb85bc98f166
4
- data.tar.gz: eb7d573538a3c6c7ee91360565dab62c18aec226
3
+ metadata.gz: 8461f9be8ec795e23255e16db0088f81ab96223b
4
+ data.tar.gz: 097fae497e8600c1ee6563f0b69d4bc5b79517ea
5
5
  SHA512:
6
- metadata.gz: ef0a3664acdf4124ee40f32061af2bf69c65bcfae191474764fc84f0096aa7f836b75cca0b8e60ca48fc91137fa0732a9b28351b06fc79c395fc2b523246e83c
7
- data.tar.gz: 565f4829b749ce59e17dd674195862348aa208415e02b3e0e5617fe2372cfbb6709d998537a9d8e7f659c8cfb6bfd978410ca5495dedd9d97b56b1c45ef86c81
6
+ metadata.gz: 1cac10c346b90fe7755976a974ca311d9ed8a8fb9eea6b98e57d45e18c71822342cdbfdb95c804068efece8bbe6a3cb5f4b2a40d85572aa5060c69ca310fa836
7
+ data.tar.gz: 6db4901efe072404695acf3366223341bef8e3f327381a3b02f071ee8680b11f2d0fab8088b6ad20b3d818965825cb193b9e7ccd35a2eb5f957e35e507ed5d12
@@ -30,7 +30,6 @@
30
30
  @import settings/functions/border
31
31
  @import settings/functions/animation
32
32
  @import settings/functions/display
33
- //@import settings/functions/grid
34
33
 
35
34
  // mixins
36
35
  ///////////////////
@@ -61,4 +60,5 @@
61
60
  // initializers
62
61
  ///////////////////
63
62
 
63
+ @import settings/initializers/sanitize
64
64
  @import settings/initializers/reset
@@ -1,41 +1,3 @@
1
- // http://meyerweb.com/eric/tools/css/reset/
2
- // v2.0 | 20110126
3
- // License: none (public domain)
4
-
5
- =meyer-reset
6
- html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video
7
- margin: 0
8
- padding: 0
9
- border: 0
10
- font-size: 100%
11
- font: inherit
12
- vertical-align: baseline
13
- // HTML5 display-role reset for older browsers
14
- article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section
15
- display: block
16
- body
17
- line-height: 1
18
- *
19
- box-sizing: border-box
20
- ol, ul
21
- list-style: none
22
- blockquote, q
23
- quotes: none
24
- blockquote
25
- &:before, &:after
26
- content: ""
27
- content: none
28
- q
29
- &:before, &:after
30
- content: ""
31
- content: none
32
- table
33
- border-collapse: collapse
34
- border-spacing: 0
35
- +meyer-reset
36
-
37
- // 以下、追加設定
38
-
39
1
  html
40
2
  font-size: 62.5%
41
3
  +basic-font
@@ -0,0 +1,262 @@
1
+ /*! sanitize.css v3.0.0 | CC0 1.0 Public Domain | github.com/10up/sanitize.css
2
+
3
+ $root-background-color: #FFFFFF !default
4
+ $root-box-sizing: border-box !default
5
+ $root-color: #000000 !default
6
+ $root-cursor: default !default
7
+ $root-font-family: sans-serif !default
8
+ $root-font-size: 100% !default
9
+ $root-line-height: 1.5 !default
10
+ $root-text-rendering: optimizeLegibility !default
11
+
12
+ $anchor-text-decoration: none !default
13
+ $background-repeat: no-repeat !default
14
+ $form-element-background-color: transparent !default
15
+ $form-element-min-height: if(unitless($root-line-height), #{$root-line-height}em, if(unit($root-line-height) != "%", $root-line-height, null)) !default
16
+ $media-element-vertical-align: middle !default
17
+ $monospace-font-family: monospace !default
18
+ $nav-list-style: none !default
19
+ $selection-background-color: #B3D4FC !default
20
+ $selection-color: #ffffff !default
21
+ $selection-text-shadow: none !default
22
+ $small-font-size: 75% !default
23
+ $table-border-collapse: collapse !default
24
+ $table-border-spacing: 0 !default
25
+ $textarea-resize: vertical !default
26
+
27
+ /*
28
+ * Normalization
29
+
30
+ audio:not([controls])
31
+ display: none // Chrome 44-, iOS 8+, Safari 9+
32
+
33
+ button
34
+ overflow: visible // Internet Explorer 11-
35
+ -webkit-appearance: button // iOS 8+
36
+
37
+ details
38
+ display: block // Edge 12+, Firefox 40+, Internet Explorer 11-, Windows Phone 8.1+
39
+
40
+ html
41
+ -ms-overflow-style: -ms-autohiding-scrollbar // Edge 12+, Internet Explorer 11-
42
+ overflow-y: scroll // All browsers without overlaying scrollbars
43
+ -webkit-text-size-adjust: 100% // iOS 8+
44
+
45
+ input
46
+ -webkit-border-radius: 0 // iOS 8+
47
+
48
+ &[type="button"], &[type="reset"], &[type="submit"]
49
+ -webkit-appearance: button // iOS 8+
50
+
51
+ &[type="number"]
52
+ width: auto // Firefox 36+
53
+
54
+ &[type="search"]
55
+ -webkit-appearance: textfield // Chrome 45+, Safari 9+
56
+
57
+ &::-webkit-search-cancel-button,
58
+ &::-webkit-search-decoration
59
+ -webkit-appearance: none // Chrome 45+, Safari 9+
60
+
61
+ main
62
+ display: block // Android 4.3-, Internet Explorer 11-, Windows Phone 8.1+
63
+
64
+ pre
65
+ overflow: auto // Internet Explorer 11-
66
+
67
+ progress
68
+ display: inline-block // Internet Explorer 11-, Windows Phone 8.1+
69
+
70
+ small
71
+ font-size: $small-font-size // All browsers
72
+
73
+ summary
74
+ display: block // Firefox 40+, Internet Explorer 11-, Windows Phone 8.1+
75
+
76
+ svg:not(:root)
77
+ overflow: hidden // Internet Explorer 11-
78
+
79
+ template
80
+ display: none // Android 4.3-, Internet Explorer 11-, iOS 7-, Safari 7-, Windows Phone 8.1+
81
+
82
+ textarea
83
+ overflow: auto // Edge 12+, Internet Explorer 11-
84
+
85
+ [hidden]
86
+ display: none // Internet Explorer 10-
87
+
88
+ /*
89
+ * Universal inheritance
90
+
91
+ *,
92
+ ::before,
93
+ ::after
94
+ box-sizing: inherit
95
+
96
+ *
97
+ font-size: inherit
98
+ line-height: inherit
99
+
100
+ ::before,
101
+ ::after
102
+ text-decoration: inherit
103
+ vertical-align: inherit
104
+
105
+ /*
106
+ * Opinionated defaults
107
+
108
+ // specify the border style and width of all elements
109
+
110
+ *,
111
+ ::before,
112
+ ::after
113
+ border-style: solid
114
+ border-width: 0
115
+
116
+ // specify the core styles of all elements
117
+
118
+ *
119
+ background-repeat: $background-repeat
120
+ margin: 0
121
+ padding: 0
122
+
123
+ // specify the root styles of the document
124
+
125
+ \:root
126
+ background-color: $root-background-color
127
+ box-sizing: $root-box-sizing
128
+ color: $root-color
129
+ cursor: $root-cursor
130
+ font: #{$root-font-size}/#{$root-line-height} $root-font-family
131
+ text-rendering: $root-text-rendering
132
+
133
+ // specify the text decoration of anchors
134
+
135
+ a
136
+ text-decoration: $anchor-text-decoration
137
+
138
+ // specify the alignment of media elements
139
+
140
+ audio,
141
+ canvas,
142
+ iframe,
143
+ img,
144
+ svg,
145
+ video
146
+ vertical-align: $media-element-vertical-align
147
+
148
+ // specify the background color of form elements
149
+
150
+ button,
151
+ input,
152
+ select,
153
+ textarea
154
+ background-color: $form-element-background-color
155
+
156
+ // specify the inherited color and font of form elements
157
+
158
+ button,
159
+ input,
160
+ select,
161
+ textarea
162
+ color: inherit
163
+ font-family: inherit
164
+ font-style: inherit
165
+ font-weight: inherit
166
+
167
+ // specify the minimum height of form elements
168
+
169
+ button,
170
+ [type="button"],
171
+ [type="date"],
172
+ [type="datetime"],
173
+ [type="datetime-local"],
174
+ [type="email"],
175
+ [type="month"],
176
+ [type="number"],
177
+ [type="password"],
178
+ [type="reset"],
179
+ [type="search"],
180
+ [type="submit"],
181
+ [type="tel"],
182
+ [type="text"],
183
+ [type="time"],
184
+ [type="url"],
185
+ [type="week"],
186
+ select,
187
+ textarea
188
+ min-height: $form-element-min-height
189
+
190
+ // specify the font family of code elements
191
+
192
+ code,
193
+ kbd,
194
+ pre,
195
+ samp
196
+ font-family: $monospace-font-family, monospace
197
+
198
+ // specify the list style of nav lists
199
+
200
+ nav ol,
201
+ nav ul
202
+ list-style: $nav-list-style
203
+
204
+ // specify the standard appearance of selects
205
+
206
+ select
207
+ -moz-appearance: none // Firefox 40+
208
+ -webkit-appearance: none // Chrome 45+
209
+
210
+ &::-ms-expand
211
+ display: none // Edge 12+, Internet Explorer 11-
212
+
213
+ &::-ms-value
214
+ color: currentColor // Edge 12+, Internet Explorer 11-
215
+
216
+ // specify the border styling of tables
217
+
218
+ table
219
+ border-collapse: $table-border-collapse
220
+ border-spacing: $table-border-spacing
221
+
222
+ // specify the resizability of textareas
223
+
224
+ textarea
225
+ resize: $textarea-resize
226
+
227
+ // specify the background color, font color and drop shadow of text selections
228
+
229
+ ::-moz-selection
230
+ background-color: $selection-background-color // required when declaring ::selection
231
+ color: $selection-color
232
+ text-shadow: $selection-text-shadow
233
+
234
+ ::selection
235
+ background-color: $selection-background-color // required when declaring ::selection
236
+ color: $selection-color
237
+ text-shadow: $selection-text-shadow
238
+
239
+ // specify the progress cursor of updating elements
240
+
241
+ [aria-busy="true"]
242
+ cursor: progress
243
+
244
+ // specify the pointer cursor of trigger elements
245
+
246
+ [aria-controls]
247
+ cursor: pointer
248
+
249
+ // specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements
250
+
251
+ [aria-disabled]
252
+ cursor: default
253
+
254
+ // specify the style of visually hidden yet accessible elements
255
+
256
+ [hidden][aria-hidden="false"]
257
+ clip: rect(0 0 0 0)
258
+ display: inherit
259
+ position: absolute
260
+
261
+ &:focus
262
+ clip: auto
@@ -1,5 +1,5 @@
1
1
  module Middleman
2
2
  module Oulu
3
- VERSION = "0.7.7"
3
+ VERSION = "0.8.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman-oulu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.7
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - machida
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-12-31 00:00:00.000000000 Z
11
+ date: 2016-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -129,7 +129,6 @@ files:
129
129
  - assets/stylesheets/settings/functions/_content.sass
130
130
  - assets/stylesheets/settings/functions/_cursor.sass
131
131
  - assets/stylesheets/settings/functions/_display.sass
132
- - assets/stylesheets/settings/functions/_grid.sass
133
132
  - assets/stylesheets/settings/functions/_image.sass
134
133
  - assets/stylesheets/settings/functions/_length.sass
135
134
  - assets/stylesheets/settings/functions/_list.sass
@@ -141,6 +140,7 @@ files:
141
140
  - assets/stylesheets/settings/functions/_string.sass
142
141
  - assets/stylesheets/settings/functions/_text.sass
143
142
  - assets/stylesheets/settings/initializers/_reset.sass
143
+ - assets/stylesheets/settings/initializers/_sanitize.sass
144
144
  - assets/stylesheets/settings/mixins/_animation.sass
145
145
  - assets/stylesheets/settings/mixins/_background.sass
146
146
  - assets/stylesheets/settings/mixins/_balloon-tail.sass
@@ -1,34 +0,0 @@
1
- @function gutter_width($value)
2
- @if $value == 0 or px($value)
3
- @return true
4
- @else
5
- @return null
6
-
7
- @function columns_count($value)
8
- @if unitless_number($value)
9
- @if $value > 0
10
- @return true
11
- @else
12
- @return null
13
- @else
14
- @return null
15
-
16
- @function break_point($value)
17
- @if string($value) and ($value == 'xs' or $value == 'sm' or $value == 'md' or $value == 'lg' or $value == 'xl')
18
- @return true
19
- @else if list($value) and (nth($value, 1) == 'xs' or nth($value, 1) == 'sm' or nth($value, 1) == 'md' or nth($value, 1) == 'lg' or nth($value, 1) == 'xl')
20
- @return true
21
- @else
22
- @return null
23
-
24
- @function row_class_name($value)
25
- @if string($value) and str-slice($value, 1, 1) == ('.')
26
- @return true
27
- @else
28
- @return null
29
-
30
- @function offsets($value)
31
- @if string($value) and $value == offsets
32
- @return true
33
- @else
34
- @return null