author | ymh <ymh.work@gmail.com> |
Tue, 27 Sep 2022 16:37:53 +0200 | |
changeset 19 | 3d72ae0968f4 |
parent 18 | be944660c56a |
child 21 | 48c4eec2b7e6 |
permissions | -rw-r--r-- |
0 | 1 |
/*------------------------------------------------------------------------------ |
2 |
TinyMCE and Quicklinks toolbars |
|
3 |
------------------------------------------------------------------------------*/ |
|
4 |
||
5 | 5 |
/* TinyMCE widgets/containers */ |
6 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
7 |
.mce-tinymce { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
8 |
box-shadow: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
9 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
10 |
|
5 | 11 |
.mce-container, |
12 |
.mce-container *, |
|
13 |
.mce-widget, |
|
14 |
.mce-widget * { |
|
15 |
color: inherit; |
|
16 |
font-family: inherit; |
|
17 |
} |
|
18 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
19 |
.mce-container .mce-monospace, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
20 |
.mce-widget .mce-monospace { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
21 |
font-family: Consolas, Monaco, monospace; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
22 |
font-size: 13px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
23 |
line-height: 150%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
24 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
25 |
|
5 | 26 |
/* TinyMCE windows */ |
27 |
#mce-modal-block, |
|
28 |
#mce-modal-block.mce-fade { |
|
29 |
opacity: 0.7; |
|
30 |
filter: alpha(opacity=70); |
|
31 |
transition: none; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
32 |
background: #000; |
5 | 33 |
} |
34 |
||
35 |
.mce-window { |
|
36 |
border-radius: 0; |
|
9 | 37 |
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); |
5 | 38 |
-webkit-font-smoothing: subpixel-antialiased; |
39 |
transition: none; |
|
40 |
} |
|
41 |
||
42 |
.mce-window .mce-container-body.mce-abs-layout { |
|
43 |
overflow: visible; |
|
44 |
} |
|
45 |
||
46 |
.mce-window .mce-window-head { |
|
18 | 47 |
background: #fff; |
48 |
border-bottom: 1px solid #dcdcde; |
|
5 | 49 |
padding: 0; |
50 |
min-height: 36px; |
|
51 |
} |
|
52 |
||
53 |
.mce-window .mce-window-head .mce-title { |
|
18 | 54 |
color: #3c434a; |
5 | 55 |
font-size: 18px; |
56 |
font-weight: 600; |
|
57 |
line-height: 36px; |
|
58 |
margin: 0; |
|
59 |
padding: 0 36px 0 16px; |
|
60 |
} |
|
61 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
62 |
.mce-window .mce-window-head .mce-close, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
63 |
.mce-window-head .mce-close .mce-i-remove { |
5 | 64 |
color: transparent; |
65 |
top: 0; |
|
66 |
right: 0; |
|
67 |
width: 36px; |
|
68 |
height: 36px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
69 |
padding: 0; |
5 | 70 |
line-height: 36px; |
71 |
text-align: center; |
|
72 |
} |
|
73 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
74 |
.mce-window-head .mce-close .mce-i-remove:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
75 |
font: normal 20px/36px dashicons; |
5 | 76 |
text-align: center; |
18 | 77 |
color: #646970; |
5 | 78 |
width: 36px; |
79 |
height: 36px; |
|
80 |
display: block; |
|
81 |
} |
|
82 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
83 |
.mce-window-head .mce-close:hover .mce-i-remove:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
84 |
.mce-window-head .mce-close:focus .mce-i-remove:before { |
18 | 85 |
color: #135e96; |
5 | 86 |
} |
87 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
88 |
.mce-window-head .mce-close:focus .mce-i-remove, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
89 |
div.mce-tab:focus { |
18 | 90 |
box-shadow: 0 0 0 1px #4f94d4, |
91 |
0 0 2px 1px rgba(79, 148, 212, 0.8); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
92 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
93 |
|
5 | 94 |
.mce-window .mce-window-head .mce-dragh { |
95 |
width: calc( 100% - 36px ); |
|
96 |
} |
|
97 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
98 |
.mce-window .mce-foot { |
18 | 99 |
border-top: 1px solid #dcdcde; |
5 | 100 |
} |
101 |
||
102 |
.mce-textbox, |
|
103 |
.mce-checkbox i.mce-i-checkbox, |
|
104 |
#wp-link .query-results { |
|
18 | 105 |
border: 1px solid #dcdcde; |
5 | 106 |
border-radius: 0; |
9 | 107 |
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07); |
5 | 108 |
transition: .05s all ease-in-out; |
109 |
} |
|
110 |
||
111 |
.mce-textbox:focus, |
|
112 |
.mce-textbox.mce-focus, |
|
113 |
.mce-checkbox:focus i.mce-i-checkbox, |
|
114 |
#wp-link .query-results:focus { |
|
18 | 115 |
border-color: #4f94d4; |
116 |
box-shadow: 0 0 2px rgba(79, 148, 212, 0.8); |
|
5 | 117 |
} |
118 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
119 |
.mce-window .mce-wp-help { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
120 |
height: 360px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
121 |
width: 460px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
122 |
overflow: auto; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
123 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
124 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
125 |
.mce-window .mce-wp-help * { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
126 |
box-sizing: border-box; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
127 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
128 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
129 |
.mce-window .mce-wp-help > .mce-container-body { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
130 |
width: auto !important; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
131 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
132 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
133 |
.mce-window .wp-editor-help { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
134 |
padding: 10px 10px 0 20px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
135 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
136 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
137 |
.mce-window .wp-editor-help h2, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
138 |
.mce-window .wp-editor-help p { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
139 |
margin: 8px 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
140 |
white-space: normal; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
141 |
font-size: 14px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
142 |
font-weight: 400; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
143 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
144 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
145 |
.mce-window .wp-editor-help table { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
146 |
width: 100%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
147 |
margin-bottom: 20px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
148 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
149 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
150 |
.mce-window .wp-editor-help table.wp-help-single { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
151 |
margin: 0 8px 20px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
152 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
153 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
154 |
.mce-window .wp-editor-help table.fixed { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
155 |
table-layout: fixed; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
156 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
157 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
158 |
.mce-window .wp-editor-help table.fixed th:nth-child(odd), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
159 |
.mce-window .wp-editor-help table.fixed td:nth-child(odd) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
160 |
width: 12%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
161 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
162 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
163 |
.mce-window .wp-editor-help table.fixed th:nth-child(even), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
164 |
.mce-window .wp-editor-help table.fixed td:nth-child(even) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
165 |
width: 38%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
166 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
167 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
168 |
.mce-window .wp-editor-help table.fixed th:nth-child(odd) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
169 |
padding: 5px 0 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
170 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
171 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
172 |
.mce-window .wp-editor-help td, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
173 |
.mce-window .wp-editor-help th { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
174 |
font-size: 13px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
175 |
padding: 5px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
176 |
vertical-align: middle; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
177 |
word-wrap: break-word; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
178 |
white-space: normal; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
179 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
180 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
181 |
.mce-window .wp-editor-help th { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
182 |
font-weight: 600; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
183 |
padding-bottom: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
184 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
185 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
186 |
.mce-window .wp-editor-help kbd { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
187 |
font-family: monospace; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
188 |
padding: 2px 7px 3px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
189 |
font-weight: 600; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
190 |
margin: 0; |
18 | 191 |
background: #f0f0f1; |
9 | 192 |
background: rgba(0, 0, 0, 0.08); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
193 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
194 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
195 |
.mce-window .wp-help-th-center td:nth-child(odd), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
196 |
.mce-window .wp-help-th-center th:nth-child(odd) { |
9 | 197 |
text-align: center; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
198 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
199 |
|
5 | 200 |
/* TinyMCE menus */ |
201 |
.mce-menu, |
|
202 |
.mce-floatpanel.mce-popover { |
|
9 | 203 |
border-color: rgba(0, 0, 0, 0.15); |
5 | 204 |
border-radius: 0; |
9 | 205 |
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); |
5 | 206 |
} |
207 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
208 |
.mce-menu, |
5 | 209 |
.mce-floatpanel.mce-popover.mce-bottom { |
210 |
margin-top: 2px; |
|
211 |
} |
|
212 |
||
213 |
.mce-floatpanel .mce-arrow { |
|
214 |
display: none; |
|
215 |
} |
|
216 |
||
217 |
.mce-menu .mce-container-body { |
|
218 |
min-width: 160px; |
|
219 |
} |
|
220 |
||
221 |
.mce-menu-item { |
|
222 |
border: none; |
|
223 |
margin-bottom: 2px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
224 |
padding: 6px 15px 6px 12px; |
5 | 225 |
} |
226 |
||
227 |
.mce-menu-has-icons i.mce-ico { |
|
228 |
line-height: 20px; |
|
229 |
} |
|
230 |
||
231 |
/* TinyMCE panel */ |
|
232 |
div.mce-panel { |
|
0 | 233 |
border: 0; |
5 | 234 |
background: #fff; |
235 |
} |
|
236 |
||
237 |
.mce-panel.mce-menu { |
|
18 | 238 |
border: 1px solid #dcdcde; |
5 | 239 |
} |
240 |
||
241 |
div.mce-tab { |
|
242 |
line-height: 13px; |
|
243 |
} |
|
244 |
||
245 |
/* TinyMCE toolbars */ |
|
246 |
div.mce-toolbar-grp { |
|
18 | 247 |
border-bottom: 1px solid #dcdcde; |
248 |
background: #f6f7f7; |
|
5 | 249 |
padding: 0; |
250 |
position: relative; |
|
251 |
} |
|
252 |
||
253 |
div.mce-inline-toolbar-grp { |
|
18 | 254 |
border: 1px solid #a7aaad; |
5 | 255 |
border-radius: 2px; |
9 | 256 |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15); |
5 | 257 |
box-sizing: border-box; |
258 |
margin-bottom: 8px; |
|
259 |
position: absolute; |
|
260 |
-webkit-user-select: none; |
|
261 |
user-select: none; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
262 |
max-width: 98%; |
5 | 263 |
z-index: 100100; /* Same as the other TinyMCE "panels" */ |
264 |
} |
|
265 |
||
266 |
div.mce-inline-toolbar-grp > div.mce-stack-layout { |
|
267 |
padding: 1px; |
|
268 |
} |
|
269 |
||
270 |
div.mce-inline-toolbar-grp.mce-arrow-up { |
|
271 |
margin-bottom: 0; |
|
272 |
margin-top: 8px; |
|
273 |
} |
|
274 |
||
275 |
div.mce-inline-toolbar-grp:before, |
|
276 |
div.mce-inline-toolbar-grp:after { |
|
277 |
position: absolute; |
|
278 |
left: 50%; |
|
279 |
display: block; |
|
280 |
width: 0; |
|
281 |
height: 0; |
|
282 |
border-style: solid; |
|
283 |
border-color: transparent; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
284 |
content: ""; |
5 | 285 |
} |
286 |
||
287 |
div.mce-inline-toolbar-grp.mce-arrow-up:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
288 |
top: -9px; |
18 | 289 |
border-bottom-color: #a7aaad; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
290 |
border-width: 0 9px 9px; |
5 | 291 |
margin-left: -9px; |
292 |
} |
|
293 |
||
294 |
div.mce-inline-toolbar-grp.mce-arrow-down:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
295 |
bottom: -9px; |
18 | 296 |
border-top-color: #a7aaad; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
297 |
border-width: 9px 9px 0; |
5 | 298 |
margin-left: -9px; |
299 |
} |
|
300 |
||
301 |
div.mce-inline-toolbar-grp.mce-arrow-up:after { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
302 |
top: -8px; |
18 | 303 |
border-bottom-color: #f6f7f7; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
304 |
border-width: 0 8px 8px; |
5 | 305 |
margin-left: -8px; |
306 |
} |
|
307 |
||
308 |
div.mce-inline-toolbar-grp.mce-arrow-down:after { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
309 |
bottom: -8px; |
18 | 310 |
border-top-color: #f6f7f7; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
311 |
border-width: 8px 8px 0; |
5 | 312 |
margin-left: -8px; |
313 |
} |
|
314 |
||
315 |
div.mce-inline-toolbar-grp.mce-arrow-left:before, |
|
316 |
div.mce-inline-toolbar-grp.mce-arrow-left:after { |
|
317 |
margin: 0; |
|
318 |
} |
|
319 |
||
320 |
div.mce-inline-toolbar-grp.mce-arrow-left:before { |
|
321 |
left: 20px; |
|
322 |
} |
|
323 |
div.mce-inline-toolbar-grp.mce-arrow-left:after { |
|
324 |
left: 21px; |
|
325 |
} |
|
326 |
||
327 |
div.mce-inline-toolbar-grp.mce-arrow-right:before, |
|
328 |
div.mce-inline-toolbar-grp.mce-arrow-right:after { |
|
329 |
left: auto; |
|
330 |
margin: 0; |
|
331 |
} |
|
332 |
||
333 |
div.mce-inline-toolbar-grp.mce-arrow-right:before { |
|
334 |
right: 20px; |
|
335 |
} |
|
336 |
||
337 |
div.mce-inline-toolbar-grp.mce-arrow-right:after { |
|
338 |
right: 21px; |
|
339 |
} |
|
340 |
||
341 |
div.mce-inline-toolbar-grp.mce-arrow-full { |
|
342 |
right: 0; |
|
343 |
} |
|
344 |
||
345 |
div.mce-inline-toolbar-grp.mce-arrow-full > div { |
|
346 |
width: 100%; |
|
347 |
overflow-x: auto; |
|
348 |
} |
|
349 |
||
350 |
div.mce-toolbar-grp > div { |
|
351 |
padding: 3px; |
|
352 |
} |
|
353 |
||
354 |
.has-dfw div.mce-toolbar-grp .mce-toolbar.mce-first { |
|
355 |
padding-right: 32px; |
|
356 |
} |
|
357 |
||
358 |
.mce-toolbar .mce-btn-group { |
|
359 |
margin: 0; |
|
360 |
} |
|
361 |
||
9 | 362 |
/* Classic block hide/show toolbars */ |
363 |
.block-library-classic__toolbar .mce-toolbar-grp .mce-toolbar:not(:first-child) { |
|
364 |
display: none; |
|
365 |
} |
|
366 |
||
367 |
.block-library-classic__toolbar.has-advanced-toolbar .mce-toolbar-grp .mce-toolbar { |
|
368 |
display: block; |
|
369 |
} |
|
370 |
||
5 | 371 |
div.mce-statusbar { |
18 | 372 |
border-top: 1px solid #dcdcde; |
5 | 373 |
} |
374 |
||
375 |
div.mce-path { |
|
376 |
padding: 2px 10px; |
|
377 |
margin: 0; |
|
378 |
} |
|
379 |
||
380 |
.mce-path, |
|
381 |
.mce-path-item, |
|
382 |
.mce-path .mce-divider { |
|
383 |
font-size: 12px; |
|
384 |
} |
|
385 |
||
386 |
.mce-toolbar .mce-btn, |
|
387 |
.qt-dfw { |
|
388 |
border-color: transparent; |
|
389 |
background: transparent; |
|
390 |
box-shadow: none; |
|
391 |
text-shadow: none; |
|
392 |
cursor: pointer; |
|
393 |
} |
|
394 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
395 |
.mce-btn .mce-txt { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
396 |
direction: inherit; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
397 |
text-align: inherit; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
398 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
399 |
|
5 | 400 |
.mce-toolbar .mce-btn-group .mce-btn, |
401 |
.qt-dfw { |
|
402 |
border: 1px solid transparent; |
|
403 |
margin: 2px; |
|
404 |
border-radius: 2px; |
|
405 |
} |
|
406 |
||
407 |
.mce-toolbar .mce-btn-group .mce-btn:hover, |
|
408 |
.mce-toolbar .mce-btn-group .mce-btn:focus, |
|
409 |
.qt-dfw:hover, |
|
410 |
.qt-dfw:focus { |
|
18 | 411 |
background: #f6f7f7; |
412 |
border-color: #50575e; |
|
413 |
color: #1d2327; |
|
9 | 414 |
box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0, 0, 0, 0.08); |
5 | 415 |
outline: none; |
416 |
} |
|
417 |
||
418 |
.mce-toolbar .mce-btn-group .mce-btn.mce-active, |
|
419 |
.mce-toolbar .mce-btn-group .mce-btn:active, |
|
420 |
.qt-dfw.active { |
|
18 | 421 |
background: #f0f0f1; |
422 |
border-color: #50575e; |
|
9 | 423 |
box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.3); |
5 | 424 |
} |
425 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
426 |
.mce-btn.mce-active, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
427 |
.mce-btn.mce-active button, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
428 |
.mce-btn.mce-active:hover button, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
429 |
.mce-btn.mce-active i, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
430 |
.mce-btn.mce-active:hover i { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
431 |
color: inherit; |
5 | 432 |
} |
433 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
434 |
.mce-toolbar .mce-btn-group .mce-btn.mce-active:hover, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
435 |
.mce-toolbar .mce-btn-group .mce-btn.mce-active:focus { |
18 | 436 |
border-color: #1d2327; |
5 | 437 |
} |
438 |
||
439 |
.mce-toolbar .mce-btn-group .mce-btn.mce-disabled:hover, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
440 |
.mce-toolbar .mce-btn-group .mce-btn.mce-disabled:focus { |
18 | 441 |
color: #a7aaad; |
5 | 442 |
background: none; |
18 | 443 |
border-color: #dcdcde; |
5 | 444 |
text-shadow: 0 1px 0 #fff; |
445 |
box-shadow: none; |
|
446 |
} |
|
447 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
448 |
.mce-toolbar .mce-btn-group .mce-btn.mce-disabled:focus { |
18 | 449 |
border-color: #50575e; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
450 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
451 |
|
5 | 452 |
.mce-toolbar .mce-btn-group .mce-first, |
453 |
.mce-toolbar .mce-btn-group .mce-last { |
|
454 |
border-color: transparent; |
|
455 |
} |
|
456 |
||
457 |
.mce-toolbar .mce-btn button, |
|
458 |
.qt-dfw { |
|
459 |
padding: 2px 3px; |
|
460 |
line-height: normal; |
|
461 |
} |
|
462 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
463 |
.mce-toolbar .mce-listbox button { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
464 |
font-size: 13px; |
16 | 465 |
line-height: 1.53846153; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
466 |
padding-left: 6px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
467 |
padding-right: 20px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
468 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
469 |
|
5 | 470 |
.mce-toolbar .mce-btn i { |
471 |
text-shadow: none; |
|
472 |
} |
|
473 |
||
474 |
.mce-toolbar .mce-btn-group > div { |
|
475 |
white-space: normal; |
|
476 |
} |
|
477 |
||
478 |
.mce-toolbar .mce-colorbutton .mce-open { |
|
479 |
border-right: 0; |
|
480 |
} |
|
481 |
||
482 |
.mce-toolbar .mce-colorbutton .mce-preview { |
|
0 | 483 |
margin: 0; |
484 |
padding: 0; |
|
5 | 485 |
top: auto; |
486 |
bottom: 2px; |
|
487 |
left: 3px; |
|
488 |
height: 3px; |
|
489 |
width: 20px; |
|
18 | 490 |
background: #50575e; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
491 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
492 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
493 |
.mce-toolbar .mce-btn-group .mce-btn.mce-primary { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
494 |
min-width: 0; |
18 | 495 |
background: #3582c4; |
496 |
border-color: #2271b1 #135e96 #135e96; |
|
497 |
box-shadow: 0 1px 0 #135e96; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
498 |
color: #fff; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
499 |
text-decoration: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
500 |
text-shadow: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
501 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
502 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
503 |
/* Compensate for the extra box shadow at the bottom of .mce-btn.mce-primary */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
504 |
.mce-toolbar .mce-btn-group .mce-btn.mce-primary button { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
505 |
padding: 2px 3px 1px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
506 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
507 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
508 |
.mce-toolbar .mce-btn-group .mce-btn.mce-primary .mce-ico { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
509 |
color: #fff; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
510 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
511 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
512 |
.mce-toolbar .mce-btn-group .mce-btn.mce-primary:hover, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
513 |
.mce-toolbar .mce-btn-group .mce-btn.mce-primary:focus { |
18 | 514 |
background: #4f94d4; |
515 |
border-color: #135e96; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
516 |
color: #fff; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
517 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
518 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
519 |
.mce-toolbar .mce-btn-group .mce-btn.mce-primary:focus { |
18 | 520 |
box-shadow: 0 0 1px 1px #72aee6; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
521 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
522 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
523 |
.mce-toolbar .mce-btn-group .mce-btn.mce-primary:active { |
18 | 524 |
background: #2271b1; |
525 |
border-color: #135e96; |
|
526 |
box-shadow: inset 0 2px 0 #135e96; |
|
5 | 527 |
} |
528 |
||
529 |
/* mce listbox */ |
|
530 |
.mce-toolbar .mce-btn-group .mce-btn.mce-listbox { |
|
9 | 531 |
border-radius: 0; |
532 |
direction: ltr; |
|
533 |
background: #fff; |
|
18 | 534 |
border: 1px solid #dcdcde; |
9 | 535 |
box-shadow: inset 0 1px 1px -1px rgba(0, 0, 0, 0.2); |
5 | 536 |
} |
537 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
538 |
.mce-toolbar .mce-btn-group .mce-btn.mce-listbox:hover, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
539 |
.mce-toolbar .mce-btn-group .mce-btn.mce-listbox:focus { |
18 | 540 |
border-color: #c3c4c7; |
5 | 541 |
} |
542 |
||
543 |
.mce-panel .mce-btn i.mce-caret { |
|
18 | 544 |
border-top: 6px solid #50575e; |
5 | 545 |
margin-left: 2px; |
546 |
margin-right: 2px; |
|
547 |
} |
|
548 |
||
549 |
.mce-listbox i.mce-caret { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
550 |
right: 4px; |
5 | 551 |
} |
552 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
553 |
.mce-panel .mce-btn:hover i.mce-caret, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
554 |
.mce-panel .mce-btn:focus i.mce-caret { |
18 | 555 |
border-top-color: #1d2327; |
5 | 556 |
} |
557 |
||
558 |
.mce-panel .mce-active i.mce-caret { |
|
559 |
border-top: 0; |
|
18 | 560 |
border-bottom: 6px solid #1d2327; |
5 | 561 |
margin-top: 7px; |
562 |
} |
|
563 |
||
564 |
.mce-listbox.mce-active i.mce-caret { |
|
565 |
margin-top: -3px; |
|
566 |
} |
|
567 |
||
568 |
.mce-toolbar .mce-splitbtn:hover .mce-open { |
|
569 |
border-right-color: transparent; |
|
570 |
} |
|
571 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
572 |
.mce-toolbar .mce-splitbtn .mce-open.mce-active { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
573 |
background: transparent; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
574 |
outline: none; |
5 | 575 |
} |
576 |
||
577 |
.mce-menu .mce-menu-item:hover, |
|
578 |
.mce-menu .mce-menu-item.mce-selected, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
579 |
.mce-menu .mce-menu-item:focus, |
9 | 580 |
.mce-menu .mce-menu-item.mce-active.mce-menu-item-normal, |
581 |
.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview { |
|
18 | 582 |
background: #2271b1; /* See color scheme. */ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
583 |
color: #fff; |
5 | 584 |
} |
585 |
||
9 | 586 |
.mce-menu .mce-menu-item:hover .mce-caret, |
587 |
.mce-menu .mce-menu-item:focus .mce-caret, |
|
588 |
.mce-menu .mce-menu-item.mce-selected .mce-caret { |
|
589 |
border-left-color: #fff; |
|
590 |
} |
|
591 |
||
592 |
/* rtl:ignore */ |
|
593 |
.rtl .mce-menu .mce-menu-item:hover .mce-caret, |
|
594 |
.rtl .mce-menu .mce-menu-item:focus .mce-caret, |
|
595 |
.rtl .mce-menu .mce-menu-item.mce-selected .mce-caret { |
|
596 |
border-left-color: inherit; |
|
597 |
border-right-color: #fff; |
|
598 |
} |
|
599 |
||
600 |
.mce-menu .mce-menu-item:hover .mce-text, |
|
601 |
.mce-menu .mce-menu-item:focus .mce-text, |
|
602 |
.mce-menu .mce-menu-item:hover .mce-ico, |
|
603 |
.mce-menu .mce-menu-item:focus .mce-ico, |
|
604 |
.mce-menu .mce-menu-item.mce-selected .mce-text, |
|
605 |
.mce-menu .mce-menu-item.mce-selected .mce-ico, |
|
606 |
.mce-menu .mce-menu-item:hover .mce-menu-shortcut, |
|
607 |
.mce-menu .mce-menu-item:focus .mce-menu-shortcut, |
|
608 |
.mce-menu .mce-menu-item.mce-active .mce-menu-shortcut, |
|
609 |
.mce-menu .mce-menu-item.mce-disabled:hover .mce-text, |
|
610 |
.mce-menu .mce-menu-item.mce-disabled:hover .mce-ico { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
611 |
color: inherit; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
612 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
613 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
614 |
.mce-menu .mce-menu-item.mce-disabled { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
615 |
cursor: default; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
616 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
617 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
618 |
.mce-menu .mce-menu-item.mce-disabled:hover { |
18 | 619 |
background: #c3c4c7; |
0 | 620 |
} |
621 |
||
5 | 622 |
/* Menubar */ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
623 |
div.mce-menubar { |
18 | 624 |
border-color: #dcdcde; |
5 | 625 |
background: #fff; |
19 | 626 |
border-width: 0 0 1px; |
5 | 627 |
} |
628 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
629 |
.mce-menubar .mce-menubtn:hover, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
630 |
.mce-menubar .mce-menubtn.mce-active, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
631 |
.mce-menubar .mce-menubtn:focus { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
632 |
border-color: transparent; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
633 |
background: transparent; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
634 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
635 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
636 |
.mce-menubar .mce-menubtn:focus { |
18 | 637 |
color: #043959; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
638 |
box-shadow: |
18 | 639 |
0 0 0 1px #4f94d4, |
640 |
0 0 2px 1px rgba(79, 148, 212, 0.8); |
|
5 | 641 |
} |
642 |
||
643 |
div.mce-menu .mce-menu-item-sep, |
|
644 |
.mce-menu-item-sep:hover { |
|
18 | 645 |
border-bottom: 1px solid #dcdcde; |
19 | 646 |
height: 0; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
647 |
margin: 5px 0; |
5 | 648 |
} |
649 |
||
650 |
.mce-menubtn span { |
|
651 |
margin-right: 0; |
|
652 |
padding-left: 3px; |
|
653 |
} |
|
654 |
||
655 |
.mce-menu-has-icons i.mce-ico:before { |
|
656 |
margin-left: -2px; |
|
657 |
} |
|
658 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
659 |
/* Keyboard shortcuts position */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
660 |
.mce-menu.mce-menu-align .mce-menu-item-normal { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
661 |
position: relative; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
662 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
663 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
664 |
.mce-menu.mce-menu-align .mce-menu-shortcut { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
665 |
bottom: 0.6em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
666 |
font-size: 0.9em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
667 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
668 |
|
5 | 669 |
/* Buttons in modals */ |
670 |
.mce-primary button, |
|
671 |
.mce-primary button i { |
|
672 |
text-align: center; |
|
673 |
color: #fff; |
|
674 |
text-shadow: none; |
|
675 |
padding: 0; |
|
16 | 676 |
line-height: 1.85714285; |
5 | 677 |
} |
678 |
||
679 |
.mce-window .mce-btn { |
|
18 | 680 |
color: #50575e; |
681 |
background: #f6f7f7; |
|
0 | 682 |
text-decoration: none; |
5 | 683 |
font-size: 13px; |
684 |
line-height: 26px; |
|
685 |
height: 28px; |
|
686 |
margin: 0; |
|
687 |
padding: 0; |
|
688 |
cursor: pointer; |
|
18 | 689 |
border: 1px solid #c3c4c7; |
5 | 690 |
-webkit-appearance: none; |
691 |
border-radius: 3px; |
|
692 |
white-space: nowrap; |
|
18 | 693 |
box-shadow: 0 1px 0 #c3c4c7; |
5 | 694 |
} |
695 |
||
696 |
/* Remove the dotted border on :focus and the extra padding in Firefox */ |
|
697 |
.mce-window .mce-btn::-moz-focus-inner { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
698 |
border-width: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
699 |
border-style: none; |
5 | 700 |
padding: 0; |
701 |
} |
|
702 |
||
703 |
.mce-window .mce-btn:hover, |
|
704 |
.mce-window .mce-btn:focus { |
|
18 | 705 |
background: #f6f7f7; |
706 |
border-color: #8c8f94; |
|
707 |
color: #1d2327; |
|
5 | 708 |
} |
709 |
||
710 |
.mce-window .mce-btn:focus { |
|
18 | 711 |
border-color: #4f94d4; |
712 |
box-shadow: 0 0 3px rgba(34, 113, 177, 0.8); |
|
5 | 713 |
} |
714 |
||
715 |
.mce-window .mce-btn:active { |
|
18 | 716 |
background: #f0f0f1; |
717 |
border-color: #8c8f94; |
|
9 | 718 |
box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
719 |
transform: translateY(1px); |
5 | 720 |
} |
721 |
||
722 |
.mce-window .mce-btn.mce-disabled { |
|
18 | 723 |
color: #a7aaad !important; |
724 |
border-color: #dcdcde !important; |
|
725 |
background: #f6f7f7 !important; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
726 |
box-shadow: none !important; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
727 |
text-shadow: 0 1px 0 #fff !important; |
0 | 728 |
cursor: default; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
729 |
transform: none !important; |
0 | 730 |
} |
731 |
||
5 | 732 |
.mce-window .mce-btn.mce-primary { |
18 | 733 |
background: #3582c4; |
734 |
border-color: #2271b1 #135e96 #135e96; |
|
735 |
box-shadow: 0 1px 0 #135e96; |
|
5 | 736 |
color: #fff; |
737 |
text-decoration: none; |
|
18 | 738 |
text-shadow: 0 -1px 1px #135e96, |
739 |
1px 0 1px #135e96, |
|
740 |
0 1px 1px #135e96, |
|
741 |
-1px 0 1px #135e96; |
|
5 | 742 |
} |
743 |
||
744 |
.mce-window .mce-btn.mce-primary:hover, |
|
745 |
.mce-window .mce-btn.mce-primary:focus { |
|
18 | 746 |
background: #4f94d4; |
747 |
border-color: #135e96; |
|
5 | 748 |
color: #fff; |
0 | 749 |
} |
750 |
||
5 | 751 |
.mce-window .mce-btn.mce-primary:focus { |
18 | 752 |
box-shadow: 0 1px 0 #2271b1, |
753 |
0 0 2px 1px #72aee6; |
|
0 | 754 |
} |
755 |
||
5 | 756 |
.mce-window .mce-btn.mce-primary:active { |
18 | 757 |
background: #2271b1; |
758 |
border-color: #135e96; |
|
759 |
box-shadow: inset 0 2px 0 #135e96; |
|
5 | 760 |
vertical-align: top; |
0 | 761 |
} |
762 |
||
5 | 763 |
.mce-window .mce-btn.mce-primary.mce-disabled { |
18 | 764 |
color: #9ec2e6 !important; |
765 |
background: #4f94d4 !important; |
|
766 |
border-color: #3582c4 !important; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
767 |
box-shadow: none !important; |
9 | 768 |
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1) !important; |
5 | 769 |
cursor: default; |
0 | 770 |
} |
771 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
772 |
.mce-menubtn.mce-fixed-width span { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
773 |
overflow-x: hidden; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
774 |
text-overflow: ellipsis; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
775 |
width: 82px; |
5 | 776 |
} |
777 |
||
778 |
/* Charmap modal */ |
|
779 |
.mce-charmap { |
|
780 |
margin: 3px; |
|
0 | 781 |
} |
782 |
||
5 | 783 |
.mce-charmap td { |
784 |
padding: 0; |
|
18 | 785 |
border-color: #dcdcde; |
5 | 786 |
cursor: pointer; |
0 | 787 |
} |
788 |
||
5 | 789 |
.mce-charmap td:hover { |
18 | 790 |
background: #f6f7f7; |
5 | 791 |
} |
792 |
||
793 |
.mce-charmap td div { |
|
794 |
width: 18px; |
|
795 |
height: 22px; |
|
16 | 796 |
line-height: 1.57142857; |
0 | 797 |
} |
798 |
||
5 | 799 |
/* TinyMCE tooltips */ |
800 |
.mce-tooltip { |
|
801 |
margin-top: 2px; |
|
802 |
} |
|
803 |
||
804 |
.mce-tooltip-inner { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
805 |
border-radius: 3px; |
9 | 806 |
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); |
5 | 807 |
color: #fff; |
808 |
font-size: 12px; |
|
0 | 809 |
} |
810 |
||
5 | 811 |
/* TinyMCE icons */ |
812 |
.mce-ico { |
|
9 | 813 |
font-family: tinymce, Arial; |
5 | 814 |
} |
815 |
||
816 |
.mce-btn-small .mce-ico { |
|
9 | 817 |
font-family: tinymce-small, Arial; |
5 | 818 |
} |
819 |
||
820 |
.mce-toolbar .mce-ico { |
|
18 | 821 |
color: #50575e; |
16 | 822 |
line-height: 1; |
5 | 823 |
width: 20px; |
824 |
height: 20px; |
|
825 |
text-align: center; |
|
826 |
text-shadow: none; |
|
0 | 827 |
margin: 0; |
828 |
padding: 0; |
|
829 |
} |
|
830 |
||
5 | 831 |
.qt-dfw { |
18 | 832 |
color: #50575e; |
16 | 833 |
line-height: 1; |
5 | 834 |
width: 28px; |
835 |
height: 26px; |
|
836 |
text-align: center; |
|
837 |
text-shadow: none; |
|
0 | 838 |
} |
839 |
||
5 | 840 |
.mce-toolbar .mce-btn .mce-open { |
0 | 841 |
line-height: 20px; |
842 |
} |
|
843 |
||
5 | 844 |
.mce-toolbar .mce-btn:hover .mce-open, |
845 |
.mce-toolbar .mce-btn:focus .mce-open, |
|
846 |
.mce-toolbar .mce-btn.mce-active .mce-open { |
|
18 | 847 |
border-left-color: #1d2327; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
848 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
849 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
850 |
div.mce-notification { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
851 |
left: 10% !important; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
852 |
right: 10%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
853 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
854 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
855 |
.mce-notification button.mce-close { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
856 |
right: 6px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
857 |
top: 3px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
858 |
font-weight: 400; |
18 | 859 |
color: #50575e; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
860 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
861 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
862 |
.mce-notification button.mce-close:hover, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
863 |
.mce-notification button.mce-close:focus { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
864 |
color: #000; |
0 | 865 |
} |
866 |
||
5 | 867 |
i.mce-i-bold, |
868 |
i.mce-i-italic, |
|
869 |
i.mce-i-bullist, |
|
870 |
i.mce-i-numlist, |
|
871 |
i.mce-i-blockquote, |
|
872 |
i.mce-i-alignleft, |
|
873 |
i.mce-i-aligncenter, |
|
874 |
i.mce-i-alignright, |
|
875 |
i.mce-i-link, |
|
876 |
i.mce-i-unlink, |
|
877 |
i.mce-i-wp_more, |
|
878 |
i.mce-i-strikethrough, |
|
879 |
i.mce-i-spellchecker, |
|
880 |
i.mce-i-fullscreen, |
|
881 |
i.mce-i-wp_fullscreen, |
|
882 |
i.mce-i-dfw, |
|
883 |
i.mce-i-wp_adv, |
|
884 |
i.mce-i-underline, |
|
885 |
i.mce-i-alignjustify, |
|
886 |
i.mce-i-forecolor, |
|
887 |
i.mce-i-backcolor, |
|
888 |
i.mce-i-pastetext, |
|
889 |
i.mce-i-pasteword, |
|
890 |
i.mce-i-removeformat, |
|
891 |
i.mce-i-charmap, |
|
892 |
i.mce-i-outdent, |
|
893 |
i.mce-i-indent, |
|
894 |
i.mce-i-undo, |
|
895 |
i.mce-i-redo, |
|
896 |
i.mce-i-help, |
|
897 |
i.mce-i-wp_help, |
|
898 |
i.mce-i-wp-media-library, |
|
899 |
i.mce-i-ltr, |
|
900 |
i.mce-i-wp_page, |
|
901 |
i.mce-i-hr, |
|
902 |
i.mce-i-wp_code, |
|
903 |
i.mce-i-dashicon, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
904 |
i.mce-i-remove { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
905 |
font: normal 20px/1 dashicons; |
5 | 906 |
padding: 0; |
907 |
vertical-align: top; |
|
18 | 908 |
speak: never; |
5 | 909 |
-webkit-font-smoothing: antialiased; |
910 |
-moz-osx-font-smoothing: grayscale; |
|
911 |
margin-left: -2px; |
|
912 |
padding-right: 2px; |
|
0 | 913 |
} |
914 |
||
5 | 915 |
.qt-dfw { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
916 |
font: normal 20px/1 dashicons; |
5 | 917 |
vertical-align: top; |
18 | 918 |
speak: never; |
5 | 919 |
-webkit-font-smoothing: antialiased; |
920 |
-moz-osx-font-smoothing: grayscale; |
|
0 | 921 |
} |
922 |
||
5 | 923 |
i.mce-i-bold:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
924 |
content: "\f200"; |
0 | 925 |
} |
926 |
||
5 | 927 |
i.mce-i-italic:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
928 |
content: "\f201"; |
0 | 929 |
} |
930 |
||
5 | 931 |
i.mce-i-bullist:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
932 |
content: "\f203"; |
0 | 933 |
} |
934 |
||
5 | 935 |
i.mce-i-numlist:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
936 |
content: "\f204"; |
0 | 937 |
} |
938 |
||
5 | 939 |
i.mce-i-blockquote:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
940 |
content: "\f205"; |
0 | 941 |
} |
942 |
||
5 | 943 |
i.mce-i-alignleft:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
944 |
content: "\f206"; |
0 | 945 |
} |
946 |
||
5 | 947 |
i.mce-i-aligncenter:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
948 |
content: "\f207"; |
0 | 949 |
} |
950 |
||
5 | 951 |
i.mce-i-alignright:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
952 |
content: "\f208"; |
0 | 953 |
} |
954 |
||
5 | 955 |
i.mce-i-link:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
956 |
content: "\f103"; |
0 | 957 |
} |
958 |
||
5 | 959 |
i.mce-i-unlink:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
960 |
content: "\f225"; |
0 | 961 |
} |
962 |
||
5 | 963 |
i.mce-i-wp_more:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
964 |
content: "\f209"; |
0 | 965 |
} |
966 |
||
5 | 967 |
i.mce-i-strikethrough:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
968 |
content: "\f224"; |
0 | 969 |
} |
970 |
||
5 | 971 |
i.mce-i-spellchecker:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
972 |
content: "\f210"; |
0 | 973 |
} |
974 |
||
5 | 975 |
i.mce-i-fullscreen:before, |
976 |
i.mce-i-wp_fullscreen:before, |
|
977 |
i.mce-i-dfw:before, |
|
978 |
.qt-dfw:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
979 |
content: "\f211"; |
0 | 980 |
} |
981 |
||
5 | 982 |
i.mce-i-wp_adv:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
983 |
content: "\f212"; |
0 | 984 |
} |
985 |
||
5 | 986 |
i.mce-i-underline:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
987 |
content: "\f213"; |
0 | 988 |
} |
989 |
||
5 | 990 |
i.mce-i-alignjustify:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
991 |
content: "\f214"; |
0 | 992 |
} |
993 |
||
5 | 994 |
i.mce-i-forecolor:before, |
995 |
i.mce-i-backcolor:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
996 |
content: "\f215"; |
0 | 997 |
} |
998 |
||
5 | 999 |
i.mce-i-pastetext:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1000 |
content: "\f217"; |
0 | 1001 |
} |
1002 |
||
5 | 1003 |
i.mce-i-removeformat:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1004 |
content: "\f218"; |
0 | 1005 |
} |
1006 |
||
5 | 1007 |
i.mce-i-charmap:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1008 |
content: "\f220"; |
0 | 1009 |
} |
1010 |
||
5 | 1011 |
i.mce-i-outdent:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1012 |
content: "\f221"; |
5 | 1013 |
} |
0 | 1014 |
|
5 | 1015 |
i.mce-i-indent:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1016 |
content: "\f222"; |
5 | 1017 |
} |
0 | 1018 |
|
5 | 1019 |
i.mce-i-undo:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1020 |
content: "\f171"; |
5 | 1021 |
} |
0 | 1022 |
|
5 | 1023 |
i.mce-i-redo:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1024 |
content: "\f172"; |
5 | 1025 |
} |
0 | 1026 |
|
5 | 1027 |
i.mce-i-help:before, |
1028 |
i.mce-i-wp_help:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1029 |
content: "\f223"; |
5 | 1030 |
} |
0 | 1031 |
|
5 | 1032 |
i.mce-i-wp-media-library:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1033 |
content: "\f104"; |
0 | 1034 |
} |
1035 |
||
5 | 1036 |
i.mce-i-ltr:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1037 |
content: "\f320"; |
0 | 1038 |
} |
1039 |
||
5 | 1040 |
i.mce-i-wp_page:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1041 |
content: "\f105"; |
0 | 1042 |
} |
1043 |
||
5 | 1044 |
i.mce-i-hr:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1045 |
content: "\f460"; |
0 | 1046 |
} |
1047 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1048 |
i.mce-i-remove:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1049 |
content: "\f158"; |
0 | 1050 |
} |
1051 |
||
5 | 1052 |
i.mce-i-wp_code:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1053 |
content: "\f475"; |
0 | 1054 |
} |
1055 |
||
5 | 1056 |
/* RTL button icons */ |
1057 |
.rtl i.mce-i-outdent:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1058 |
content: "\f222"; |
0 | 1059 |
} |
1060 |
||
5 | 1061 |
.rtl i.mce-i-indent:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1062 |
content: "\f221"; |
0 | 1063 |
} |
1064 |
||
5 | 1065 |
/* Editors */ |
0 | 1066 |
.wp-editor-wrap { |
1067 |
position: relative; |
|
1068 |
} |
|
1069 |
||
5 | 1070 |
.wp-editor-tools { |
1071 |
position: relative; |
|
1072 |
z-index: 1; |
|
1073 |
} |
|
1074 |
||
1075 |
.wp-editor-tools:after { |
|
1076 |
clear: both; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1077 |
content: ""; |
5 | 1078 |
display: table; |
1079 |
} |
|
1080 |
||
1081 |
.wp-editor-container { |
|
1082 |
clear: both; |
|
18 | 1083 |
border: 1px solid #dcdcde; |
5 | 1084 |
} |
1085 |
||
0 | 1086 |
.wp-editor-area { |
1087 |
font-family: Consolas, Monaco, monospace; |
|
5 | 1088 |
font-size: 13px; |
0 | 1089 |
padding: 10px; |
1090 |
margin: 1px 0 0; |
|
1091 |
line-height: 150%; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1092 |
border: 0; |
0 | 1093 |
outline: none; |
1094 |
display: block; |
|
1095 |
resize: vertical; |
|
1096 |
box-sizing: border-box; |
|
1097 |
} |
|
1098 |
||
5 | 1099 |
.rtl .wp-editor-area { |
1100 |
font-family: Tahoma, Monaco, monospace; |
|
0 | 1101 |
} |
1102 |
||
5 | 1103 |
.locale-he-il .wp-editor-area { |
1104 |
font-family: Arial, Monaco, monospace; |
|
0 | 1105 |
} |
1106 |
||
1107 |
.wp-editor-container textarea.wp-editor-area { |
|
1108 |
width: 100%; |
|
1109 |
margin: 0; |
|
1110 |
box-shadow: none; |
|
1111 |
} |
|
1112 |
||
5 | 1113 |
.wp-editor-tabs { |
1114 |
float: right; |
|
0 | 1115 |
} |
1116 |
||
1117 |
.wp-switch-editor { |
|
5 | 1118 |
float: left; |
1119 |
box-sizing: content-box; |
|
1120 |
position: relative; |
|
1121 |
top: 1px; |
|
18 | 1122 |
background: #f0f0f1; |
1123 |
color: #646970; |
|
0 | 1124 |
cursor: pointer; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1125 |
font-size: 13px; |
16 | 1126 |
line-height: 1.46153846; |
5 | 1127 |
height: 20px; |
1128 |
margin: 5px 0 0 5px; |
|
1129 |
padding: 3px 8px 4px; |
|
18 | 1130 |
border: 1px solid #dcdcde; |
0 | 1131 |
} |
1132 |
||
5 | 1133 |
.wp-switch-editor:focus { |
1134 |
box-shadow: |
|
18 | 1135 |
0 0 0 1px #4f94d4, |
1136 |
0 0 2px 1px rgba(79, 148, 212, 0.8); |
|
5 | 1137 |
outline: none; |
18 | 1138 |
color: #1d2327; |
5 | 1139 |
} |
1140 |
||
1141 |
.wp-switch-editor:active, |
|
1142 |
.html-active .switch-html:focus, |
|
1143 |
.tmce-active .switch-tmce:focus { |
|
1144 |
box-shadow: none; |
|
0 | 1145 |
} |
1146 |
||
1147 |
.wp-switch-editor:active { |
|
18 | 1148 |
background-color: #f6f7f7; |
5 | 1149 |
box-shadow: none; |
0 | 1150 |
} |
1151 |
||
1152 |
.js .tmce-active .wp-editor-area { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1153 |
color: #fff; |
0 | 1154 |
} |
1155 |
||
1156 |
.tmce-active .quicktags-toolbar { |
|
9 | 1157 |
display: none; |
0 | 1158 |
} |
1159 |
||
1160 |
.tmce-active .switch-tmce, |
|
1161 |
.html-active .switch-html { |
|
18 | 1162 |
background: #f6f7f7; |
1163 |
color: #50575e; |
|
1164 |
border-bottom-color: #f6f7f7; |
|
5 | 1165 |
} |
1166 |
||
1167 |
.wp-media-buttons { |
|
1168 |
float: left; |
|
0 | 1169 |
} |
1170 |
||
1171 |
.wp-media-buttons .button { |
|
1172 |
margin-right: 5px; |
|
5 | 1173 |
margin-bottom: 4px; |
1174 |
padding-left: 7px; |
|
1175 |
padding-right: 7px; |
|
0 | 1176 |
} |
1177 |
||
5 | 1178 |
.wp-media-buttons .button:active { |
1179 |
position: relative; |
|
1180 |
top: 1px; |
|
1181 |
margin-top: -1px; |
|
1182 |
margin-bottom: 1px; |
|
0 | 1183 |
} |
1184 |
||
1185 |
.wp-media-buttons .insert-media { |
|
5 | 1186 |
padding-left: 5px; |
0 | 1187 |
} |
1188 |
||
1189 |
.wp-media-buttons a { |
|
1190 |
text-decoration: none; |
|
18 | 1191 |
color: #3c434a; |
0 | 1192 |
font-size: 12px; |
1193 |
} |
|
1194 |
||
1195 |
.wp-media-buttons img { |
|
1196 |
padding: 0 4px; |
|
1197 |
vertical-align: middle; |
|
1198 |
} |
|
1199 |
||
1200 |
.wp-media-buttons span.wp-media-buttons-icon { |
|
1201 |
display: inline-block; |
|
16 | 1202 |
width: 20px; |
1203 |
height: 20px; |
|
1204 |
line-height: 1; |
|
1205 |
vertical-align: middle; |
|
0 | 1206 |
margin: 0 2px; |
1207 |
} |
|
1208 |
||
1209 |
.wp-media-buttons .add_media span.wp-media-buttons-icon { |
|
5 | 1210 |
background: none; |
0 | 1211 |
} |
1212 |
||
5 | 1213 |
.wp-media-buttons .add_media span.wp-media-buttons-icon:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1214 |
font: normal 18px/1 dashicons; |
18 | 1215 |
speak: never; |
5 | 1216 |
-webkit-font-smoothing: antialiased; |
1217 |
-moz-osx-font-smoothing: grayscale; |
|
0 | 1218 |
} |
1219 |
||
5 | 1220 |
.wp-media-buttons .add_media span.wp-media-buttons-icon:before { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1221 |
content: "\f104"; |
0 | 1222 |
} |
1223 |
||
9 | 1224 |
.mce-content-body dl.wp-caption { |
1225 |
max-width: 100%; |
|
1226 |
} |
|
1227 |
||
5 | 1228 |
/* Quicktags */ |
1229 |
.quicktags-toolbar { |
|
1230 |
padding: 3px; |
|
1231 |
position: relative; |
|
18 | 1232 |
border-bottom: 1px solid #dcdcde; |
1233 |
background: #f6f7f7; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1234 |
min-height: 30px; |
0 | 1235 |
} |
1236 |
||
5 | 1237 |
.has-dfw .quicktags-toolbar { |
1238 |
padding-right: 35px; |
|
1239 |
} |
|
1240 |
||
1241 |
.wp-core-ui .quicktags-toolbar input.button.button-small { |
|
1242 |
margin: 2px; |
|
0 | 1243 |
} |
1244 |
||
1245 |
.quicktags-toolbar input[value="link"] { |
|
1246 |
text-decoration: underline; |
|
1247 |
} |
|
1248 |
||
1249 |
.quicktags-toolbar input[value="del"] { |
|
1250 |
text-decoration: line-through; |
|
1251 |
} |
|
1252 |
||
1253 |
.quicktags-toolbar input[value="i"] { |
|
1254 |
font-style: italic; |
|
1255 |
} |
|
1256 |
||
1257 |
.quicktags-toolbar input[value="b"] { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1258 |
font-weight: 600; |
0 | 1259 |
} |
1260 |
||
5 | 1261 |
.mce-toolbar .mce-btn-group .mce-btn.mce-wp-dfw, |
1262 |
.qt-dfw { |
|
1263 |
position: absolute; |
|
1264 |
top: 0; |
|
1265 |
right: 0; |
|
9 | 1266 |
} |
1267 |
||
1268 |
.mce-toolbar .mce-btn-group .mce-btn.mce-wp-dfw { |
|
1269 |
margin: 7px 7px 0 0; |
|
1270 |
} |
|
1271 |
||
1272 |
.qt-dfw { |
|
5 | 1273 |
margin: 5px 5px 0 0; |
1274 |
} |
|
1275 |
||
1276 |
.qt-fullscreen { |
|
1277 |
position: static; |
|
1278 |
margin: 2px; |
|
1279 |
} |
|
1280 |
||
9 | 1281 |
@media screen and (max-width: 782px) { |
5 | 1282 |
.mce-toolbar .mce-btn button, |
1283 |
.qt-dfw { |
|
1284 |
padding: 6px 7px; |
|
1285 |
} |
|
1286 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1287 |
/* Compensate for the extra box shadow at the bottom of .mce-btn.mce-primary */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1288 |
.mce-toolbar .mce-btn-group .mce-btn.mce-primary button { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1289 |
padding: 6px 7px 5px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1290 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1291 |
|
5 | 1292 |
.mce-toolbar .mce-btn-group .mce-btn { |
1293 |
margin: 1px; |
|
1294 |
} |
|
1295 |
||
1296 |
.qt-dfw { |
|
1297 |
width: 36px; |
|
1298 |
height: 34px; |
|
1299 |
} |
|
1300 |
||
1301 |
.mce-toolbar .mce-btn-group .mce-btn.mce-wp-dfw { |
|
1302 |
margin: 4px 4px 0 0; |
|
1303 |
} |
|
1304 |
||
1305 |
.mce-toolbar .mce-colorbutton .mce-preview { |
|
1306 |
left: 8px; |
|
1307 |
bottom: 6px; |
|
1308 |
} |
|
1309 |
||
1310 |
.mce-window .mce-btn { |
|
1311 |
padding: 2px 0; |
|
1312 |
} |
|
1313 |
||
1314 |
.has-dfw div.mce-toolbar-grp .mce-toolbar.mce-first, |
|
1315 |
.has-dfw .quicktags-toolbar { |
|
1316 |
padding-right: 40px; |
|
1317 |
} |
|
1318 |
} |
|
1319 |
||
9 | 1320 |
@media screen and (min-width: 782px) { |
5 | 1321 |
.wp-core-ui .quicktags-toolbar input.button.button-small { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1322 |
/* .button-small is normally 11px, but a bit too small for these buttons. */ |
5 | 1323 |
font-size: 12px; |
16 | 1324 |
min-height: 26px; |
1325 |
line-height: 2; |
|
5 | 1326 |
} |
1327 |
} |
|
1328 |
||
0 | 1329 |
#wp_editbtns, |
1330 |
#wp_gallerybtns { |
|
1331 |
padding: 2px; |
|
1332 |
position: absolute; |
|
1333 |
display: none; |
|
5 | 1334 |
z-index: 100020; |
0 | 1335 |
} |
1336 |
||
1337 |
#wp_editimgbtn, |
|
1338 |
#wp_delimgbtn, |
|
1339 |
#wp_editgallery, |
|
1340 |
#wp_delgallery { |
|
18 | 1341 |
background-color: #f0f0f1; |
0 | 1342 |
margin: 2px; |
1343 |
padding: 2px; |
|
18 | 1344 |
border: 1px solid #8c8f94; |
0 | 1345 |
border-radius: 3px; |
1346 |
} |
|
1347 |
||
1348 |
#wp_editimgbtn:hover, |
|
1349 |
#wp_delimgbtn:hover, |
|
1350 |
#wp_editgallery:hover, |
|
1351 |
#wp_delgallery:hover { |
|
18 | 1352 |
border-color: #50575e; |
1353 |
background-color: #c3c4c7; |
|
0 | 1354 |
} |
1355 |
||
1356 |
/*------------------------------------------------------------------------------ |
|
1357 |
wp-link |
|
1358 |
------------------------------------------------------------------------------*/ |
|
1359 |
||
5 | 1360 |
#wp-link-wrap { |
1361 |
display: none; |
|
1362 |
background-color: #fff; |
|
9 | 1363 |
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); |
5 | 1364 |
width: 500px; |
1365 |
overflow: hidden; |
|
1366 |
margin-left: -250px; |
|
1367 |
margin-top: -125px; |
|
1368 |
position: fixed; |
|
1369 |
top: 50%; |
|
1370 |
left: 50%; |
|
1371 |
z-index: 100105; |
|
1372 |
transition: height 0.2s, margin-top 0.2s; |
|
1373 |
} |
|
1374 |
||
1375 |
#wp-link-backdrop { |
|
1376 |
display: none; |
|
1377 |
position: fixed; |
|
1378 |
top: 0; |
|
1379 |
left: 0; |
|
1380 |
right: 0; |
|
1381 |
bottom: 0; |
|
1382 |
min-height: 360px; |
|
1383 |
background: #000; |
|
1384 |
opacity: 0.7; |
|
1385 |
filter: alpha(opacity=70); |
|
1386 |
z-index: 100100; |
|
1387 |
} |
|
1388 |
||
0 | 1389 |
#wp-link { |
5 | 1390 |
position: relative; |
1391 |
height: 100%; |
|
1392 |
} |
|
1393 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1394 |
#wp-link-wrap { |
5 | 1395 |
height: 500px; |
1396 |
margin-top: -250px; |
|
1397 |
} |
|
1398 |
||
1399 |
#wp-link-wrap .wp-link-text-field { |
|
1400 |
display: none; |
|
1401 |
} |
|
1402 |
||
1403 |
#wp-link-wrap.has-text-field .wp-link-text-field { |
|
1404 |
display: block; |
|
1405 |
} |
|
1406 |
||
1407 |
#link-modal-title { |
|
18 | 1408 |
background: #fff; |
1409 |
border-bottom: 1px solid #dcdcde; |
|
5 | 1410 |
height: 36px; |
1411 |
font-size: 18px; |
|
1412 |
font-weight: 600; |
|
16 | 1413 |
line-height: 2; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1414 |
margin: 0; |
5 | 1415 |
padding: 0 36px 0 16px; |
1416 |
} |
|
1417 |
||
1418 |
#wp-link-close { |
|
18 | 1419 |
color: #646970; |
5 | 1420 |
padding: 0; |
1421 |
position: absolute; |
|
1422 |
top: 0; |
|
1423 |
right: 0; |
|
1424 |
width: 36px; |
|
1425 |
height: 36px; |
|
1426 |
text-align: center; |
|
1427 |
background: none; |
|
1428 |
border: none; |
|
1429 |
cursor: pointer; |
|
1430 |
} |
|
1431 |
||
1432 |
#wp-link-close:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1433 |
font: normal 20px/36px dashicons; |
5 | 1434 |
vertical-align: top; |
18 | 1435 |
speak: never; |
5 | 1436 |
-webkit-font-smoothing: antialiased; |
1437 |
-moz-osx-font-smoothing: grayscale; |
|
1438 |
width: 36px; |
|
1439 |
height: 36px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1440 |
content: "\f158"; |
5 | 1441 |
} |
1442 |
||
1443 |
#wp-link-close:hover, |
|
1444 |
#wp-link-close:focus { |
|
18 | 1445 |
color: #135e96; |
5 | 1446 |
} |
1447 |
||
1448 |
#wp-link-close:focus { |
|
1449 |
outline: none; |
|
1450 |
box-shadow: |
|
18 | 1451 |
0 0 0 1px #4f94d4, |
1452 |
0 0 2px 1px rgba(79, 148, 212, 0.8); |
|
16 | 1453 |
/* Only visible in Windows High Contrast mode */ |
1454 |
outline: 2px solid transparent; |
|
1455 |
outline-offset: -2px; |
|
5 | 1456 |
} |
1457 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1458 |
#wp-link-wrap #link-selector { |
5 | 1459 |
-webkit-overflow-scrolling: touch; |
1460 |
padding: 0 16px; |
|
1461 |
position: absolute; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1462 |
top: 37px; |
5 | 1463 |
left: 0; |
1464 |
right: 0; |
|
1465 |
bottom: 44px; |
|
0 | 1466 |
} |
1467 |
||
1468 |
#wp-link ol, |
|
1469 |
#wp-link ul { |
|
1470 |
list-style: none; |
|
1471 |
margin: 0; |
|
1472 |
padding: 0; |
|
1473 |
} |
|
1474 |
||
5 | 1475 |
#wp-link input[type="text"] { |
1476 |
box-sizing: border-box; |
|
0 | 1477 |
} |
1478 |
||
1479 |
#wp-link #link-options { |
|
5 | 1480 |
padding: 8px 0 12px; |
0 | 1481 |
} |
1482 |
||
1483 |
#wp-link p.howto { |
|
5 | 1484 |
margin: 3px 0; |
0 | 1485 |
} |
1486 |
||
5 | 1487 |
#wp-link p.howto a { |
1488 |
text-decoration: none; |
|
1489 |
color: inherit; |
|
0 | 1490 |
} |
1491 |
||
1492 |
#wp-link label input[type="text"] { |
|
1493 |
margin-top: 5px; |
|
5 | 1494 |
width: 70%; |
0 | 1495 |
} |
1496 |
||
1497 |
#wp-link #link-options label span, |
|
1498 |
#wp-link #search-panel label span.search-label { |
|
1499 |
display: inline-block; |
|
1500 |
width: 80px; |
|
1501 |
text-align: right; |
|
1502 |
padding-right: 5px; |
|
5 | 1503 |
max-width: 24%; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1504 |
vertical-align: middle; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1505 |
word-wrap: break-word; |
0 | 1506 |
} |
1507 |
||
1508 |
#wp-link .link-search-field { |
|
5 | 1509 |
width: 250px; |
1510 |
max-width: 70%; |
|
0 | 1511 |
} |
1512 |
||
1513 |
#wp-link .link-search-wrapper { |
|
5 | 1514 |
margin: 5px 0 9px; |
0 | 1515 |
display: block; |
1516 |
overflow: hidden; |
|
1517 |
} |
|
1518 |
||
1519 |
#wp-link .link-search-wrapper .spinner { |
|
16 | 1520 |
float: none; |
1521 |
margin: -3px 0 0 4px; |
|
0 | 1522 |
} |
1523 |
||
1524 |
#wp-link .link-target { |
|
1525 |
padding: 3px 0 0; |
|
5 | 1526 |
white-space: nowrap; |
1527 |
overflow: hidden; |
|
1528 |
text-overflow: ellipsis; |
|
1529 |
} |
|
1530 |
||
1531 |
#wp-link .link-target label { |
|
1532 |
max-width: 70%; |
|
0 | 1533 |
} |
1534 |
||
1535 |
#wp-link .query-results { |
|
18 | 1536 |
border: 1px #dcdcde solid; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1537 |
margin: 0 0 12px; |
0 | 1538 |
background: #fff; |
1539 |
overflow: auto; |
|
5 | 1540 |
position: absolute; |
1541 |
left: 16px; |
|
1542 |
right: 16px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1543 |
bottom: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1544 |
top: 166px; |
5 | 1545 |
} |
1546 |
||
1547 |
.has-text-field #wp-link .query-results { |
|
16 | 1548 |
top: 210px; |
5 | 1549 |
} |
1550 |
||
1551 |
#wp-link li { |
|
1552 |
clear: both; |
|
1553 |
margin-bottom: 0; |
|
18 | 1554 |
border-bottom: 1px solid #f0f0f1; |
1555 |
color: #2c3338; |
|
5 | 1556 |
padding: 4px 6px 4px 10px; |
1557 |
cursor: pointer; |
|
0 | 1558 |
position: relative; |
1559 |
} |
|
1560 |
||
1561 |
#wp-link .query-notice { |
|
5 | 1562 |
padding: 0; |
18 | 1563 |
border-bottom: 1px solid #dcdcde; |
1564 |
background-color: #fff; |
|
5 | 1565 |
color: #000; |
1566 |
} |
|
1567 |
||
1568 |
#wp-link .query-notice .query-notice-default, |
|
1569 |
#wp-link .query-notice .query-notice-hint { |
|
1570 |
display: block; |
|
1571 |
padding: 6px; |
|
18 | 1572 |
border-left: 4px solid #72aee6; |
5 | 1573 |
} |
1574 |
||
1575 |
#wp-link .unselectable.no-matches-found { |
|
1576 |
padding: 0; |
|
18 | 1577 |
border-bottom: 1px solid #dcdcde; |
1578 |
background-color: #f6f7f7; |
|
5 | 1579 |
} |
1580 |
||
1581 |
#wp-link .no-matches-found .item-title { |
|
1582 |
display: block; |
|
1583 |
padding: 6px; |
|
18 | 1584 |
border-left: 4px solid #d63638; |
5 | 1585 |
} |
1586 |
||
1587 |
#wp-link .query-results em { |
|
1588 |
font-style: normal; |
|
0 | 1589 |
} |
1590 |
||
1591 |
#wp-link li:hover { |
|
18 | 1592 |
background: #f0f6fc; |
1593 |
color: #101517; |
|
0 | 1594 |
} |
1595 |
||
1596 |
#wp-link li.unselectable { |
|
18 | 1597 |
border-bottom: 1px solid #dcdcde; |
0 | 1598 |
} |
1599 |
||
1600 |
#wp-link li.unselectable:hover { |
|
1601 |
background: #fff; |
|
1602 |
cursor: auto; |
|
18 | 1603 |
color: #2c3338; |
0 | 1604 |
} |
1605 |
||
1606 |
#wp-link li.selected { |
|
18 | 1607 |
background: #dcdcde; |
1608 |
color: #2c3338; |
|
0 | 1609 |
} |
1610 |
||
1611 |
#wp-link li.selected .item-title { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1612 |
font-weight: 600; |
0 | 1613 |
} |
1614 |
||
5 | 1615 |
#wp-link li:last-child { |
1616 |
border: none; |
|
1617 |
} |
|
1618 |
||
0 | 1619 |
#wp-link .item-title { |
1620 |
display: inline-block; |
|
1621 |
width: 80%; |
|
5 | 1622 |
width: calc(100% - 68px); |
1623 |
word-wrap: break-word; |
|
0 | 1624 |
} |
1625 |
||
1626 |
#wp-link .item-info { |
|
1627 |
text-transform: uppercase; |
|
18 | 1628 |
color: #646970; |
0 | 1629 |
font-size: 11px; |
1630 |
position: absolute; |
|
1631 |
right: 5px; |
|
5 | 1632 |
top: 5px; |
0 | 1633 |
} |
1634 |
||
1635 |
#wp-link .river-waiting { |
|
1636 |
display: none; |
|
1637 |
padding: 10px 0; |
|
1638 |
} |
|
1639 |
||
1640 |
#wp-link .submitbox { |
|
5 | 1641 |
padding: 8px 16px; |
18 | 1642 |
background: #fff; |
1643 |
border-top: 1px solid #dcdcde; |
|
5 | 1644 |
position: absolute; |
1645 |
bottom: 0; |
|
1646 |
left: 0; |
|
1647 |
right: 0; |
|
0 | 1648 |
} |
1649 |
||
1650 |
#wp-link-cancel { |
|
16 | 1651 |
line-height: 1.92307692; |
0 | 1652 |
float: left; |
1653 |
} |
|
1654 |
||
1655 |
#wp-link-update { |
|
16 | 1656 |
line-height: 1.76923076; |
0 | 1657 |
float: right; |
1658 |
} |
|
1659 |
||
5 | 1660 |
#wp-link-submit { |
1661 |
float: right; |
|
0 | 1662 |
} |
1663 |
||
9 | 1664 |
@media screen and (max-width: 782px) { |
5 | 1665 |
#wp-link-wrap { |
1666 |
margin-top: -140px; |
|
1667 |
} |
|
0 | 1668 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1669 |
#wp-link-wrap .query-results { |
5 | 1670 |
top: 195px; |
1671 |
} |
|
0 | 1672 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1673 |
#wp-link-wrap.has-text-field .query-results { |
5 | 1674 |
top: 235px; |
1675 |
} |
|
1676 |
||
1677 |
#link-selector { |
|
1678 |
padding: 0 16px 60px; |
|
1679 |
} |
|
1680 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1681 |
#wp-link-wrap #link-selector { |
5 | 1682 |
bottom: 52px; |
1683 |
} |
|
1684 |
||
1685 |
#wp-link-cancel { |
|
16 | 1686 |
line-height: 2.46153846; |
5 | 1687 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1688 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1689 |
#wp-link .link-target { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1690 |
padding-top: 10px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1691 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1692 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1693 |
#wp-link .submitbox .button { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1694 |
margin-bottom: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1695 |
} |
0 | 1696 |
} |
1697 |
||
9 | 1698 |
@media screen and (max-width: 520px) { |
5 | 1699 |
#wp-link-wrap { |
1700 |
width: auto; |
|
1701 |
margin-left: 0; |
|
1702 |
left: 10px; |
|
1703 |
right: 10px; |
|
1704 |
max-width: 500px; |
|
1705 |
} |
|
0 | 1706 |
} |
1707 |
||
9 | 1708 |
@media screen and (max-height: 520px) { |
5 | 1709 |
#wp-link-wrap { |
1710 |
transition: none; |
|
1711 |
height: auto; |
|
1712 |
margin-top: 0; |
|
1713 |
top: 10px; |
|
1714 |
bottom: 10px; |
|
1715 |
} |
|
0 | 1716 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1717 |
#link-selector { |
5 | 1718 |
overflow: auto; |
1719 |
} |
|
0 | 1720 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1721 |
#search-panel .query-results { |
5 | 1722 |
position: static; |
1723 |
} |
|
0 | 1724 |
} |
1725 |
||
9 | 1726 |
@media screen and (max-height: 290px) { |
5 | 1727 |
#wp-link-wrap { |
1728 |
height: auto; |
|
1729 |
margin-top: 0; |
|
1730 |
top: 10px; |
|
1731 |
bottom: 10px; |
|
1732 |
} |
|
0 | 1733 |
|
5 | 1734 |
#link-selector { |
1735 |
overflow: auto; |
|
1736 |
height: calc(100% - 92px); |
|
1737 |
padding-bottom: 2px; |
|
1738 |
} |
|
0 | 1739 |
|
5 | 1740 |
#search-panel .query-results { |
1741 |
position: static; |
|
1742 |
} |
|
0 | 1743 |
} |
1744 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1745 |
div.wp-link-preview { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1746 |
float: left; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1747 |
margin: 5px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1748 |
max-width: 694px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1749 |
overflow: hidden; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1750 |
text-overflow: ellipsis; |
0 | 1751 |
} |
1752 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1753 |
div.wp-link-preview a { |
18 | 1754 |
color: #2271b1; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1755 |
text-decoration: underline; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1756 |
transition-property: border, background, color; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1757 |
transition-duration: .05s; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1758 |
transition-timing-function: ease-in-out; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1759 |
cursor: pointer; |
0 | 1760 |
} |
1761 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1762 |
div.wp-link-preview a.wplink-url-error { |
18 | 1763 |
color: #d63638; |
0 | 1764 |
} |
1765 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1766 |
div.wp-link-input { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1767 |
float: left; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1768 |
margin: 2px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1769 |
max-width: 694px; |
0 | 1770 |
} |
1771 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1772 |
div.wp-link-input input { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1773 |
width: 300px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1774 |
padding: 3px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1775 |
box-sizing: border-box; |
16 | 1776 |
line-height: 1.28571429; /* 18px */ |
1777 |
/* Override value inherited from default input fields. */ |
|
1778 |
min-height: 26px; |
|
0 | 1779 |
} |
1780 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1781 |
.mce-toolbar div.wp-link-preview ~ .mce-btn, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1782 |
.mce-toolbar div.wp-link-input ~ .mce-btn { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1783 |
margin: 2px 1px; |
0 | 1784 |
} |
1785 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1786 |
.mce-inline-toolbar-grp .mce-btn-group .mce-btn:last-child { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1787 |
margin-right: 2px; |
5 | 1788 |
} |
1789 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1790 |
.ui-autocomplete.wplink-autocomplete { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1791 |
z-index: 100110; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1792 |
max-height: 200px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1793 |
overflow-y: auto; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1794 |
padding: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1795 |
margin: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1796 |
list-style: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1797 |
position: absolute; |
18 | 1798 |
border: 1px solid #4f94d4; |
1799 |
box-shadow: 0 1px 2px rgba(79, 148, 212, 0.8); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1800 |
background-color: #fff; |
5 | 1801 |
} |
1802 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1803 |
.ui-autocomplete.wplink-autocomplete li { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1804 |
margin-bottom: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1805 |
padding: 4px 10px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1806 |
clear: both; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1807 |
white-space: normal; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1808 |
text-align: left; |
0 | 1809 |
} |
1810 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1811 |
.ui-autocomplete.wplink-autocomplete li .wp-editor-float-right { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1812 |
float: right; |
5 | 1813 |
} |
0 | 1814 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1815 |
.ui-autocomplete.wplink-autocomplete li.ui-state-focus { |
18 | 1816 |
background-color: #dcdcde; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1817 |
cursor: pointer; |
5 | 1818 |
} |
1819 |
||
9 | 1820 |
@media screen and (max-width: 782px) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1821 |
div.wp-link-preview, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1822 |
div.wp-link-input { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1823 |
max-width: 70%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1824 |
max-width: calc(100% - 86px); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1825 |
} |
0 | 1826 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1827 |
div.wp-link-preview { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1828 |
margin: 8px 0 8px 5px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1829 |
} |
0 | 1830 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1831 |
div.wp-link-input { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1832 |
width: 300px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1833 |
} |
0 | 1834 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1835 |
div.wp-link-input input { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1836 |
width: 100%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1837 |
font-size: 16px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1838 |
padding: 5px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1839 |
} |
0 | 1840 |
} |
1841 |
||
1842 |
/* =Overlay Body |
|
1843 |
-------------------------------------------------------------- */ |
|
5 | 1844 |
|
1845 |
.mce-fullscreen { |
|
1846 |
z-index: 100010; |
|
1847 |
} |
|
1848 |
||
1849 |
/* =Localization |
|
1850 |
-------------------------------------------------------------- */ |
|
1851 |
.rtl .wp-switch-editor, |
|
1852 |
.rtl .quicktags-toolbar input { |
|
1853 |
font-family: Tahoma, sans-serif; |
|
0 | 1854 |
} |
1855 |
||
5 | 1856 |
/* rtl:ignore */ |
1857 |
.mce-rtl .mce-flow-layout .mce-flow-layout-item > div { |
|
1858 |
direction: rtl; |
|
1859 |
} |
|
0 | 1860 |
|
5 | 1861 |
/* rtl:ignore */ |
1862 |
.mce-rtl .mce-listbox i.mce-caret { |
|
1863 |
left: 6px; |
|
1864 |
} |
|
0 | 1865 |
|
5 | 1866 |
html:lang(he-il) .rtl .wp-switch-editor, |
9 | 1867 |
html:lang(he-il) .rtl .quicktags-toolbar input { |
1868 |
font-family: Arial, sans-serif; |
|
5 | 1869 |
} |
0 | 1870 |
|
1871 |
/* HiDPI */ |
|
1872 |
@media print, |
|
1873 |
(-webkit-min-device-pixel-ratio: 1.25), |
|
1874 |
(min-resolution: 120dpi) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1875 |
.wp-media-buttons .add_media span.wp-media-buttons-icon { |
5 | 1876 |
background: none; |
0 | 1877 |
} |
1878 |
} |