summaryrefslogtreecommitdiff
blob: 88ac9fe72d518f57afe40886cce42d7c2929fa16 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/* AtD error styles */

.hiddenSpellError
{
   border-bottom: 2px solid red;
   cursor: default;
}

.hiddenGrammarError
{
   border-bottom: 2px solid green;
   cursor: default;
}

.hiddenSuggestion
{
   border-bottom: 2px solid blue;
   cursor: default;
}

/* Menu styles derived from:
 * jquery.spellchecker.js - a simple jQuery Spell Checker
 * Copyright (c) 2008 Richard Willis
 * MIT license  : http://www.opensource.org/licenses/mit-license.php
 * Project      : http://jquery-spellchecker.googlecode.com
 */

#suggestmenu
{
   min-width: 122px;
   background: #ebeaeb;
   position: absolute;
   display: none;
   z-index: 9999;
   overflow: none;
   margin-top: 1px;
   text-align: left;
   font-size: 11px;
}

#suggestmenu strong
{
   background: #cccccc;
   font-weight: bold;
   padding:3px 6px 3px 6px;
   display:block;
   border:1px solid #dddddd;
   border-bottom: 1px solid #aaaaaa;
   color: black;
}

#suggestmenu em
{
   text-align:center;
   padding:3px 6px 3px 6px;
   display:block;
   border-top:1px solid #ccc;
   border-left:1px solid #ccc;
}

#suggestmenu a, #suggestmenu a:visited
{
   background: #ebeaeb;
   border-left:1px solid #dddddd;
   border-right:1px solid #dddddd;
   padding:3px 6px 3px 6px;
   display:block;
   margin:0px;
   text-decoration:none;
   color: black;
   outline:none
}

#suggestmenu a.first, #suggestmenu a.first:visited
{
   border-top:1px solid #dddddd;
}

.spell_sep_bottom
{
   border-bottom: 1px solid #dddddd;
}

.spell_sep_top
{
   border-top: 1px solid #aaaaaa;
}

#suggestmenu a:hover
{
   color:#000;
   background: #f5f5f5;
}

#suggestmenu .foot
{
   border-top:1px solid #aaaaaa;
   background:#fff
}

#suggestmenu .foot a, #suggestmenu .foot a:visited
{
   outline:none
}

/* TinyMCE 4.0 */
div.mce-atd-menu-title.mce-disabled {
	padding: 3px 12px 0;
}

div.mce-atd-menu-title.mce-disabled:hover,
div.mce-atd-menu-title.mce-disabled:hover span.mce-text {
	background: none;
	color: #888;
	cursor: default;
}

div.mce-atd-menu-title.mce-disabled span.mce-text {
	font-weight: bold;
	color: #888;
}