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 /**
  9   @class SC.CSSStyle
 10 
 11   A css style object represents a css style that is part of a single css rule
 12   in a single css style sheet.
 13 
 14   @extends SC.Object
 15 */
 16 SC.CSSStyle = SC.Object.extend(
 17 /** @scope SC.CSSStyle.prototype */ {
 18 
 19   /**
 20     @type String a css string representing the style property
 21   */
 22   style: '',
 23 
 24   /**
 25     @property {SC.CSSRule} the rule this style is part of
 26   */
 27   rule: null
 28 
 29 });
 30