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 / modules / advanced-reviews / admin / preview.css

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

193 lines 3.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Admin Preview
3 * Advanced Reviews
4 *
5 */
6 .merchant-module-page-preview-browser-inner {
7 display: -webkit-box;
8 display: -ms-flexbox;
9 display: flex;
10 -webkit-box-flex: 0;
11 -ms-flex-positive: 0;
12 flex-grow: 0;
13 max-width: 600px;
14 margin: auto;
15 padding: 25px;
16 }
17
18 .merchant-adv-reviews .merchant-adv-reviews-title {
19 margin-top: 25px;
20 margin-bottom: 0 !important;
21 }
22
23 .merchant-adv-reviews .merchant-adv-reviews-desc {
24 margin-bottom: 0 !important;
25 }
26
27 .merchant-adv-reviews .merchant-adv-reviews-header {
28 margin-top: 20px !important;
29 }
30
31 .merchant-adv-reviews .merchant-adv-reviews-header .merchant-adv-reviews-total {
32 margin-bottom: 15px !important;
33 }
34
35 .merchant-adv-reviews .merchant-adv-reviews-header .mrc-right-col {
36 margin-left: 50px;
37 }
38
39 .merchant-adv-reviews .merchant-adv-review-write-button {
40 margin-bottom: auto;
41 }
42
43 .merchant-adv-reviews .merchant-reviews-orderby {
44 pointer-events: none;
45 }
46
47 .merchant-adv-reviews .merchant-adv-reviews-body {
48 margin-bottom: 30px !important;
49 }
50
51 .merchant-adv-reviews .merchant-adv-reviews-footer {
52 display: none;
53 }
54
55 .merchant-adv-reviews.hide-title .merchant-adv-reviews-title,
56 .merchant-adv-reviews.hide-title .merchant-adv-reviews-desc {
57 display: none;
58 }
59
60 .merchant-reviews-list-wrapper {
61 margin-top: 25px;
62 }
63
64 .merchant-reviews-list-wrapper .merchant-reviews-list-item {
65 padding: 15px 0;
66 }
67
68 .merchant-reviews-list-wrapper .merchant-reviews-list-item .merchant-review-date {
69 top: 6px;
70 position: relative;
71 font-size: 0.8rem;
72 }
73
74 .merchant-reviews-list-wrapper .merchant-reviews-list-item .merchant-review-content {
75 margin-top: 5px;
76 }
77
78 .merchant-star-rating-bars .merchant-star-rating-bar-item {
79 max-width: 230px;
80 }
81
82 .merchant-star-rating-bars .merchant-star-rating-bar-item .item-bar {
83 min-width: 130px;
84 }
85
86 @media (min-width: 1300px) {
87 .merchant-star-rating-bars .merchant-star-rating-bar-item {
88 max-width: 300px;
89 }
90 .merchant-star-rating-bars .merchant-star-rating-bar-item .item-bar {
91 min-width: 200px;
92 }
93 }
94
95 /**
96 * Star rating
97 */
98 .star-rating {
99 overflow: hidden;
100 position: relative;
101 height: 1.618em;
102 line-height: 1.618;
103 width: 5.3em;
104 font-family: star;
105 font-weight: 400;
106 margin-left: auto;
107 margin-right: auto;
108 letter-spacing: 0;
109 color: #FFA441;
110 }
111
112 .star-rating::before {
113 content: "\53\53\53\53\53";
114 opacity: 0.25;
115 float: left;
116 top: 0;
117 left: 0;
118 position: absolute;
119 }
120
121 .star-rating span {
122 overflow: hidden;
123 float: left;
124 top: 0;
125 left: 0;
126 position: absolute;
127 padding-top: 1.5em;
128 }
129
130 .star-rating span::before {
131 content: "\53\53\53\53\53";
132 top: 0;
133 position: absolute;
134 left: 0;
135 color: #FFA441;
136 }
137
138 p.stars a {
139 position: relative;
140 height: 1em;
141 width: 1em;
142 text-indent: -999em;
143 display: inline-block;
144 text-decoration: none;
145 margin-right: 1px;
146 font-weight: 400;
147 }
148
149 p.stars a::before {
150 display: block;
151 position: absolute;
152 top: 0;
153 left: 0;
154 width: 1em;
155 height: 1em;
156 line-height: 1;
157 font-family: star;
158 content: "\53";
159 color: #212121;
160 text-indent: 0;
161 opacity: 0.25;
162 }
163
164 p.stars a:hover ~ a::before {
165 content: "\53";
166 color: #212121;
167 opacity: 0.25;
168 }
169
170 p.stars:hover a::before {
171 content: "\53";
172 color: #FFA441;
173 opacity: 1;
174 }
175
176 p.stars.selected a.active::before {
177 content: "\53";
178 color: #FFA441;
179 opacity: 1;
180 }
181
182 p.stars.selected a.active ~ a::before {
183 content: "\53";
184 color: #212121;
185 opacity: 0.25;
186 }
187
188 p.stars.selected a:not(.active)::before {
189 content: "\53";
190 color: #FFA441;
191 opacity: 1;
192 }
193