|
0
|
1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
|
|
2 |
<html xmlns:yui="http://yuilibrary.com/rdf/1.0/yui.rdf#"> |
|
|
3 |
<head> |
|
|
4 |
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> |
|
|
5 |
<title>API: stylesheet StyleSheet (YUI Library)</title> |
|
|
6 |
|
|
|
7 |
<link rel="stylesheet" type="text/css" href="assets/reset-fonts-grids-min.css" /> |
|
|
8 |
<link rel="stylesheet" type="text/css" href="assets/api.css" /> |
|
|
9 |
|
|
|
10 |
<script type="text/javascript" src="assets/api-js"></script> |
|
|
11 |
<script type="text/javascript" src="assets/ac-js"></script> |
|
|
12 |
</head> |
|
|
13 |
|
|
|
14 |
<body id="yahoo-com"> |
|
|
15 |
|
|
|
16 |
<div id="doc3" class="yui-t2"> |
|
|
17 |
<div id="hd"> |
|
|
18 |
<h1><a href="http://developer.yahoo.com/yui/" title="Yahoo! UI Library">Yahoo! UI Library</a></h1> |
|
|
19 |
<h3>stylesheet <span class="subtitle">3.0.0</span></h3> |
|
|
20 |
<a href="./index.html" title="Yahoo! UI Library">Yahoo! UI Library</a> |
|
|
21 |
> <a href="./module_stylesheet.html" title="stylesheet">stylesheet</a> |
|
|
22 |
> StyleSheet |
|
|
23 |
|
|
|
24 |
<form onsubmit="return false"> |
|
|
25 |
<div id="propertysearch"> |
|
|
26 |
Search: <input autocomplete="off" id="searchinput" /> |
|
|
27 |
<div id="searchresults"> |
|
|
28 |
|
|
|
29 |
</div> |
|
|
30 |
</div> |
|
|
31 |
</form> |
|
|
32 |
</div> |
|
|
33 |
|
|
|
34 |
<div id="bd"> |
|
|
35 |
<div id="yui-main"> |
|
|
36 |
<div class="yui-b"> |
|
|
37 |
<form action="#" name="yui-classopts-form" method="get" id="yui-classopts-form"> |
|
|
38 |
<fieldset> |
|
|
39 |
<legend>Filters</legend> |
|
|
40 |
<span class="classopts"><input type="checkbox" name="show_private" id="show_private" /> <label for="show_private">Show Private</label></span> |
|
|
41 |
<span class="classopts"><input type="checkbox" name="show_protected" id="show_protected" /> <label for="show_protected">Show Protected</label></span> |
|
|
42 |
<span class="classopts"><input type="checkbox" name="show_deprecated" id="show_deprecated" /> <label for="show_deprecated">Show Deprecated</label></span> |
|
|
43 |
</fieldset> |
|
|
44 |
</form> |
|
|
45 |
|
|
|
46 |
<h2> |
|
|
47 |
|
|
|
48 |
|
|
|
49 |
|
|
|
50 |
|
|
|
51 |
Class <b property="yui:name">StyleSheet</b> |
|
|
52 |
<span class="extends"> |
|
|
53 |
</span> |
|
|
54 |
|
|
|
55 |
</h2> |
|
|
56 |
<!-- class tree goes here --> |
|
|
57 |
|
|
|
58 |
|
|
|
59 |
|
|
|
60 |
|
|
|
61 |
<div class="summary description" property="yui:description"> |
|
|
62 |
Create an instance of StyleSheet to encapsulate a css stylesheet. |
|
|
63 |
The constructor can be called using function or constructor syntax. |
|
|
64 |
<pre><code>var sheet = Y.StyleSheet(..);</pre></code> |
|
|
65 |
or |
|
|
66 |
<pre><code>var sheet = new Y.StyleSheet(..);</pre></code> |
|
|
67 |
The first parameter passed can be any of the following things: |
|
|
68 |
<ul> |
|
|
69 |
<li>The desired string name to register a new empty sheet</li> |
|
|
70 |
<li>The string name of an existing StyleSheet instance</li> |
|
|
71 |
<li>The unique guid generated for an existing StyleSheet instance</li> |
|
|
72 |
<li>The id of an existing <code><link></code> or <code><style></code> node</li> |
|
|
73 |
<li>The node reference for an existing <code><link></code> or <code><style></code> node</li> |
|
|
74 |
<li>The Y.Node instance wrapping an existing <code><link></code> or <code><style></code> node</li> |
|
|
75 |
<li>A chunk of css text to create a new stylesheet from</li> |
|
|
76 |
</ul> |
|
|
77 |
<p>If a string is passed, StyleSheet will first look in its static name |
|
|
78 |
registry for an existing sheet, then in the DOM for an element with that id. |
|
|
79 |
If neither are found and the string contains the { character, it will be |
|
|
80 |
used as a the initial cssText for a new StyleSheet. Otherwise, a new empty |
|
|
81 |
StyleSheet is created, assigned the string value as a name, and registered |
|
|
82 |
statically by that name.</p> |
|
|
83 |
<p>The optional second parameter is a string name to register the sheet as. |
|
|
84 |
This param is largely useful when providing a node id/ref or chunk of css |
|
|
85 |
text to create a populated instance.</p> |
|
|
86 |
</div> |
|
|
87 |
|
|
|
88 |
<div class="section constructor details" rel="yui:constructor" resource="#constructor"> |
|
|
89 |
<h3 id="constructor">Constructor</h3> |
|
|
90 |
<div class="content"> |
|
|
91 |
<div class="detail"> |
|
|
92 |
<strong property="yui:name">StyleSheet</strong> |
|
|
93 |
<code> |
|
|
94 |
( |
|
|
95 |
|
|
|
96 |
|
|
|
97 |
|
|
|
98 |
seed |
|
|
99 |
|
|
|
100 |
, |
|
|
101 |
name |
|
|
102 |
) |
|
|
103 |
</code> |
|
|
104 |
<div class="description"> |
|
|
105 |
<dl rel="yui:parameters"> |
|
|
106 |
<dt>Parameters:</dt> |
|
|
107 |
<dd rel="yui:parameter"> |
|
|
108 |
<code><span property="yui:name">seed</span> |
|
|
109 |
<<span property="yui:type">String|HTMLElement|Node</span>> |
|
|
110 |
</code> |
|
|
111 |
<span property="yui:description"> a style or link node, its id, or a |
|
|
112 |
name or guid of a StyleSheet, or a string of css text</span> |
|
|
113 |
</dd> |
|
|
114 |
<dd rel="yui:parameter"> |
|
|
115 |
<code><span property="yui:name">name</span> |
|
|
116 |
<<span property="yui:type">String</span>> |
|
|
117 |
</code> |
|
|
118 |
<span property="yui:description"> (optional) name to register instance for future static |
|
|
119 |
access</span> |
|
|
120 |
</dd> |
|
|
121 |
</dl> |
|
|
122 |
|
|
|
123 |
|
|
|
124 |
</div> |
|
|
125 |
</div> |
|
|
126 |
</div> |
|
|
127 |
</div> |
|
|
128 |
|
|
|
129 |
<div rel="yui:properties" resource="#properties"> |
|
|
130 |
|
|
|
131 |
</div> |
|
|
132 |
|
|
|
133 |
<div rel="yui:methods" resource="#methods"> |
|
|
134 |
<div class="section method details"> |
|
|
135 |
<h3 id="methods">Methods</h3> |
|
|
136 |
<div class="content"> |
|
|
137 |
<div class="" rel="yui:method" resource="#method_disable"> |
|
|
138 |
<h4> |
|
|
139 |
<a name="method_disable">disable</a></h4> |
|
|
140 |
<div class="detail" > |
|
|
141 |
<code> |
|
|
142 |
|
|
|
143 |
|
|
|
144 |
|
|
|
145 |
StyleSheet |
|
|
146 |
<strong property="yui:name">disable</strong> |
|
|
147 |
( |
|
|
148 |
) |
|
|
149 |
</code> |
|
|
150 |
|
|
|
151 |
<div class="description" property="yui:description"> |
|
|
152 |
Disable all the rules in the sheet. Rules may be changed while the |
|
|
153 |
StyleSheet is disabled. |
|
|
154 |
</div> |
|
|
155 |
|
|
|
156 |
<div class="description"> |
|
|
157 |
|
|
|
158 |
|
|
|
159 |
|
|
|
160 |
<div class="chainable"> |
|
|
161 |
<strong>Chainable:</strong> This method is chainable. |
|
|
162 |
</div> |
|
|
163 |
|
|
|
164 |
|
|
|
165 |
|
|
|
166 |
</div> |
|
|
167 |
|
|
|
168 |
</div> |
|
|
169 |
<hr /> |
|
|
170 |
</div> |
|
|
171 |
<div class="" rel="yui:method" resource="#method_enable"> |
|
|
172 |
<h4> |
|
|
173 |
<a name="method_enable">enable</a></h4> |
|
|
174 |
<div class="detail" > |
|
|
175 |
<code> |
|
|
176 |
|
|
|
177 |
|
|
|
178 |
|
|
|
179 |
StyleSheet |
|
|
180 |
<strong property="yui:name">enable</strong> |
|
|
181 |
( |
|
|
182 |
) |
|
|
183 |
</code> |
|
|
184 |
|
|
|
185 |
<div class="description" property="yui:description"> |
|
|
186 |
Enable all the rules in the sheet |
|
|
187 |
</div> |
|
|
188 |
|
|
|
189 |
<div class="description"> |
|
|
190 |
|
|
|
191 |
|
|
|
192 |
|
|
|
193 |
<div class="chainable"> |
|
|
194 |
<strong>Chainable:</strong> This method is chainable. |
|
|
195 |
</div> |
|
|
196 |
|
|
|
197 |
|
|
|
198 |
|
|
|
199 |
</div> |
|
|
200 |
|
|
|
201 |
</div> |
|
|
202 |
<hr /> |
|
|
203 |
</div> |
|
|
204 |
<div class="" rel="yui:method" resource="#method_getCssText"> |
|
|
205 |
<h4> |
|
|
206 |
<a name="method_getCssText">getCssText</a></h4> |
|
|
207 |
<div class="detail" > |
|
|
208 |
<code> |
|
|
209 |
|
|
|
210 |
|
|
|
211 |
|
|
|
212 |
String |
|
|
213 |
<strong property="yui:name">getCssText</strong> |
|
|
214 |
( |
|
|
215 |
|
|
|
216 |
|
|
|
217 |
sel |
|
|
218 |
|
|
|
219 |
|
|
|
220 |
) |
|
|
221 |
</code> |
|
|
222 |
|
|
|
223 |
<div class="description" property="yui:description"> |
|
|
224 |
Get the current cssText for a rule or the entire sheet. If the |
|
|
225 |
selector param is supplied, only the cssText for that rule will be |
|
|
226 |
returned, if found. If the selector string targets multiple |
|
|
227 |
selectors separated by commas, the cssText of the first rule only |
|
|
228 |
will be returned. If no selector string, the stylesheet's full |
|
|
229 |
cssText will be returned. |
|
|
230 |
</div> |
|
|
231 |
|
|
|
232 |
<div class="description"> |
|
|
233 |
|
|
|
234 |
<dl rel="yui:parameters"> |
|
|
235 |
<dt>Parameters:</dt> |
|
|
236 |
<dd rel="yui:parameter"> |
|
|
237 |
<code><span property="yui:name">sel</span> |
|
|
238 |
<<span property="yui:type">String</span>> |
|
|
239 |
</code> |
|
|
240 |
<span property="yui:description"> Selector string</span> |
|
|
241 |
</dd> |
|
|
242 |
</dl> |
|
|
243 |
|
|
|
244 |
|
|
|
245 |
|
|
|
246 |
|
|
|
247 |
|
|
|
248 |
</div> |
|
|
249 |
|
|
|
250 |
</div> |
|
|
251 |
<hr /> |
|
|
252 |
</div> |
|
|
253 |
<div class="" rel="yui:method" resource="#method_getId"> |
|
|
254 |
<h4> |
|
|
255 |
<a name="method_getId">getId</a></h4> |
|
|
256 |
<div class="detail" > |
|
|
257 |
<code> |
|
|
258 |
|
|
|
259 |
|
|
|
260 |
|
|
|
261 |
Number |
|
|
262 |
<strong property="yui:name">getId</strong> |
|
|
263 |
( |
|
|
264 |
) |
|
|
265 |
</code> |
|
|
266 |
|
|
|
267 |
<div class="description" property="yui:description"> |
|
|
268 |
Get the unique stamp for this StyleSheet instance |
|
|
269 |
</div> |
|
|
270 |
|
|
|
271 |
<div class="description"> |
|
|
272 |
|
|
|
273 |
|
|
|
274 |
<dl> |
|
|
275 |
<dt>Returns: |
|
|
276 |
<code property="yui:return"> |
|
|
277 |
Number |
|
|
278 |
</code></dt> |
|
|
279 |
<dd property="yui:returnInfo">the static id</dd> |
|
|
280 |
</dl> |
|
|
281 |
|
|
|
282 |
|
|
|
283 |
|
|
|
284 |
|
|
|
285 |
</div> |
|
|
286 |
|
|
|
287 |
</div> |
|
|
288 |
<hr /> |
|
|
289 |
</div> |
|
|
290 |
<div class="" rel="yui:method" resource="#method_isEnabled"> |
|
|
291 |
<h4> |
|
|
292 |
<a name="method_isEnabled">isEnabled</a></h4> |
|
|
293 |
<div class="detail" > |
|
|
294 |
<code> |
|
|
295 |
|
|
|
296 |
|
|
|
297 |
|
|
|
298 |
Boolean |
|
|
299 |
<strong property="yui:name">isEnabled</strong> |
|
|
300 |
( |
|
|
301 |
) |
|
|
302 |
</code> |
|
|
303 |
|
|
|
304 |
<div class="description" property="yui:description"> |
|
|
305 |
Returns false if the StyleSheet is disabled. Otherwise true. |
|
|
306 |
</div> |
|
|
307 |
|
|
|
308 |
<div class="description"> |
|
|
309 |
|
|
|
310 |
|
|
|
311 |
|
|
|
312 |
|
|
|
313 |
|
|
|
314 |
|
|
|
315 |
</div> |
|
|
316 |
|
|
|
317 |
</div> |
|
|
318 |
<hr /> |
|
|
319 |
</div> |
|
|
320 |
<div class="" rel="yui:method" resource="#method_set"> |
|
|
321 |
<h4> |
|
|
322 |
<a name="method_set">set</a></h4> |
|
|
323 |
<div class="detail" > |
|
|
324 |
<code> |
|
|
325 |
|
|
|
326 |
|
|
|
327 |
|
|
|
328 |
StyleSheet |
|
|
329 |
<strong property="yui:name">set</strong> |
|
|
330 |
( |
|
|
331 |
|
|
|
332 |
|
|
|
333 |
sel |
|
|
334 |
|
|
|
335 |
|
|
|
336 |
, |
|
|
337 |
css |
|
|
338 |
|
|
|
339 |
|
|
|
340 |
) |
|
|
341 |
</code> |
|
|
342 |
|
|
|
343 |
<div class="description" property="yui:description"> |
|
|
344 |
<p>Set style properties for a provided selector string. |
|
|
345 |
If the selector includes commas, it will be split into individual |
|
|
346 |
selectors and applied accordingly. If the selector string does not |
|
|
347 |
have a corresponding rule in the sheet, it will be added.</p> |
|
|
348 |
<p>The object properties in the second parameter must be the JavaScript |
|
|
349 |
names of style properties. E.g. fontSize rather than font-size.</p> |
|
|
350 |
<p>The float style property will be set by any of "float", |
|
|
351 |
"styleFloat", or "cssFloat".</p> |
|
|
352 |
</div> |
|
|
353 |
|
|
|
354 |
<div class="description"> |
|
|
355 |
|
|
|
356 |
<dl rel="yui:parameters"> |
|
|
357 |
<dt>Parameters:</dt> |
|
|
358 |
<dd rel="yui:parameter"> |
|
|
359 |
<code><span property="yui:name">sel</span> |
|
|
360 |
<<span property="yui:type">String</span>> |
|
|
361 |
</code> |
|
|
362 |
<span property="yui:description"> the selector string to apply the changes to</span> |
|
|
363 |
</dd> |
|
|
364 |
<dd rel="yui:parameter"> |
|
|
365 |
<code><span property="yui:name">css</span> |
|
|
366 |
<<span property="yui:type">Object</span>> |
|
|
367 |
</code> |
|
|
368 |
<span property="yui:description"> Object literal of style properties and new values</span> |
|
|
369 |
</dd> |
|
|
370 |
</dl> |
|
|
371 |
|
|
|
372 |
|
|
|
373 |
<div class="chainable"> |
|
|
374 |
<strong>Chainable:</strong> This method is chainable. |
|
|
375 |
</div> |
|
|
376 |
|
|
|
377 |
|
|
|
378 |
|
|
|
379 |
</div> |
|
|
380 |
|
|
|
381 |
</div> |
|
|
382 |
<hr /> |
|
|
383 |
</div> |
|
|
384 |
<div class="" rel="yui:method" resource="#method_StyleSheet.isValidSelector"> |
|
|
385 |
<h4> |
|
|
386 |
<a name="method_StyleSheet.isValidSelector">StyleSheet.isValidSelector</a></h4> |
|
|
387 |
<div class="detail" > |
|
|
388 |
<code> |
|
|
389 |
|
|
|
390 |
static |
|
|
391 |
|
|
|
392 |
Boolean |
|
|
393 |
<strong property="yui:name">StyleSheet.isValidSelector</strong> |
|
|
394 |
( |
|
|
395 |
|
|
|
396 |
|
|
|
397 |
sel |
|
|
398 |
|
|
|
399 |
|
|
|
400 |
) |
|
|
401 |
</code> |
|
|
402 |
|
|
|
403 |
<div class="description" property="yui:description"> |
|
|
404 |
<p>Determines if a selector string is safe to use. Used internally |
|
|
405 |
in set to prevent IE from locking up when attempting to add a rule for a |
|
|
406 |
"bad selector".</p> |
|
|
407 |
<p>Bad selectors are considered to be any string containing unescaped |
|
|
408 |
`~!@$%^&()+=|{}[];'"?< or space. Also forbidden are . or # followed by |
|
|
409 |
anything other than an alphanumeric. Additionally -abc or .-abc or |
|
|
410 |
#_abc or '# ' all fail. There are likely more failure cases, so |
|
|
411 |
please file a bug if you encounter one.</p> |
|
|
412 |
</div> |
|
|
413 |
|
|
|
414 |
<div class="description"> |
|
|
415 |
|
|
|
416 |
<dl rel="yui:parameters"> |
|
|
417 |
<dt>Parameters:</dt> |
|
|
418 |
<dd rel="yui:parameter"> |
|
|
419 |
<code><span property="yui:name">sel</span> |
|
|
420 |
<<span property="yui:type">String</span>> |
|
|
421 |
</code> |
|
|
422 |
<span property="yui:description"> the selector string</span> |
|
|
423 |
</dd> |
|
|
424 |
</dl> |
|
|
425 |
|
|
|
426 |
|
|
|
427 |
|
|
|
428 |
|
|
|
429 |
|
|
|
430 |
</div> |
|
|
431 |
|
|
|
432 |
</div> |
|
|
433 |
<hr /> |
|
|
434 |
</div> |
|
|
435 |
<div class="" rel="yui:method" resource="#method_StyleSheet.register"> |
|
|
436 |
<h4> |
|
|
437 |
<a name="method_StyleSheet.register">StyleSheet.register</a></h4> |
|
|
438 |
<div class="detail" > |
|
|
439 |
<code> |
|
|
440 |
|
|
|
441 |
static |
|
|
442 |
|
|
|
443 |
Boolean |
|
|
444 |
<strong property="yui:name">StyleSheet.register</strong> |
|
|
445 |
( |
|
|
446 |
|
|
|
447 |
|
|
|
448 |
name |
|
|
449 |
|
|
|
450 |
|
|
|
451 |
, |
|
|
452 |
sheet |
|
|
453 |
|
|
|
454 |
|
|
|
455 |
) |
|
|
456 |
</code> |
|
|
457 |
|
|
|
458 |
<div class="description" property="yui:description"> |
|
|
459 |
Registers a StyleSheet instance in the static registry by the given name |
|
|
460 |
</div> |
|
|
461 |
|
|
|
462 |
<div class="description"> |
|
|
463 |
|
|
|
464 |
<dl rel="yui:parameters"> |
|
|
465 |
<dt>Parameters:</dt> |
|
|
466 |
<dd rel="yui:parameter"> |
|
|
467 |
<code><span property="yui:name">name</span> |
|
|
468 |
<<span property="yui:type">String</span>> |
|
|
469 |
</code> |
|
|
470 |
<span property="yui:description"> the name to assign the StyleSheet in the registry</span> |
|
|
471 |
</dd> |
|
|
472 |
<dd rel="yui:parameter"> |
|
|
473 |
<code><span property="yui:name">sheet</span> |
|
|
474 |
<<span property="yui:type">StyleSheet</span>> |
|
|
475 |
</code> |
|
|
476 |
<span property="yui:description"> The StyleSheet instance</span> |
|
|
477 |
</dd> |
|
|
478 |
</dl> |
|
|
479 |
|
|
|
480 |
<dl> |
|
|
481 |
<dt>Returns: |
|
|
482 |
<code property="yui:return"> |
|
|
483 |
Boolean |
|
|
484 |
</code></dt> |
|
|
485 |
<dd property="yui:returnInfo">false if no name or sheet is not a StyleSheet |
|
|
486 |
instance. true otherwise.</dd> |
|
|
487 |
</dl> |
|
|
488 |
|
|
|
489 |
|
|
|
490 |
|
|
|
491 |
|
|
|
492 |
</div> |
|
|
493 |
|
|
|
494 |
</div> |
|
|
495 |
<hr /> |
|
|
496 |
</div> |
|
|
497 |
<div class="" rel="yui:method" resource="#method_StyleSheet.toCssText"> |
|
|
498 |
<h4> |
|
|
499 |
<a name="method_StyleSheet.toCssText">StyleSheet.toCssText</a></h4> |
|
|
500 |
<div class="detail" > |
|
|
501 |
<code> |
|
|
502 |
|
|
|
503 |
static |
|
|
504 |
|
|
|
505 |
String |
|
|
506 |
<strong property="yui:name">StyleSheet.toCssText</strong> |
|
|
507 |
( |
|
|
508 |
|
|
|
509 |
|
|
|
510 |
css |
|
|
511 |
|
|
|
512 |
|
|
|
513 |
, |
|
|
514 |
cssText |
|
|
515 |
|
|
|
516 |
|
|
|
517 |
) |
|
|
518 |
</code> |
|
|
519 |
|
|
|
520 |
<div class="description" property="yui:description"> |
|
|
521 |
<p>Converts an object literal of style properties and values into a string |
|
|
522 |
of css text. This can then be assigned to el.style.cssText.</p> |
|
|
523 |
<p>The optional second parameter is a cssText string representing the |
|
|
524 |
starting state of the style prior to alterations. This is most often |
|
|
525 |
extracted from the eventual target's current el.style.cssText.</p> |
|
|
526 |
</div> |
|
|
527 |
|
|
|
528 |
<div class="description"> |
|
|
529 |
|
|
|
530 |
<dl rel="yui:parameters"> |
|
|
531 |
<dt>Parameters:</dt> |
|
|
532 |
<dd rel="yui:parameter"> |
|
|
533 |
<code><span property="yui:name">css</span> |
|
|
534 |
<<span property="yui:type">Object</span>> |
|
|
535 |
</code> |
|
|
536 |
<span property="yui:description"> object literal of style properties and values</span> |
|
|
537 |
</dd> |
|
|
538 |
<dd rel="yui:parameter"> |
|
|
539 |
<code><span property="yui:name">cssText</span> |
|
|
540 |
<<span property="yui:type">String</span>> |
|
|
541 |
</code> |
|
|
542 |
<span property="yui:description"> (optional) starting cssText value</span> |
|
|
543 |
</dd> |
|
|
544 |
</dl> |
|
|
545 |
|
|
|
546 |
<dl> |
|
|
547 |
<dt>Returns: |
|
|
548 |
<code property="yui:return"> |
|
|
549 |
String |
|
|
550 |
</code></dt> |
|
|
551 |
<dd property="yui:returnInfo">the resulting cssText string</dd> |
|
|
552 |
</dl> |
|
|
553 |
|
|
|
554 |
|
|
|
555 |
|
|
|
556 |
|
|
|
557 |
</div> |
|
|
558 |
|
|
|
559 |
</div> |
|
|
560 |
<hr /> |
|
|
561 |
</div> |
|
|
562 |
<div class="" rel="yui:method" resource="#method_unset"> |
|
|
563 |
<h4> |
|
|
564 |
<a name="method_unset">unset</a></h4> |
|
|
565 |
<div class="detail" > |
|
|
566 |
<code> |
|
|
567 |
|
|
|
568 |
|
|
|
569 |
|
|
|
570 |
StyleSheet |
|
|
571 |
<strong property="yui:name">unset</strong> |
|
|
572 |
( |
|
|
573 |
|
|
|
574 |
|
|
|
575 |
sel |
|
|
576 |
|
|
|
577 |
|
|
|
578 |
, |
|
|
579 |
css |
|
|
580 |
|
|
|
581 |
|
|
|
582 |
) |
|
|
583 |
</code> |
|
|
584 |
|
|
|
585 |
<div class="description" property="yui:description"> |
|
|
586 |
<p>Unset style properties for a provided selector string, removing |
|
|
587 |
their effect from the style cascade.</p> |
|
|
588 |
<p>If the selector includes commas, it will be split into individual |
|
|
589 |
selectors and applied accordingly. If there are no properties |
|
|
590 |
remaining in the rule after unsetting, the rule is removed.</p> |
|
|
591 |
<p>The style property or properties in the second parameter must be the |
|
|
592 |
JavaScript style property names. E.g. fontSize rather than font-size.</p> |
|
|
593 |
<p>The float style property will be unset by any of "float", |
|
|
594 |
"styleFloat", or "cssFloat".</p> |
|
|
595 |
</div> |
|
|
596 |
|
|
|
597 |
<div class="description"> |
|
|
598 |
|
|
|
599 |
<dl rel="yui:parameters"> |
|
|
600 |
<dt>Parameters:</dt> |
|
|
601 |
<dd rel="yui:parameter"> |
|
|
602 |
<code><span property="yui:name">sel</span> |
|
|
603 |
<<span property="yui:type">String</span>> |
|
|
604 |
</code> |
|
|
605 |
<span property="yui:description"> the selector string to apply the changes to</span> |
|
|
606 |
</dd> |
|
|
607 |
<dd rel="yui:parameter"> |
|
|
608 |
<code><span property="yui:name">css</span> |
|
|
609 |
<<span property="yui:type">String|Array</span>> |
|
|
610 |
</code> |
|
|
611 |
<span property="yui:description"> style property name or Array of names</span> |
|
|
612 |
</dd> |
|
|
613 |
</dl> |
|
|
614 |
|
|
|
615 |
|
|
|
616 |
<div class="chainable"> |
|
|
617 |
<strong>Chainable:</strong> This method is chainable. |
|
|
618 |
</div> |
|
|
619 |
|
|
|
620 |
|
|
|
621 |
|
|
|
622 |
</div> |
|
|
623 |
|
|
|
624 |
</div> |
|
|
625 |
<hr /> |
|
|
626 |
</div> |
|
|
627 |
</div> |
|
|
628 |
</div> |
|
|
629 |
|
|
|
630 |
</div> |
|
|
631 |
|
|
|
632 |
<div rel="yui:events" resource="#events"> |
|
|
633 |
|
|
|
634 |
|
|
|
635 |
</div> |
|
|
636 |
|
|
|
637 |
<div rel="yui:attributes" resource="#configattributes"> |
|
|
638 |
|
|
|
639 |
</div> |
|
|
640 |
|
|
|
641 |
</div> |
|
|
642 |
</div> |
|
|
643 |
<div class="yui-b"> |
|
|
644 |
<div class="nav"> |
|
|
645 |
|
|
|
646 |
<div id="moduleList" class="module"> |
|
|
647 |
<h4>Modules</h4> |
|
|
648 |
<ul class="content"> |
|
|
649 |
<li class=""><a href="module_anim.html" title="anim">anim</a></li> |
|
|
650 |
<li class=""><a href="module_async-queue.html" title="async-queue">async-queue</a></li> |
|
|
651 |
<li class=""><a href="module_attribute.html" title="attribute">attribute</a></li> |
|
|
652 |
<li class=""><a href="module_base.html" title="base">base</a></li> |
|
|
653 |
<li class=""><a href="module_cache.html" title="cache">cache</a></li> |
|
|
654 |
<li class=""><a href="module_classnamemanager.html" title="classnamemanager">classnamemanager</a></li> |
|
|
655 |
<li class=""><a href="module_collection.html" title="collection">collection</a></li> |
|
|
656 |
<li class=""><a href="module_console.html" title="console">console</a></li> |
|
|
657 |
<li class=""><a href="module_console-filters.html" title="console-filters">console-filters</a></li> |
|
|
658 |
<li class=""><a href="module_cookie.html" title="cookie">cookie</a></li> |
|
|
659 |
<li class=""><a href="module_dataschema.html" title="dataschema">dataschema</a></li> |
|
|
660 |
<li class=""><a href="module_datasource.html" title="datasource">datasource</a></li> |
|
|
661 |
<li class=""><a href="module_datatype.html" title="datatype">datatype</a></li> |
|
|
662 |
<li class=""><a href="module_dd.html" title="dd">dd</a></li> |
|
|
663 |
<li class=""><a href="module_dom.html" title="dom">dom</a></li> |
|
|
664 |
<li class=""><a href="module_dump.html" title="dump">dump</a></li> |
|
|
665 |
<li class=""><a href="module_event.html" title="event">event</a></li> |
|
|
666 |
<li class=""><a href="module_event-custom.html" title="event-custom">event-custom</a></li> |
|
|
667 |
<li class=""><a href="module_event-simulate.html" title="event-simulate">event-simulate</a></li> |
|
|
668 |
<li class=""><a href="module_history.html" title="history">history</a></li> |
|
|
669 |
<li class=""><a href="module_imageloader.html" title="imageloader">imageloader</a></li> |
|
|
670 |
<li class=""><a href="module_io.html" title="io">io</a></li> |
|
|
671 |
<li class=""><a href="module_json.html" title="json">json</a></li> |
|
|
672 |
<li class=""><a href="module_node.html" title="node">node</a></li> |
|
|
673 |
<li class=""><a href="module_node-focusmanager.html" title="node-focusmanager">node-focusmanager</a></li> |
|
|
674 |
<li class=""><a href="module_node-menunav.html" title="node-menunav">node-menunav</a></li> |
|
|
675 |
<li class=""><a href="module_oop.html" title="oop">oop</a></li> |
|
|
676 |
<li class=""><a href="module_overlay.html" title="overlay">overlay</a></li> |
|
|
677 |
<li class=""><a href="module_plugin.html" title="plugin">plugin</a></li> |
|
|
678 |
<li class=""><a href="module_profiler.html" title="profiler">profiler</a></li> |
|
|
679 |
<li class=""><a href="module_queue-promote.html" title="queue-promote">queue-promote</a></li> |
|
|
680 |
<li class=""><a href="module_slider.html" title="slider">slider</a></li> |
|
|
681 |
<li class="selected"><a href="module_stylesheet.html" title="stylesheet">stylesheet</a></li> |
|
|
682 |
<li class=""><a href="module_substitute.html" title="substitute">substitute</a></li> |
|
|
683 |
<li class=""><a href="module_test.html" title="test">test</a></li> |
|
|
684 |
<li class=""><a href="module_widget.html" title="widget">widget</a></li> |
|
|
685 |
<li class=""><a href="module_widget-position.html" title="widget-position">widget-position</a></li> |
|
|
686 |
<li class=""><a href="module_widget-position-ext.html" title="widget-position-ext">widget-position-ext</a></li> |
|
|
687 |
<li class=""><a href="module_widget-stack.html" title="widget-stack">widget-stack</a></li> |
|
|
688 |
<li class=""><a href="module_widget-stdmod.html" title="widget-stdmod">widget-stdmod</a></li> |
|
|
689 |
<li class=""><a href="module_yui.html" title="yui">yui</a></li> |
|
|
690 |
</ul> |
|
|
691 |
</div> |
|
|
692 |
|
|
|
693 |
<div id="classList" class="module"> |
|
|
694 |
<h4>Classes</h4> |
|
|
695 |
<ul class="content"> |
|
|
696 |
<li class="selected"><a href="StyleSheet.html" title="StyleSheet">StyleSheet</a></li> |
|
|
697 |
</ul> |
|
|
698 |
</div> |
|
|
699 |
|
|
|
700 |
<div id="fileList" class="module"> |
|
|
701 |
<h4>Files</h4> |
|
|
702 |
<ul class="content"> |
|
|
703 |
<li class=""><a href="stylesheet.js.html" title="stylesheet.js">stylesheet.js</a></li> |
|
|
704 |
</ul> |
|
|
705 |
</div> |
|
|
706 |
|
|
|
707 |
|
|
|
708 |
<div id="methodsList" class="module"> |
|
|
709 |
<h4>Methods</h4> |
|
|
710 |
<ul class="content"> |
|
|
711 |
<li class=""><a href="#method_disable" title="disable">disable</a></li> |
|
|
712 |
<li class=""><a href="#method_enable" title="enable">enable</a></li> |
|
|
713 |
<li class=""><a href="#method_getCssText" title="getCssText">getCssText</a></li> |
|
|
714 |
<li class=""><a href="#method_getId" title="getId">getId</a></li> |
|
|
715 |
<li class=""><a href="#method_isEnabled" title="isEnabled">isEnabled</a></li> |
|
|
716 |
<li class=""><a href="#method_set" title="set">set</a></li> |
|
|
717 |
<li class=""><a href="#method_StyleSheet.isValidSelector" title="StyleSheet.isValidSelector">StyleSheet.isValidSelector</a></li> |
|
|
718 |
<li class=""><a href="#method_StyleSheet.register" title="StyleSheet.register">StyleSheet.register</a></li> |
|
|
719 |
<li class=""><a href="#method_StyleSheet.toCssText" title="StyleSheet.toCssText">StyleSheet.toCssText</a></li> |
|
|
720 |
<li class=""><a href="#method_unset" title="unset">unset</a></li> |
|
|
721 |
</ul> |
|
|
722 |
</div> |
|
|
723 |
|
|
|
724 |
|
|
|
725 |
|
|
|
726 |
</div> |
|
|
727 |
</div> |
|
|
728 |
</div> |
|
|
729 |
<div id="ft"> |
|
|
730 |
<hr /> |
|
|
731 |
Copyright © 2009 Yahoo! Inc. All rights reserved. |
|
|
732 |
</div> |
|
|
733 |
</div> |
|
|
734 |
<script type="text/javascript"> |
|
|
735 |
ALL_YUI_PROPS = [{"access": "", "host": "StyleSheet", "name": "disable", "url": "StyleSheet.html#method_disable", "type": "method"}, {"access": "", "host": "StyleSheet", "name": "enable", "url": "StyleSheet.html#method_enable", "type": "method"}, {"access": "", "host": "StyleSheet", "name": "getCssText", "url": "StyleSheet.html#method_getCssText", "type": "method"}, {"access": "", "host": "StyleSheet", "name": "getId", "url": "StyleSheet.html#method_getId", "type": "method"}, {"access": "", "host": "StyleSheet", "name": "isEnabled", "url": "StyleSheet.html#method_isEnabled", "type": "method"}, {"access": "", "host": "StyleSheet", "name": "set", "url": "StyleSheet.html#method_set", "type": "method"}, {"access": "", "host": "StyleSheet", "name": "StyleSheet.isValidSelector", "url": "StyleSheet.html#method_StyleSheet.isValidSelector", "type": "method"}, {"access": "", "host": "StyleSheet", "name": "StyleSheet.register", "url": "StyleSheet.html#method_StyleSheet.register", "type": "method"}, {"access": "", "host": "StyleSheet", "name": "StyleSheet.toCssText", "url": "StyleSheet.html#method_StyleSheet.toCssText", "type": "method"}, {"access": "", "host": "StyleSheet", "name": "unset", "url": "StyleSheet.html#method_unset", "type": "method"}]; |
|
|
736 |
</script> |
|
|
737 |
</body> |
|
|
738 |
</html> |