1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- define("dojox/highlight/languages/css", ["dojox/main", "../_base", "./html"], function(dojox, dh, html){
-
- var dhc = dh.constants;
- return dh.languages.css = {
- // summary: CSS Language definition file.
- defaultMode: {
- contains: ['id', 'class', 'attr_selector', 'rules', 'comment'],
- keywords: html.HTML_TAGS,
- lexems: [dhc.IDENT_RE],
- illegal: '='
- },
- case_insensitive: true,
- modes: [
- {
- className: 'id',
- begin: '\\#[A-Za-z0-9_-]+', end: '^'
- },
- {
- className: 'class',
- begin: '\\.[A-Za-z0-9_-]+', end: '^',
- relevance: 0
- },
- {
- className: 'attr_selector',
- begin: '\\[', end: '\\]',
- illegal: '$'
- },
- {
- className: 'rules',
- begin: '{', end: '}',
- lexems: ['[A-Za-z-]+'],
- keywords: {
- 'play-during': 1, 'counter-reset': 1,
- 'counter-increment': 1, 'min-height': 1, 'quotes': 1,
- 'border-top': 1, 'pitch': 1, 'font': 1, 'pause': 1,
- 'list-style-image': 1, 'border-width': 1, 'cue': 1,
- 'outline-width': 1, 'border-left': 1, 'elevation': 1,
- 'richness': 1, 'speech-rate': 1, 'border-bottom': 1,
- 'border-spacing': 1, 'background': 1, 'list-style-type': 1,
- 'text-align': 1, 'page-break-inside': 1, 'orphans': 1,
- 'page-break-before': 1, 'text-transform': 1,
- 'line-height': 1, 'padding-left': 1, 'font-size': 1,
- 'right': 1, 'word-spacing': 1, 'padding-top': 1,
- 'outline-style': 1, 'bottom': 1, 'content': 1,
- 'border-right-style': 1, 'padding-right': 1,
- 'border-left-style': 1, 'voice-family': 1,
- 'background-color': 1, 'border-bottom-color': 1,
- 'outline-color': 1, 'unicode-bidi': 1, 'max-width': 1,
- 'font-family': 1, 'caption-side': 1,
- 'border-right-width': 1, 'pause-before': 1,
- 'border-top-style': 1, 'color': 1, 'border-collapse': 1,
- 'border-bottom-width': 1, 'float': 1, 'height': 1,
- 'max-height': 1, 'margin-right': 1, 'border-top-width': 1,
- 'speak': 1, 'speak-header': 1, 'top': 1, 'cue-before': 1,
- 'min-width': 1, 'width': 1, 'font-variant': 1,
- 'border-top-color': 1, 'background-position': 1,
- 'empty-cells': 1, 'direction': 1, 'border-right': 1,
- 'visibility': 1, 'padding': 1, 'border-style': 1,
- 'background-attachment': 1, 'overflow': 1,
- 'border-bottom-style': 1, 'cursor': 1, 'margin': 1,
- 'display': 1, 'border-left-width': 1, 'letter-spacing': 1,
- 'vertical-align': 1, 'clip': 1, 'border-color': 1,
- 'list-style': 1, 'padding-bottom': 1, 'pause-after': 1,
- 'speak-numeral': 1, 'margin-left': 1, 'widows': 1,
- 'border': 1, 'font-style': 1, 'border-left-color': 1,
- 'pitch-range': 1, 'background-repeat': 1,
- 'table-layout': 1, 'margin-bottom': 1,
- 'speak-punctuation': 1, 'font-weight': 1,
- 'border-right-color': 1, 'page-break-after': 1,
- 'position': 1, 'white-space': 1, 'text-indent': 1,
- 'background-image': 1, 'volume': 1, 'stress': 1,
- 'outline': 1, 'clear': 1, 'z-index': 1,
- 'text-decoration': 1, 'margin-top': 1, 'azimuth': 1,
- 'cue-after': 1, 'left': 1, 'list-style-position': 1
- },
- contains: ['comment', 'value']
- },
- dhc.C_BLOCK_COMMENT_MODE,
- {
- className: 'value',
- begin: ':',
- end: ';',
- endsWithParent: true,
- excludeBegin: true,
- excludeEnd: true
- }
- ]
- };
- });
|