1 // ========================================================================== 2 // Project: SproutCore - JavaScript Application Framework 3 // Copyright: ©2006-2011 Strobe Inc. and contributors. 4 // Portions ©2008-2011 Apple Inc. All rights reserved. 5 // License: Licensed under MIT license (see license.js) 6 // ========================================================================== 7 8 sc_require('css/css_style') ; 9 10 /** 11 @class SC.CSSRule 12 13 A css rule object represents a css rule that is part of a style sheet 14 object. You can create your own rules and add insert them in style sheets at 15 runtime. 16 17 @extends SC.Object 18 */ 19 SC.CSSRule = SC.Object.extend( 20 /** @scope SC.CSSRule.prototype */ { 21 22 }); 23