-
Notifications
You must be signed in to change notification settings - Fork 708
/
Copy pathOverview.bs
290 lines (228 loc) · 10.3 KB
/
Overview.bs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
<pre class='metadata'>
Title: CSS Scrollbars Module Level 1
Group: csswg
Shortname: css-scrollbars
Level: 1
Status: ED
Work Status: Revising
ED: https://drafts.csswg.org/css-scrollbars/
Repository: https://github.com/w3c/csswg-drafts/tree/master/css-scrollbars-1 css-scrollbars
Editor: Tantek Çelik, Mozilla https://www.mozilla.org/, http://tantek.com/contact, w3cid 1464
Editor: Rossen Atanassov, Microsoft, ratan@microsoft.com, w3cid 49885
Abstract: CSS Scrollbars standardizes the ability to color scrollbars introduced in 2000 by Windows IE 5.5.
This is useful when building web applications which use color schemes very different from
the appearance of default platform scrollbars.
Link Defaults: css-color-3 (property) color
</pre>
<h2 id="intro">
Introduction</h2>
Note: this specification is
<a href="https://github.com/w3c/csswg-drafts/tree/master/css-scrollbars-1">
maintained in the W3C csswg-drafts GitHub repository as css-scrollbars-1
</a>.
<h3 id="scope">
Scope</h3>
<em>This subsection is non-normative.</em>
Based on
<a href="https://www.w3.org/wiki/Css-scrollbars#Use-cases">documented use-cases</a>,
there are three main use-cases around scrollbars this module intends to resolve:
<ol>
<li>Color scrollbars to fit better into the UI of a web application.
<li>Use thinner scrollbar when the scrolling area is small.
<li>Build customized scrollbars without affecting scrollability.
</ol>
For addressing these use-cases, this module adds properties to control colors and
width of scrollbars (if any) of an element.
Pseudo-elements for selecting specific parts of a scrollbar is out of scope.
The WebKit implementation of pseudo-elements for scrollbar is
considered to be a feature mistakenly exposed to the web.
Main concerns against the pseudo-elements approach are:
<ul>
<li>Operating systems continuously evolve their scrollbar designs to provide better user experience,
beyond the ability of any set of pseudo-elements to accurately model this over time.
<li>Different platforms have different scrollbar structure means testing interop is harder,
because authors would need to take not only engine but also platforms into account.
</ul>
<h3 id="values">
Values</h3>
This specification follows the
<a href="https://www.w3.org/TR/CSS21/about.html#property-defs">CSS property definition conventions</a> from [[!CSS2]].
Value types not defined in this specification are defined in CSS Values & Units [[!CSS-VALUES-3]].
Other CSS modules may expand the definitions of these value types.
In addition to the property-specific values listed in their definitions,
all properties defined in this specification
also accept the <a>CSS-wide keywords</a> keywords as their property value.
For readability they have not been repeated explicitly.
<h2 id="scrollbar-color">Scrollbar Colors: the 'scrollbar-color' property</h2>
<pre class="propdef">
Name: scrollbar-color
Value: auto | dark | light | <<color>>{2}
Initial: auto
Inherited: yes
Computed value: specified keyword or two computed colors
Animation type: by computed value
Applies to: boxes to which 'overflow' applies
Percentages: n/a
</pre>
This property allows the author to set colors of an element's scrollbars.
UAs must apply the scrollbar-color value set on the root element to the viewport.
Note: Unlike 'overflow' (and overflow-*) properties,
scrollbar-color value set on the HTML body element are not propagated to the viewport.
<dl dfn-type="value" dfn-for="scrollbar-color">
<dt><dfn>auto</dfn></dt>
<dd>default platform rendering for the scrollbar.</dd>
<dt><dfn>dark</dfn></dt>
<dd>
show a dark scrollbar,
which can be either a dark variant of scrollbar provided by the platform,
or a custom scrollbar with dark colors.
</dd>
<dt><dfn>light</dfn></dt>
<dd>
show a light scrollbar,
which can be either a light variant of scrollbar provided by the platform,
or a custom scrollbar with light colors.
</dd>
<dt><dfn><<color>></dfn></dt>
<dd>
apply the first color to the thumb of the scrollbar,
and the second color to the track of the scrollbar.
</dd>
</dl>
Details:
Track refers to the background of the scrollbar,
which is generally fixed regardless of the scrolling position.
Thumb refers to the moving part of the scrollbar,
which usually floats on top of the track.
If this property computes to value other than ''auto'',
implementations may render a simpler scrollbar than the default platform UI rendering,
and color it accordingly.
(Note: add diagram showing the different named pieces - something like
<a href="http://www.howtocreate.co.uk/tutorials/scrlbar.html">http://www.howtocreate.co.uk/tutorials/scrlbar.html</a>)
(Note: add example of an overflow element with colorized scrollbars to match page styling,
PNG of the same in a browser that supports it currently)
Implementations may ignore any of the colors
if the corresponding part do not exist on the underlying platform.
When using scrollbar-color property with specific color values,
authors should ensure the specified colors have enough contrast between them.
For keyword values, UAs should ensure the colors they use have enough contrast.
See <a href="https://www.w3.org/TR/WCAG20-TECHS/G183.html">
Techniques for WCAG 2.0: G183: Using a contrast ratio of 3:1 […]</a> [[WCAG20]].
Note: when a user interacts with a scrollbar (e.g. hovering or activating),
implementations may alter which scrollbar colors apply to which scrollbar parts.
Note: IE uses named System Colors as defaults for each of the scrollbar color properties.
See related <a href="https://github.com/w3c/csswg-drafts/issues/1956">Issue 1956</a>.
<div class="example">
<p>The following example
(derived from
<a href="https://www.w3.org/Style/Examples/007/scrollbars.en.html">https://www.w3.org/Style/Examples/007/scrollbars.en.html</a>)
resets scrollbar colors in IE.</p>
<pre><code class="css">
<!-- -->html {
<!-- --> scrollbar-color: ThreeDFace Scrollbar;
<!-- -->}</code></pre>
</div>
<h2 id="scrollbar-width">Scrollbar Thickness: the 'scrollbar-width' property</h2>
<pre class="propdef">
Name: scrollbar-width
Value: auto | thin | none
Initial: auto
Inherited: no
Computed value: specified keyword or absolute length
Animation type: by computed value
Applies to: boxes to which 'overflow' applies
Percentages: n/a
</pre>
This property allows the author to set the maximum thickness of an element’s scrollbars when they are shown.
<dl dfn-type="value" dfn-for=scrollbar-width>
<dt><dfn>auto</dfn></dt>
<dd>implementations must use the default platform scrollbar width.
</dd>
<dt><dfn>thin</dfn></dt>
<dd>Implementations should use thinner scrollbars than auto when applicable.
This may mean a thin variant of scrollbar provided by the platform,
or a custom scrollbar thinner than the default platform scrollbar.
Note: Some platforms may only have a tiny scrollbar by default
which cannot be or makes no sense to make thinner.
In that case, implementations may treat this value as auto.
</dd>
<dt><dfn>none</dfn></dt>
<dd>implementations must not display any scrollbar, however the element's scrollability is not affected.
</dd>
</dl>
UAs must apply the scrollbar-width value set on the root element to the viewport.
Note: Unlike 'overflow' (and overflow-*) properties,
a scrollbar-width value set on the HTML body element is not propagated to the viewport.
Note: This specification does not define the exact position or shape of the scrollbar,
or any animation thereof, such as fading or sliding in/out of view.
<h2 class="no-num" id="acknowledgments">Appendix A. Acknowledgments</h2>
This appendix is <em>informative</em>.
<p>
Thanks to the use-cases, prototyping, implementation, and feedback from
<span class="h-card">Tab Atkins</span> and
<span class="h-card">Xidorn Quan</span>.
</p>
<h2 class="no-num" id="changes">Appendix B. Changes</h2>
This appendix is <em>informative</em>.
This is the First Public Working Draft, no previous draft to describe changes from.
<!-- This appendix describes changes from the
<a href="https://www.w3.org/TR/2018/WD-scrollbars-1-2018MMDD/">First Public Working Draft (FPWD) of DD Month 2018</a>.-->
<h2 class="no-num" id="security-privacy-considerations">Appendix C. Considerations for Security and Privacy</h2>
This appendix is <em>informative</em>.
Per the <a href="https://www.w3.org/TR/security-privacy-questionnaire/#questions">
Self-Review Questionnaire: Security and Privacy: Questions to Consider</a>
<ol>
<li>Does this specification deal with personally-identifiable information?
<p>No.</p>
</li>
<li>Does this specification deal with high-value data?
<p>No.</p>
</li>
<li>Does this specification introduce new state for an origin that persists across browsing sessions?
<p>No.</p>
</li>
<li>Does this specification expose persistent, cross-origin state to the web?
<p>No.</p>
</li>
<li>Does this specification expose any other data to an origin that it doesn’t currently have access to?
<p>No.</p>
</li>
<li>Does this specification enable new script execution/loading mechanisms?
<p>No.</p>
</li>
<li>Does this specification allow an origin access to a user’s location?
<p>No.</p>
</li>
<li>Does this specification allow an origin access to sensors on a user’s device?
<p>No.</p>
</li>
<li>Does this specification allow an origin access to aspects of a user’s local computing environment?
<p>No.</p>
</li>
<li>Does this specification allow an origin access to other devices?
<p>No.</p>
</li>
<li>Does this specification allow an origin some measure of control over a user agent’s native UI?
<p>Yes. The 'scrollbar-*' properties enable the page to change the color and width of the scrollbar
of the user agent’s native UI, e.g. scrollbars on the page’s window, on framed content embedded in the page,
or on overflowing elements with scrollbars in the page.</p>
</li>
<li>Does this specification expose temporary identifiers to the web?
<p>No.</p>
</li>
<li>Does this specification distinguish between behavior in first-party and third-party contexts?
<p>No.</p>
</li>
<li>How should this specification work in the context of a user agent’s "incognito" mode?
<p>No differently.</p>
</li>
<li>Does this specification persist data to a user’s local device?
<p>No.</p>
</li>
<li>Does this specification have a "Security Considerations" and "Privacy Considerations" section?
<p>Yes.</p>
</li>
<li>Does this specification allow downgrading default security characteristics?
<p>No.</p>
</li>
</ol>