100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
div#grammalecte_tooltip_message_block {
margin: 0;
padding: 5px 10px 5px 10px;
background-color: hsl(210, 50%, 30%);
color: hsl(210, 50%, 96%);
}
div#grammalecte_tooltip_actions {
margin: 0;
padding: 7px 10px 5px 10px;
background-color: hsl(210, 50%, 30%);
color: hsl(210, 50%, 96%);
}
div#grammalecte_tooltip_rule_id {
display: none;
|
>
>
|
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
div#grammalecte_tooltip_message_block {
margin: 0;
padding: 5px 10px 5px 10px;
background-color: hsl(210, 50%, 30%);
color: hsl(210, 50%, 96%);
}
div#grammalecte_tooltip_actions {
display: flex;
justify-content: space-between;
margin: 0;
padding: 7px 10px 5px 10px;
background-color: hsl(210, 50%, 30%);
color: hsl(210, 50%, 96%);
}
div#grammalecte_tooltip_rule_id {
display: none;
|
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
text-decoration: none;
}
div#grammalecte_tooltip_ignore:hover {
background-color: hsl(30, 30%, 50%);
color: hsla(0, 0%, 100%, 1);
text-shadow: 0 0 3px hsl(30, 30%, 60%);
}
div#grammalecte_tooltip_url, div#grammalecte_tooltip_db_search {
display: inline-block;
margin-left: 10px;
padding: 1px 5px;
background-color: hsl(210, 50%, 50%);
color: hsla(210, 0%, 96%, 1);
border-radius: 2px;
cursor: pointer;
font-family: Tahoma, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", sans-serif;
font-size: 12px;
text-decoration: none;
}
div#grammalecte_tooltip_url:hover, div#grammalecte_tooltip_db_search:hover {
background-color: hsl(210, 50%, 60%);
color: hsla(0, 0%, 100%, 1);
text-shadow: 0 0 3px hsl(210, 30%, 60%);
}
div#grammalecte_tooltip_sugg_title {
padding: 0 10px;
background-color: hsl(210, 10%, 90%);
color: hsl(210, 50%, 30%);
font-family: Tahoma, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", sans-serif;
font-size: 10px;
|
|
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
|
text-decoration: none;
}
div#grammalecte_tooltip_ignore:hover {
background-color: hsl(30, 30%, 50%);
color: hsla(0, 0%, 100%, 1);
text-shadow: 0 0 3px hsl(30, 30%, 60%);
}
div#grammalecte_tooltip_url {
display: inline-block;
margin-left: 10px;
padding: 1px 5px;
background-color: hsl(210, 50%, 50%);
color: hsla(210, 0%, 96%, 1);
border-radius: 2px;
cursor: pointer;
font-family: Tahoma, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", sans-serif;
font-size: 12px;
text-decoration: none;
}
div#grammalecte_tooltip_url:hover {
background-color: hsl(210, 50%, 60%);
color: hsla(0, 0%, 100%, 1);
text-shadow: 0 0 3px hsl(210, 30%, 60%);
}
div#grammalecte_tooltip_db_search {
display: inline-block;
margin-left: 10px;
padding: 1px 5px;
/*background-color: hsl(210, 50%, 50%);*/
color: hsla(210, 0%, 96%, .1);
border-radius: 2px;
cursor: pointer;
font-family: Tahoma, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", sans-serif;
font-size: 12px;
text-decoration: none;
}
div#grammalecte_tooltip_db_search:hover {
background-color: hsla(210, 50%, 50%, .1);
color: hsla(0, 0%, 100%, .2);
text-shadow: 0 0 3px hsla(210, 30%, 60%, .2);
}
div#grammalecte_tooltip_sugg_title {
padding: 0 10px;
background-color: hsl(210, 10%, 90%);
color: hsl(210, 50%, 30%);
font-family: Tahoma, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", sans-serif;
font-size: 10px;
|