PluginProbe ʕ •ᴥ•ʔ
Search Regex / 2.4
Search Regex v2.4
trunk 1.4.12 1.4.13 1.4.14 1.4.15 1.4.16 2.0 2.0.1 2.1 2.2 2.2.1 2.3 2.3.1 2.3.2 2.3.3 2.4 2.4.1 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.1 3.1.1 3.1.2 3.2 3.3 3.3.0 3.3.1 3.4 3.4.1 3.4.2
search-regex / search-regex.css
search-regex Last commit date
api 5 years ago images 6 years ago locale 5 years ago models 5 years ago source 5 years ago README.md 11 years ago license.txt 18 years ago readme.txt 5 years ago search-regex-admin.php 5 years ago search-regex-capabilities.php 5 years ago search-regex-cli.php 6 years ago search-regex-settings.php 5 years ago search-regex-strings.php 5 years ago search-regex-version.php 5 years ago search-regex.css 6 years ago search-regex.js 5 years ago search-regex.php 5 years ago
search-regex.css
69 lines
1 .react-error h1, .react-loading h1 {
2 text-align: center;
3 color: #999;
4 margin-top: 150px;
5 }
6
7 .react-loading {
8 position: absolute;
9 width: 100%;
10 height: 100%;
11 }
12
13 .react-loading-spinner {
14 position: absolute;
15 width: 120px;
16 height: 120px;
17 left: 50%;
18 margin-left: -65px;
19
20 background-color: #333;
21 border-radius: 100%;
22 -webkit-animation: sk-scaleout-loading 1.0s infinite ease-in-out;
23 animation: sk-scaleout-loading 1.0s infinite ease-in-out;
24 }
25
26 .react-error p {
27 text-align: center;
28 line-height: 1;
29 }
30
31 .react-error pre {
32 border: 1px solid #aaa;
33 background-color: white;
34 padding: 10px;
35 margin: 0 auto;
36 width: 600px;
37 }
38
39 p.versions {
40 text-align: left;
41 width: 600px;
42 margin: 0 auto;
43 line-height: 1.6;
44 color: #666;
45 font-size: 12px;
46 background-color: white;
47 padding: 10px;
48 border: 1px solid #ddd;
49 }
50
51 @-webkit-keyframes sk-scaleout-loading {
52 0% { -webkit-transform: scale(0) }
53 100% {
54 -webkit-transform: scale(1.0);
55 opacity: 0;
56 }
57 }
58
59 @keyframes sk-scaleout-loading {
60 0% {
61 -webkit-transform: scale(0);
62 transform: scale(0);
63 } 100% {
64 -webkit-transform: scale(1.0);
65 transform: scale(1.0);
66 opacity: 0;
67 }
68 }
69