PluginProbe
WP Ultimate Post Grid / 2.2
WP Ultimate Post Grid v2.2
4.1.1 trunk 1.5 1.6 1.7 1.7.1 1.7.2 1.8 1.9 2.0 2.1 2.2 2.3 2.4.0 2.5.0 2.6.0 2.7.0 2.8.0 2.8.2 3.0.0 3.3.0 3.4.0 3.5.0 3.6.0 3.7.0 All 32 releases
wp-ultimate-post-grid / css / pagination.css

pagination.css in WP Ultimate Post Grid 2.2, at css/pagination.css

34 lines 773 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @charset "UTF-8";
2 .wpupg-pagination-term, .wpupg-pagination-button {
3 display: inline-block;
4 cursor: pointer;
5 position: relative; }
6
7 @keyframes wpupg-spinner {
8 to {
9 transform: rotate(360deg); } }
10 @-webkit-keyframes wpupg-spinner {
11 to {
12 -webkit-transform: rotate(360deg); } }
13 .wpupg-spinner {
14 min-width: 24px;
15 min-height: 24px; }
16
17 .wpupg-spinner:before {
18 content: 'Loading…';
19 position: absolute;
20 top: 50%;
21 left: 50%;
22 width: 16px;
23 height: 16px;
24 margin-top: -8px;
25 margin-left: -8px; }
26
27 .wpupg-spinner:not(:required):before {
28 content: '';
29 border-radius: 50%;
30 border-top: 2px solid #ccc;
31 border-right: 2px solid transparent;
32 animation: wpupg-spinner .6s linear infinite;
33 -webkit-animation: wpupg-spinner .6s linear infinite; }
34