blob: 93712d964e0b9f4a5b5f92cea184397d4b933705 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
/*
Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* Styles for the "templates" plugin.
*/
.cke_skin_office2003 .cke_tpl_list
{
border: #dcdcdc 2px solid;
background-color: #ffffff;
overflow: auto;
width: 100%;
height: 220px;
}
.cke_skin_office2003 .cke_tpl_item
{
margin: 5px;
padding: 7px;
border: #eeeeee 1px solid;
*width: 88%;
}
.cke_skin_office2003 .cke_tpl_preview
{
border-collapse: separate;
text-indent:0;
width: 100%;
}
.cke_skin_office2003 .cke_tpl_preview td
{
padding: 2px;
vertical-align: middle;
}
.cke_skin_office2003 .cke_tpl_preview .cke_tpl_preview_img
{
width: 100px;
}
.cke_skin_office2003 .cke_tpl_preview span
{
white-space: normal;
}
.cke_skin_office2003 .cke_tpl_title
{
font-weight: bold;
}
.cke_skin_office2003 .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_office2003 .cke_tpl_hover *
{
cursor: inherit;
}
.cke_skin_office2003 .cke_tpl_empty, .cke_tpl_loading
{
text-align: center;
padding: 5px;
}
|