| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <html>
- <head>
- <script src="res/common.js?v=1.0.5"></script>
- <script src="res/framework/mootools/mootools-1.6.0_all.js"></script>
- </head>
- <body>
- <input type="text" id="txtinput"/>
- <script>
- x = {
- "contentNode": {
- "height": "100%",
- "width": "100%",
- "background-color": "#CCC"
- },
- "toolbarButton":{
- "height": "32px",
- "line-height": "32px",
- "margin": "3px 10px 3px 3px",
- "float": "left",
- "border": "1px solid #CCC",
- "background-color": "#CCC",
- "cursor": "pointer"
- },
- "toolbarButton_over": {
- "border-top": "1px solid #f7f7f7",
- "border-left": "1px solid #f7f7f7",
- "border-right": "1px solid #999",
- "border-bottom": "1px solid #999",
- "background-color": "#CCC"
- },
- "toolbarButton_down": {
- "border-top": "1px solid #999",
- "border-left": "1px solid #999",
- "border-right": "1px solid #f7f7f7",
- "border-bottom": "1px solid #f7f7f7",
- "background-color": "#eeeeee"
- },
- "toolbarIconButton": {
- "background-repeat": "no-repeat",
- "background-position": "center center",
- "height": "32px",
- "width": "30px",
- "float": "left"
- },
- "toolbarTextButton": {
- "background-repeat": "no-repeat",
- "background-position": "center center",
- "height": "32px",
- "padding-right": "5px",
- "margin-left": "30px"
- },
- "toolbarDateSelect: {
- "height": "24px",
- "line-height": "24px",
- "margin": "6px 10px 6px 3px",
- "float": "right"
- },
- "toolbarNode":{
- "height": "40px"
- },
- "screenNode": {
- "overflow": "hidden",
- "background-color": "#333",
- "color": "#FFF"
- },
- "bottomNode": {
- "height": "30px"
- },
- "screenScrollNode": {
- "overflow": "hidden",
- "height": "100%",
- "margin-right": "8px"
- },
- "screenInforAreaNode": {
- "overflow": "hidden",
- "padding": "10px"
- }
- }
- </script>
- </body>
- </html>
|