[239] | 1 | /*
|
---|
| 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
|
---|
| 3 | For licensing, see LICENSE.html or http://ckeditor.com/license
|
---|
| 4 | */
|
---|
| 5 |
|
---|
| 6 | /**
|
---|
| 7 | * Reset and Default Values
|
---|
| 8 | */
|
---|
| 9 | .cke_skin_office2003 *,
|
---|
| 10 | .cke_skin_office2003 a:hover,
|
---|
| 11 | .cke_skin_office2003 a:link,
|
---|
| 12 | .cke_skin_office2003 a:visited,
|
---|
| 13 | .cke_skin_office2003 a:active
|
---|
| 14 | {
|
---|
| 15 | margin: 0;
|
---|
| 16 | padding: 0;
|
---|
| 17 | border: 0;
|
---|
| 18 | background: transparent;
|
---|
| 19 | text-decoration: none;
|
---|
| 20 | font: normal normal normal 100% Sans-Serif;
|
---|
| 21 | width: auto;
|
---|
| 22 | height: auto;
|
---|
| 23 | border-collapse: collapse;
|
---|
| 24 | text-align: left;
|
---|
| 25 | vertical-align: baseline;
|
---|
| 26 | white-space: nowrap;
|
---|
| 27 | cursor: auto;
|
---|
| 28 | color: #000;
|
---|
| 29 | float: none;
|
---|
| 30 |
|
---|
| 31 | font-size: 11px;
|
---|
| 32 | font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
|
---|
| 33 | }
|
---|
| 34 |
|
---|
| 35 | .cke_skin_office2003 .cke_rtl *,
|
---|
| 36 | .cke_skin_office2003 .cke_rtl a:hover,
|
---|
| 37 | .cke_skin_office2003 .cke_rtl a:link,
|
---|
| 38 | .cke_skin_office2003 .cke_rtl a:visited,
|
---|
| 39 | .cke_skin_office2003 .cke_rtl a:active,
|
---|
| 40 | .cke_rtl .cke_skin_office2003 *,
|
---|
| 41 | .cke_rtl .cke_skin_office2003 a:hover,
|
---|
| 42 | .cke_rtl .cke_skin_office2003 a:link,
|
---|
| 43 | .cke_rtl .cke_skin_office2003 a:visited,
|
---|
| 44 | .cke_rtl .cke_skin_office2003 a:active
|
---|
| 45 | {
|
---|
| 46 | text-align: right;
|
---|
| 47 | }
|
---|
| 48 |
|
---|
| 49 | .cke_skin_office2003 iframe
|
---|
| 50 | {
|
---|
| 51 | vertical-align: inherit; /** For IE */
|
---|
| 52 | }
|
---|
| 53 |
|
---|
| 54 | .cke_skin_office2003 textarea
|
---|
| 55 | {
|
---|
| 56 | white-space: pre;
|
---|
| 57 | }
|
---|
| 58 |
|
---|
| 59 | .cke_skin_office2003 .cke_browser_gecko textarea
|
---|
| 60 | {
|
---|
| 61 | cursor: text;
|
---|
| 62 | }
|
---|
| 63 |
|
---|
| 64 | .cke_skin_office2003 .cke_browser_gecko textarea[disabled]
|
---|
| 65 | {
|
---|
| 66 | cursor: default;
|
---|
| 67 | }
|
---|
| 68 |
|
---|
| 69 | .cke_skin_office2003 input[type="text"],
|
---|
| 70 | .cke_skin_office2003 input[type="password"]
|
---|
| 71 | {
|
---|
| 72 | cursor: text;
|
---|
| 73 | }
|
---|
| 74 |
|
---|
| 75 | .cke_skin_office2003 input[type="text"][disabled],
|
---|
| 76 | .cke_skin_office2003 input[type="password"][disabled]
|
---|
| 77 | {
|
---|
| 78 | cursor: default;
|
---|
| 79 | }
|
---|
| 80 |
|
---|
| 81 | .cke_skin_office2003 fieldset
|
---|
| 82 | {
|
---|
| 83 | padding: 10px;
|
---|
| 84 | border: 2px groove #E0DFE3;
|
---|
| 85 | }
|
---|