PluginProbe
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant / 1.6
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant v1.6
2.3.2 2.3.1 2.3.0 2.2.8 2.2.7 trunk 1.10.0 1.10.1 1.10.2 1.10.3 1.10.4 1.10.5 1.11.0 1.11.1 1.11.2 1.6 1.7 1.8 1.8.1 1.8.2 1.8.3 1.9.0 1.9.1 1.9.10 1.9.11 All 60 releases
merchant / assets / css / pagination.css

pagination.css in Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant 1.6, at assets/css/pagination.css

189 lines 4.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Merchant Pagination
3 *
4 */
5 /**
6 * Animations.
7 *
8 */
9 .mrc-animated {
10 opacity: 0;
11 }
12
13 .mrc-anim-infinite {
14 -webkit-animation-iteration-count: infinite;
15 animation-iteration-count: infinite;
16 }
17
18 .mrc-anim-fowards {
19 -webkit-animation-fill-mode: forwards;
20 animation-fill-mode: forwards;
21 }
22
23 .mrc-anim-timing-linear {
24 -webkit-animation-timing-function: linear;
25 animation-timing-function: linear;
26 }
27
28 .mrc-anim-duration-300ms {
29 -webkit-animation-duration: 600ms;
30 animation-duration: 600ms;
31 }
32
33 @-webkit-keyframes rotateAnim {
34 from {
35 -webkit-transform: rotate(0deg);
36 transform: rotate(0deg);
37 }
38 to {
39 -webkit-transform: rotate(360deg);
40 transform: rotate(360deg);
41 }
42 }
43
44 @keyframes rotateAnim {
45 from {
46 -webkit-transform: rotate(0deg);
47 transform: rotate(0deg);
48 }
49 to {
50 -webkit-transform: rotate(360deg);
51 transform: rotate(360deg);
52 }
53 }
54
55 .mrcPagRotateAnim {
56 -webkit-animation: rotateAnim 1.5s linear infinite;
57 animation: rotateAnim 1.5s linear infinite;
58 }
59
60 @-webkit-keyframes mrcPagFadeInShort {
61 0% {
62 opacity: 0;
63 -webkit-transform: translate3d(0, 20px, 0);
64 transform: translate3d(0, 20px, 0);
65 }
66 100% {
67 opacity: 1;
68 -webkit-transform: none;
69 transform: none;
70 }
71 }
72
73 @keyframes mrcPagFadeInShort {
74 0% {
75 opacity: 0;
76 -webkit-transform: translate3d(0, 20px, 0);
77 transform: translate3d(0, 20px, 0);
78 }
79 100% {
80 opacity: 1;
81 -webkit-transform: none;
82 transform: none;
83 }
84 }
85
86 .mrcPagFadeInShort {
87 -webkit-animation-name: mrcPagFadeInShort;
88 animation-name: mrcPagFadeInShort;
89 }
90
91 .merchant-pagination ul {
92 border: none !important;
93 }
94
95 .merchant-pagination ul li {
96 border: none !important;
97 margin: 0 !important;
98 list-style: none !important;
99 }
100
101 .merchant-pagination ul li + li {
102 margin-left: 5px;
103 }
104
105 .merchant-pagination ul li .page-numbers {
106 display: -webkit-box !important;
107 display: -ms-flexbox !important;
108 display: flex !important;
109 -webkit-box-pack: center !important;
110 -ms-flex-pack: center !important;
111 justify-content: center !important;
112 -webkit-box-align: center !important;
113 -ms-flex-align: center !important;
114 align-items: center !important;
115 width: 35px !important;
116 height: 35px !important;
117 text-decoration: none !important;
118 }
119
120 .merchant-pagination ul li .page-numbers.next:before, .merchant-pagination ul li .page-numbers.next:after, .merchant-pagination ul li .page-numbers.prev:before, .merchant-pagination ul li .page-numbers.prev:after {
121 content: none !important;
122 }
123
124 .merchant-pagination-load-more .navigation.pagination,
125 .merchant-pagination-load-more .woocommerce-pagination {
126 display: none;
127 }
128
129 .merchant-pagination-wrapper {
130 text-align: center;
131 margin-top: 60px;
132 }
133
134 .merchant-pagination-button {
135 position: relative;
136 display: -webkit-inline-box !important;
137 display: -ms-inline-flexbox !important;
138 display: inline-flex !important;
139 -webkit-box-align: center;
140 -ms-flex-align: center;
141 align-items: center;
142 }
143
144 .merchant-pagination-button .merchant-pagination-button__label {
145 display: inline-block;
146 font-size: 0.9em;
147 text-transform: uppercase;
148 letter-spacing: 1.5px;
149 -webkit-transition: ease all 300ms;
150 transition: ease all 300ms;
151 }
152
153 .merchant-pagination-button .merchant-pagination-button__loader {
154 position: absolute;
155 top: 50%;
156 left: 50%;
157 -webkit-transform: translate3d(-50%, -50%, 0);
158 transform: translate3d(-50%, -50%, 0);
159 }
160
161 .merchant-pagination-button svg {
162 opacity: 0;
163 -webkit-animation-name: rotateAnim;
164 animation-name: rotateAnim;
165 -webkit-animation-duration: 1.5s;
166 animation-duration: 1.5s;
167 -webkit-animation-timing-function: linear;
168 animation-timing-function: linear;
169 -webkit-animation-iteration-count: infinite;
170 animation-iteration-count: infinite;
171 -webkit-transition: ease all 300ms;
172 transition: ease all 300ms;
173 }
174
175 .merchant-pagination-button.loading .merchant-pagination-button__label, .merchant-pagination-button.loading-anim .merchant-pagination-button__label {
176 opacity: 0;
177 visibility: hidden;
178 }
179
180 .merchant-pagination-button.loading svg, .merchant-pagination-button.loading-anim svg {
181 display: block;
182 opacity: 0.7;
183 max-width: 17px;
184 }
185
186 .merchant-pagination-button.loading-anim .merchant-pagination-button__label {
187 display: none;
188 }
189