source: branches/2.2/filemanager/tp/ckeditor/_source/skins/kama/templates.css @ 3019

Revision 3019, 1.2 KB checked in by amuller, 14 years ago (diff)

Ticket #1135 - Corrigindo CSS e adicionando filemanager

Line 
1/*
2Copyright (c) 2003-2009, 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: auto;
15        width: 100%;
16        height: 220px;
17}
18
19.cke_skin_kama .cke_tpl_item
20{
21        margin: 5px;
22        padding: 7px;
23        border: #eeeeee 1px solid;
24        *width: 88%;
25}
26
27.cke_skin_kama .cke_tpl_preview
28{
29        border-collapse: separate;
30        text-indent:0;
31        width: 100%;
32}
33.cke_skin_kama .cke_tpl_preview td
34{
35        padding: 2px;
36        vertical-align: middle;
37}
38.cke_skin_kama .cke_tpl_preview .cke_tpl_preview_img
39{
40        width: 100px;
41}
42.cke_skin_kama .cke_tpl_preview span
43{
44        white-space: normal;
45}
46
47.cke_skin_kama .cke_tpl_title
48{
49        font-weight: bold;
50}
51
52.cke_skin_kama .cke_tpl_hover
53{
54        border: #ff9933 1px solid !important;
55        background-color: #fffacd !important;
56        cursor: pointer;
57        cursor: hand;
58}
59/*
60 * Fix property 'cursor' doesn't inherit on table
61 */
62.cke_skin_kama .cke_tpl_hover *
63{
64        cursor: inherit;
65}
66
67.cke_skin_kama .cke_tpl_empty, .cke_tpl_loading
68{
69        text-align: center;
70        padding: 5px;
71}
Note: See TracBrowser for help on using the repository browser.