PluginProbe ʕ •ᴥ•ʔ
Paid Membership Plugin, Ecommerce, User Registration Form, Login Form, User Profile & Restrict Content – ProfilePress / 3.2.4
Paid Membership Plugin, Ecommerce, User Registration Form, Login Form, User Profile & Restrict Content – ProfilePress v3.2.4
4.17.3 4.17.2 4.17.1 4.17.0 4.16.19 4.16.18 4.16.17 4.16.16 trunk 1.0 1.0.1 1.0.2 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.5a 1.1.6 1.1.7 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.3 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.4 1.4.1 1.4.2 1.5 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.6 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 1.7 1.7.1 1.7.2 1.8 1.8.1 1.8.10 1.8.2 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.9 1.9.1 1.9.10 1.9.11 1.9.12 1.9.13 1.9.2 1.9.3 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.1.9 2.2.10 2.2.11 2.2.12 2.2.13 2.2.14 2.2.15 2.2.16 2.2.2 2.2.5 2.2.6 2.2.7 2.2.8 2.2.9 3.0 3.1 3.1.1 3.1.10 3.1.11 3.1.12 3.1.13 3.1.14 3.1.15 3.1.16 3.1.17 3.1.18 3.1.19 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.1.9 3.2.0 3.2.1 3.2.10 3.2.11 3.2.12 3.2.13 3.2.14 3.2.15 3.2.16 3.2.2 3.2.3 3.2.4 3.2.5 3.2.6 3.2.7 3.2.8 3.2.9 4.0.0 4.0.1 4.0.2 4.0.3 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.10.0 4.10.1 4.10.2 4.10.3 4.11.0 4.12.0 4.13.0 4.13.1 4.13.2 4.13.3 4.13.4 4.14.0 4.14.1 4.14.2 4.14.3 4.14.4 4.15.0 4.15.1 4.15.10 4.15.11 4.15.12 4.15.13 4.15.14 4.15.15 4.15.16 4.15.17 4.15.18 4.15.19 4.15.2 4.15.20 4.15.20.1 4.15.21 4.15.22 4.15.23 4.15.24 4.15.25 4.15.3 4.15.4 4.15.5 4.15.6 4.15.7 4.15.8 4.15.9 4.16.0 4.16.1 4.16.10 4.16.11 4.16.12 4.16.13 4.16.14 4.16.15 4.16.2 4.16.3 4.16.4 4.16.5 4.16.6 4.16.7 4.16.8 4.16.9 4.2.0 4.3.0 4.3.1 4.3.2 4.4.0 4.4.1 4.5.0 4.5.1 4.5.2 4.5.3 4.5.4 4.5.5 4.6.0 4.7.0 4.8.0 4.9.0
wp-user-avatar / assets / codemirror / codemirror.css
wp-user-avatar / assets / codemirror Last commit date
codemirror.css 5 years ago codemirror.js 5 years ago css.js 5 years ago htmlmixed.js 5 years ago index.php 5 years ago javascript.js 5 years ago xml.js 5 years ago
codemirror.css
349 lines
1 /* BASICS */
2
3 .CodeMirror {
4 /* Set height, width, borders, and global font properties here */
5 font-family: monospace;
6 height: 600px;
7 width: 680px;
8 color: black;
9 border: 1px solid #ddd;
10 direction: ltr;
11 }
12
13 /* PADDING */
14
15 .CodeMirror-lines {
16 padding: 4px 0; /* Vertical padding around content */
17 }
18 .CodeMirror pre {
19 padding: 0 4px; /* Horizontal padding of content */
20 }
21
22 .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
23 background-color: white; /* The little square between H and V scrollbars */
24 }
25
26 /* GUTTER */
27
28 .CodeMirror-gutters {
29 border-right: 1px solid #ddd;
30 background-color: #f7f7f7;
31 white-space: nowrap;
32 }
33 .CodeMirror-linenumbers {}
34 .CodeMirror-linenumber {
35 padding: 0 3px 0 5px;
36 min-width: 20px;
37 text-align: right;
38 color: #999;
39 white-space: nowrap;
40 }
41
42 .CodeMirror-guttermarker { color: black; }
43 .CodeMirror-guttermarker-subtle { color: #999; }
44
45 /* CURSOR */
46
47 .CodeMirror-cursor {
48 border-left: 1px solid black;
49 border-right: none;
50 width: 0;
51 }
52 /* Shown when moving in bi-directional text */
53 .CodeMirror div.CodeMirror-secondarycursor {
54 border-left: 1px solid silver;
55 }
56 .cm-fat-cursor .CodeMirror-cursor {
57 width: auto;
58 border: 0 !important;
59 background: #7e7;
60 }
61 .cm-fat-cursor div.CodeMirror-cursors {
62 z-index: 1;
63 }
64 .cm-fat-cursor-mark {
65 background-color: rgba(20, 255, 20, 0.5);
66 -webkit-animation: blink 1.06s steps(1) infinite;
67 -moz-animation: blink 1.06s steps(1) infinite;
68 animation: blink 1.06s steps(1) infinite;
69 }
70 .cm-animate-fat-cursor {
71 width: auto;
72 border: 0;
73 -webkit-animation: blink 1.06s steps(1) infinite;
74 -moz-animation: blink 1.06s steps(1) infinite;
75 animation: blink 1.06s steps(1) infinite;
76 background-color: #7e7;
77 }
78 @-moz-keyframes blink {
79 0% {}
80 50% { background-color: transparent; }
81 100% {}
82 }
83 @-webkit-keyframes blink {
84 0% {}
85 50% { background-color: transparent; }
86 100% {}
87 }
88 @keyframes blink {
89 0% {}
90 50% { background-color: transparent; }
91 100% {}
92 }
93
94 /* Can style cursor different in overwrite (non-insert) mode */
95 .CodeMirror-overwrite .CodeMirror-cursor {}
96
97 .cm-tab { display: inline-block; text-decoration: inherit; }
98
99 .CodeMirror-rulers {
100 position: absolute;
101 left: 0; right: 0; top: -50px; bottom: -20px;
102 overflow: hidden;
103 }
104 .CodeMirror-ruler {
105 border-left: 1px solid #ccc;
106 top: 0; bottom: 0;
107 position: absolute;
108 }
109
110 /* DEFAULT THEME */
111
112 .cm-s-default .cm-header {color: blue;}
113 .cm-s-default .cm-quote {color: #090;}
114 .cm-negative {color: #d44;}
115 .cm-positive {color: #292;}
116 .cm-header, .cm-strong {font-weight: bold;}
117 .cm-em {font-style: italic;}
118 .cm-link {text-decoration: underline;}
119 .cm-strikethrough {text-decoration: line-through;}
120
121 .cm-s-default .cm-keyword {color: #708;}
122 .cm-s-default .cm-atom {color: #219;}
123 .cm-s-default .cm-number {color: #164;}
124 .cm-s-default .cm-def {color: #00f;}
125 .cm-s-default .cm-variable,
126 .cm-s-default .cm-punctuation,
127 .cm-s-default .cm-property,
128 .cm-s-default .cm-operator {}
129 .cm-s-default .cm-variable-2 {color: #05a;}
130 .cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
131 .cm-s-default .cm-comment {color: #a50;}
132 .cm-s-default .cm-string {color: #a11;}
133 .cm-s-default .cm-string-2 {color: #f50;}
134 .cm-s-default .cm-meta {color: #555;}
135 .cm-s-default .cm-qualifier {color: #555;}
136 .cm-s-default .cm-builtin {color: #30a;}
137 .cm-s-default .cm-bracket {color: #997;}
138 .cm-s-default .cm-tag {color: #170;}
139 .cm-s-default .cm-attribute {color: #00c;}
140 .cm-s-default .cm-hr {color: #999;}
141 .cm-s-default .cm-link {color: #00c;}
142
143 .cm-s-default .cm-error {color: #f00;}
144 .cm-invalidchar {color: #f00;}
145
146 .CodeMirror-composing { border-bottom: 2px solid; }
147
148 /* Default styles for common addons */
149
150 div.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}
151 div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
152 .CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
153 .CodeMirror-activeline-background {background: #e8f2ff;}
154
155 /* STOP */
156
157 /* The rest of this file contains styles related to the mechanics of
158 the editor. You probably shouldn't touch them. */
159
160 .CodeMirror {
161 position: relative;
162 overflow: hidden;
163 background: white;
164 }
165
166 .CodeMirror-scroll {
167 overflow: scroll !important; /* Things will break if this is overridden */
168 /* 30px is the magic margin used to hide the element's real scrollbars */
169 /* See overflow: hidden in .CodeMirror */
170 margin-bottom: -30px; margin-right: -30px;
171 padding-bottom: 30px;
172 height: 100%;
173 outline: none; /* Prevent dragging from highlighting the element */
174 position: relative;
175 }
176 .CodeMirror-sizer {
177 position: relative;
178 border-right: 30px solid transparent;
179 }
180
181 /* The fake, visible scrollbars. Used to force redraw during scrolling
182 before actual scrolling happens, thus preventing shaking and
183 flickering artifacts. */
184 .CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
185 position: absolute;
186 z-index: 6;
187 display: none;
188 }
189 .CodeMirror-vscrollbar {
190 right: 0; top: 0;
191 overflow-x: hidden;
192 overflow-y: scroll;
193 }
194 .CodeMirror-hscrollbar {
195 bottom: 0; left: 0;
196 overflow-y: hidden;
197 overflow-x: scroll;
198 }
199 .CodeMirror-scrollbar-filler {
200 right: 0; bottom: 0;
201 }
202 .CodeMirror-gutter-filler {
203 left: 0; bottom: 0;
204 }
205
206 .CodeMirror-gutters {
207 position: absolute; left: 0; top: 0;
208 min-height: 100%;
209 z-index: 3;
210 }
211 .CodeMirror-gutter {
212 white-space: normal;
213 height: 100%;
214 display: inline-block;
215 vertical-align: top;
216 margin-bottom: -30px;
217 }
218 .CodeMirror-gutter-wrapper {
219 position: absolute;
220 z-index: 4;
221 background: none !important;
222 border: none !important;
223 }
224 .CodeMirror-gutter-background {
225 position: absolute;
226 top: 0; bottom: 0;
227 z-index: 4;
228 }
229 .CodeMirror-gutter-elt {
230 position: absolute;
231 cursor: default;
232 z-index: 4;
233 }
234 .CodeMirror-gutter-wrapper ::selection { background-color: transparent }
235 .CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
236
237 .CodeMirror-lines {
238 cursor: text;
239 min-height: 1px; /* prevents collapsing before first draw */
240 }
241 .CodeMirror pre {
242 /* Reset some styles that the rest of the page might have set */
243 -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
244 border-width: 0;
245 background: transparent;
246 font-family: inherit;
247 font-size: inherit;
248 margin: 0;
249 white-space: pre;
250 word-wrap: normal;
251 line-height: inherit;
252 color: inherit;
253 z-index: 2;
254 position: relative;
255 overflow: visible;
256 -webkit-tap-highlight-color: transparent;
257 -webkit-font-variant-ligatures: contextual;
258 font-variant-ligatures: contextual;
259 }
260 .CodeMirror-wrap pre {
261 word-wrap: break-word;
262 white-space: pre-wrap;
263 word-break: normal;
264 }
265
266 .CodeMirror-linebackground {
267 position: absolute;
268 left: 0; right: 0; top: 0; bottom: 0;
269 z-index: 0;
270 }
271
272 .CodeMirror-linewidget {
273 position: relative;
274 z-index: 2;
275 padding: 0.1px; /* Force widget margins to stay inside of the container */
276 }
277
278 .CodeMirror-widget {}
279
280 .CodeMirror-rtl pre { direction: rtl; }
281
282 .CodeMirror-code {
283 outline: none;
284 }
285
286 /* Force content-box sizing for the elements where we expect it */
287 .CodeMirror-scroll,
288 .CodeMirror-sizer,
289 .CodeMirror-gutter,
290 .CodeMirror-gutters,
291 .CodeMirror-linenumber {
292 -moz-box-sizing: content-box;
293 box-sizing: content-box;
294 }
295
296 .CodeMirror-measure {
297 position: absolute;
298 width: 100%;
299 height: 0;
300 overflow: hidden;
301 visibility: hidden;
302 }
303
304 .CodeMirror-cursor {
305 position: absolute;
306 pointer-events: none;
307 }
308 .CodeMirror-measure pre { position: static; }
309
310 div.CodeMirror-cursors {
311 visibility: hidden;
312 position: relative;
313 z-index: 3;
314 }
315 div.CodeMirror-dragcursors {
316 visibility: visible;
317 }
318
319 .CodeMirror-focused div.CodeMirror-cursors {
320 visibility: visible;
321 }
322
323 .CodeMirror-selected { background: #d9d9d9; }
324 .CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
325 .CodeMirror-crosshair { cursor: crosshair; }
326 .CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
327 .CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
328
329 .cm-searching {
330 background-color: #ffa;
331 background-color: rgba(255, 255, 0, .4);
332 }
333
334 /* Used to force a border model for a node */
335 .cm-force-border { padding-right: .1px; }
336
337 @media print {
338 /* Hide the cursor when printing */
339 .CodeMirror div.CodeMirror-cursors {
340 visibility: hidden;
341 }
342 }
343
344 /* See issue #2901 */
345 .cm-tab-wrap-hack:after { content: ''; }
346
347 /* Help users use markselection to safely style text background */
348 span.CodeMirror-selectedtext { background: none; }
349