summaryrefslogtreecommitdiff
path: root/_source/skins/v2/reset.css
diff options
context:
space:
mode:
Diffstat (limited to '_source/skins/v2/reset.css')
-rw-r--r--_source/skins/v2/reset.css78
1 files changed, 78 insertions, 0 deletions
diff --git a/_source/skins/v2/reset.css b/_source/skins/v2/reset.css
new file mode 100644
index 0000000..e4820bb
--- /dev/null
+++ b/_source/skins/v2/reset.css
@@ -0,0 +1,78 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * Reset and Default Values
+ */
+.cke_skin_v2 *,
+.cke_skin_v2 a:hover,
+.cke_skin_v2 a:link,
+.cke_skin_v2 a:visited,
+.cke_skin_v2 a:active
+{
+ margin: 0;
+ padding: 0;
+ border: 0;
+ background: transparent;
+ text-decoration: none;
+ font: normal normal normal 100% Sans-Serif;
+ width: auto;
+ height: auto;
+ border-collapse: collapse;
+ text-align: left;
+ vertical-align: baseline;
+ white-space: nowrap;
+ cursor: auto;
+ color: #000;
+
+ font-size: 11px;
+ font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
+}
+
+.cke_skin_v2 .cke_rtl *,
+.cke_skin_v2 .cke_rtl a:hover,
+.cke_skin_v2 .cke_rtl a:link,
+.cke_skin_v2 .cke_rtl a:visited,
+.cke_skin_v2 .cke_rtl a:active,
+.cke_rtl .cke_skin_v2 *,
+.cke_rtl .cke_skin_v2 a:hover,
+.cke_rtl .cke_skin_v2 a:link,
+.cke_rtl .cke_skin_v2 a:visited,
+.cke_rtl .cke_skin_v2 a:active
+{
+ text-align: right;
+}
+
+.cke_skin_v2 iframe
+{
+ vertical-align: inherit; /** For IE */
+}
+
+.cke_skin_v2 textarea
+{
+ white-space: pre;
+}
+
+.cke_skin_v2 .cke_browser_gecko textarea
+{
+ cursor: text;
+}
+
+.cke_skin_v2 .cke_browser_gecko textarea[disabled]
+{
+ cursor: default;
+}
+
+.cke_skin_v2 input[type="text"],
+.cke_skin_v2 input[type="password"]
+{
+ cursor: text;
+}
+
+.cke_skin_v2 input[type="text"][disabled],
+.cke_skin_v2 input[type="password"][disabled]
+{
+ cursor: default;
+}