blob: 403dcc529f8c843c1bd2fa698b0dc79e934e216c (
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
|
.dijitAdditionalEditorIconInsertEntity {
/* icon in toolbar for this plugin */
background-image: url(../icons/insertEntity.gif);
background-repeat: no-repeat;
background-position: center center;
width: 18px;
height: 18px;
}
.dijitDisabled .dijitAdditionalEditorIconInsertEntity {
/* icon in toolbar for this plugin, when the plugin is disabled */
background-image: url(../icons/insertEntityDisabled.gif);
}
.dojoxEntityPalette {
/* outer node of the dropdown */
border: 1px solid #999;
background: #fff;
-moz-border-radius: 3pt;
}
.dojoxEntityPaletteCell {
/* individual cell of the drop down */
border: 1px dotted gray;
width: 20px; /* todo: don't hardcode width/height; it's neither necessary nor a11y safe */
line-height: 18px;
overflow: hidden;
z-index: 10;
text-align: center;
}
.dojoxEntityPaletteCell:hover, .dojoxEntityPaletteCell:active, .dojoxEntityPaletteCell:focus {
width: 18px;
line-height: 16px;
overflow: hidden;
cursor: default;
border:1px dashed #000;
outline:1px dashed #dedede;
}
.dojoxEntityPalettePreviewTable {
table-layout: auto;
font-size: 1em;
width: 100%;
}
.dojoxEntityPalettePreviewHeader {
font-size: .8em;
padding: 3px 3px 3px 3px;
}
.dojoxEntityPalettePreviewDetailEntity {
font-size: 3em;
font-weight: bold;
width: 1em;
text-align: center;
}
.dojoxEntityPalettePreviewDetail {
font-size: 1em;
vertical-align: middle;
font-weight: bold;
padding: 3px 3px 3px 3px;
}
.dijit_a11y .dojoxEntityPaletteCell {
background-color:transparent !important;
}
|