|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
755 bytes
|
| Rev | Line | |
|---|
| [9af201e] | 1 | module.exports = {
|
|---|
| 2 | parseContext: {
|
|---|
| 3 | default: 'StyleSheet',
|
|---|
| 4 | stylesheet: 'StyleSheet',
|
|---|
| 5 | atrule: 'Atrule',
|
|---|
| 6 | atrulePrelude: function(options) {
|
|---|
| 7 | return this.AtrulePrelude(options.atrule ? String(options.atrule) : null);
|
|---|
| 8 | },
|
|---|
| 9 | mediaQueryList: 'MediaQueryList',
|
|---|
| 10 | mediaQuery: 'MediaQuery',
|
|---|
| 11 | rule: 'Rule',
|
|---|
| 12 | selectorList: 'SelectorList',
|
|---|
| 13 | selector: 'Selector',
|
|---|
| 14 | block: function() {
|
|---|
| 15 | return this.Block(true);
|
|---|
| 16 | },
|
|---|
| 17 | declarationList: 'DeclarationList',
|
|---|
| 18 | declaration: 'Declaration',
|
|---|
| 19 | value: 'Value'
|
|---|
| 20 | },
|
|---|
| 21 | scope: require('../scope'),
|
|---|
| 22 | atrule: require('../atrule'),
|
|---|
| 23 | pseudo: require('../pseudo'),
|
|---|
| 24 | node: require('../node')
|
|---|
| 25 | };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.