source: trunk/phpgwapi/js/ckeditor/_source/skins/kama/templates.css @ 2862

Revision 2862, 1.6 KB checked in by rodsouza, 14 years ago (diff)

Ticket #663 - Atualizando e centralizando o CKEditor (v. 3.2.1)

Line 
1/*
2Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.html or http://ckeditor.com/license
4*/
5
6/**
7 * Styles for the "templates" plugin.
8 */
9
10.cke_skin_kama .cke_tpl_list
11{
12        border: #dcdcdc 2px solid;
13        background-color: #ffffff;
14        overflow-y: auto;
15        overflow-x: hidden;
16        width: 100%;
17        height: 220px;
18}
19
20.cke_skin_kama .cke_tpl_item
21{
22        margin: 5px;
23        padding: 7px;
24        border: #eeeeee 1px solid;
25        *width: 88%;
26}
27
28.cke_skin_kama .cke_tpl_preview
29{
30        border-collapse: separate;
31        text-indent:0;
32        width: 100%;
33}
34.cke_skin_kama .cke_tpl_preview td
35{
36        padding: 2px;
37        vertical-align: middle;
38}
39.cke_skin_kama .cke_tpl_preview .cke_tpl_preview_img
40{
41        width: 100px;
42}
43.cke_skin_kama .cke_tpl_preview span
44{
45        white-space: normal;
46}
47
48.cke_skin_kama .cke_tpl_title
49{
50        font-weight: bold;
51}
52
53.cke_skin_kama .cke_tpl_list a:active .cke_tpl_item,
54.cke_skin_kama .cke_tpl_list a:hover .cke_tpl_item,
55.cke_skin_kama .cke_tpl_list a:focus .cke_tpl_item
56{
57        border: #ff9933 1px solid;
58        background-color: #fffacd;
59        cursor: pointer;
60        cursor: hand;
61}
62
63.cke_skin_kama .cke_hc .cke_tpl_list a:active .cke_tpl_item,
64.cke_skin_kama .cke_hc .cke_tpl_list a:hover .cke_tpl_item,
65.cke_skin_kama .cke_hc .cke_tpl_list a:focus .cke_tpl_item
66{
67        border-width: 3px;
68}
69
70/*
71 * Fix property 'cursor' doesn't inherit on table
72 */
73.cke_skin_kama .cke_tpl_list a:active *,
74.cke_skin_kama .cke_tpl_list a:hover *,
75.cke_skin_kama .cke_tpl_list a:focus *
76{
77        cursor: inherit;
78}
79
80.cke_skin_kama .cke_tpl_empty, .cke_tpl_loading
81{
82        text-align: center;
83        padding: 5px;
84}
Note: See TracBrowser for help on using the repository browser.