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