diff options
| author | Lester Caine <lester@lsces.co.uk> | 2010-03-22 22:10:52 +0000 |
|---|---|---|
| committer | Lester Caine <lester@lsces.co.uk> | 2010-03-22 22:10:52 +0000 |
| commit | 71224fa72e9c7cb45518813513750b5305030b90 (patch) | |
| tree | 20ced4dfc65e0f2401f4869d6f2f376fbd340158 /_source/skins/kama/templates.css | |
| parent | 29f4d82d692440a219ab4302b2245122476ef69f (diff) | |
| download | ckeditor-71224fa72e9c7cb45518813513750b5305030b90.tar.gz ckeditor-71224fa72e9c7cb45518813513750b5305030b90.tar.bz2 ckeditor-71224fa72e9c7cb45518813513750b5305030b90.zip | |
Upgrade to version 3.2 ( No apologies for commit method )
Diffstat (limited to '_source/skins/kama/templates.css')
| -rw-r--r-- | _source/skins/kama/templates.css | 155 |
1 files changed, 84 insertions, 71 deletions
diff --git a/_source/skins/kama/templates.css b/_source/skins/kama/templates.css index 7631e8b..df68e0e 100644 --- a/_source/skins/kama/templates.css +++ b/_source/skins/kama/templates.css @@ -1,71 +1,84 @@ -/* -Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. -For licensing, see LICENSE.html or http://ckeditor.com/license -*/ - -/** - * Styles for the "templates" plugin. - */ - -.cke_skin_kama .cke_tpl_list -{ - border: #dcdcdc 2px solid; - background-color: #ffffff; - overflow: auto; - width: 100%; - height: 220px; -} - -.cke_skin_kama .cke_tpl_item -{ - margin: 5px; - padding: 7px; - border: #eeeeee 1px solid; - *width: 88%; -} - -.cke_skin_kama .cke_tpl_preview -{ - border-collapse: separate; - text-indent:0; - width: 100%; -} -.cke_skin_kama .cke_tpl_preview td -{ - padding: 2px; - vertical-align: middle; -} -.cke_skin_kama .cke_tpl_preview .cke_tpl_preview_img -{ - width: 100px; -} -.cke_skin_kama .cke_tpl_preview span -{ - white-space: normal; -} - -.cke_skin_kama .cke_tpl_title -{ - font-weight: bold; -} - -.cke_skin_kama .cke_tpl_hover -{ - border: #ff9933 1px solid !important; - background-color: #fffacd !important; - cursor: pointer; - cursor: hand; -} -/* - * Fix property 'cursor' doesn't inherit on table - */ -.cke_skin_kama .cke_tpl_hover * -{ - cursor: inherit; -} - -.cke_skin_kama .cke_tpl_empty, .cke_tpl_loading -{ - text-align: center; - padding: 5px; -} +/*
+Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * Styles for the "templates" plugin.
+ */
+
+.cke_skin_kama .cke_tpl_list
+{
+ border: #dcdcdc 2px solid;
+ background-color: #ffffff;
+ overflow-y: auto;
+ overflow-x: hidden;
+ width: 100%;
+ height: 220px;
+}
+
+.cke_skin_kama .cke_tpl_item
+{
+ margin: 5px;
+ padding: 7px;
+ border: #eeeeee 1px solid;
+ *width: 88%;
+}
+
+.cke_skin_kama .cke_tpl_preview
+{
+ border-collapse: separate;
+ text-indent:0;
+ width: 100%;
+}
+.cke_skin_kama .cke_tpl_preview td
+{
+ padding: 2px;
+ vertical-align: middle;
+}
+.cke_skin_kama .cke_tpl_preview .cke_tpl_preview_img
+{
+ width: 100px;
+}
+.cke_skin_kama .cke_tpl_preview span
+{
+ white-space: normal;
+}
+
+.cke_skin_kama .cke_tpl_title
+{
+ font-weight: bold;
+}
+
+.cke_skin_kama .cke_tpl_list a:active .cke_tpl_item,
+.cke_skin_kama .cke_tpl_list a:hover .cke_tpl_item,
+.cke_skin_kama .cke_tpl_list a:focus .cke_tpl_item
+{
+ border: #ff9933 1px solid;
+ background-color: #fffacd;
+ cursor: pointer;
+ cursor: hand;
+}
+
+.cke_skin_kama .cke_hc .cke_tpl_list a:active .cke_tpl_item,
+.cke_skin_kama .cke_hc .cke_tpl_list a:hover .cke_tpl_item,
+.cke_skin_kama .cke_hc .cke_tpl_list a:focus .cke_tpl_item
+{
+ border-width: 3px;
+}
+
+/*
+ * Fix property 'cursor' doesn't inherit on table
+ */
+.cke_skin_kama .cke_tpl_list a:active *,
+.cke_skin_kama .cke_tpl_list a:hover *,
+.cke_skin_kama .cke_tpl_list a:focus *
+{
+ cursor: inherit;
+}
+
+.cke_skin_kama .cke_tpl_empty, .cke_tpl_loading
+{
+ text-align: center;
+ padding: 5px;
+}
|
