Class: Sass::Selector::Class
- Inherits:
-
Simple
- Object
- Simple
- Sass::Selector::Class
- Defined in:
- .ruby-sass/lib/sass/selector.rb
Overview
A class selector (e.g. `.foo`).
Instance Attribute Summary (collapse)
-
#name ⇒ String
readonly
The class name.
Attributes inherited from Simple
Instance Method Summary (collapse)
-
#initialize(name) ⇒ Class
constructor
A new instance of Class.
- #specificity ⇒ Object
- #to_s(opts = {}) ⇒ Object
Methods inherited from Simple
#eql?, #hash, #inspect, #unify, #unique?
Constructor Details
#initialize(name) ⇒ Class
Returns a new instance of Class
63 64 65 |
# File '.ruby-sass/lib/sass/selector.rb', line 63 def initialize(name) @name = name end |
Constructor Details
#initialize(name) ⇒ Class
Returns a new instance of Class
63 64 65 |
# File '.ruby-sass/lib/sass/selector.rb', line 63 def initialize(name) @name = name end |
Instance Attribute Details
#name ⇒ String (readonly)
The class name.
60 61 62 |
# File '.ruby-sass/lib/sass/selector.rb', line 60 def name @name end |
Instance Method Details
#specificity ⇒ Object
73 74 75 |
# File '.ruby-sass/lib/sass/selector.rb', line 73 def specificity SPECIFICITY_BASE end |
#to_s(opts = {}) ⇒ Object
68 69 70 |
# File '.ruby-sass/lib/sass/selector.rb', line 68 def to_s(opts = {}) "." + @name end |