Version Description
(2018-12-12) = - Fixed WordPress 5.0 compatibility
Download this release
Release Info
Developer | geminilabs |
Plugin | Site Reviews |
Version | 2.17.1 |
Comparing to | |
See all releases |
Code changes from version 1.2.2 to 2.17.1
- LICENSE +674 -0
- activate.php +122 -52
- assets/css/site-reviews-admin.css +1 -1
- assets/css/site-reviews.css +1 -8
- assets/css/twenty-eleven.css +1 -8
- assets/css/twenty-fifteen.css +1 -8
- assets/css/twenty-fourteen.css +1 -8
- assets/css/twenty-seventeen.css +1 -0
- assets/css/twenty-sixteen.css +1 -8
- assets/css/twenty-ten.css +1 -8
- assets/css/twenty-thirteen.css +1 -8
- assets/css/twenty-twelve.css +1 -8
- assets/img/star-empty.svg +1 -1
- assets/img/star-filled.svg +1 -1
- assets/img/star-half.svg +1 -1
- assets/js/mce-plugin.js +1 -0
- assets/js/recaptcha.js +1 -0
- assets/js/site-reviews-admin.js +1 -1
- assets/js/site-reviews.js +8 -1
- autoload.php +5 -8
- compatibility.php +129 -0
- helpers.php +119 -0
- languages/site-reviews-en_US.mo +0 -0
- languages/site-reviews-en_US.po +1406 -556
- languages/site-reviews.pot +1197 -406
- license.txt +0 -2
- loco.xml +22 -0
- plugin/Akismet.php +91 -0
- plugin/App.php +204 -50
- plugin/Blacklist.php +56 -0
- plugin/Commands/ChangeStatus.php +25 -0
- plugin/Commands/EnqueueAssets.php +1 -1
- plugin/Commands/RegisterPointers.php +1 -3
- plugin/Commands/RegisterPostType.php +42 -3
- plugin/Commands/RegisterShortcodeButtons.php +21 -0
- plugin/Commands/RegisterShortcodes.php +1 -3
- plugin/Commands/RegisterTaxonomy.php +21 -0
- plugin/Commands/RegisterWidgets.php +1 -1
- plugin/Commands/SubmitReview.php +21 -27
- plugin/Commands/TogglePinned.php +1 -1
- plugin/Container.php +151 -109
- plugin/Controllers/AjaxController.php +100 -13
- plugin/Controllers/BaseController.php +33 -16
- plugin/Controllers/MainController.php +404 -98
- plugin/Controllers/ReviewController.php +694 -27
- plugin/Database.php +373 -360
- plugin/Database/Options.php +223 -0
- plugin/Database/OptionsContract.php +107 -0
- plugin/Date.php +59 -0
- plugin/Email.php +14 -14
- plugin/Handlers/ChangeStatus.php +44 -0
- plugin/Handlers/EnqueueAssets.php +123 -50
- plugin/Handlers/RegisterPointers.php +4 -6
- plugin/Handlers/RegisterPostType.php +165 -416
- plugin/Handlers/RegisterShortcodeButtons.php +36 -0
- plugin/Handlers/RegisterShortcodes.php +6 -19
- plugin/Handlers/RegisterTaxonomy.php +107 -0
- plugin/Handlers/RegisterWidgets.php +5 -17
- plugin/Handlers/SubmitReview.php +111 -156
- plugin/Handlers/TogglePinned.php +6 -3
- plugin/Helper.php +200 -0
- plugin/Html.php +47 -88
- plugin/Html/Field.php +48 -33
- plugin/Html/Fields/Base.php +39 -34
- plugin/Html/Fields/Checkbox.php +2 -2
- plugin/Html/Fields/Code.php +4 -4
- plugin/Html/Fields/Colorpicker.php +6 -6
- plugin/Html/Fields/Email.php +4 -4
- plugin/Html/Fields/Heading.php +2 -2
- plugin/Html/Fields/Hidden.php +7 -11
- plugin/Html/Fields/Honeypot.php +33 -0
- plugin/Html/Fields/Number.php +4 -4
- plugin/Html/Fields/Progress.php +2 -2
- plugin/Html/Fields/Radio.php +5 -3
- plugin/Html/Fields/Roles.php +4 -4
- plugin/Html/Fields/Select.php +1 -2
- plugin/Html/Fields/Submit.php +32 -9
- plugin/Html/Fields/Text.php +1 -1
- plugin/Html/Fields/Textarea.php +1 -1
- plugin/Html/Fields/Url.php +4 -4
- plugin/Html/Fields/Yesno.php +7 -8
- plugin/Html/Form.php +50 -25
- plugin/Html/Normalize.php +12 -12
- plugin/Html/Partial.php +9 -26
- plugin/Html/Partials/Addon.php +2 -2
- plugin/Html/Partials/Base.php +9 -2
- plugin/Html/Partials/Filterby.php +3 -3
- plugin/Html/Partials/Link.php +30 -0
- plugin/Html/Partials/Rating.php +0 -49
- plugin/Html/Partials/Reviews.php +326 -211
- plugin/Html/Partials/StarRating.php +80 -0
- plugin/Html/Partials/Subsubsub.php +1 -1
- plugin/Html/Partials/Tabs.php +1 -1
- plugin/Log/LogLevel.php +9 -2
- plugin/Log/Logger.php +27 -12
- plugin/Log/LoggerInterface.php +9 -2
- plugin/Notices.php +23 -32
- plugin/Providers/MainProvider.php +20 -18
- plugin/Providers/ProviderInterface.php +1 -1
- plugin/Query.php +133 -0
- plugin/Rating.php +222 -0
- plugin/Router.php +64 -34
- plugin/Schema.php +314 -0
- plugin/Schema/AggregateOffer.php +33 -0
- plugin/Schema/AggregateRating.php +31 -0
- plugin/Schema/BaseType.php +261 -0
- plugin/Schema/CreativeWork.php +127 -0
- plugin/Schema/Exceptions/InvalidProperty.php +9 -0
- plugin/Schema/Intangible.php +21 -0
- plugin/Schema/LocalBusiness.php +35 -0
- plugin/Schema/Offer.php +81 -0
- plugin/Schema/Organization.php +224 -0
- plugin/Schema/Person.php +92 -0
- plugin/Schema/Place.php +61 -0
- plugin/Schema/Rating.php +32 -0
- plugin/Schema/Review.php +31 -0
- plugin/Schema/Thing.php +32 -0
- plugin/Schema/Type.php +25 -0
- plugin/Schema/UnknownType.php +24 -0
- plugin/Session.php +109 -203
- plugin/Settings.php +421 -76
- plugin/Shortcode.php +6 -30
- plugin/Shortcodes/Buttons/Generator.php +344 -0
- plugin/Shortcodes/Buttons/SiteReviews.php +160 -0
- plugin/Shortcodes/Buttons/SiteReviewsForm.php +101 -0
- plugin/Shortcodes/Buttons/SiteReviewsSummary.php +126 -0
- plugin/Shortcodes/SiteReviews.php +18 -48
- plugin/Shortcodes/SiteReviewsForm.php +24 -66
- plugin/Shortcodes/SiteReviewsSummary.php +276 -0
- plugin/Strings.php +73 -21
- plugin/SystemInfo.php +94 -54
- plugin/Traits/SiteReviews.php +86 -0
- plugin/Traits/SiteReviewsForm.php +149 -0
- plugin/Translator.php +386 -0
- plugin/Upgrade.php +433 -0
- plugin/Validator.php +19 -26
- plugin/Widget.php +11 -33
- plugin/Widgets/RecentReviews.php +0 -184
- plugin/Widgets/ReviewsForm.php +0 -146
- plugin/Widgets/SiteReviews.php +163 -0
- plugin/Widgets/SiteReviewsForm.php +117 -0
- readme.txt +427 -62
- site-reviews.php +16 -37
- uninstall.php +12 -13
- vendor/qcubed/i18n/src/Sepia/Handler/FileHandler.php +147 -0
- vendor/qcubed/i18n/src/Sepia/Handler/HandlerInterface.php +68 -0
- vendor/qcubed/i18n/src/Sepia/Handler/StringHandler.php +109 -0
- vendor/qcubed/i18n/src/Sepia/Parser.php +844 -0
- vendor/qcubed/i18n/src/Sepia/license.txt +28 -0
- vendor/vectorface/whip/LICENSE +21 -0
- vendor/vectorface/whip/src/IpRange/IpRange.php +43 -0
- vendor/vectorface/whip/src/IpRange/IpWhitelist.php +121 -0
- vendor/vectorface/whip/src/IpRange/Ipv4Range.php +152 -0
- vendor/vectorface/whip/src/IpRange/Ipv6Range.php +122 -0
- vendor/vectorface/whip/src/Request/Psr7RequestAdapter.php +74 -0
- vendor/vectorface/whip/src/Request/RequestAdapter.php +47 -0
- vendor/vectorface/whip/src/Request/SuperglobalRequestAdapter.php +88 -0
- vendor/vectorface/whip/src/Whip.php +285 -0
- views/base.php +6 -4
- views/edit/assigned-post.php +8 -0
- views/edit/bulk-edit-assigned-to.php +14 -0
- views/edit/meta.php +0 -63
- views/edit/metabox-assigned-to.php +14 -0
- views/edit/metabox-categories.php +38 -0
- views/edit/metabox-details.php +17 -0
- views/edit/metabox-response.php +5 -0
- views/edit/search-result.php +2 -0
- views/edit/tinymce.php +12 -0
- views/email/header.php +1 -1
- views/email/index.php +3 -3
- views/menu/addons/addons.php +4 -4
- views/menu/help/documentation/helpers.php +82 -0
- views/menu/help/documentation/hooks.php +41 -6
- views/menu/help/documentation/shortcodes.php +99 -23
- views/menu/help/documentation/support.php +12 -4
- views/menu/help/system.php +4 -4
- views/menu/index.php +2 -2
- views/menu/notice.php +13 -0
- views/menu/settings/settings/form.php +0 -3
- views/menu/settings/settings/general.php +1 -1
- views/menu/settings/settings/reviews-form.php +3 -0
- views/menu/settings/settings/reviews.php +3 -0
- views/menu/settings/settings/strings.php +17 -0
- views/menu/status.php +8 -9
- views/strings/plural.php +20 -0
- views/strings/result.php +1 -0
- views/strings/single.php +17 -0
- views/strings/translations.php +9 -0
- views/submit/index.php +51 -35
LICENSE
ADDED
@@ -0,0 +1,674 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
GNU GENERAL PUBLIC LICENSE
|
2 |
+
Version 3, 29 June 2007
|
3 |
+
|
4 |
+
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
5 |
+
Everyone is permitted to copy and distribute verbatim copies
|
6 |
+
of this license document, but changing it is not allowed.
|
7 |
+
|
8 |
+
Preamble
|
9 |
+
|
10 |
+
The GNU General Public License is a free, copyleft license for
|
11 |
+
software and other kinds of works.
|
12 |
+
|
13 |
+
The licenses for most software and other practical works are designed
|
14 |
+
to take away your freedom to share and change the works. By contrast,
|
15 |
+
the GNU General Public License is intended to guarantee your freedom to
|
16 |
+
share and change all versions of a program--to make sure it remains free
|
17 |
+
software for all its users. We, the Free Software Foundation, use the
|
18 |
+
GNU General Public License for most of our software; it applies also to
|
19 |
+
any other work released this way by its authors. You can apply it to
|
20 |
+
your programs, too.
|
21 |
+
|
22 |
+
When we speak of free software, we are referring to freedom, not
|
23 |
+
price. Our General Public Licenses are designed to make sure that you
|
24 |
+
have the freedom to distribute copies of free software (and charge for
|
25 |
+
them if you wish), that you receive source code or can get it if you
|
26 |
+
want it, that you can change the software or use pieces of it in new
|
27 |
+
free programs, and that you know you can do these things.
|
28 |
+
|
29 |
+
To protect your rights, we need to prevent others from denying you
|
30 |
+
these rights or asking you to surrender the rights. Therefore, you have
|
31 |
+
certain responsibilities if you distribute copies of the software, or if
|
32 |
+
you modify it: responsibilities to respect the freedom of others.
|
33 |
+
|
34 |
+
For example, if you distribute copies of such a program, whether
|
35 |
+
gratis or for a fee, you must pass on to the recipients the same
|
36 |
+
freedoms that you received. You must make sure that they, too, receive
|
37 |
+
or can get the source code. And you must show them these terms so they
|
38 |
+
know their rights.
|
39 |
+
|
40 |
+
Developers that use the GNU GPL protect your rights with two steps:
|
41 |
+
(1) assert copyright on the software, and (2) offer you this License
|
42 |
+
giving you legal permission to copy, distribute and/or modify it.
|
43 |
+
|
44 |
+
For the developers' and authors' protection, the GPL clearly explains
|
45 |
+
that there is no warranty for this free software. For both users' and
|
46 |
+
authors' sake, the GPL requires that modified versions be marked as
|
47 |
+
changed, so that their problems will not be attributed erroneously to
|
48 |
+
authors of previous versions.
|
49 |
+
|
50 |
+
Some devices are designed to deny users access to install or run
|
51 |
+
modified versions of the software inside them, although the manufacturer
|
52 |
+
can do so. This is fundamentally incompatible with the aim of
|
53 |
+
protecting users' freedom to change the software. The systematic
|
54 |
+
pattern of such abuse occurs in the area of products for individuals to
|
55 |
+
use, which is precisely where it is most unacceptable. Therefore, we
|
56 |
+
have designed this version of the GPL to prohibit the practice for those
|
57 |
+
products. If such problems arise substantially in other domains, we
|
58 |
+
stand ready to extend this provision to those domains in future versions
|
59 |
+
of the GPL, as needed to protect the freedom of users.
|
60 |
+
|
61 |
+
Finally, every program is threatened constantly by software patents.
|
62 |
+
States should not allow patents to restrict development and use of
|
63 |
+
software on general-purpose computers, but in those that do, we wish to
|
64 |
+
avoid the special danger that patents applied to a free program could
|
65 |
+
make it effectively proprietary. To prevent this, the GPL assures that
|
66 |
+
patents cannot be used to render the program non-free.
|
67 |
+
|
68 |
+
The precise terms and conditions for copying, distribution and
|
69 |
+
modification follow.
|
70 |
+
|
71 |
+
TERMS AND CONDITIONS
|
72 |
+
|
73 |
+
0. Definitions.
|
74 |
+
|
75 |
+
"This License" refers to version 3 of the GNU General Public License.
|
76 |
+
|
77 |
+
"Copyright" also means copyright-like laws that apply to other kinds of
|
78 |
+
works, such as semiconductor masks.
|
79 |
+
|
80 |
+
"The Program" refers to any copyrightable work licensed under this
|
81 |
+
License. Each licensee is addressed as "you". "Licensees" and
|
82 |
+
"recipients" may be individuals or organizations.
|
83 |
+
|
84 |
+
To "modify" a work means to copy from or adapt all or part of the work
|
85 |
+
in a fashion requiring copyright permission, other than the making of an
|
86 |
+
exact copy. The resulting work is called a "modified version" of the
|
87 |
+
earlier work or a work "based on" the earlier work.
|
88 |
+
|
89 |
+
A "covered work" means either the unmodified Program or a work based
|
90 |
+
on the Program.
|
91 |
+
|
92 |
+
To "propagate" a work means to do anything with it that, without
|
93 |
+
permission, would make you directly or secondarily liable for
|
94 |
+
infringement under applicable copyright law, except executing it on a
|
95 |
+
computer or modifying a private copy. Propagation includes copying,
|
96 |
+
distribution (with or without modification), making available to the
|
97 |
+
public, and in some countries other activities as well.
|
98 |
+
|
99 |
+
To "convey" a work means any kind of propagation that enables other
|
100 |
+
parties to make or receive copies. Mere interaction with a user through
|
101 |
+
a computer network, with no transfer of a copy, is not conveying.
|
102 |
+
|
103 |
+
An interactive user interface displays "Appropriate Legal Notices"
|
104 |
+
to the extent that it includes a convenient and prominently visible
|
105 |
+
feature that (1) displays an appropriate copyright notice, and (2)
|
106 |
+
tells the user that there is no warranty for the work (except to the
|
107 |
+
extent that warranties are provided), that licensees may convey the
|
108 |
+
work under this License, and how to view a copy of this License. If
|
109 |
+
the interface presents a list of user commands or options, such as a
|
110 |
+
menu, a prominent item in the list meets this criterion.
|
111 |
+
|
112 |
+
1. Source Code.
|
113 |
+
|
114 |
+
The "source code" for a work means the preferred form of the work
|
115 |
+
for making modifications to it. "Object code" means any non-source
|
116 |
+
form of a work.
|
117 |
+
|
118 |
+
A "Standard Interface" means an interface that either is an official
|
119 |
+
standard defined by a recognized standards body, or, in the case of
|
120 |
+
interfaces specified for a particular programming language, one that
|
121 |
+
is widely used among developers working in that language.
|
122 |
+
|
123 |
+
The "System Libraries" of an executable work include anything, other
|
124 |
+
than the work as a whole, that (a) is included in the normal form of
|
125 |
+
packaging a Major Component, but which is not part of that Major
|
126 |
+
Component, and (b) serves only to enable use of the work with that
|
127 |
+
Major Component, or to implement a Standard Interface for which an
|
128 |
+
implementation is available to the public in source code form. A
|
129 |
+
"Major Component", in this context, means a major essential component
|
130 |
+
(kernel, window system, and so on) of the specific operating system
|
131 |
+
(if any) on which the executable work runs, or a compiler used to
|
132 |
+
produce the work, or an object code interpreter used to run it.
|
133 |
+
|
134 |
+
The "Corresponding Source" for a work in object code form means all
|
135 |
+
the source code needed to generate, install, and (for an executable
|
136 |
+
work) run the object code and to modify the work, including scripts to
|
137 |
+
control those activities. However, it does not include the work's
|
138 |
+
System Libraries, or general-purpose tools or generally available free
|
139 |
+
programs which are used unmodified in performing those activities but
|
140 |
+
which are not part of the work. For example, Corresponding Source
|
141 |
+
includes interface definition files associated with source files for
|
142 |
+
the work, and the source code for shared libraries and dynamically
|
143 |
+
linked subprograms that the work is specifically designed to require,
|
144 |
+
such as by intimate data communication or control flow between those
|
145 |
+
subprograms and other parts of the work.
|
146 |
+
|
147 |
+
The Corresponding Source need not include anything that users
|
148 |
+
can regenerate automatically from other parts of the Corresponding
|
149 |
+
Source.
|
150 |
+
|
151 |
+
The Corresponding Source for a work in source code form is that
|
152 |
+
same work.
|
153 |
+
|
154 |
+
2. Basic Permissions.
|
155 |
+
|
156 |
+
All rights granted under this License are granted for the term of
|
157 |
+
copyright on the Program, and are irrevocable provided the stated
|
158 |
+
conditions are met. This License explicitly affirms your unlimited
|
159 |
+
permission to run the unmodified Program. The output from running a
|
160 |
+
covered work is covered by this License only if the output, given its
|
161 |
+
content, constitutes a covered work. This License acknowledges your
|
162 |
+
rights of fair use or other equivalent, as provided by copyright law.
|
163 |
+
|
164 |
+
You may make, run and propagate covered works that you do not
|
165 |
+
convey, without conditions so long as your license otherwise remains
|
166 |
+
in force. You may convey covered works to others for the sole purpose
|
167 |
+
of having them make modifications exclusively for you, or provide you
|
168 |
+
with facilities for running those works, provided that you comply with
|
169 |
+
the terms of this License in conveying all material for which you do
|
170 |
+
not control copyright. Those thus making or running the covered works
|
171 |
+
for you must do so exclusively on your behalf, under your direction
|
172 |
+
and control, on terms that prohibit them from making any copies of
|
173 |
+
your copyrighted material outside their relationship with you.
|
174 |
+
|
175 |
+
Conveying under any other circumstances is permitted solely under
|
176 |
+
the conditions stated below. Sublicensing is not allowed; section 10
|
177 |
+
makes it unnecessary.
|
178 |
+
|
179 |
+
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
180 |
+
|
181 |
+
No covered work shall be deemed part of an effective technological
|
182 |
+
measure under any applicable law fulfilling obligations under article
|
183 |
+
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
184 |
+
similar laws prohibiting or restricting circumvention of such
|
185 |
+
measures.
|
186 |
+
|
187 |
+
When you convey a covered work, you waive any legal power to forbid
|
188 |
+
circumvention of technological measures to the extent such circumvention
|
189 |
+
is effected by exercising rights under this License with respect to
|
190 |
+
the covered work, and you disclaim any intention to limit operation or
|
191 |
+
modification of the work as a means of enforcing, against the work's
|
192 |
+
users, your or third parties' legal rights to forbid circumvention of
|
193 |
+
technological measures.
|
194 |
+
|
195 |
+
4. Conveying Verbatim Copies.
|
196 |
+
|
197 |
+
You may convey verbatim copies of the Program's source code as you
|
198 |
+
receive it, in any medium, provided that you conspicuously and
|
199 |
+
appropriately publish on each copy an appropriate copyright notice;
|
200 |
+
keep intact all notices stating that this License and any
|
201 |
+
non-permissive terms added in accord with section 7 apply to the code;
|
202 |
+
keep intact all notices of the absence of any warranty; and give all
|
203 |
+
recipients a copy of this License along with the Program.
|
204 |
+
|
205 |
+
You may charge any price or no price for each copy that you convey,
|
206 |
+
and you may offer support or warranty protection for a fee.
|
207 |
+
|
208 |
+
5. Conveying Modified Source Versions.
|
209 |
+
|
210 |
+
You may convey a work based on the Program, or the modifications to
|
211 |
+
produce it from the Program, in the form of source code under the
|
212 |
+
terms of section 4, provided that you also meet all of these conditions:
|
213 |
+
|
214 |
+
a) The work must carry prominent notices stating that you modified
|
215 |
+
it, and giving a relevant date.
|
216 |
+
|
217 |
+
b) The work must carry prominent notices stating that it is
|
218 |
+
released under this License and any conditions added under section
|
219 |
+
7. This requirement modifies the requirement in section 4 to
|
220 |
+
"keep intact all notices".
|
221 |
+
|
222 |
+
c) You must license the entire work, as a whole, under this
|
223 |
+
License to anyone who comes into possession of a copy. This
|
224 |
+
License will therefore apply, along with any applicable section 7
|
225 |
+
additional terms, to the whole of the work, and all its parts,
|
226 |
+
regardless of how they are packaged. This License gives no
|
227 |
+
permission to license the work in any other way, but it does not
|
228 |
+
invalidate such permission if you have separately received it.
|
229 |
+
|
230 |
+
d) If the work has interactive user interfaces, each must display
|
231 |
+
Appropriate Legal Notices; however, if the Program has interactive
|
232 |
+
interfaces that do not display Appropriate Legal Notices, your
|
233 |
+
work need not make them do so.
|
234 |
+
|
235 |
+
A compilation of a covered work with other separate and independent
|
236 |
+
works, which are not by their nature extensions of the covered work,
|
237 |
+
and which are not combined with it such as to form a larger program,
|
238 |
+
in or on a volume of a storage or distribution medium, is called an
|
239 |
+
"aggregate" if the compilation and its resulting copyright are not
|
240 |
+
used to limit the access or legal rights of the compilation's users
|
241 |
+
beyond what the individual works permit. Inclusion of a covered work
|
242 |
+
in an aggregate does not cause this License to apply to the other
|
243 |
+
parts of the aggregate.
|
244 |
+
|
245 |
+
6. Conveying Non-Source Forms.
|
246 |
+
|
247 |
+
You may convey a covered work in object code form under the terms
|
248 |
+
of sections 4 and 5, provided that you also convey the
|
249 |
+
machine-readable Corresponding Source under the terms of this License,
|
250 |
+
in one of these ways:
|
251 |
+
|
252 |
+
a) Convey the object code in, or embodied in, a physical product
|
253 |
+
(including a physical distribution medium), accompanied by the
|
254 |
+
Corresponding Source fixed on a durable physical medium
|
255 |
+
customarily used for software interchange.
|
256 |
+
|
257 |
+
b) Convey the object code in, or embodied in, a physical product
|
258 |
+
(including a physical distribution medium), accompanied by a
|
259 |
+
written offer, valid for at least three years and valid for as
|
260 |
+
long as you offer spare parts or customer support for that product
|
261 |
+
model, to give anyone who possesses the object code either (1) a
|
262 |
+
copy of the Corresponding Source for all the software in the
|
263 |
+
product that is covered by this License, on a durable physical
|
264 |
+
medium customarily used for software interchange, for a price no
|
265 |
+
more than your reasonable cost of physically performing this
|
266 |
+
conveying of source, or (2) access to copy the
|
267 |
+
Corresponding Source from a network server at no charge.
|
268 |
+
|
269 |
+
c) Convey individual copies of the object code with a copy of the
|
270 |
+
written offer to provide the Corresponding Source. This
|
271 |
+
alternative is allowed only occasionally and noncommercially, and
|
272 |
+
only if you received the object code with such an offer, in accord
|
273 |
+
with subsection 6b.
|
274 |
+
|
275 |
+
d) Convey the object code by offering access from a designated
|
276 |
+
place (gratis or for a charge), and offer equivalent access to the
|
277 |
+
Corresponding Source in the same way through the same place at no
|
278 |
+
further charge. You need not require recipients to copy the
|
279 |
+
Corresponding Source along with the object code. If the place to
|
280 |
+
copy the object code is a network server, the Corresponding Source
|
281 |
+
may be on a different server (operated by you or a third party)
|
282 |
+
that supports equivalent copying facilities, provided you maintain
|
283 |
+
clear directions next to the object code saying where to find the
|
284 |
+
Corresponding Source. Regardless of what server hosts the
|
285 |
+
Corresponding Source, you remain obligated to ensure that it is
|
286 |
+
available for as long as needed to satisfy these requirements.
|
287 |
+
|
288 |
+
e) Convey the object code using peer-to-peer transmission, provided
|
289 |
+
you inform other peers where the object code and Corresponding
|
290 |
+
Source of the work are being offered to the general public at no
|
291 |
+
charge under subsection 6d.
|
292 |
+
|
293 |
+
A separable portion of the object code, whose source code is excluded
|
294 |
+
from the Corresponding Source as a System Library, need not be
|
295 |
+
included in conveying the object code work.
|
296 |
+
|
297 |
+
A "User Product" is either (1) a "consumer product", which means any
|
298 |
+
tangible personal property which is normally used for personal, family,
|
299 |
+
or household purposes, or (2) anything designed or sold for incorporation
|
300 |
+
into a dwelling. In determining whether a product is a consumer product,
|
301 |
+
doubtful cases shall be resolved in favor of coverage. For a particular
|
302 |
+
product received by a particular user, "normally used" refers to a
|
303 |
+
typical or common use of that class of product, regardless of the status
|
304 |
+
of the particular user or of the way in which the particular user
|
305 |
+
actually uses, or expects or is expected to use, the product. A product
|
306 |
+
is a consumer product regardless of whether the product has substantial
|
307 |
+
commercial, industrial or non-consumer uses, unless such uses represent
|
308 |
+
the only significant mode of use of the product.
|
309 |
+
|
310 |
+
"Installation Information" for a User Product means any methods,
|
311 |
+
procedures, authorization keys, or other information required to install
|
312 |
+
and execute modified versions of a covered work in that User Product from
|
313 |
+
a modified version of its Corresponding Source. The information must
|
314 |
+
suffice to ensure that the continued functioning of the modified object
|
315 |
+
code is in no case prevented or interfered with solely because
|
316 |
+
modification has been made.
|
317 |
+
|
318 |
+
If you convey an object code work under this section in, or with, or
|
319 |
+
specifically for use in, a User Product, and the conveying occurs as
|
320 |
+
part of a transaction in which the right of possession and use of the
|
321 |
+
User Product is transferred to the recipient in perpetuity or for a
|
322 |
+
fixed term (regardless of how the transaction is characterized), the
|
323 |
+
Corresponding Source conveyed under this section must be accompanied
|
324 |
+
by the Installation Information. But this requirement does not apply
|
325 |
+
if neither you nor any third party retains the ability to install
|
326 |
+
modified object code on the User Product (for example, the work has
|
327 |
+
been installed in ROM).
|
328 |
+
|
329 |
+
The requirement to provide Installation Information does not include a
|
330 |
+
requirement to continue to provide support service, warranty, or updates
|
331 |
+
for a work that has been modified or installed by the recipient, or for
|
332 |
+
the User Product in which it has been modified or installed. Access to a
|
333 |
+
network may be denied when the modification itself materially and
|
334 |
+
adversely affects the operation of the network or violates the rules and
|
335 |
+
protocols for communication across the network.
|
336 |
+
|
337 |
+
Corresponding Source conveyed, and Installation Information provided,
|
338 |
+
in accord with this section must be in a format that is publicly
|
339 |
+
documented (and with an implementation available to the public in
|
340 |
+
source code form), and must require no special password or key for
|
341 |
+
unpacking, reading or copying.
|
342 |
+
|
343 |
+
7. Additional Terms.
|
344 |
+
|
345 |
+
"Additional permissions" are terms that supplement the terms of this
|
346 |
+
License by making exceptions from one or more of its conditions.
|
347 |
+
Additional permissions that are applicable to the entire Program shall
|
348 |
+
be treated as though they were included in this License, to the extent
|
349 |
+
that they are valid under applicable law. If additional permissions
|
350 |
+
apply only to part of the Program, that part may be used separately
|
351 |
+
under those permissions, but the entire Program remains governed by
|
352 |
+
this License without regard to the additional permissions.
|
353 |
+
|
354 |
+
When you convey a copy of a covered work, you may at your option
|
355 |
+
remove any additional permissions from that copy, or from any part of
|
356 |
+
it. (Additional permissions may be written to require their own
|
357 |
+
removal in certain cases when you modify the work.) You may place
|
358 |
+
additional permissions on material, added by you to a covered work,
|
359 |
+
for which you have or can give appropriate copyright permission.
|
360 |
+
|
361 |
+
Notwithstanding any other provision of this License, for material you
|
362 |
+
add to a covered work, you may (if authorized by the copyright holders of
|
363 |
+
that material) supplement the terms of this License with terms:
|
364 |
+
|
365 |
+
a) Disclaiming warranty or limiting liability differently from the
|
366 |
+
terms of sections 15 and 16 of this License; or
|
367 |
+
|
368 |
+
b) Requiring preservation of specified reasonable legal notices or
|
369 |
+
author attributions in that material or in the Appropriate Legal
|
370 |
+
Notices displayed by works containing it; or
|
371 |
+
|
372 |
+
c) Prohibiting misrepresentation of the origin of that material, or
|
373 |
+
requiring that modified versions of such material be marked in
|
374 |
+
reasonable ways as different from the original version; or
|
375 |
+
|
376 |
+
d) Limiting the use for publicity purposes of names of licensors or
|
377 |
+
authors of the material; or
|
378 |
+
|
379 |
+
e) Declining to grant rights under trademark law for use of some
|
380 |
+
trade names, trademarks, or service marks; or
|
381 |
+
|
382 |
+
f) Requiring indemnification of licensors and authors of that
|
383 |
+
material by anyone who conveys the material (or modified versions of
|
384 |
+
it) with contractual assumptions of liability to the recipient, for
|
385 |
+
any liability that these contractual assumptions directly impose on
|
386 |
+
those licensors and authors.
|
387 |
+
|
388 |
+
All other non-permissive additional terms are considered "further
|
389 |
+
restrictions" within the meaning of section 10. If the Program as you
|
390 |
+
received it, or any part of it, contains a notice stating that it is
|
391 |
+
governed by this License along with a term that is a further
|
392 |
+
restriction, you may remove that term. If a license document contains
|
393 |
+
a further restriction but permits relicensing or conveying under this
|
394 |
+
License, you may add to a covered work material governed by the terms
|
395 |
+
of that license document, provided that the further restriction does
|
396 |
+
not survive such relicensing or conveying.
|
397 |
+
|
398 |
+
If you add terms to a covered work in accord with this section, you
|
399 |
+
must place, in the relevant source files, a statement of the
|
400 |
+
additional terms that apply to those files, or a notice indicating
|
401 |
+
where to find the applicable terms.
|
402 |
+
|
403 |
+
Additional terms, permissive or non-permissive, may be stated in the
|
404 |
+
form of a separately written license, or stated as exceptions;
|
405 |
+
the above requirements apply either way.
|
406 |
+
|
407 |
+
8. Termination.
|
408 |
+
|
409 |
+
You may not propagate or modify a covered work except as expressly
|
410 |
+
provided under this License. Any attempt otherwise to propagate or
|
411 |
+
modify it is void, and will automatically terminate your rights under
|
412 |
+
this License (including any patent licenses granted under the third
|
413 |
+
paragraph of section 11).
|
414 |
+
|
415 |
+
However, if you cease all violation of this License, then your
|
416 |
+
license from a particular copyright holder is reinstated (a)
|
417 |
+
provisionally, unless and until the copyright holder explicitly and
|
418 |
+
finally terminates your license, and (b) permanently, if the copyright
|
419 |
+
holder fails to notify you of the violation by some reasonable means
|
420 |
+
prior to 60 days after the cessation.
|
421 |
+
|
422 |
+
Moreover, your license from a particular copyright holder is
|
423 |
+
reinstated permanently if the copyright holder notifies you of the
|
424 |
+
violation by some reasonable means, this is the first time you have
|
425 |
+
received notice of violation of this License (for any work) from that
|
426 |
+
copyright holder, and you cure the violation prior to 30 days after
|
427 |
+
your receipt of the notice.
|
428 |
+
|
429 |
+
Termination of your rights under this section does not terminate the
|
430 |
+
licenses of parties who have received copies or rights from you under
|
431 |
+
this License. If your rights have been terminated and not permanently
|
432 |
+
reinstated, you do not qualify to receive new licenses for the same
|
433 |
+
material under section 10.
|
434 |
+
|
435 |
+
9. Acceptance Not Required for Having Copies.
|
436 |
+
|
437 |
+
You are not required to accept this License in order to receive or
|
438 |
+
run a copy of the Program. Ancillary propagation of a covered work
|
439 |
+
occurring solely as a consequence of using peer-to-peer transmission
|
440 |
+
to receive a copy likewise does not require acceptance. However,
|
441 |
+
nothing other than this License grants you permission to propagate or
|
442 |
+
modify any covered work. These actions infringe copyright if you do
|
443 |
+
not accept this License. Therefore, by modifying or propagating a
|
444 |
+
covered work, you indicate your acceptance of this License to do so.
|
445 |
+
|
446 |
+
10. Automatic Licensing of Downstream Recipients.
|
447 |
+
|
448 |
+
Each time you convey a covered work, the recipient automatically
|
449 |
+
receives a license from the original licensors, to run, modify and
|
450 |
+
propagate that work, subject to this License. You are not responsible
|
451 |
+
for enforcing compliance by third parties with this License.
|
452 |
+
|
453 |
+
An "entity transaction" is a transaction transferring control of an
|
454 |
+
organization, or substantially all assets of one, or subdividing an
|
455 |
+
organization, or merging organizations. If propagation of a covered
|
456 |
+
work results from an entity transaction, each party to that
|
457 |
+
transaction who receives a copy of the work also receives whatever
|
458 |
+
licenses to the work the party's predecessor in interest had or could
|
459 |
+
give under the previous paragraph, plus a right to possession of the
|
460 |
+
Corresponding Source of the work from the predecessor in interest, if
|
461 |
+
the predecessor has it or can get it with reasonable efforts.
|
462 |
+
|
463 |
+
You may not impose any further restrictions on the exercise of the
|
464 |
+
rights granted or affirmed under this License. For example, you may
|
465 |
+
not impose a license fee, royalty, or other charge for exercise of
|
466 |
+
rights granted under this License, and you may not initiate litigation
|
467 |
+
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
468 |
+
any patent claim is infringed by making, using, selling, offering for
|
469 |
+
sale, or importing the Program or any portion of it.
|
470 |
+
|
471 |
+
11. Patents.
|
472 |
+
|
473 |
+
A "contributor" is a copyright holder who authorizes use under this
|
474 |
+
License of the Program or a work on which the Program is based. The
|
475 |
+
work thus licensed is called the contributor's "contributor version".
|
476 |
+
|
477 |
+
A contributor's "essential patent claims" are all patent claims
|
478 |
+
owned or controlled by the contributor, whether already acquired or
|
479 |
+
hereafter acquired, that would be infringed by some manner, permitted
|
480 |
+
by this License, of making, using, or selling its contributor version,
|
481 |
+
but do not include claims that would be infringed only as a
|
482 |
+
consequence of further modification of the contributor version. For
|
483 |
+
purposes of this definition, "control" includes the right to grant
|
484 |
+
patent sublicenses in a manner consistent with the requirements of
|
485 |
+
this License.
|
486 |
+
|
487 |
+
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
488 |
+
patent license under the contributor's essential patent claims, to
|
489 |
+
make, use, sell, offer for sale, import and otherwise run, modify and
|
490 |
+
propagate the contents of its contributor version.
|
491 |
+
|
492 |
+
In the following three paragraphs, a "patent license" is any express
|
493 |
+
agreement or commitment, however denominated, not to enforce a patent
|
494 |
+
(such as an express permission to practice a patent or covenant not to
|
495 |
+
sue for patent infringement). To "grant" such a patent license to a
|
496 |
+
party means to make such an agreement or commitment not to enforce a
|
497 |
+
patent against the party.
|
498 |
+
|
499 |
+
If you convey a covered work, knowingly relying on a patent license,
|
500 |
+
and the Corresponding Source of the work is not available for anyone
|
501 |
+
to copy, free of charge and under the terms of this License, through a
|
502 |
+
publicly available network server or other readily accessible means,
|
503 |
+
then you must either (1) cause the Corresponding Source to be so
|
504 |
+
available, or (2) arrange to deprive yourself of the benefit of the
|
505 |
+
patent license for this particular work, or (3) arrange, in a manner
|
506 |
+
consistent with the requirements of this License, to extend the patent
|
507 |
+
license to downstream recipients. "Knowingly relying" means you have
|
508 |
+
actual knowledge that, but for the patent license, your conveying the
|
509 |
+
covered work in a country, or your recipient's use of the covered work
|
510 |
+
in a country, would infringe one or more identifiable patents in that
|
511 |
+
country that you have reason to believe are valid.
|
512 |
+
|
513 |
+
If, pursuant to or in connection with a single transaction or
|
514 |
+
arrangement, you convey, or propagate by procuring conveyance of, a
|
515 |
+
covered work, and grant a patent license to some of the parties
|
516 |
+
receiving the covered work authorizing them to use, propagate, modify
|
517 |
+
or convey a specific copy of the covered work, then the patent license
|
518 |
+
you grant is automatically extended to all recipients of the covered
|
519 |
+
work and works based on it.
|
520 |
+
|
521 |
+
A patent license is "discriminatory" if it does not include within
|
522 |
+
the scope of its coverage, prohibits the exercise of, or is
|
523 |
+
conditioned on the non-exercise of one or more of the rights that are
|
524 |
+
specifically granted under this License. You may not convey a covered
|
525 |
+
work if you are a party to an arrangement with a third party that is
|
526 |
+
in the business of distributing software, under which you make payment
|
527 |
+
to the third party based on the extent of your activity of conveying
|
528 |
+
the work, and under which the third party grants, to any of the
|
529 |
+
parties who would receive the covered work from you, a discriminatory
|
530 |
+
patent license (a) in connection with copies of the covered work
|
531 |
+
conveyed by you (or copies made from those copies), or (b) primarily
|
532 |
+
for and in connection with specific products or compilations that
|
533 |
+
contain the covered work, unless you entered into that arrangement,
|
534 |
+
or that patent license was granted, prior to 28 March 2007.
|
535 |
+
|
536 |
+
Nothing in this License shall be construed as excluding or limiting
|
537 |
+
any implied license or other defenses to infringement that may
|
538 |
+
otherwise be available to you under applicable patent law.
|
539 |
+
|
540 |
+
12. No Surrender of Others' Freedom.
|
541 |
+
|
542 |
+
If conditions are imposed on you (whether by court order, agreement or
|
543 |
+
otherwise) that contradict the conditions of this License, they do not
|
544 |
+
excuse you from the conditions of this License. If you cannot convey a
|
545 |
+
covered work so as to satisfy simultaneously your obligations under this
|
546 |
+
License and any other pertinent obligations, then as a consequence you may
|
547 |
+
not convey it at all. For example, if you agree to terms that obligate you
|
548 |
+
to collect a royalty for further conveying from those to whom you convey
|
549 |
+
the Program, the only way you could satisfy both those terms and this
|
550 |
+
License would be to refrain entirely from conveying the Program.
|
551 |
+
|
552 |
+
13. Use with the GNU Affero General Public License.
|
553 |
+
|
554 |
+
Notwithstanding any other provision of this License, you have
|
555 |
+
permission to link or combine any covered work with a work licensed
|
556 |
+
under version 3 of the GNU Affero General Public License into a single
|
557 |
+
combined work, and to convey the resulting work. The terms of this
|
558 |
+
License will continue to apply to the part which is the covered work,
|
559 |
+
but the special requirements of the GNU Affero General Public License,
|
560 |
+
section 13, concerning interaction through a network will apply to the
|
561 |
+
combination as such.
|
562 |
+
|
563 |
+
14. Revised Versions of this License.
|
564 |
+
|
565 |
+
The Free Software Foundation may publish revised and/or new versions of
|
566 |
+
the GNU General Public License from time to time. Such new versions will
|
567 |
+
be similar in spirit to the present version, but may differ in detail to
|
568 |
+
address new problems or concerns.
|
569 |
+
|
570 |
+
Each version is given a distinguishing version number. If the
|
571 |
+
Program specifies that a certain numbered version of the GNU General
|
572 |
+
Public License "or any later version" applies to it, you have the
|
573 |
+
option of following the terms and conditions either of that numbered
|
574 |
+
version or of any later version published by the Free Software
|
575 |
+
Foundation. If the Program does not specify a version number of the
|
576 |
+
GNU General Public License, you may choose any version ever published
|
577 |
+
by the Free Software Foundation.
|
578 |
+
|
579 |
+
If the Program specifies that a proxy can decide which future
|
580 |
+
versions of the GNU General Public License can be used, that proxy's
|
581 |
+
public statement of acceptance of a version permanently authorizes you
|
582 |
+
to choose that version for the Program.
|
583 |
+
|
584 |
+
Later license versions may give you additional or different
|
585 |
+
permissions. However, no additional obligations are imposed on any
|
586 |
+
author or copyright holder as a result of your choosing to follow a
|
587 |
+
later version.
|
588 |
+
|
589 |
+
15. Disclaimer of Warranty.
|
590 |
+
|
591 |
+
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
592 |
+
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
593 |
+
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
594 |
+
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
595 |
+
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
596 |
+
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
597 |
+
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
598 |
+
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
599 |
+
|
600 |
+
16. Limitation of Liability.
|
601 |
+
|
602 |
+
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
603 |
+
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
604 |
+
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
605 |
+
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
606 |
+
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
607 |
+
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
608 |
+
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
609 |
+
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
610 |
+
SUCH DAMAGES.
|
611 |
+
|
612 |
+
17. Interpretation of Sections 15 and 16.
|
613 |
+
|
614 |
+
If the disclaimer of warranty and limitation of liability provided
|
615 |
+
above cannot be given local legal effect according to their terms,
|
616 |
+
reviewing courts shall apply local law that most closely approximates
|
617 |
+
an absolute waiver of all civil liability in connection with the
|
618 |
+
Program, unless a warranty or assumption of liability accompanies a
|
619 |
+
copy of the Program in return for a fee.
|
620 |
+
|
621 |
+
END OF TERMS AND CONDITIONS
|
622 |
+
|
623 |
+
How to Apply These Terms to Your New Programs
|
624 |
+
|
625 |
+
If you develop a new program, and you want it to be of the greatest
|
626 |
+
possible use to the public, the best way to achieve this is to make it
|
627 |
+
free software which everyone can redistribute and change under these terms.
|
628 |
+
|
629 |
+
To do so, attach the following notices to the program. It is safest
|
630 |
+
to attach them to the start of each source file to most effectively
|
631 |
+
state the exclusion of warranty; and each file should have at least
|
632 |
+
the "copyright" line and a pointer to where the full notice is found.
|
633 |
+
|
634 |
+
{one line to give the program's name and a brief idea of what it does.}
|
635 |
+
Copyright (C) {year} {name of author}
|
636 |
+
|
637 |
+
This program is free software: you can redistribute it and/or modify
|
638 |
+
it under the terms of the GNU General Public License as published by
|
639 |
+
the Free Software Foundation, either version 3 of the License, or
|
640 |
+
(at your option) any later version.
|
641 |
+
|
642 |
+
This program is distributed in the hope that it will be useful,
|
643 |
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
644 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
645 |
+
GNU General Public License for more details.
|
646 |
+
|
647 |
+
You should have received a copy of the GNU General Public License
|
648 |
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
649 |
+
|
650 |
+
Also add information on how to contact you by electronic and paper mail.
|
651 |
+
|
652 |
+
If the program does terminal interaction, make it output a short
|
653 |
+
notice like this when it starts in an interactive mode:
|
654 |
+
|
655 |
+
{project} Copyright (C) {year} {fullname}
|
656 |
+
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
657 |
+
This is free software, and you are welcome to redistribute it
|
658 |
+
under certain conditions; type `show c' for details.
|
659 |
+
|
660 |
+
The hypothetical commands `show w' and `show c' should show the appropriate
|
661 |
+
parts of the General Public License. Of course, your program's commands
|
662 |
+
might be different; for a GUI interface, you would use an "about box".
|
663 |
+
|
664 |
+
You should also get your employer (if you work as a programmer) or school,
|
665 |
+
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
666 |
+
For more information on this, and how to apply and follow the GNU GPL, see
|
667 |
+
<http://www.gnu.org/licenses/>.
|
668 |
+
|
669 |
+
The GNU General Public License does not permit incorporating your program
|
670 |
+
into proprietary programs. If your program is a subroutine library, you
|
671 |
+
may consider it more useful to permit linking proprietary applications with
|
672 |
+
the library. If this is what you want to do, use the GNU Lesser General
|
673 |
+
Public License instead of this License. But first, please read
|
674 |
+
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
activate.php
CHANGED
@@ -1,73 +1,143 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
3 |
/**
|
4 |
-
*
|
5 |
-
* @
|
6 |
-
* @license GPLv2 or later
|
7 |
-
* @since 1.0.0
|
8 |
-
* -------------------------------------------------------------------------------------------------
|
9 |
*/
|
|
|
|
|
|
|
|
|
10 |
|
11 |
-
|
|
|
|
|
|
|
12 |
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
'php' => version_compare( PHP_VERSION, '5.4.0', '<' ),
|
18 |
-
'wordpress' => version_compare( $wp_version, '4.0', '<' ),
|
19 |
-
];
|
20 |
-
}
|
21 |
-
}
|
22 |
|
23 |
-
|
24 |
-
|
|
|
|
|
25 |
{
|
26 |
-
$
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
if( $plugin == $plugin_name ) {
|
33 |
-
$paged = filter_input( INPUT_GET, 'paged' );
|
34 |
-
$s = filter_input( INPUT_GET, 's' );
|
35 |
-
$status = filter_input( INPUT_GET, 'plugin_status' );
|
36 |
|
37 |
-
|
38 |
-
|
|
|
|
|
|
|
|
|
|
|
39 |
}
|
|
|
|
|
|
|
|
|
40 |
|
41 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
|
43 |
-
|
44 |
-
|
45 |
-
|
|
|
|
|
|
|
|
|
46 |
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
|
|
|
|
|
|
52 |
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
}
|
|
|
|
|
|
|
|
|
58 |
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
);
|
64 |
}
|
65 |
-
}
|
66 |
|
67 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
}
|
1 |
<?php
|
2 |
|
3 |
+
defined( 'WPINC' ) || die;
|
4 |
+
|
5 |
/**
|
6 |
+
* Check for minimum system requirments on plugin activation
|
7 |
+
* @version 3.0.0
|
|
|
|
|
|
|
8 |
*/
|
9 |
+
class GL_Plugin_Check_v3
|
10 |
+
{
|
11 |
+
const MIN_PHP_VERSION = '5.6.0';
|
12 |
+
const MIN_WORDPRESS_VERSION = '4.7.0';
|
13 |
|
14 |
+
/**
|
15 |
+
* @var string
|
16 |
+
*/
|
17 |
+
protected $file;
|
18 |
|
19 |
+
/**
|
20 |
+
* @var array
|
21 |
+
*/
|
22 |
+
protected $versions;
|
|
|
|
|
|
|
|
|
|
|
23 |
|
24 |
+
/**
|
25 |
+
* @param string $file
|
26 |
+
*/
|
27 |
+
public function __construct( $file, array $versions = array() )
|
28 |
{
|
29 |
+
$this->file = realpath( $file );
|
30 |
+
$this->versions = wp_parse_args( $versions, array(
|
31 |
+
'php' => static::MIN_PHP_VERSION,
|
32 |
+
'wordpress' => static::MIN_WORDPRESS_VERSION,
|
33 |
+
));
|
34 |
+
}
|
|
|
|
|
|
|
|
|
35 |
|
36 |
+
/**
|
37 |
+
* @return bool
|
38 |
+
*/
|
39 |
+
public function canProceed()
|
40 |
+
{
|
41 |
+
if( $this->isValid() ) {
|
42 |
+
return true;
|
43 |
}
|
44 |
+
add_action( 'activated_plugin', array( $this, 'deactivate' ));
|
45 |
+
add_action( 'admin_notices', array( $this, 'deactivate' ));
|
46 |
+
return false;
|
47 |
+
}
|
48 |
|
49 |
+
/**
|
50 |
+
* @return bool
|
51 |
+
*/
|
52 |
+
public function isPhpValid()
|
53 |
+
{
|
54 |
+
return !version_compare( PHP_VERSION, $this->versions['php'], '<' );
|
55 |
+
}
|
56 |
|
57 |
+
/**
|
58 |
+
* @return bool
|
59 |
+
*/
|
60 |
+
public function isValid()
|
61 |
+
{
|
62 |
+
return $this->isPhpValid() && $this->isWpValid();
|
63 |
+
}
|
64 |
|
65 |
+
/**
|
66 |
+
* @return bool
|
67 |
+
*/
|
68 |
+
public function isWpValid()
|
69 |
+
{
|
70 |
+
global $wp_version;
|
71 |
+
return !version_compare( $wp_version, $this->versions['wordpress'], '<' );
|
72 |
+
}
|
73 |
|
74 |
+
/**
|
75 |
+
* @param string $plugin
|
76 |
+
* @return void
|
77 |
+
*/
|
78 |
+
public function deactivate( $plugin )
|
79 |
+
{
|
80 |
+
if( $this->isValid() )return;
|
81 |
+
$pluginSlug = plugin_basename( $this->file );
|
82 |
+
if( $plugin == $pluginSlug ) {
|
83 |
+
$this->redirect(); //exit
|
84 |
}
|
85 |
+
$pluginData = get_file_data( $this->file, array( 'name' => 'Plugin Name' ), 'plugin' );
|
86 |
+
deactivate_plugins( $pluginSlug );
|
87 |
+
$this->printNotice( $pluginData['name'] );
|
88 |
+
}
|
89 |
|
90 |
+
/**
|
91 |
+
* @return array
|
92 |
+
*/
|
93 |
+
protected function getMessages()
|
94 |
+
{
|
95 |
+
return array(
|
96 |
+
__( 'The %s plugin was deactivated.', 'site-reviews' ),
|
97 |
+
__( 'This plugin requires %s or greater in order to work properly.', 'site-reviews' ),
|
98 |
+
__( 'Please contact your hosting provider or server administrator to upgrade the version of PHP on your server (your server is running PHP version %s), or try to find an alternative plugin.', 'site-reviews' ),
|
99 |
+
__( 'PHP version', 'site-reviews' ),
|
100 |
+
__( 'WordPress version', 'site-reviews' ),
|
101 |
+
__( 'Update WordPress', 'site-reviews' ),
|
102 |
+
__( 'You can use the %s plugin to restore %s to the previous version.', 'site-reviews' ),
|
103 |
);
|
104 |
}
|
|
|
105 |
|
106 |
+
/**
|
107 |
+
* @param string $pluginName
|
108 |
+
* @return void
|
109 |
+
*/
|
110 |
+
protected function printNotice( $pluginName )
|
111 |
+
{
|
112 |
+
$noticeTemplate = '<div id="message" class="notice notice-error error is-dismissible"><p><strong>%s</strong></p><p>%s</p><p>%s</p></div>';
|
113 |
+
$messages = $this->getMessages();
|
114 |
+
$rollbackMessage = sprintf( '<strong>'.$messages[6].'</strong>', '<a href="https://wordpress.org/plugins/wp-rollback/">WP Rollback</a>', $pluginName );
|
115 |
+
if( !$this->isPhpValid() ) {
|
116 |
+
printf( $noticeTemplate,
|
117 |
+
sprintf( $messages[0], $pluginName ),
|
118 |
+
sprintf( $messages[1], $messages[3].' '.$this->versions['php'] ),
|
119 |
+
sprintf( $messages[2], PHP_VERSION ).'</p><p>'.$rollbackMessage
|
120 |
+
);
|
121 |
+
}
|
122 |
+
else if( !$this->isWpValid() ) {
|
123 |
+
printf( $noticeTemplate,
|
124 |
+
sprintf( $messages[0], $pluginName ),
|
125 |
+
sprintf( $messages[1], $messages[4].' '.$this->versions['wordpress'] ),
|
126 |
+
$rollbackMessage.'</p><p>'.sprintf( '<a href="%s">%s</a>', admin_url( 'update-core.php' ), $messages[5] )
|
127 |
+
);
|
128 |
+
}
|
129 |
+
}
|
130 |
|
131 |
+
/**
|
132 |
+
* @return void
|
133 |
+
*/
|
134 |
+
protected function redirect()
|
135 |
+
{
|
136 |
+
wp_safe_redirect( self_admin_url( sprintf( 'plugins.php?plugin_status=%s&paged=%s&s=%s',
|
137 |
+
filter_input( INPUT_GET, 'plugin_status' ),
|
138 |
+
filter_input( INPUT_GET, 'paged' ),
|
139 |
+
filter_input( INPUT_GET, 's' )
|
140 |
+
)));
|
141 |
+
exit;
|
142 |
+
}
|
143 |
}
|
assets/css/site-reviews-admin.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.glsr-addon-name,.glsr-addon-wrap,.glsr-progress *{box-sizing:border-box}.glsr-addons{margin:-20px 0 0 -20px}.glsr-addon-description p,.glsr-addon-name{text-overflow:ellipsis;margin:0;overflow:hidden}.glsr-addon-wrap{float:left;position:relative;width:100%;padding:20px 0 0 20px}@media only screen and (min-width:480px){.glsr-addon-wrap{width:50%}}@media only screen and (min-width:782px){.glsr-addon-wrap{width:33.33%}}@media only screen and (min-width:1400px){.glsr-addon-wrap{width:25%}}.glsr-addon{border:1px solid #ddd;box-shadow:0 1px 1px -1px rgba(0,0,0,.1)}.glsr-addon-description{background-color:#fff;padding:1em 15px}.glsr-addon-description p{height:calc(13px * 1.5 * 4)}.glsr-addon-name{height:48px;font-size:15px;font-weight:600;background:rgba(255,255,255,.65);box-shadow:inset 0 1px 0 rgba(0,0,0,.1);white-space:nowrap;padding:15px}.glsr-addon-screenshot{display:block;background-position:50%;background-repeat:no-repeat;background-size:100% auto;border-bottom:1px solid #ddd;padding-top:56.25%}.glsr-addon-screenshot[data-name=booking]{background-image:url(../img/booking.svg);background-color:#00347D}.glsr-addon-screenshot[data-name=facebook]{background-image:url(../img/facebook.svg);background-color:#3B5998}.glsr-addon-screenshot[data-name=google]{background-image:url(../img/google.svg);background-color:#C6DAFC}.glsr-addon-screenshot[data-name=tripadvisor]{background-color:#4b7e37;background-image:url(../img/tripadvisor.svg)}.glsr-addon-screenshot[data-name=yelp]{background-image:url(../img/yelp.svg);background-color:#d32323}.glsr-addon-link{position:absolute;right:15px;bottom:10px}.glsr-addon-link:after{display:inline-block;content:"\00a0\f504";font-family:dashicons;vertical-align:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media screen and (max-width:782px){.glsr-addon-link{bottom:5px;text-indent:-100%;padding:6px 10px!important;overflow:hidden}.glsr-addon-link:after{float:right;height:16px;width:16px;content:"\f504";font-size:18px;text-indent:0}}#dashboard_right_now li a.glsr-review-count:before,#dashboard_right_now li>span.glsr-review-count:before{content:'\f459';line-height:.8em}#titlediv #title{margin-bottom:20px}#contentdiv textarea,#titlediv #title{border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);background-color:#fff}#contentdiv textarea,.post-type-site-review .wp-editor-area{width:100%;height:320px;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-size:16px;line-height:1.5;padding:10px;resize:vertical;-webkit-font-smoothing:antialiased!important;overflow-wrap:break-word}body.branch-4 .misc-pub-pinned:before,body.branch-4-1 .misc-pub-pinned:before,body.branch-4-2 .misc-pub-pinned:before,body.branch-4-3 .misc-pub-pinned:before{display:none}body.branch-4 .misc-pub-pinned .pinned-icon,body.branch-4-1 .misc-pub-pinned .pinned-icon,body.branch-4-2 .misc-pub-pinned .pinned-icon,body.branch-4-3 .misc-pub-pinned .pinned-icon{position:relative;display:inline-block;width:20px;padding-right:2px}body.branch-4 .misc-pub-pinned .pinned-icon svg,body.branch-4-1 .misc-pub-pinned .pinned-icon svg,body.branch-4-2 .misc-pub-pinned .pinned-icon svg,body.branch-4-3 .misc-pub-pinned .pinned-icon svg{position:absolute;top:-13px;left:-1px;width:19px;height:18px;color:#888}.misc-pub-pinned:before{display:inline-block;position:relative;content:"\f537";font:400 20px/1 dashicons;speak:none;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;top:0;left:-1px;color:#82878c;padding:0 2px 0 0}.glsr-card dt,.glsr-metabox-table td:first-child,.misc-pub-pinned .pinned-status-text{font-weight:600}.glsr-field textarea.code,.glsr-log[readonly],.post-type-site-review .code,.post-type-site-review code{font-family:"Operator Mono","Fira Code",monaco,monospace}.misc-pub-pinned .pinned-status-select{margin-top:3px}#geminilabs-site-reviews_review.postbox .inside{padding:0;margin:0}.glsr-metabox-table{width:auto;padding:0 12px 12px;margin-top:12px}.glsr-metabox-table td{line-height:1.5;vertical-align:top;padding:0 14px 8px 0}.glsr-metabox-table td:last-child{padding-bottom:0}.revert-action{line-height:23px;text-align:right;border-top:1px solid #ddd;background:#f5f5f5;padding:10px}.revert-action .spinner{float:none}body.branch-4 .notice-warning{border-color:#ffba00}.glsr-progress{position:relative;display:block;width:300px;height:24px;opacity:.65;text-align:center}@media screen and (max-width:782px){.glsr-progress{height:39px;font-size:16px}}.glsr-progress.active{opacity:1}.glsr-progress-background,.glsr-progress-bar{height:100%;background-size:40px 40px}.glsr-progress.active .glsr-progress-background,.glsr-progress.active .glsr-progress-bar{-webkit-transition:width .6s ease;transition:width .6s ease;-webkit-animation:glsr-progress-bar 1s linear infinite;animation:glsr-progress-bar 1s linear infinite}.glsr-progress-bar{position:relative;width:0;color:#fff;background-color:#616b75;background-image:-webkit-linear-gradient(135deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);box-shadow:0 1px 0 #4a5259;border-width:1px;border-style:solid;border-color:#616b75 #4a5259 #4a5259;border-radius:3px 0 0 3px;overflow:hidden;z-index:1}.glsr-progress-bar[style="width: 0%;"]{border-width:0}.glsr-progress-bar[style="width: 100%;"]{border-radius:3px}.glsr-progress-background{position:absolute;top:0;left:0;width:100%;height:25px;background-color:#f7f7f7;background-image:-webkit-linear-gradient(135deg,#fff 25%,transparent 25%,transparent 50%,#fff 50%,#fff 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,#fff 25%,transparent 25%,transparent 50%,#fff 50%,#fff 75%,transparent 75%,transparent);border-radius:3px;box-shadow:inset 0 1px 2px #e5e5e5;border:1px solid #ccc}.glsr-progress span{position:absolute;width:300px;left:0;top:0;line-height:23px;color:#555;padding:0 6px}@media screen and (max-width:782px){.glsr-progress-background{height:40px}.glsr-progress span{line-height:38px}}.glsr-progress-bar>span{color:#fff;text-shadow:0 -1px 1px #4a5259,1px 0 1px #4a5259,0 1px 1px #4a5259,-1px 0 1px #4a5259}@-webkit-keyframes glsr-progress-bar{from{background-position:0 0}to{background-position:40px 0}}@keyframes glsr-progress-bar{from{background-position:0 0}to{background-position:40px 0}}.glsr-progress.blue .glsr-progress-bar{background-color:#0073aa;box-shadow:0 1px 0 #006799;border-color:#0073aa #006799 #006799}.glsr-progress.blue .glsr-progress-bar>span{text-shadow:0 -1px 1px #006799,1px 0 1px #006799,0 1px 1px #006799,-1px 0 1px #006799}.glsr-progress.green .glsr-progress-bar{background-color:#46b44f;box-shadow:0 1px 0 #3fa247;border-color:#46b44f #3fa247 #3fa247}.glsr-progress.green .glsr-progress-bar>span{text-shadow:0 -1px 1px #3fa247,1px 0 1px #3fa247,0 1px 1px #3fa247,-1px 0 1px #3fa247}.star-rating .glsr-star{width:16px;font-size:16px;line-height:20px;color:#555}.glsr-card code,.glsr-card pre{white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.glsr-card pre{border:1px solid #e5e5e5;border-radius:3px;position:relative;background-color:#f9f9f9;overflow:visible;padding:0}.glsr-card pre code{background:0 0;max-height:inherit;height:100%;padding:.5em;display:block;overflow:auto}.glsr-card dd,.glsr-card dt{margin:1em 0}.glsr-card code a{text-decoration:none}.wrap h2.nav-tab-wrapper{padding-top:0;margin-top:9px}.float-left{float:left;padding-right:.25em}.glsr-subsubsub{float:none;text-align:left}.glsr-log[readonly]{width:100%;background-color:rgba(255,255,255,.5);border-color:rgba(222,222,222,.75);box-shadow:inset 0 1px 2px rgba(0,0,0,.04);color:rgba(50,55,60,.75);font-weight:300;font-size:13px;-webkit-font-smoothing:antialiased!important;resize:vertical;white-space:pre;overflow:auto;padding:3px 6px}@media only screen and (max-width:782px){.glsr-card{max-width:inherit}}tr.glsr-field li,tr.glsr-field ul{margin:0 auto}.glsr-field ul.inline li{display:inline}.glsr-field ul.inline li:not(:last-child){margin-right:1em}.glsr-field{margin:1em 0;line-height:1.5}.glsr-field>label{display:block}@media screen and (max-width:782px){.glsr-field>label+input.small-text{margin-left:0}}.glsr-field>ul{margin:0}.glsr-field>ul li{margin-bottom:2px}body.branch-4 .wrap h1.page-title,body.branch-4-1 .wrap h1.page-title,body.branch-4-2 .wrap h1.page-title{font-size:23px;font-weight:400;line-height:29px;padding:9px 15px 4px 0;margin:0}body.branch-4 .wrap h2.title,body.branch-4-1 .wrap h2.title,body.branch-4-2 .wrap h2.title{color:#23282d;font-size:1.3em;font-weight:600;line-height:1.4em;padding:0;margin:1em 0}body.branch-4 .glsr-card,body.branch-4-1 .glsr-card{position:relative;margin-top:20px;padding:.7em 2em 1em;min-width:255px;max-width:520px;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff}.glsr-status{max-width:1000px}.glsr-status th.site{width:25%}.glsr-status td{vertical-align:middle}.glsr-status td.site{font-weight:600}.glsr-status td.site span{font-weight:400;font-size:90%}.glsr-status .toggle-row{top:0}.glsr-status .toggle-row:before{top:6px}@media only screen and (min-width:783px){.glsr-status td.total-fetched,.glsr-status th.total-fetched{text-align:center}}@media only screen and (max-width:782px){.glsr-status th.site,.glsr-status tr:not(.inline-edit-row):not(.no-items) td.site{display:table-cell!important;width:230px!important;vertical-align:top;padding:8px 10px}.glsr-status tr:not(.inline-edit-row):not(.no-items) td.total-fetched~td:not(.site){overflow:hidden;white-space:nowrap;text-overflow:ellipsis;padding:0 10px 0 260px;margin-left:-250px;margin-bottom:8px}.glsr-status tr:not(.inline-edit-row):not(.no-items) td.total-fetched~td:before{width:240px}}@media only screen and (max-width:691px){.glsr-status th.site,.glsr-status tr:not(.inline-edit-row):not(.no-items) td.site{width:200px!important}.glsr-status tr:not(.inline-edit-row):not(.no-items) td.total-fetched~td:not(.site){padding-left:230px;margin-left:-220px}.glsr-status tr:not(.inline-edit-row):not(.no-items) td.total-fetched~td:before{width:210px}}@media only screen and (max-width:600px){.glsr-status th.site,.glsr-status tr:not(.inline-edit-row):not(.no-items) td.site{width:170px!important}.glsr-status tr:not(.inline-edit-row):not(.no-items) td.total-fetched~td:not(.site){padding-left:200px;margin-left:-190px}.glsr-status tr:not(.inline-edit-row):not(.no-items) td.total-fetched~td:before{width:180px}}@media only screen and (max-width:480px){.glsr-status th.site,.glsr-status tr:not(.inline-edit-row):not(.no-items) td.site{width:130px!important}.glsr-status tr:not(.inline-edit-row):not(.no-items) td.total-fetched~td:not(.site){padding-left:160px;margin-left:-150px}.glsr-status tr:not(.inline-edit-row):not(.no-items) td.total-fetched~td:before{width:140px}}@media only screen and (max-width:425px){.glsr-status td:before{font-weight:600}.glsr-status tr:not(.inline-edit-row):not(.no-items) td.total-fetched~td:not(.site){padding-left:10px}.glsr-status tr:not(.inline-edit-row):not(.no-items) td.total-fetched~td:before{position:static}}body.branch-4 .glsr-status.striped>tbody>:nth-child(odd),body.branch-4-1 .glsr-status.striped>tbody>:nth-child(odd){background-color:#f9f9f9}body.branch-4 .glsr-status .toggle-row,body.branch-4-1 .glsr-status .toggle-row,body.branch-4-2 .glsr-status .toggle-row{display:none;position:absolute;top:10px;right:8px;width:40px;height:40px;border:none;outline:0;background:0 0;padding:0}body.branch-4 .glsr-status .toggle-row:hover,body.branch-4-1 .glsr-status .toggle-row:hover,body.branch-4-2 .glsr-status .toggle-row:hover{cursor:pointer}body.branch-4 .glsr-status .toggle-row:focus:before,body.branch-4-1 .glsr-status .toggle-row:focus:before,body.branch-4-2 .glsr-status .toggle-row:focus:before{box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}body.branch-4 .glsr-status .toggle-row:active,body.branch-4-1 .glsr-status .toggle-row:active,body.branch-4-2 .glsr-status .toggle-row:active{box-shadow:none}body.branch-4 .glsr-status .toggle-row:before,body.branch-4-1 .glsr-status .toggle-row:before,body.branch-4-2 .glsr-status .toggle-row:before{display:block;position:absolute;top:-5px;left:10px;border-radius:50%;color:#666;content:'\f140';font:400 20px/1 dashicons;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;speak:none;padding:1px 2px 1px 0}body.branch-4 .glsr-status .is-expanded .toggle-row:before,body.branch-4-1 .glsr-status .is-expanded .toggle-row:before,body.branch-4-2 .glsr-status .is-expanded .toggle-row:before{content:'\f142'}@media screen and (max-width:782px){body.branch-4 .glsr-status .column-primary,body.branch-4-1 .glsr-status .column-primary,body.branch-4-2 .glsr-status .column-primary{width:100%}body.branch-4 .glsr-status .column-primary~td,body.branch-4 .glsr-status .column-primary~th,body.branch-4-1 .glsr-status .column-primary~td,body.branch-4-1 .glsr-status .column-primary~th,body.branch-4-2 .glsr-status .column-primary~td,body.branch-4-2 .glsr-status .column-primary~th{display:none}body.branch-4 .glsr-status .column-primary .toggle-row,body.branch-4-1 .glsr-status .column-primary .toggle-row,body.branch-4-2 .glsr-status .column-primary .toggle-row{display:block}body.branch-4 .glsr-status td,body.branch-4-1 .glsr-status td,body.branch-4-2 .glsr-status td{position:relative;clear:both;display:block;width:auto!important}body.branch-4 .glsr-status td.column-primary,body.branch-4-1 .glsr-status td.column-primary,body.branch-4-2 .glsr-status td.column-primary{padding-right:50px}body.branch-4 .glsr-status td.column-primary~td:not(.check-column),body.branch-4-1 .glsr-status td.column-primary~td:not(.check-column),body.branch-4-2 .glsr-status td.column-primary~td:not(.check-column){padding:3px 8px 3px 35%}body.branch-4 .glsr-status td:not(.column-primary)::before,body.branch-4-1 .glsr-status td:not(.column-primary)::before,body.branch-4-2 .glsr-status td:not(.column-primary)::before{position:absolute;left:10px;display:block;overflow:hidden;width:32%;content:attr(data-colname);white-space:nowrap;text-overflow:ellipsis}body.branch-4 .glsr-status .is-expanded td:not(.hidden),body.branch-4-1 .glsr-status .is-expanded td:not(.hidden),body.branch-4-2 .glsr-status .is-expanded td:not(.hidden){display:block;overflow:hidden}body.branch-4-1.post-type-review .fixed .column-rating,body.branch-4-1.post-type-review .fixed .column-reviewer,body.branch-4-1.post-type-review .fixed .column-site,body.branch-4-1.post-type-review .fixed .column-stars,body.branch-4-2.post-type-review .fixed .column-rating,body.branch-4-2.post-type-review .fixed .column-reviewer,body.branch-4-2.post-type-review .fixed .column-site,body.branch-4-2.post-type-review .fixed .column-stars,body.branch-4.post-type-review .fixed .column-rating,body.branch-4.post-type-review .fixed .column-reviewer,body.branch-4.post-type-review .fixed .column-site,body.branch-4.post-type-review .fixed .column-stars{display:none}}.post-type-site-review .wp-list-table .approve,.post-type-site-review .wp-list-table .status-pending .unapprove{display:none}.post-type-site-review .wp-list-table .spam .approve,.post-type-site-review .wp-list-table .status-pending .approve,.post-type-site-review .wp-list-table .trash .approve{display:inline}.post-type-site-review .wp-list-table .approve a{color:#006505}.post-type-site-review .wp-list-table .approve a:hover{color:#007f06}.post-type-site-review .wp-list-table .unapprove a{color:#d98500}.post-type-site-review .wp-list-table .unapprove a:hover{color:#f39500}.post-type-site-review .wp-list-table th.column-stars{width:100px}.post-type-site-review .wp-list-table td.column-sticky i{line-height:24px;text-indent:-3px;cursor:pointer}.post-type-site-review .wp-list-table td.column-sticky i:not(.pinned){color:rgba(85,85,85,.2)}.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending th.check-column{box-shadow:inset 0 1px 0 rgba(0,0,0,.07),inset 0 -1px 0 rgba(0,0,0,.07)}.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending td:nth-child(2){box-shadow:inset 0 1px 0 rgba(0,0,0,.07)}.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending:not(.is-expanded) td:nth-child(2){box-shadow:inset 0 1px 0 rgba(0,0,0,.07),inset 0 -1px 0 rgba(0,0,0,.07)}.post-type-site-review .wp-list-table tr.status-pending th.check-column,.post-type-site-review .wp-list-table tr.status-pending.is-expanded td:last-child,.post-type-site-review .wp-list-table tr.status-pending:not(.is-expanded) td:nth-child(2){box-shadow:inset 0 -1px 0 rgba(0,0,0,.07)}.post-type-site-review .wp-list-table tr.status-pending td,.post-type-site-review .wp-list-table tr.status-pending th.check-column{background-color:#fef7f1}.post-type-site-review .wp-list-table tr.status-pending th.check-column{position:relative;border-left:4px solid #d54e21;z-index:1}.post-type-site-review .wp-list-table tr.status-pending th.check-column input{margin-left:4px}@media screen and (max-width:782px){body.branch-4-1.post-type-site-review .wp-list-table .column-title,body.branch-4-2.post-type-site-review .wp-list-table .column-title,body.branch-4.post-type-site-review .wp-list-table .column-title{width:auto}body.branch-4-1.post-type-site-review .wp-list-table .column-title~[class*=column-]:not(.column-stars),body.branch-4-2.post-type-site-review .wp-list-table .column-title~[class*=column-]:not(.column-stars),body.branch-4.post-type-site-review .wp-list-table .column-title~[class*=column-]:not(.column-stars){display:none}body.branch-4-1.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending td.column-stars,body.branch-4-2.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending td.column-stars,body.branch-4.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending td.column-stars{box-shadow:inset 0 1px 0 rgba(0,0,0,.07)}body.branch-4-1.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending:not(.is-expanded) td.column-stars,body.branch-4-2.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending:not(.is-expanded) td.column-stars,body.branch-4.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending:not(.is-expanded) td.column-stars{box-shadow:inset 0 1px 0 rgba(0,0,0,.07),inset 0 -1px 0 rgba(0,0,0,.07)}body.branch-4-1.post-type-site-review .wp-list-table tr.status-pending:not(.is-expanded) td.column-stars,body.branch-4-2.post-type-site-review .wp-list-table tr.status-pending:not(.is-expanded) td.column-stars,body.branch-4.post-type-site-review .wp-list-table tr.status-pending:not(.is-expanded) td.column-stars{box-shadow:inset 0 -1px 0 rgba(0,0,0,.07)}}@media screen and (min-width:783px){.post-type-site-review .wp-list-table th.column-sticky span.pinned-icon,.post-type-site-review .wp-list-table th.column-sticky span.sorting-indicator,body.branch-4-1.post-type-site-review .wp-list-table .dashicons-sticky:before,body.branch-4-1.post-type-site-review .wp-list-table th.column-sticky a:after,body.branch-4-2.post-type-site-review .wp-list-table .dashicons-sticky:before,body.branch-4-2.post-type-site-review .wp-list-table th.column-sticky a:after,body.branch-4-3.post-type-site-review .wp-list-table .dashicons-sticky:before,body.branch-4-3.post-type-site-review .wp-list-table th.column-sticky a:after,body.branch-4.post-type-site-review .wp-list-table .dashicons-sticky:before,body.branch-4.post-type-site-review .wp-list-table th.column-sticky a:after{display:none}body.branch-4-1.post-type-site-review .wp-list-table th.column-sticky,body.branch-4-2.post-type-site-review .wp-list-table th.column-sticky,body.branch-4-3.post-type-site-review .wp-list-table th.column-sticky,body.branch-4.post-type-site-review .wp-list-table th.column-sticky{position:relative}body.branch-4-1.post-type-site-review .wp-list-table th.column-sticky svg,body.branch-4-2.post-type-site-review .wp-list-table th.column-sticky svg,body.branch-4-3.post-type-site-review .wp-list-table th.column-sticky svg,body.branch-4.post-type-site-review .wp-list-table th.column-sticky svg{position:absolute;top:10px;width:16px;height:16px}.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending td{box-shadow:inset 0 1px 0 rgba(0,0,0,.07),inset 0 -1px 0 rgba(0,0,0,.07)}.post-type-site-review .wp-list-table tr.status-pending td{box-shadow:inset 0 -1px 0 rgba(0,0,0,.07)}.post-type-site-review .wp-list-table th.column-reviewer{width:140px}.post-type-site-review .wp-list-table th.column-site{width:120px}.post-type-site-review .wp-list-table th.column-sticky{width:36px}.post-type-site-review .wp-list-table th.column-sticky a:after{display:inline-block;position:relative;content:"\f537";font:400 20px/1 dashicons;speak:none;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:20px;height:20px;line-height:20px;font-size:16px;text-align:center;-webkit-transition:color .1s ease-in 0;transition:color .1s ease-in 0}.post-type-site-review .wp-list-table td.column-sticky{padding:8px}.post-type-site-review .wp-list-table td.column-sticky i{text-indent:0}}@media screen and (max-width:1100px) and (min-width:782px),(max-width:480px){body.branch-4-1.post-type-site-review .wp-list-table th.column-date,body.branch-4-2.post-type-site-review .wp-list-table th.column-date,body.branch-4-3.post-type-site-review .wp-list-table th.column-date,body.branch-4.post-type-site-review .wp-list-table th.column-date{width:14%}}::placeholder{color:#72777c!important;font-size:inherit!important;line-height:inherit!important;opacity:1}::-webkit-input-placeholder{color:#72777c!important;font-size:inherit!important;line-height:inherit!important;opacity:1}:-moz-placeholder{color:#72777c!important;font-size:inherit!important;line-height:inherit!important;opacity:1}::-moz-placeholder{color:#72777c!important;font-size:inherit!important;line-height:inherit!important;opacity:1}:-ms-input-placeholder{color:#72777c!important;font-size:inherit!important;line-height:inherit!important;opacity:1}
|
1 |
+
.glsr-addons{margin:-20px 0 0 -20px}.glsr-addon-wrap{float:left;position:relative;width:100%;box-sizing:border-box;padding:20px 0 0 20px}@media only screen and (min-width:480px){.glsr-addon-wrap{width:50%}}@media only screen and (min-width:782px){.glsr-addon-wrap{width:33.33%}}@media only screen and (min-width:1400px){.glsr-addon-wrap{width:25%}}.glsr-addon{border:1px solid #ddd;box-shadow:0 1px 1px -1px rgba(0,0,0,.1)}.glsr-addon-description{background-color:#fff;padding:1em 15px}.glsr-addon-description p{height:78px}.glsr-addon-description p,.glsr-addon-name{overflow:hidden;text-overflow:ellipsis;margin:0}.glsr-addon-name{height:48px;font-size:15px;font-weight:600;background:hsla(0,0%,100%,.65);box-shadow:inset 0 1px 0 rgba(0,0,0,.1);box-sizing:border-box;white-space:nowrap;padding:15px}.glsr-addon-screenshot{display:block;background-position:50%;background-repeat:no-repeat;background-size:100% auto;border-bottom:1px solid #ddd;padding-top:56.25%}.glsr-addon-screenshot[data-name=booking]{background-image:url(../img/booking.svg);background-color:#00347d}.glsr-addon-screenshot[data-name=facebook]{background-image:url(../img/facebook.svg);background-color:#3b5998}.glsr-addon-screenshot[data-name=google]{background-image:url(../img/google.svg);background-color:#c6dafc}.glsr-addon-screenshot[data-name=tripadvisor]{background-color:#4b7e37;background-image:url(../img/tripadvisor.svg)}.glsr-addon-screenshot[data-name=yelp]{background-image:url(../img/yelp.svg);background-color:#d32323}.glsr-addon-link{position:absolute;right:15px;bottom:10px}@media screen and (max-width:782px){.glsr-addon-link{bottom:5px;text-indent:-100%;padding:6px 10px!important;overflow:hidden}}.glsr-addon-link:after{display:inline-block;content:"\00a0\f504";font-family:dashicons;vertical-align:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media screen and (max-width:782px){.glsr-addon-link:after{float:right;height:16px;width:16px;content:"\f504";font-size:18px;text-indent:0}}#dashboard_right_now li>span.glsr-review-count:before,#dashboard_right_now li a.glsr-review-count:before{content:"\f459";line-height:.8em}#titlediv #title{margin-bottom:20px}#contentdiv textarea,#titlediv #title{border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);background-color:#fff}#contentdiv textarea,.post-type-site-review .wp-editor-area{width:100%;height:320px;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-size:16px;line-height:1.5;padding:10px;resize:vertical;-webkit-font-smoothing:antialiased!important;overflow-wrap:break-word}body.branch-4 .misc-pub-pinned:before,body.branch-4-1 .misc-pub-pinned:before,body.branch-4-2 .misc-pub-pinned:before,body.branch-4-3 .misc-pub-pinned:before{display:none}body.branch-4 .misc-pub-pinned .pinned-icon,body.branch-4-1 .misc-pub-pinned .pinned-icon,body.branch-4-2 .misc-pub-pinned .pinned-icon,body.branch-4-3 .misc-pub-pinned .pinned-icon{position:relative;display:inline-block;width:20px;padding-right:2px}body.branch-4 .misc-pub-pinned .pinned-icon svg,body.branch-4-1 .misc-pub-pinned .pinned-icon svg,body.branch-4-2 .misc-pub-pinned .pinned-icon svg,body.branch-4-3 .misc-pub-pinned .pinned-icon svg{position:absolute;top:-13px;left:-1px;width:19px;height:18px;color:#888}.misc-pub-pinned:before{display:inline-block;position:relative;content:"\f537";font:normal 20px/1 dashicons;speak:none;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;top:0;left:-1px;color:#82878c;padding:0 2px 0 0}.misc-pub-pinned .pinned-status-text{font-weight:600}.misc-pub-pinned .pinned-status-select{margin-top:3px}.glsr-response{display:block;height:6em;width:100%;margin:12px 0 0}.glsr-mce{position:relative;display:inline-block;margin-right:1px}.glsr-mce-menu.mce-menu{display:none;position:absolute;top:100%;left:0;min-width:100%;background:#fff;padding:5px 0;margin:-2px 0 0}.glsr-mce-menu-item.mce-menu-item{cursor:pointer;font-size:14px;white-space:nowrap;padding:6px 12px;margin-bottom:2px}.mce-glsr-mce-popup a{text-decoration:underline}.mce-glsr-mce-popup p{margin-bottom:1em}.mce-glsr-mce-popup p.strong{font-weight:600}.mce-glsr-mce-popup p.no-margin{margin-bottom:0}.mce-glsr-mce-popup p.margin-top{margin-top:1em}.mce-glsr-btn.mce-btn button{box-sizing:border-box;padding:0 8px}.wp-media-buttons button.glsr-mce-button{outline:none;padding-left:5px;margin-right:0}button.glsr-mce-button:after{display:inline-block;position:relative;top:-1px;left:-1px;width:0;height:0;content:"";border-top:6px solid #777;border-right:4px solid transparent;border-left:4px solid transparent}button.glsr-mce-button.active:after{top:-2px;border-top:0;border-bottom:6px solid #32373c}button.glsr-mce-button:active{margin-bottom:5px}button.glsr-mce-button .wp-media-buttons-icon:before{content:"\f459";font:normal 18px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media screen and (max-width:782px){button.glsr-mce-button .wp-media-buttons-icon:before{font-size:20px!important}}div.sc-wrap{margin-right:1px}body.branch-4 i.mce-i-checkbox,body.branch-4-1 i.mce-i-checkbox,body.branch-4-2 i.mce-i-checkbox{background-image:none}body.branch-4 .glsr-mce-menu .glsr-mce-menu-item:hover,body.branch-4-1 .glsr-mce-menu .glsr-mce-menu-item:hover,body.branch-4-2 .glsr-mce-menu .glsr-mce-menu-item:hover{background:#0073aa;color:#fff}#geminilabs-site-reviews_review.postbox .inside{padding:0;margin:0}.glsr-metabox-table{width:auto;padding:0 12px 12px;margin-top:12px}.glsr-metabox-table td{line-height:1.5;vertical-align:top;padding:0 14px 8px 0}.glsr-metabox-table td:first-child{font-weight:600}.glsr-metabox-table td:last-child{padding-bottom:0}.revert-action{line-height:23px;text-align:right;border-top:1px solid #ddd;background:#f5f5f5;padding:10px}.revert-action .spinner{float:none}.glsr-search-box .description{display:block}.glsr-assigned-post{display:block;margin-left:20px}.glsr-remove-button{position:absolute;left:-4px;width:20px;height:20px;border:none;margin:0;padding:0;background:0 0;cursor:pointer;text-indent:0}.glsr-remove-button:focus .glsr-remove-icon:before,.glsr-remove-button:hover .glsr-remove-icon:before{color:#c00}.glsr-remove-icon:before{margin-left:0;border-radius:50%;color:#0073aa;line-height:1.28;background:0 0;content:"\f153";display:block;font:400 16px/20px dashicons;speak:none;height:20px;text-align:center;width:20px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body.branch-4 .notice-warning{border-color:#ffba00}.glsr-progress{position:relative;display:block;width:300px;height:24px;opacity:.65;text-align:center}@media screen and (max-width:782px){.glsr-progress{height:39px;font-size:16px}}.glsr-progress.active{opacity:1}.glsr-progress *{box-sizing:border-box}.glsr-progress-background,.glsr-progress-bar{height:100%;background-size:40px 40px}.glsr-progress.active .glsr-progress-background,.glsr-progress.active .glsr-progress-bar{transition:width .6s ease;animation:a 1s linear infinite}.glsr-progress-bar{position:relative;width:0;color:#fff;background-color:#616b75;background-image:linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);box-shadow:0 1px 0 #4a5259;border-width:1px;border-style:solid;border-color:#616b75 #4a5259 #4a5259;border-radius:3px 0 0 3px;overflow:hidden;z-index:1}.glsr-progress-bar[style="width: 0%;"]{border-width:0}.glsr-progress-bar[style="width: 100%;"]{border-radius:3px}.glsr-progress-background{position:absolute;top:0;left:0;width:100%;height:25px;background-color:#f7f7f7;background-image:linear-gradient(-45deg,#fff 25%,transparent 0,transparent 50%,#fff 0,#fff 75%,transparent 0,transparent);border-radius:3px;box-shadow:inset 0 1px 2px #e5e5e5;border:1px solid #ccc}@media screen and (max-width:782px){.glsr-progress-background{height:40px}}.glsr-progress span{position:absolute;width:300px;left:0;top:0;line-height:23px;color:#555;padding:0 6px}@media screen and (max-width:782px){.glsr-progress span{line-height:38px}}.glsr-progress-bar>span{color:#fff;text-shadow:0 -1px 1px #4a5259,1px 0 1px #4a5259,0 1px 1px #4a5259,-1px 0 1px #4a5259}@keyframes a{0%{background-position:0 0}to{background-position:40px 0}}.glsr-progress.blue .glsr-progress-bar{background-color:#0073aa;box-shadow:0 1px 0 #006799;border-color:#0073aa #006799 #006799}.glsr-progress.blue .glsr-progress-bar>span{text-shadow:0 -1px 1px #006799,1px 0 1px #006799,0 1px 1px #006799,-1px 0 1px #006799}.glsr-progress.green .glsr-progress-bar{background-color:#46b44f;box-shadow:0 1px 0 #3fa247;border-color:#46b44f #3fa247 #3fa247}.glsr-progress.green .glsr-progress-bar>span{text-shadow:0 -1px 1px #3fa247,1px 0 1px #3fa247,0 1px 1px #3fa247,-1px 0 1px #3fa247}.star-rating .glsr-star{width:16px;font-size:16px;line-height:20px;color:#555}.glsr-card code,.glsr-card pre{white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.glsr-card pre{border:1px solid #e5e5e5;border-radius:3px;position:relative;background-color:#f9f9f9;overflow:visible;padding:0}.glsr-card pre code{background:none;max-height:inherit;height:100%;padding:.5em;display:block;overflow:auto}.glsr-card dd{margin:1em 0}.glsr-card dt{font-weight:600;margin:1em 0}.glsr-card code a{text-decoration:none}.wrap h2.nav-tab-wrapper{padding-top:0;margin-top:9px}.float-left{float:left;padding-right:.25em}.glsr-subsubsub{float:none;text-align:left}.glsr-log[readonly]{width:100%;background-color:hsla(0,0%,100%,.5);border-color:hsla(0,0%,87%,.75);box-shadow:inset 0 1px 2px rgba(0,0,0,.04);color:rgba(50,55,60,.75);font-family:"Operator Mono","Fira Code",monaco,monospace;font-weight:300;font-size:13px;-webkit-font-smoothing:antialiased!important;resize:vertical;white-space:pre;overflow:auto;padding:3px 6px}@media only screen and (max-width:782px){.glsr-card{max-width:inherit}}tr.glsr-field li,tr.glsr-field ul{margin:0 auto}.glsr-field ul.inline li{display:inline}.glsr-field ul.inline li:not(:last-child){margin-right:1em}.glsr-field{margin:1em 0;line-height:1.5}.glsr-field>label{display:block}@media screen and (max-width:782px){.glsr-field>label+input.small-text{margin-left:0}}.glsr-field>ul{margin:0}.glsr-field>ul li{margin-bottom:2px}.glsr-field textarea.code,.post-type-site-review .code,.post-type-site-review code{font-family:"Operator Mono","Fira Code",monaco,monospace}body.branch-4 .wrap h1.page-title,body.branch-4-1 .wrap h1.page-title,body.branch-4-2 .wrap h1.page-title{font-size:23px;font-weight:400;line-height:29px;padding:9px 15px 4px 0;margin:0}body.branch-4 .wrap h2.title,body.branch-4-1 .wrap h2.title,body.branch-4-2 .wrap h2.title{color:#23282d;font-size:1.3em;font-weight:600;line-height:1.4em;padding:0;margin:1em 0}body.branch-4 .glsr-card,body.branch-4-1 .glsr-card{position:relative;margin-top:20px;padding:.7em 2em 1em;min-width:255px;max-width:520px;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff}.glsr-hidden{display:none}.glsr-search-box,.glsr-strings-form{position:relative;max-width:800px}.glsr-search-box *,.glsr-strings-form *{box-sizing:border-box}.glsr-search-box{position:relative;margin:1em 0}.glsr-search-box.is-active .spinner{visibility:visible}.glsr-search-box.is-active input[type=search]::-webkit-search-cancel-button{display:none}.glsr-spinner{visibility:hidden;position:absolute;top:6px;right:5px;height:20px;width:20px;background-color:#fff;z-index:5}.glsr-spinner .spinner{margin:0}.loading-content .glsr-spinner{visibility:visible}.glsr-search-input{position:relative;width:100%;font-weight:300;line-height:1.5;padding:3px 5px;margin:0;z-index:2}.site-review_page_settings .glsr-search-input{height:32px;font-size:16px}.glsr-search-results{position:absolute;width:100%;max-height:310px;overflow-x:scroll;-webkit-overflow-scrolling:touch;background-color:#fff;border:1px solid #ddd;border-top:none;box-sizing:border-box;box-shadow:0 1px 1px rgba(0,0,0,.04);margin-top:-1px;z-index:1}.glsr-search-results>div,.glsr-search-results>span{position:relative;display:block;box-sizing:border-box;height:32px;line-height:32px;text-overflow:ellipsis;white-space:nowrap;border-bottom:1px solid #f5f5f5;padding:0 10px;margin-top:-1px;overflow:hidden}.glsr-search-results>div{background-color:#f6fbfd}.glsr-search-results>span:last-of-type{border-bottom-color:transparent}.glsr-search-results>span:active,.glsr-search-results>span:focus,.glsr-search-results>span:hover{color:#fff;background-color:#00a0d2;cursor:pointer;outline:none}.glsr-strings-form{transition:opacity .2s linear}.glsr-focus .glsr-strings-form{opacity:.2;pointer-events:none}.glsr-string-td1,.glsr-string-td2{border-top:none;border-bottom:1px solid #f1f1f1;padding:13px 15px}.glsr-string-td1{max-width:375px;background:#f9f9f9;border-right:1px solid #e1e1e1;border-bottom:1px solid #eee;vertical-align:top}.glsr-string-td2{width:60%;max-width:375px;background-color:#fff}.glsr-strings-table p:not(.row-actions){font-size:14px;font-weight:400;line-height:1.3;color:#000}.glsr-strings-table p.row-actions{margin:0}.glsr-strings-table textarea{display:block;width:100%;margin:0}.glsr-strings-table input[type=text]{display:block;width:100%;margin:0 0 5px}.glsr-strings-table input[type=text]:last-of-type{margin-bottom:0}.glsr-strings-table input[type=text]:active,.glsr-strings-table input[type=text]:focus{position:relative}.glsr-string-tr:last-child .glsr-string-td2,.glsr-string-tr:not(.is-expanded):last-child .glsr-string-td1{border-bottom:none}@media screen and (max-width:782px){.glsr-search-results>span{padding:0 10px}.glsr-string-td1{max-width:none;border-right:none}.glsr-string-td2{max-width:none;padding:13px 15px!important}.glsr-spinner{right:10px}}.glsr-string-tr.ui-sortable-helper{opacity:.8;display:table;box-shadow:0 1px 2px rgba(0,0,0,.1)}.ui-sortable .glsr-string-tr:hover{cursor:move}.ui-sortable-placeholder+.glsr-string-tr .glsr-string-td1{border-top:1px solid #eee}@media screen and (min-width:783px){.ui-sortable-placeholder+.glsr-string-tr .glsr-string-td2{border-top:1px solid #f1f1f1}}.ui-sortable-helper .glsr-string-td1{border-left:1px solid #999}.ui-sortable-helper .glsr-string-td1,.ui-sortable-helper .glsr-string-td2{border-top:1px solid #999!important;border-bottom:1px solid #999!important}.ui-sortable-helper .glsr-string-td2{border-right:1px solid #999}@media screen and (max-width:782px){.ui-sortable-helper .glsr-string-td1{border:1px solid #999}.ui-sortable-helper.is-expanded .glsr-string-td1{border-bottom:none!important}.ui-sortable-helper.is-expanded .glsr-string-td2{border:1px solid #999;border-top-color:#f1f1f1!important}}.glsr-status{max-width:1000px}.glsr-status th.site{width:25%}.glsr-status td{vertical-align:middle}.glsr-status td.site{font-weight:600}.glsr-status td.site span{font-weight:400;font-size:90%}.glsr-status .toggle-row{top:0}.glsr-status .toggle-row:before{top:6px}@media only screen and (min-width:783px){.glsr-status td.total-fetched,.glsr-status th.total-fetched{text-align:center}}@media only screen and (max-width:782px){.glsr-status th.site,.glsr-status tr:not(.inline-edit-row):not(.no-items) td.site{display:table-cell!important;width:230px!important;vertical-align:top;padding:8px 10px}.glsr-status tr:not(.inline-edit-row):not(.no-items) td.total-fetched~td:not(.site){overflow:hidden;white-space:nowrap;text-overflow:ellipsis;padding:0 10px 0 260px;margin-left:-250px;margin-bottom:8px}.glsr-status tr:not(.inline-edit-row):not(.no-items) td.total-fetched~td:before{width:240px}}@media only screen and (max-width:691px){.glsr-status th.site,.glsr-status tr:not(.inline-edit-row):not(.no-items) td.site{width:200px!important}.glsr-status tr:not(.inline-edit-row):not(.no-items) td.total-fetched~td:not(.site){padding-left:230px;margin-left:-220px}.glsr-status tr:not(.inline-edit-row):not(.no-items) td.total-fetched~td:before{width:210px}}@media only screen and (max-width:600px){.glsr-status th.site,.glsr-status tr:not(.inline-edit-row):not(.no-items) td.site{width:170px!important}.glsr-status tr:not(.inline-edit-row):not(.no-items) td.total-fetched~td:not(.site){padding-left:200px;margin-left:-190px}.glsr-status tr:not(.inline-edit-row):not(.no-items) td.total-fetched~td:before{width:180px}}@media only screen and (max-width:480px){.glsr-status th.site,.glsr-status tr:not(.inline-edit-row):not(.no-items) td.site{width:130px!important}.glsr-status tr:not(.inline-edit-row):not(.no-items) td.total-fetched~td:not(.site){padding-left:160px;margin-left:-150px}.glsr-status tr:not(.inline-edit-row):not(.no-items) td.total-fetched~td:before{width:140px}}@media only screen and (max-width:425px){.glsr-status td:before{font-weight:600}.glsr-status tr:not(.inline-edit-row):not(.no-items) td.total-fetched~td:not(.site){padding-left:10px}.glsr-status tr:not(.inline-edit-row):not(.no-items) td.total-fetched~td:before{position:static}}body.branch-4 .glsr-status.striped>tbody>:nth-child(odd),body.branch-4-1 .glsr-status.striped>tbody>:nth-child(odd){background-color:#f9f9f9}body.branch-4 .glsr-status .toggle-row,body.branch-4-1 .glsr-status .toggle-row,body.branch-4-2 .glsr-status .toggle-row{display:none;position:absolute;top:10px;right:8px;width:40px;height:40px;border:none;outline:none;background:transparent;padding:0}body.branch-4 .glsr-status .toggle-row:hover,body.branch-4-1 .glsr-status .toggle-row:hover,body.branch-4-2 .glsr-status .toggle-row:hover{cursor:pointer}body.branch-4 .glsr-status .toggle-row:focus:before,body.branch-4-1 .glsr-status .toggle-row:focus:before,body.branch-4-2 .glsr-status .toggle-row:focus:before{box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}body.branch-4 .glsr-status .toggle-row:active,body.branch-4-1 .glsr-status .toggle-row:active,body.branch-4-2 .glsr-status .toggle-row:active{box-shadow:none}body.branch-4 .glsr-status .toggle-row:before,body.branch-4-1 .glsr-status .toggle-row:before,body.branch-4-2 .glsr-status .toggle-row:before{display:block;position:absolute;top:-5px;left:10px;border-radius:50%;color:#666;content:"\f140";font:normal 20px/1 "dashicons";line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;speak:none;padding:1px 2px 1px 0}body.branch-4 .glsr-status .is-expanded .toggle-row:before,body.branch-4-1 .glsr-status .is-expanded .toggle-row:before,body.branch-4-2 .glsr-status .is-expanded .toggle-row:before{content:"\f142"}@media screen and (max-width:782px){body.branch-4 .glsr-status .column-primary,body.branch-4-1 .glsr-status .column-primary,body.branch-4-2 .glsr-status .column-primary{width:100%}body.branch-4 .glsr-status .column-primary~td,body.branch-4 .glsr-status .column-primary~th,body.branch-4-1 .glsr-status .column-primary~td,body.branch-4-1 .glsr-status .column-primary~th,body.branch-4-2 .glsr-status .column-primary~td,body.branch-4-2 .glsr-status .column-primary~th{display:none}body.branch-4 .glsr-status .column-primary .toggle-row,body.branch-4-1 .glsr-status .column-primary .toggle-row,body.branch-4-2 .glsr-status .column-primary .toggle-row{display:block}body.branch-4 .glsr-status td,body.branch-4-1 .glsr-status td,body.branch-4-2 .glsr-status td{position:relative;clear:both;display:block;width:auto!important}body.branch-4 .glsr-status td.column-primary,body.branch-4-1 .glsr-status td.column-primary,body.branch-4-2 .glsr-status td.column-primary{padding-right:50px}body.branch-4 .glsr-status td.column-primary~td:not(.check-column),body.branch-4-1 .glsr-status td.column-primary~td:not(.check-column),body.branch-4-2 .glsr-status td.column-primary~td:not(.check-column){padding:3px 8px 3px 35%}body.branch-4 .glsr-status td:not(.column-primary):before,body.branch-4-1 .glsr-status td:not(.column-primary):before,body.branch-4-2 .glsr-status td:not(.column-primary):before{position:absolute;left:10px;display:block;overflow:hidden;width:32%;content:attr(data-colname);white-space:nowrap;text-overflow:ellipsis}body.branch-4 .glsr-status .is-expanded td:not(.hidden),body.branch-4-1 .glsr-status .is-expanded td:not(.hidden),body.branch-4-2 .glsr-status .is-expanded td:not(.hidden){display:block;overflow:hidden}body.branch-4-1.post-type-review .fixed .column-rating,body.branch-4-1.post-type-review .fixed .column-reviewer,body.branch-4-1.post-type-review .fixed .column-site,body.branch-4-1.post-type-review .fixed .column-stars,body.branch-4-2.post-type-review .fixed .column-rating,body.branch-4-2.post-type-review .fixed .column-reviewer,body.branch-4-2.post-type-review .fixed .column-site,body.branch-4-2.post-type-review .fixed .column-stars,body.branch-4.post-type-review .fixed .column-rating,body.branch-4.post-type-review .fixed .column-reviewer,body.branch-4.post-type-review .fixed .column-site,body.branch-4.post-type-review .fixed .column-stars{display:none}}.hide-column-tog+.pinned-icon+svg,.post-type-site-review .wp-list-table .approve,.post-type-site-review .wp-list-table .status-pending .unapprove{display:none}.post-type-site-review .wp-list-table .spam .approve,.post-type-site-review .wp-list-table .status-pending .approve,.post-type-site-review .wp-list-table .trash .approve{display:inline}.post-type-site-review .wp-list-table .approve a{color:#006505}.post-type-site-review .wp-list-table .approve a:hover{color:#007f06}.post-type-site-review .wp-list-table .unapprove a{color:#d98500}.post-type-site-review .wp-list-table .unapprove a:hover{color:#f39500}.post-type-site-review .wp-list-table th.column-stars{width:100px}.post-type-site-review .wp-list-table td.column-sticky i{line-height:24px;text-indent:-3px;cursor:pointer}.post-type-site-review .wp-list-table td.column-sticky i:not(.pinned){color:rgba(85,85,85,.2)}.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending th.check-column{box-shadow:inset 0 1px 0 rgba(0,0,0,.07),inset 0 -1px 0 rgba(0,0,0,.07)}.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending td:nth-child(2){box-shadow:inset 0 1px 0 rgba(0,0,0,.07)}.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending:not(.is-expanded) td:nth-child(2){box-shadow:inset 0 1px 0 rgba(0,0,0,.07),inset 0 -1px 0 rgba(0,0,0,.07)}.post-type-site-review .wp-list-table tr.status-pending.is-expanded td:last-child,.post-type-site-review .wp-list-table tr.status-pending:not(.is-expanded) td:nth-child(2),.post-type-site-review .wp-list-table tr.status-pending th.check-column{box-shadow:inset 0 -1px 0 rgba(0,0,0,.07)}.post-type-site-review .wp-list-table tr.status-pending td,.post-type-site-review .wp-list-table tr.status-pending th.check-column{background-color:#fef7f1}.post-type-site-review .wp-list-table tr.status-pending th.check-column{position:relative;border-left:4px solid #d54e21;z-index:1}.post-type-site-review .wp-list-table tr.status-pending th.check-column input{margin-left:4px}@media screen and (max-width:782px){body.branch-4-1.post-type-site-review .wp-list-table .column-title,body.branch-4-2.post-type-site-review .wp-list-table .column-title,body.branch-4.post-type-site-review .wp-list-table .column-title{width:auto}body.branch-4-1.post-type-site-review .wp-list-table .column-title~[class*=column-]:not(.column-stars),body.branch-4-2.post-type-site-review .wp-list-table .column-title~[class*=column-]:not(.column-stars),body.branch-4.post-type-site-review .wp-list-table .column-title~[class*=column-]:not(.column-stars){display:none}body.branch-4-1.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending td.column-stars,body.branch-4-2.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending td.column-stars,body.branch-4.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending td.column-stars{box-shadow:inset 0 1px 0 rgba(0,0,0,.07)}body.branch-4-1.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending:not(.is-expanded) td.column-stars,body.branch-4-2.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending:not(.is-expanded) td.column-stars,body.branch-4.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending:not(.is-expanded) td.column-stars{box-shadow:inset 0 1px 0 rgba(0,0,0,.07),inset 0 -1px 0 rgba(0,0,0,.07)}body.branch-4-1.post-type-site-review .wp-list-table tr.status-pending:not(.is-expanded) td.column-stars,body.branch-4-2.post-type-site-review .wp-list-table tr.status-pending:not(.is-expanded) td.column-stars,body.branch-4.post-type-site-review .wp-list-table tr.status-pending:not(.is-expanded) td.column-stars{box-shadow:inset 0 -1px 0 rgba(0,0,0,.07)}}@media screen and (min-width:783px){body.branch-4-1.post-type-site-review .wp-list-table th.column-sticky,body.branch-4-2.post-type-site-review .wp-list-table th.column-sticky,body.branch-4-3.post-type-site-review .wp-list-table th.column-sticky,body.branch-4.post-type-site-review .wp-list-table th.column-sticky{position:relative}body.branch-4-1.post-type-site-review .wp-list-table .dashicons-sticky:before,body.branch-4-1.post-type-site-review .wp-list-table th.column-sticky a:after,body.branch-4-2.post-type-site-review .wp-list-table .dashicons-sticky:before,body.branch-4-2.post-type-site-review .wp-list-table th.column-sticky a:after,body.branch-4-3.post-type-site-review .wp-list-table .dashicons-sticky:before,body.branch-4-3.post-type-site-review .wp-list-table th.column-sticky a:after,body.branch-4.post-type-site-review .wp-list-table .dashicons-sticky:before,body.branch-4.post-type-site-review .wp-list-table th.column-sticky a:after{display:none}body.branch-4-1.post-type-site-review .wp-list-table th.column-sticky svg,body.branch-4-2.post-type-site-review .wp-list-table th.column-sticky svg,body.branch-4-3.post-type-site-review .wp-list-table th.column-sticky svg,body.branch-4.post-type-site-review .wp-list-table th.column-sticky svg{position:absolute;top:10px;width:16px;height:16px}.post-type-site-review .wp-list-table :not(.status-pending)+tr.status-pending td{box-shadow:inset 0 1px 0 rgba(0,0,0,.07),inset 0 -1px 0 rgba(0,0,0,.07)}.post-type-site-review .wp-list-table tr.status-pending td{box-shadow:inset 0 -1px 0 rgba(0,0,0,.07)}.post-type-site-review .wp-list-table th.column-assigned_to,.post-type-site-review .wp-list-table th.column-reviewer,.post-type-site-review .wp-list-table th.column-taxonomy-site-review-category,.post-type-site-review .wp-list-table th.column-type{width:120px}.post-type-site-review .wp-list-table th.column-sticky{width:36px}.post-type-site-review .wp-list-table th.column-sticky span.pinned-icon,.post-type-site-review .wp-list-table th.column-sticky span.sorting-indicator{display:none}.post-type-site-review .wp-list-table th.column-sticky a:after{display:inline-block;position:relative;content:"\f537";font:normal 20px/1 dashicons;speak:none;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:20px;height:20px;line-height:20px;font-size:16px;text-align:center;transition:color .1s ease-in 0}.post-type-site-review .wp-list-table td.column-sticky{padding:8px}.post-type-site-review .wp-list-table td.column-sticky i{text-indent:0}}@media (max-width:480px),screen and (max-width:1100px) and (min-width:782px){body.branch-4-1.post-type-site-review .wp-list-table th.column-date,body.branch-4-2.post-type-site-review .wp-list-table th.column-date,body.branch-4-3.post-type-site-review .wp-list-table th.column-date,body.branch-4.post-type-site-review .wp-list-table th.column-date{width:14%}}::-ms-input-placeholder{color:#72777c!important;font-size:inherit!important;line-height:inherit!important;opacity:1}::placeholder{color:#72777c!important;font-size:inherit!important;line-height:inherit!important;opacity:1}::-webkit-input-placeholder{color:#72777c!important;font-size:inherit!important;line-height:inherit!important;opacity:1}:-moz-placeholder,::-moz-placeholder{color:#72777c!important;font-size:inherit!important;line-height:inherit!important;opacity:1}:-ms-input-placeholder{color:#72777c!important;font-size:inherit!important;line-height:inherit!important;opacity:1}.glsr-field small code{font-size:inherit;padding:0 3px 1px}
|
assets/css/site-reviews.css
CHANGED
@@ -1,8 +1 @@
|
|
1 |
-
|
2 |
-
* Star Rating
|
3 |
-
*
|
4 |
-
* Version: 1.3.0
|
5 |
-
* Author: Paul Ryley (http://geminilabs.io)
|
6 |
-
* URL: https://github.com/geminilabs/star-rating.js
|
7 |
-
* License: MIT
|
8 |
-
*/.gl-star-rating[data-star-rating]{position:relative;display:block}.gl-star-rating[data-star-rating]>select{position:absolute!important;top:0;left:0;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);visibility:visible}.gl-star-rating[data-star-rating] .gl-star-rating-stars{display:inline-block;height:26px;vertical-align:middle;cursor:pointer}.gl-star-rating[data-star-rating] .gl-star-rating-stars>span{display:inline-block;width:24px;height:24px;background-size:24px;background-repeat:no-repeat;background-image:url(../img/star-empty.svg);margin-right:4px}.gl-star-rating[data-star-rating] .gl-star-rating-stars.s100>span,.gl-star-rating[data-star-rating] .gl-star-rating-stars.s10>span:nth-child(1),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s20>span:nth-child(-1n+2),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s30>span:nth-child(-1n+3),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s40>span:nth-child(-1n+4),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s50>span:nth-child(-1n+5),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s60>span:nth-child(-1n+6),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s70>span:nth-child(-1n+7),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s80>span:nth-child(-1n+8),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s90>span:nth-child(-1n+9){background-image:url(../img/star-filled.svg)}.gl-star-rating[data-star-rating] .gl-star-rating-text{display:inline-block;position:relative;height:26px;line-height:26px;font-size:.8em;font-weight:600;color:#fff;background-color:#1a1a1a;white-space:nowrap;vertical-align:middle;padding:0 12px 0 6px;margin:0 0 0 12px}.gl-star-rating[data-star-rating] .gl-star-rating-text:before{position:absolute;top:0;left:-12px;width:0;height:0;content:"";border-style:solid;border-width:13px 12px 13px 0;border-color:transparent #1a1a1a transparent transparent}[id^=geminilabs-site-reviews].widget ul.glsr-reviews{list-style:none;margin-left:0}[id^=geminilabs-site-reviews].widget .glsr-review-title,[id^=geminilabs-site-reviews].widget p{margin-bottom:1em}.glsr-review{margin-bottom:2em}.glsr-review p{margin:0 0 1em}.glsr-review-date{font-style:italic}.glsr-review-meta>span:not(:last-child){margin-right:.5em}.glsr-review-link{white-space:nowrap}[class*=glsr-star-]{display:inline-block;width:16px;height:16px;font-size:16px;vertical-align:text-top;background-repeat:no-repeat;background-size:16px}.glsr-star-empty{background-image:url(../img/star-empty.svg)}.glsr-star-full{background-image:url(../img/star-filled.svg)}.glsr-star-half{background-image:url(../img/star-half.svg)}.gl-star-rating[data-star-rating]{line-height:1}.glsr-field-messages{color:#1976D2}.glsr-has-error{color:#D32F2F}.glsr-field{margin-bottom:1em}.glsr-field-error{display:block;font-size:.875em;color:#D32F2F}.glsr-field ul{list-style-type:none}.glsr-field label{display:block}.glsr-field label[for^=terms]{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.glsr-field label[for^=rating]:after,.glsr-field.glsr-required label:after{content:"*";color:#D32F2F;margin-left:.33em}.glsr-field input[type=checkbox]{margin-right:.25em}.glsr-field select[name=rating]{display:block;height:26px;visibility:hidden}
|
1 |
+
.gl-star-rating[data-star-rating]{position:relative;display:block}.gl-star-rating[data-star-rating]>select{overflow:hidden;position:absolute!important;top:0;width:1px;height:1px;clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);white-space:nowrap}.gl-star-rating-ltr[data-star-rating]>select{left:0}.gl-star-rating-rtl[data-star-rating]>select{right:0}.gl-star-rating[data-star-rating]>select:focus+.gl-star-rating-stars:before{opacity:.5;display:block;position:absolute;width:100%;height:100%;content:"";outline:1px dotted currentColor;pointer-events:none}.gl-star-rating-stars{position:relative;display:inline-block;height:26px;vertical-align:middle;cursor:pointer}.gl-star-rating-stars>span{display:inline-block;width:24px;height:24px;background-size:24px;background-repeat:no-repeat;background-image:url(../img/star-empty.svg);margin:0 4px 0 0}.gl-star-rating-stars>span:last-of-type{margin-right:0}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span{margin:0 0 0 4px}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span:last-of-type{margin-left:0}.gl-star-rating-stars.s10>span:first-child,.gl-star-rating-stars.s20>span:nth-child(-1n+2),.gl-star-rating-stars.s30>span:nth-child(-1n+3),.gl-star-rating-stars.s40>span:nth-child(-1n+4),.gl-star-rating-stars.s50>span:nth-child(-1n+5),.gl-star-rating-stars.s60>span:nth-child(-1n+6),.gl-star-rating-stars.s70>span:nth-child(-1n+7),.gl-star-rating-stars.s80>span:nth-child(-1n+8),.gl-star-rating-stars.s90>span:nth-child(-1n+9),.gl-star-rating-stars.s100>span{background-image:url(../img/star-filled.svg)}.gl-star-rating-text{display:inline-block;position:relative;height:26px;line-height:26px;font-size:.8em;font-weight:600;color:#fff;background-color:#1a1a1a;white-space:nowrap;vertical-align:middle;padding:0 12px 0 6px;margin:0 0 0 12px}.gl-star-rating-text:before{position:absolute;top:0;left:-12px;width:0;height:0;content:"";border-style:solid;border-width:13px 12px 13px 0;border-color:transparent #1a1a1a transparent transparent}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text{padding:0 6px 0 12px;margin:0 12px 0 0}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text:before{left:unset;right:-12px;border-width:13px 0 13px 12px;border-color:transparent transparent transparent #1a1a1a}[id^=geminilabs-site-reviews].widget ul.glsr-reviews{list-style:none}[id^=geminilabs-site-reviews].widget .glsr-review-title,[id^=geminilabs-site-reviews].widget p{margin-bottom:1em}.glsr-reviews{position:relative}.glsr-reviews:after{content:"";display:table;clear:both}.glsr-ajax-navigation,.glsr-navigation,.glsr-review{opacity:1;transition:opacity .5s}.glsr-hide .glsr-ajax-navigation,.glsr-hide .glsr-navigation,.glsr-hide .glsr-review{opacity:0!important}.glsr-hide .glsr-loader{display:block}.glsr-review{margin-bottom:3em}.glsr-review p{white-space:pre-line;margin:0 0 1em}.glsr-review-assigned{display:block;font-style:italic}.glsr-review-date{font-style:italic}.glsr-review-date,.glsr-review-link{white-space:nowrap}.glsr-review-avatar{margin:-8px 0 0;width:36px;height:36px}.glsr-review-avatar img{height:100%;-o-object-fit:cover;object-fit:cover}.glsr-star-empty,.glsr-star-full,.glsr-star-half{display:inline-block;width:20px;height:20px;font-size:16px;vertical-align:sub;background-repeat:no-repeat;background-size:20px}@media screen and (min-width:56.875em){.glsr-widget [class*=glsr-star-]{width:16px;height:16px;background-size:16px}.glsr-widget .glsr-review-avatar{width:30px;height:30px}}.glsr-star-empty{background-image:url(../img/star-empty.svg)}.glsr-star-full{background-image:url(../img/star-filled.svg)}.glsr-star-half{background-image:url(../img/star-half.svg)}.glsr-hidden{display:none}.glsr-read-more{white-space:nowrap}.glsr-read-more:before{content:"\2026";margin-right:.5em}.glsr-visible+.glsr-read-more:before{content:""}.glsr-review-response{position:relative;font-size:.875em;background-color:rgba(0,0,0,.075);border-radius:2px;padding:1em;margin-top:1.5rem}.glsr-review-response p:last-of-type{margin-bottom:0}.glsr-review-response:before{content:"";display:block;position:absolute;top:-18px;height:0;width:0;border-style:solid;border-color:rgba(0,0,0,.075) transparent}.glsr-loader{display:none;position:absolute;bottom:0;left:calc(50% - 12px);width:24px;height:24px;border-radius:50%;animation:a .5s infinite linear;transform:translateZ(0);margin:0}.glsr-loader:after,.glsr-loader:before{content:"";position:absolute;width:8px;height:8px;background:rgba(0,0,0,.75);border-radius:50%}.glsr-loader:before{top:0;left:0}.glsr-loader:after{bottom:0;right:0}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.glsr-reviews .screen-reader-text{position:absolute;height:1px;width:1px;border:0;overflow:hidden;clip:rect(0 0 0 0);word-wrap:normal!important;padding:0;margin:-1px}.glsr-ltr [id^=geminilabs-site-reviews].widget ul.glsr-reviews{margin-left:0}.glsr-ltr .glsr-review-excerpt>span:not(:last-child),.glsr-ltr .glsr-review-meta>span:not(:last-child){margin-right:.5em}.glsr-ltr .glsr-review-avatar{float:left;margin-right:12px}.glsr-ltr .glsr-review-response:before{left:50px;border-width:0 24px 18px 0}.glsr-rtl [id^=geminilabs-site-reviews].widget ul.glsr-reviews{margin-right:0}.glsr-rtl .glsr-review-excerpt>span:not(:last-child),.glsr-rtl .glsr-review-meta>span:not(:last-child){margin-left:.5em}.glsr-rtl .glsr-review-avatar{float:right;margin-left:12px}.glsr-rtl .glsr-review-response:before{right:50px;border-width:0 0 18px 24px}.gl-star-rating[data-star-rating]{line-height:1}.glsr-field-messages{color:#1976d2}.glsr-has-error,.glsr-has-errors{color:#d32f2f}.glsr-field{margin-bottom:1em}.glsr-field-error{display:block;font-size:.875em;color:#d32f2f}.glsr-field ul{list-style-type:none}.glsr-field label{display:block}.glsr-field label[for^=terms]{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.glsr-field.glsr-required label:after,.glsr-field label[for^=rating]:after{content:"*";color:#d32f2f}.glsr-field select[name=rating]{display:block;height:26px}.glsr-field select[name=rating]:after,.glsr-field select[name=rating]:before{display:none!important}.glsr-recaptcha-holder{margin-top:1em}.glsr-field button[type=submit] span{display:none}.glsr-field button[type=submit][disabled] span{display:inline;position:relative}.glsr-field button[type=submit] span:after,.glsr-field button[type=submit] span:before{display:inline-block;position:absolute;top:50%;height:1em;width:1em;content:"";border:.2em solid currentColor;border-radius:100%;box-sizing:border-box;margin:-.5em auto 0;animation:b .6s infinite linear}.glsr-field button[type=submit] span:before{border-top-color:transparent;opacity:.5}.glsr-field button[type=submit] span:after{border-color:transparent;border-top-color:currentColor}@keyframes b{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.glsr-ltr .glsr-field.glsr-required label:after,.glsr-ltr .glsr-field label[for^=rating]:after{margin-left:.33em}.glsr-ltr .glsr-field input[type=checkbox]{margin-right:.25em}.glsr-ltr .glsr-field button[type=submit][disabled] span{margin-right:1.65em}.glsr-ltr .glsr-field button[type=submit] span:after,.glsr-ltr .glsr-field button[type=submit] span:before{left:0}.glsr-rtl .glsr-field.glsr-required label:after,.glsr-rtl .glsr-field label[for^=rating]:after{margin-right:.33em}.glsr-rtl .glsr-field input[type=checkbox]{margin-left:.25em}.glsr-rtl .glsr-field button[type=submit][disabled] span{margin-left:1.65em}.glsr-rtl .glsr-field button[type=submit] span:after,.glsr-rtl .glsr-field button[type=submit] span:before{right:0}.glsr-summary{position:relative;width:100%;max-width:400px;font-size:16px;line-height:1.5;margin-bottom:1em}.glsr-summary .glsr-review-rating{display:inline-block}.glsr-summary [class*=glsr-star-]{width:26px;height:26px;background-size:24px}.glsr-summary-rating{line-height:1.25;font-size:24px;font-weight:700}.glsr-summary-text{display:block;font-size:14px}.glsr-percentage-bars{position:relative;width:100%;max-width:400px;font-size:16px;line-height:1.5;margin-bottom:1em}.glsr-bar{display:table-row;white-space:nowrap}.glsr-bar>span{display:table-cell;vertical-align:middle}.glsr-bar-background{position:relative;width:100%}.glsr-bar-background:before{display:block;position:absolute;width:100%;height:12px;content:"";background:rgba(0,0,0,.075)}.glsr-bar-percent{position:relative;display:block;height:12px;background-color:#ffb900}.glsr-bar-count{text-align:right;font-size:14px}.glsr-ltr .glsr-review-rating,.glsr-ltr .glsr-summary-rating{margin-right:10px}.glsr-ltr .glsr-bar-label{padding-right:10px}.glsr-ltr .glsr-bar-count{padding-left:10px}.glsr-rtl .glsr-review-rating,.glsr-rtl .glsr-summary-rating{margin-left:10px}.glsr-rtl .glsr-bar-label{padding-left:10px}.glsr-rtl .glsr-bar-count{padding-right:10px}.glsr-rtl [class*=glsr-star-]{transform:scaleX(-1)}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/css/twenty-eleven.css
CHANGED
@@ -1,8 +1 @@
|
|
1 |
-
/*!
|
2 |
-
* Star Rating
|
3 |
-
*
|
4 |
-
* Version: 1.3.0
|
5 |
-
* Author: Paul Ryley (http://geminilabs.io)
|
6 |
-
* URL: https://github.com/geminilabs/star-rating.js
|
7 |
-
* License: MIT
|
8 |
-
*/.gl-star-rating[data-star-rating]{position:relative;display:block}.gl-star-rating[data-star-rating]>select{position:absolute!important;top:0;left:0;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);visibility:visible}.gl-star-rating[data-star-rating] .gl-star-rating-stars{display:inline-block;height:26px;vertical-align:middle;cursor:pointer}.gl-star-rating[data-star-rating] .gl-star-rating-stars>span{display:inline-block;width:24px;height:24px;background-size:24px;background-repeat:no-repeat;background-image:url(../img/star-empty.svg);margin-right:4px}.gl-star-rating[data-star-rating] .gl-star-rating-stars.s100>span,.gl-star-rating[data-star-rating] .gl-star-rating-stars.s10>span:nth-child(1),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s20>span:nth-child(-1n+2),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s30>span:nth-child(-1n+3),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s40>span:nth-child(-1n+4),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s50>span:nth-child(-1n+5),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s60>span:nth-child(-1n+6),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s70>span:nth-child(-1n+7),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s80>span:nth-child(-1n+8),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s90>span:nth-child(-1n+9){background-image:url(../img/star-filled.svg)}.gl-star-rating[data-star-rating] .gl-star-rating-text{display:inline-block;position:relative;height:26px;line-height:26px;font-size:.8em;font-weight:600;color:#fff;background-color:#1a1a1a;white-space:nowrap;vertical-align:middle;padding:0 12px 0 6px;margin:0 0 0 12px}.gl-star-rating[data-star-rating] .gl-star-rating-text:before{position:absolute;top:0;left:-12px;width:0;height:0;content:"";border-style:solid;border-width:13px 12px 13px 0;border-color:transparent #1a1a1a transparent transparent}[id^=geminilabs-site-reviews].widget ul.glsr-reviews{list-style:none;margin-left:0}[id^=geminilabs-site-reviews].widget .glsr-review-title,[id^=geminilabs-site-reviews].widget p{margin-bottom:1em}.glsr-review{margin-bottom:2em}.glsr-review p{margin:0 0 1em}.glsr-review-date{font-style:italic}.glsr-review-meta>span:not(:last-child){margin-right:.5em}.glsr-review-link{white-space:nowrap}[class*=glsr-star-]{display:inline-block;width:16px;height:16px;font-size:16px;vertical-align:text-top;background-repeat:no-repeat;background-size:16px}.glsr-star-empty{background-image:url(../img/star-empty.svg)}.glsr-star-full{background-image:url(../img/star-filled.svg)}.glsr-star-half{background-image:url(../img/star-half.svg)}.gl-star-rating[data-star-rating]{line-height:1}.glsr-field-messages{color:#1976D2}.glsr-has-error{color:#D32F2F}.glsr-field{margin-bottom:1em}.glsr-field ul{list-style-type:none}.glsr-field label[for^=terms]{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.glsr-field label[for^=rating]:after,.glsr-field.glsr-required label:after{content:"*";margin-left:.33em}.glsr-field input[type=checkbox]{margin-right:.25em}.glsr-field select[name=rating]{display:block;height:26px;visibility:hidden}.glsr-form-messages{color:#009781;font-size:15px}.gslr-has-errors{color:#bd3500}h3.glsr-form-title{color:#373737;font-size:24px;font-weight:700;line-height:30px;text-transform:none;letter-spacing:normal}.glsr-form-description{font-size:13px;margin:10px 0}.glsr-form-description span{color:#bd3500}.entry-content .glsr-field input[type=text],.entry-content .glsr-field input[type=email],.entry-content .glsr-field input[type=url],.entry-content .glsr-field textarea,.one .glsr-field input[type=text],.one .glsr-field input[type=email],.one .glsr-field input[type=url],.one .glsr-field textarea{padding:10px}@media (max-width:800px){.entry-content .glsr-field input[type=text],.entry-content .glsr-field input[type=email],.entry-content .glsr-field input[type=url],.entry-content .glsr-field textarea,.one .glsr-field input[type=text],.one .glsr-field input[type=email],.one .glsr-field input[type=url],.one .glsr-field textarea{padding:6px}}.glsr-field-error{display:block;color:#bd3500;font-size:13px}.glsr-field label{display:block;font-size:13px}.glsr-field label[for^=rating]:after,.glsr-field.glsr-required label:after{color:#bd3500;line-height:13px;font-size:22px;font-weight:600;vertical-align:middle}.glsr-field input[type=text],.glsr-field input[type=email],.glsr-field input[type=url],.glsr-field textarea{position:relative;display:block;width:100%;border-radius:3px;box-sizing:border-box;padding:6px}.glsr-field input[type=submit]{position:relative;background:#222;border:none;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.3);color:#eee;cursor:pointer;text-shadow:0 -1px 0 rgba(0,0,0,.3);padding:5px 22px}.glsr-field input[type=submit]:active{background:#1982d1;color:#bfddf3}
|
1 |
+
.gl-star-rating[data-star-rating]{position:relative;display:block}.gl-star-rating[data-star-rating]>select{overflow:hidden;position:absolute!important;top:0;width:1px;height:1px;clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);white-space:nowrap}.gl-star-rating-ltr[data-star-rating]>select{left:0}.gl-star-rating-rtl[data-star-rating]>select{right:0}.gl-star-rating[data-star-rating]>select:focus+.gl-star-rating-stars:before{opacity:.5;display:block;position:absolute;width:100%;height:100%;content:"";outline:1px dotted currentColor;pointer-events:none}.gl-star-rating-stars{position:relative;display:inline-block;height:26px;vertical-align:middle;cursor:pointer}.gl-star-rating-stars>span{display:inline-block;width:24px;height:24px;background-size:24px;background-repeat:no-repeat;background-image:url(../img/star-empty.svg);margin:0 4px 0 0}.gl-star-rating-stars>span:last-of-type{margin-right:0}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span{margin:0 0 0 4px}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span:last-of-type{margin-left:0}.gl-star-rating-stars.s10>span:first-child,.gl-star-rating-stars.s20>span:nth-child(-1n+2),.gl-star-rating-stars.s30>span:nth-child(-1n+3),.gl-star-rating-stars.s40>span:nth-child(-1n+4),.gl-star-rating-stars.s50>span:nth-child(-1n+5),.gl-star-rating-stars.s60>span:nth-child(-1n+6),.gl-star-rating-stars.s70>span:nth-child(-1n+7),.gl-star-rating-stars.s80>span:nth-child(-1n+8),.gl-star-rating-stars.s90>span:nth-child(-1n+9),.gl-star-rating-stars.s100>span{background-image:url(../img/star-filled.svg)}.gl-star-rating-text{display:inline-block;position:relative;height:26px;line-height:26px;font-size:.8em;font-weight:600;color:#fff;background-color:#1a1a1a;white-space:nowrap;vertical-align:middle;padding:0 12px 0 6px;margin:0 0 0 12px}.gl-star-rating-text:before{position:absolute;top:0;left:-12px;width:0;height:0;content:"";border-style:solid;border-width:13px 12px 13px 0;border-color:transparent #1a1a1a transparent transparent}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text{padding:0 6px 0 12px;margin:0 12px 0 0}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text:before{left:unset;right:-12px;border-width:13px 0 13px 12px;border-color:transparent transparent transparent #1a1a1a}[id^=geminilabs-site-reviews].widget ul.glsr-reviews{list-style:none}[id^=geminilabs-site-reviews].widget .glsr-review-title,[id^=geminilabs-site-reviews].widget p{margin-bottom:1em}.glsr-reviews{position:relative}.glsr-reviews:after{content:"";display:table;clear:both}.glsr-ajax-navigation,.glsr-navigation,.glsr-review{opacity:1;transition:opacity .5s}.glsr-hide .glsr-ajax-navigation,.glsr-hide .glsr-navigation,.glsr-hide .glsr-review{opacity:0!important}.glsr-hide .glsr-loader{display:block}.glsr-review{margin-bottom:3em}.glsr-review p{white-space:pre-line;margin:0 0 1em}.glsr-review-assigned{display:block;font-style:italic}.glsr-review-date{font-style:italic}.glsr-review-date,.glsr-review-link{white-space:nowrap}.glsr-review-avatar{margin:-8px 0 0;width:36px;height:36px}.glsr-review-avatar img{height:100%;-o-object-fit:cover;object-fit:cover}.glsr-star-empty,.glsr-star-full,.glsr-star-half{display:inline-block;width:20px;height:20px;font-size:16px;vertical-align:sub;background-repeat:no-repeat;background-size:20px}@media screen and (min-width:56.875em){.glsr-widget [class*=glsr-star-]{width:16px;height:16px;background-size:16px}.glsr-widget .glsr-review-avatar{width:30px;height:30px}}.glsr-star-empty{background-image:url(../img/star-empty.svg)}.glsr-star-full{background-image:url(../img/star-filled.svg)}.glsr-star-half{background-image:url(../img/star-half.svg)}.glsr-hidden{display:none}.glsr-read-more{white-space:nowrap}.glsr-read-more:before{content:"\2026";margin-right:.5em}.glsr-visible+.glsr-read-more:before{content:""}.glsr-review-response{position:relative;font-size:.875em;background-color:rgba(0,0,0,.075);border-radius:2px;padding:1em;margin-top:1.5rem}.glsr-review-response p:last-of-type{margin-bottom:0}.glsr-review-response:before{content:"";display:block;position:absolute;top:-18px;height:0;width:0;border-style:solid;border-color:rgba(0,0,0,.075) transparent}.glsr-loader{display:none;position:absolute;bottom:0;left:calc(50% - 12px);width:24px;height:24px;border-radius:50%;animation:a .5s infinite linear;transform:translateZ(0);margin:0}.glsr-loader:after,.glsr-loader:before{content:"";position:absolute;width:8px;height:8px;background:rgba(0,0,0,.75);border-radius:50%}.glsr-loader:before{top:0;left:0}.glsr-loader:after{bottom:0;right:0}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.glsr-reviews .screen-reader-text{position:absolute;height:1px;width:1px;border:0;overflow:hidden;clip:rect(0 0 0 0);word-wrap:normal!important;padding:0;margin:-1px}.glsr-ltr [id^=geminilabs-site-reviews].widget ul.glsr-reviews{margin-left:0}.glsr-ltr .glsr-review-excerpt>span:not(:last-child),.glsr-ltr .glsr-review-meta>span:not(:last-child){margin-right:.5em}.glsr-ltr .glsr-review-avatar{float:left;margin-right:12px}.glsr-ltr .glsr-review-response:before{left:50px;border-width:0 24px 18px 0}.glsr-rtl [id^=geminilabs-site-reviews].widget ul.glsr-reviews{margin-right:0}.glsr-rtl .glsr-review-excerpt>span:not(:last-child),.glsr-rtl .glsr-review-meta>span:not(:last-child){margin-left:.5em}.glsr-rtl .glsr-review-avatar{float:right;margin-left:12px}.glsr-rtl .glsr-review-response:before{right:50px;border-width:0 0 18px 24px}.gl-star-rating[data-star-rating]{line-height:1}.glsr-field-messages{color:#1976d2}.glsr-has-error,.glsr-has-errors{color:#d32f2f}.glsr-field{margin-bottom:1em}.glsr-field-error{display:block;font-size:.875em;color:#d32f2f}.glsr-field ul{list-style-type:none}.glsr-field label{display:block}.glsr-field label[for^=terms]{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.glsr-field.glsr-required label:after,.glsr-field label[for^=rating]:after{content:"*";color:#d32f2f}.glsr-field select[name=rating]{display:block;height:26px}.glsr-field select[name=rating]:after,.glsr-field select[name=rating]:before{display:none!important}.glsr-recaptcha-holder{margin-top:1em}.glsr-field button[type=submit] span{display:none}.glsr-field button[type=submit][disabled] span{display:inline;position:relative}.glsr-field button[type=submit] span:after,.glsr-field button[type=submit] span:before{display:inline-block;position:absolute;top:50%;height:1em;width:1em;content:"";border:.2em solid currentColor;border-radius:100%;box-sizing:border-box;margin:-.5em auto 0;animation:b .6s infinite linear}.glsr-field button[type=submit] span:before{border-top-color:transparent;opacity:.5}.glsr-field button[type=submit] span:after{border-color:transparent;border-top-color:currentColor}@keyframes b{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.glsr-ltr .glsr-field.glsr-required label:after,.glsr-ltr .glsr-field label[for^=rating]:after{margin-left:.33em}.glsr-ltr .glsr-field input[type=checkbox]{margin-right:.25em}.glsr-ltr .glsr-field button[type=submit][disabled] span{margin-right:1.65em}.glsr-ltr .glsr-field button[type=submit] span:after,.glsr-ltr .glsr-field button[type=submit] span:before{left:0}.glsr-rtl .glsr-field.glsr-required label:after,.glsr-rtl .glsr-field label[for^=rating]:after{margin-right:.33em}.glsr-rtl .glsr-field input[type=checkbox]{margin-left:.25em}.glsr-rtl .glsr-field button[type=submit][disabled] span{margin-left:1.65em}.glsr-rtl .glsr-field button[type=submit] span:after,.glsr-rtl .glsr-field button[type=submit] span:before{right:0}.glsr-summary{position:relative;width:100%;max-width:400px;font-size:16px;line-height:1.5;margin-bottom:1em}.glsr-summary .glsr-review-rating{display:inline-block}.glsr-summary [class*=glsr-star-]{width:26px;height:26px;background-size:24px}.glsr-summary-rating{line-height:1.25;font-size:24px;font-weight:700}.glsr-summary-text{display:block;font-size:14px}.glsr-percentage-bars{position:relative;width:100%;max-width:400px;font-size:16px;line-height:1.5;margin-bottom:1em}.glsr-bar{display:table-row;white-space:nowrap}.glsr-bar>span{display:table-cell;vertical-align:middle}.glsr-bar-background{position:relative;width:100%}.glsr-bar-background:before{display:block;position:absolute;width:100%;height:12px;content:"";background:rgba(0,0,0,.075)}.glsr-bar-percent{position:relative;display:block;height:12px;background-color:#ffb900}.glsr-bar-count{text-align:right;font-size:14px}.glsr-ltr .glsr-review-rating,.glsr-ltr .glsr-summary-rating{margin-right:10px}.glsr-ltr .glsr-bar-label{padding-right:10px}.glsr-ltr .glsr-bar-count{padding-left:10px}.glsr-rtl .glsr-review-rating,.glsr-rtl .glsr-summary-rating{margin-left:10px}.glsr-rtl .glsr-bar-label{padding-left:10px}.glsr-rtl .glsr-bar-count{padding-right:10px}.glsr-rtl [class*=glsr-star-]{transform:scaleX(-1)}.glsr-form-messages{color:#009781;font-size:15px}.gslr-has-errors{color:#bd3500}h3.glsr-form-title{color:#373737;font-size:24px;font-weight:bold;line-height:30px;text-transform:none;letter-spacing:normal}.glsr-form-description{font-size:13px;margin:10px 0}.glsr-form-description span{color:#bd3500}.entry-content .glsr-field input[type=email],.entry-content .glsr-field input[type=text],.entry-content .glsr-field input[type=url],.entry-content .glsr-field textarea,.one .glsr-field input[type=email],.one .glsr-field input[type=text],.one .glsr-field input[type=url],.one .glsr-field textarea{padding:10px}@media (max-width:800px){.entry-content .glsr-field input[type=email],.entry-content .glsr-field input[type=text],.entry-content .glsr-field input[type=url],.entry-content .glsr-field textarea,.one .glsr-field input[type=email],.one .glsr-field input[type=text],.one .glsr-field input[type=url],.one .glsr-field textarea{padding:6px}}.glsr-field-error{color:#bd3500;font-size:13px}.glsr-field label{font-size:13px}.glsr-field.glsr-required label:after,.glsr-field label[for^=rating]:after{color:#bd3500;line-height:13px;font-size:22px;font-weight:600;vertical-align:middle}.glsr-field input[type=email],.glsr-field input[type=text],.glsr-field input[type=url],.glsr-field textarea{position:relative;display:block;width:100%;border-radius:3px;box-sizing:border-box;padding:6px}.glsr-field input[type=submit]{position:relative;background:#222;border:none;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.3);color:#eee;cursor:pointer;text-shadow:0 -1px 0 rgba(0,0,0,.3);padding:5px 22px}.glsr-field input[type=submit]:active{background:#1982d1;color:#bfddf3}.glsr-loader{bottom:1.625em}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/css/twenty-fifteen.css
CHANGED
@@ -1,8 +1 @@
|
|
1 |
-
/*!
|
2 |
-
* Star Rating
|
3 |
-
*
|
4 |
-
* Version: 1.3.0
|
5 |
-
* Author: Paul Ryley (http://geminilabs.io)
|
6 |
-
* URL: https://github.com/geminilabs/star-rating.js
|
7 |
-
* License: MIT
|
8 |
-
*/.gl-star-rating[data-star-rating]{position:relative;display:block}.gl-star-rating[data-star-rating]>select{position:absolute!important;top:0;left:0;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);visibility:visible}.gl-star-rating[data-star-rating] .gl-star-rating-stars{display:inline-block;height:26px;vertical-align:middle;cursor:pointer}.gl-star-rating[data-star-rating] .gl-star-rating-stars>span{display:inline-block;width:24px;height:24px;background-size:24px;background-repeat:no-repeat;background-image:url(../img/star-empty.svg);margin-right:4px}.gl-star-rating[data-star-rating] .gl-star-rating-stars.s100>span,.gl-star-rating[data-star-rating] .gl-star-rating-stars.s10>span:nth-child(1),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s20>span:nth-child(-1n+2),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s30>span:nth-child(-1n+3),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s40>span:nth-child(-1n+4),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s50>span:nth-child(-1n+5),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s60>span:nth-child(-1n+6),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s70>span:nth-child(-1n+7),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s80>span:nth-child(-1n+8),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s90>span:nth-child(-1n+9){background-image:url(../img/star-filled.svg)}.gl-star-rating[data-star-rating] .gl-star-rating-text{display:inline-block;position:relative;height:26px;line-height:26px;font-size:.8em;font-weight:600;color:#fff;background-color:#1a1a1a;white-space:nowrap;vertical-align:middle;padding:0 12px 0 6px;margin:0 0 0 12px}.gl-star-rating[data-star-rating] .gl-star-rating-text:before{position:absolute;top:0;left:-12px;width:0;height:0;content:"";border-style:solid;border-width:13px 12px 13px 0;border-color:transparent #1a1a1a transparent transparent}[id^=geminilabs-site-reviews].widget ul.glsr-reviews{list-style:none;margin-left:0}[id^=geminilabs-site-reviews].widget .glsr-review-title,[id^=geminilabs-site-reviews].widget p{margin-bottom:1em}.glsr-review{margin-bottom:2em}.glsr-review p{margin:0 0 1em}.glsr-review-date{font-style:italic}.glsr-review-meta>span:not(:last-child){margin-right:.5em}.glsr-review-link{white-space:nowrap}[class*=glsr-star-]{display:inline-block;width:16px;height:16px;font-size:16px;vertical-align:text-top;background-repeat:no-repeat;background-size:16px}.glsr-star-empty{background-image:url(../img/star-empty.svg)}.glsr-star-full{background-image:url(../img/star-filled.svg)}.glsr-star-half{background-image:url(../img/star-half.svg)}.gl-star-rating[data-star-rating]{line-height:1}.glsr-field-messages{color:#1976D2}.glsr-has-error{color:#D32F2F}.glsr-field ul{list-style-type:none}.glsr-field label[for^=terms]{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.glsr-field input[type=checkbox]{margin-right:.25em}.glsr-field select[name=rating]{display:block;height:26px;visibility:hidden}.glsr-form-messages{color:#21759b}.gslr-has-errors{color:#c0392b}.shortcode-reviews-form{border-top:1px solid #eaeaea;border-top:1px solid rgba(51,51,51,.1);padding-top:1.6em}.shortcode-reviews-form>:last-child{margin-bottom:0}.shortcode-reviews-form h3.glsr-form-title{font-family:"Noto Serif",serif;font-size:18px;font-size:1.8rem;line-height:1.3333333333;margin-top:0;margin-bottom:1.3333333333em}@media screen and (min-width:46.25em){.shortcode-reviews-form{padding-top:1.6470588235em}.shortcode-reviews-form h3.glsr-form-title{font-size:24px;font-size:2.4rem;line-height:1.1666666667;margin-bottom:1.1666666667em}}@media screen and (min-width:55em){.shortcode-reviews-form{padding-top:1.6842105263em}.shortcode-reviews-form h3.glsr-form-title{font-size:27px;font-size:2.7rem;line-height:1.1851851852;margin-bottom:1.1851851852em}}@media screen and (min-width:59.6875em){.shortcode-reviews-form{padding-top:1.6em}.shortcode-reviews-form h3.glsr-form-title{font-size:18px;font-size:1.8rem;line-height:1.3333333333;margin-bottom:1.3333333333em}}@media screen and (min-width:68.75em){.shortcode-reviews-form{padding-top:1.6470588235em}.shortcode-reviews-form h3.glsr-form-title{font-size:24px;font-size:2.4rem;line-height:1.1666666667;margin-bottom:1.1666666667em}}@media screen and (min-width:77.5em){.shortcode-reviews-form{padding-top:1.6842105263em}.shortcode-reviews-form h3.glsr-form-title{font-size:27px;font-size:2.7rem;line-height:1.1851851852;margin-bottom:1.1851851852em}}.glsr-field label,.glsr-field-error,.glsr-form-description{font-family:"Noto Sans",sans-serif;line-height:1.5}.glsr-form-description{color:#707070;color:rgba(51,51,51,.7);margin-bottom:2em}.glsr-form-description span{color:#c0392b}.glsr-field-error,.glsr-form-description{font-size:12px;font-size:1.2rem}@media screen and (min-width:46.25em){.glsr-field-error,.glsr-form-description{font-size:14px;font-size:1.4rem}}@media screen and (min-width:55em){.glsr-field-error,.glsr-form-description{font-size:16px;font-size:1.6rem}}@media screen and (min-width:59.6875em){.glsr-field-error,.glsr-form-description{font-size:12px;font-size:1.2rem}}@media screen and (min-width:68.75em){.glsr-field-error,.glsr-form-description{font-size:14px;font-size:1.4rem}}@media screen and (min-width:77.5em){.glsr-field-error,.glsr-form-description{font-size:16px;font-size:1.6rem}}.glsr-field{margin-bottom:1.6em}.glsr-field:last-child{margin-bottom:0}.glsr-field-error{display:block;color:#c0392b}.glsr-field-error:first-child{margin-top:2em}.glsr-field label{display:block;color:#707070;color:rgba(51,51,51,.7);font-size:12px;font-size:1.2rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase}.glsr-field label[for^=rating]:after,.glsr-field.glsr-required label:after{content:"*";margin-left:.33em;color:#c0392b}.glsr-field input[type=checkbox]:focus{outline:0}.glsr-field input[type=submit]{width:100%}@media screen and (min-width:46.25em){.glsr-field label{font-size:14px;font-size:1.4rem}.glsr-field{margin-bottom:1.6471em}}@media screen and (min-width:55em){.glsr-field label{font-size:16px;font-size:1.6rem}.glsr-field{margin-bottom:1.6842em}}@media screen and (min-width:59.6875em){.glsr-field label{font-size:12px;font-size:1.2rem}.glsr-field{margin-bottom:1.6em}}@media screen and (min-width:68.75em){.glsr-field label{font-size:14px;font-size:1.4rem}.glsr-field{margin-bottom:1.6471em}}@media screen and (min-width:77.5em){.glsr-field label{font-size:16px;font-size:1.6rem}.glsr-field{margin-bottom:1.6842em}}
|
1 |
+
.gl-star-rating[data-star-rating]{position:relative;display:block}.gl-star-rating[data-star-rating]>select{overflow:hidden;position:absolute!important;top:0;width:1px;height:1px;clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);white-space:nowrap}.gl-star-rating-ltr[data-star-rating]>select{left:0}.gl-star-rating-rtl[data-star-rating]>select{right:0}.gl-star-rating[data-star-rating]>select:focus+.gl-star-rating-stars:before{opacity:.5;display:block;position:absolute;width:100%;height:100%;content:"";outline:1px dotted currentColor;pointer-events:none}.gl-star-rating-stars{position:relative;display:inline-block;height:26px;vertical-align:middle;cursor:pointer}.gl-star-rating-stars>span{display:inline-block;width:24px;height:24px;background-size:24px;background-repeat:no-repeat;background-image:url(../img/star-empty.svg);margin:0 4px 0 0}.gl-star-rating-stars>span:last-of-type{margin-right:0}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span{margin:0 0 0 4px}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span:last-of-type{margin-left:0}.gl-star-rating-stars.s10>span:first-child,.gl-star-rating-stars.s20>span:nth-child(-1n+2),.gl-star-rating-stars.s30>span:nth-child(-1n+3),.gl-star-rating-stars.s40>span:nth-child(-1n+4),.gl-star-rating-stars.s50>span:nth-child(-1n+5),.gl-star-rating-stars.s60>span:nth-child(-1n+6),.gl-star-rating-stars.s70>span:nth-child(-1n+7),.gl-star-rating-stars.s80>span:nth-child(-1n+8),.gl-star-rating-stars.s90>span:nth-child(-1n+9),.gl-star-rating-stars.s100>span{background-image:url(../img/star-filled.svg)}.gl-star-rating-text{display:inline-block;position:relative;height:26px;line-height:26px;font-size:.8em;font-weight:600;color:#fff;background-color:#1a1a1a;white-space:nowrap;vertical-align:middle;padding:0 12px 0 6px;margin:0 0 0 12px}.gl-star-rating-text:before{position:absolute;top:0;left:-12px;width:0;height:0;content:"";border-style:solid;border-width:13px 12px 13px 0;border-color:transparent #1a1a1a transparent transparent}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text{padding:0 6px 0 12px;margin:0 12px 0 0}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text:before{left:unset;right:-12px;border-width:13px 0 13px 12px;border-color:transparent transparent transparent #1a1a1a}[id^=geminilabs-site-reviews].widget ul.glsr-reviews{list-style:none}[id^=geminilabs-site-reviews].widget .glsr-review-title,[id^=geminilabs-site-reviews].widget p{margin-bottom:1em}.glsr-reviews{position:relative}.glsr-reviews:after{content:"";display:table;clear:both}.glsr-ajax-navigation,.glsr-navigation,.glsr-review{opacity:1;transition:opacity .5s}.glsr-hide .glsr-ajax-navigation,.glsr-hide .glsr-navigation,.glsr-hide .glsr-review{opacity:0!important}.glsr-hide .glsr-loader{display:block}.glsr-review{margin-bottom:3em}.glsr-review p{white-space:pre-line;margin:0 0 1em}.glsr-review-assigned{display:block;font-style:italic}.glsr-review-date{font-style:italic}.glsr-review-date,.glsr-review-link{white-space:nowrap}.glsr-review-avatar{margin:-8px 0 0;width:36px;height:36px}.glsr-review-avatar img{height:100%;-o-object-fit:cover;object-fit:cover}.glsr-star-empty,.glsr-star-full,.glsr-star-half{display:inline-block;width:20px;height:20px;font-size:16px;vertical-align:sub;background-repeat:no-repeat;background-size:20px}@media screen and (min-width:56.875em){.glsr-widget [class*=glsr-star-]{width:16px;height:16px;background-size:16px}.glsr-widget .glsr-review-avatar{width:30px;height:30px}}.glsr-star-empty{background-image:url(../img/star-empty.svg)}.glsr-star-full{background-image:url(../img/star-filled.svg)}.glsr-star-half{background-image:url(../img/star-half.svg)}.glsr-hidden{display:none}.glsr-read-more{white-space:nowrap}.glsr-read-more:before{content:"\2026";margin-right:.5em}.glsr-visible+.glsr-read-more:before{content:""}.glsr-review-response{position:relative;font-size:.875em;background-color:rgba(0,0,0,.075);border-radius:2px;padding:1em;margin-top:1.5rem}.glsr-review-response p:last-of-type{margin-bottom:0}.glsr-review-response:before{content:"";display:block;position:absolute;top:-18px;height:0;width:0;border-style:solid;border-color:rgba(0,0,0,.075) transparent}.glsr-loader{display:none;position:absolute;bottom:0;left:calc(50% - 12px);width:24px;height:24px;border-radius:50%;animation:a .5s infinite linear;transform:translateZ(0);margin:0}.glsr-loader:after,.glsr-loader:before{content:"";position:absolute;width:8px;height:8px;background:rgba(0,0,0,.75);border-radius:50%}.glsr-loader:before{top:0;left:0}.glsr-loader:after{bottom:0;right:0}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.glsr-reviews .screen-reader-text{position:absolute;height:1px;width:1px;border:0;overflow:hidden;clip:rect(0 0 0 0);word-wrap:normal!important;padding:0;margin:-1px}.glsr-ltr [id^=geminilabs-site-reviews].widget ul.glsr-reviews{margin-left:0}.glsr-ltr .glsr-review-excerpt>span:not(:last-child),.glsr-ltr .glsr-review-meta>span:not(:last-child){margin-right:.5em}.glsr-ltr .glsr-review-avatar{float:left;margin-right:12px}.glsr-ltr .glsr-review-response:before{left:50px;border-width:0 24px 18px 0}.glsr-rtl [id^=geminilabs-site-reviews].widget ul.glsr-reviews{margin-right:0}.glsr-rtl .glsr-review-excerpt>span:not(:last-child),.glsr-rtl .glsr-review-meta>span:not(:last-child){margin-left:.5em}.glsr-rtl .glsr-review-avatar{float:right;margin-left:12px}.glsr-rtl .glsr-review-response:before{right:50px;border-width:0 0 18px 24px}.gl-star-rating[data-star-rating]{line-height:1}.glsr-field-messages{color:#1976d2}.glsr-has-error,.glsr-has-errors{color:#d32f2f}.glsr-field{margin-bottom:1em}.glsr-field-error{display:block;font-size:.875em;color:#d32f2f}.glsr-field ul{list-style-type:none}.glsr-field label{display:block}.glsr-field label[for^=terms]{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.glsr-field.glsr-required label:after,.glsr-field label[for^=rating]:after{content:"*";color:#d32f2f}.glsr-field select[name=rating]{display:block;height:26px}.glsr-field select[name=rating]:after,.glsr-field select[name=rating]:before{display:none!important}.glsr-recaptcha-holder{margin-top:1em}.glsr-field button[type=submit] span{display:none}.glsr-field button[type=submit][disabled] span{display:inline;position:relative}.glsr-field button[type=submit] span:after,.glsr-field button[type=submit] span:before{display:inline-block;position:absolute;top:50%;height:1em;width:1em;content:"";border:.2em solid currentColor;border-radius:100%;box-sizing:border-box;margin:-.5em auto 0;animation:b .6s infinite linear}.glsr-field button[type=submit] span:before{border-top-color:transparent;opacity:.5}.glsr-field button[type=submit] span:after{border-color:transparent;border-top-color:currentColor}@keyframes b{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.glsr-ltr .glsr-field.glsr-required label:after,.glsr-ltr .glsr-field label[for^=rating]:after{margin-left:.33em}.glsr-ltr .glsr-field input[type=checkbox]{margin-right:.25em}.glsr-ltr .glsr-field button[type=submit][disabled] span{margin-right:1.65em}.glsr-ltr .glsr-field button[type=submit] span:after,.glsr-ltr .glsr-field button[type=submit] span:before{left:0}.glsr-rtl .glsr-field.glsr-required label:after,.glsr-rtl .glsr-field label[for^=rating]:after{margin-right:.33em}.glsr-rtl .glsr-field input[type=checkbox]{margin-left:.25em}.glsr-rtl .glsr-field button[type=submit][disabled] span{margin-left:1.65em}.glsr-rtl .glsr-field button[type=submit] span:after,.glsr-rtl .glsr-field button[type=submit] span:before{right:0}.glsr-summary{position:relative;width:100%;max-width:400px;font-size:16px;line-height:1.5;margin-bottom:1em}.glsr-summary .glsr-review-rating{display:inline-block}.glsr-summary [class*=glsr-star-]{width:26px;height:26px;background-size:24px}.glsr-summary-rating{line-height:1.25;font-size:24px;font-weight:700}.glsr-summary-text{display:block;font-size:14px}.glsr-percentage-bars{position:relative;width:100%;max-width:400px;font-size:16px;line-height:1.5;margin-bottom:1em}.glsr-bar{display:table-row;white-space:nowrap}.glsr-bar>span{display:table-cell;vertical-align:middle}.glsr-bar-background{position:relative;width:100%}.glsr-bar-background:before{display:block;position:absolute;width:100%;height:12px;content:"";background:rgba(0,0,0,.075)}.glsr-bar-percent{position:relative;display:block;height:12px;background-color:#ffb900}.glsr-bar-count{text-align:right;font-size:14px}.glsr-ltr .glsr-review-rating,.glsr-ltr .glsr-summary-rating{margin-right:10px}.glsr-ltr .glsr-bar-label{padding-right:10px}.glsr-ltr .glsr-bar-count{padding-left:10px}.glsr-rtl .glsr-review-rating,.glsr-rtl .glsr-summary-rating{margin-left:10px}.glsr-rtl .glsr-bar-label{padding-left:10px}.glsr-rtl .glsr-bar-count{padding-right:10px}.glsr-rtl [class*=glsr-star-]{transform:scaleX(-1)}.glsr-form-messages{color:#21759b}.gslr-has-errors{color:#c0392b}.shortcode-reviews-form{border-top:1px solid #eaeaea;border-top:1px solid rgba(51,51,51,.1);padding-top:1.6em}.shortcode-reviews-form>:last-child{margin-bottom:0}@media screen and (min-width:46.25em){.shortcode-reviews-form{padding-top:1.64706em}}@media screen and (min-width:55em){.shortcode-reviews-form{padding-top:1.68421em}}@media screen and (min-width:59.6875em){.shortcode-reviews-form{padding-top:1.6em}}@media screen and (min-width:68.75em){.shortcode-reviews-form{padding-top:1.64706em}}@media screen and (min-width:77.5em){.shortcode-reviews-form{padding-top:1.68421em}}.shortcode-reviews-form h3.glsr-form-title{font-family:"Noto Serif",serif;font-size:18px;font-size:1.8rem;line-height:1.33333;margin-top:0;margin-bottom:1.33333em}@media screen and (min-width:46.25em){.shortcode-reviews-form h3.glsr-form-title{font-size:24px;font-size:2.4rem;line-height:1.16667;margin-bottom:1.16667em}}@media screen and (min-width:55em){.shortcode-reviews-form h3.glsr-form-title{font-size:27px;font-size:2.7rem;line-height:1.18519;margin-bottom:1.18519em}}@media screen and (min-width:59.6875em){.shortcode-reviews-form h3.glsr-form-title{font-size:18px;font-size:1.8rem;line-height:1.33333;margin-bottom:1.33333em}}@media screen and (min-width:68.75em){.shortcode-reviews-form h3.glsr-form-title{font-size:24px;font-size:2.4rem;line-height:1.16667;margin-bottom:1.16667em}}@media screen and (min-width:77.5em){.shortcode-reviews-form h3.glsr-form-title{font-size:27px;font-size:2.7rem;line-height:1.18519;margin-bottom:1.18519em}}.glsr-form-description{color:#707070;color:rgba(51,51,51,.7);margin-bottom:2em}.glsr-form-description span{color:#c0392b}.glsr-field-error,.glsr-form-description{font-family:"Noto Sans",sans-serif;font-size:12px;font-size:1.2rem;line-height:1.5}@media screen and (min-width:46.25em){.glsr-field-error,.glsr-form-description{font-size:14px;font-size:1.4rem}}@media screen and (min-width:55em){.glsr-field-error,.glsr-form-description{font-size:16px;font-size:1.6rem}}@media screen and (min-width:59.6875em){.glsr-field-error,.glsr-form-description{font-size:12px;font-size:1.2rem}}@media screen and (min-width:68.75em){.glsr-field-error,.glsr-form-description{font-size:14px;font-size:1.4rem}}@media screen and (min-width:77.5em){.glsr-field-error,.glsr-form-description{font-size:16px;font-size:1.6rem}}.glsr-field{margin-bottom:1.6em}.glsr-field:last-child{margin-bottom:0}.glsr-field-error{color:#c0392b}.glsr-field label{color:#707070;color:rgba(51,51,51,.7);font-family:"Noto Sans",sans-serif;font-size:12px;font-size:1.2rem;font-weight:700;letter-spacing:.04em;line-height:1.5;text-transform:uppercase}@media screen and (min-width:46.25em){.glsr-field label{font-size:14px;font-size:1.4rem}}@media screen and (min-width:55em){.glsr-field label{font-size:16px;font-size:1.6rem}}@media screen and (min-width:59.6875em){.glsr-field label{font-size:12px;font-size:1.2rem}}@media screen and (min-width:68.75em){.glsr-field label{font-size:14px;font-size:1.4rem}}@media screen and (min-width:77.5em){.glsr-field label{font-size:16px;font-size:1.6rem}}.glsr-field.glsr-required label:after,.glsr-field label[for^=rating]:after{color:#c0392b}.glsr-field input[type=checkbox]:focus{outline:none}.glsr-field input[type=submit]{width:100%}@media screen and (min-width:46.25em){.glsr-field{margin-bottom:1.6471em}}@media screen and (min-width:55em){.glsr-field{margin-bottom:1.6842em}}@media screen and (min-width:59.6875em){.glsr-field{margin-bottom:1.6em}}@media screen and (min-width:68.75em){.glsr-field{margin-bottom:1.6471em}}@media screen and (min-width:77.5em){.glsr-field{margin-bottom:1.6842em}}.glsr-review-response{margin-top:1.6em}.glsr-loader{bottom:12px}@media screen and (min-width:46.25em){.glsr-loader{bottom:16px}}@media screen and (min-width:55em){.glsr-loader{bottom:20px}}@media screen and (min-width:59.6875em){.glsr-loader{bottom:12px}}@media screen and (min-width:68.75em){.glsr-loader{bottom:16px}}@media screen and (min-width:77.5em){.glsr-loader{bottom:20px}}.widget .glsr-review-title{margin-bottom:1em}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/css/twenty-fourteen.css
CHANGED
@@ -1,8 +1 @@
|
|
1 |
-
/*!
|
2 |
-
* Star Rating
|
3 |
-
*
|
4 |
-
* Version: 1.3.0
|
5 |
-
* Author: Paul Ryley (http://geminilabs.io)
|
6 |
-
* URL: https://github.com/geminilabs/star-rating.js
|
7 |
-
* License: MIT
|
8 |
-
*/.gl-star-rating[data-star-rating]{position:relative;display:block}.gl-star-rating[data-star-rating]>select{position:absolute!important;top:0;left:0;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);visibility:visible}.gl-star-rating[data-star-rating] .gl-star-rating-stars{display:inline-block;height:26px;vertical-align:middle;cursor:pointer}.gl-star-rating[data-star-rating] .gl-star-rating-stars>span{display:inline-block;width:24px;height:24px;background-size:24px;background-repeat:no-repeat;background-image:url(../img/star-empty.svg);margin-right:4px}.gl-star-rating[data-star-rating] .gl-star-rating-stars.s100>span,.gl-star-rating[data-star-rating] .gl-star-rating-stars.s10>span:nth-child(1),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s20>span:nth-child(-1n+2),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s30>span:nth-child(-1n+3),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s40>span:nth-child(-1n+4),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s50>span:nth-child(-1n+5),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s60>span:nth-child(-1n+6),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s70>span:nth-child(-1n+7),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s80>span:nth-child(-1n+8),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s90>span:nth-child(-1n+9){background-image:url(../img/star-filled.svg)}.gl-star-rating[data-star-rating] .gl-star-rating-text{display:inline-block;position:relative;height:26px;line-height:26px;font-size:.8em;font-weight:600;color:#fff;background-color:#1a1a1a;white-space:nowrap;vertical-align:middle;padding:0 12px 0 6px;margin:0 0 0 12px}.gl-star-rating[data-star-rating] .gl-star-rating-text:before{position:absolute;top:0;left:-12px;width:0;height:0;content:"";border-style:solid;border-width:13px 12px 13px 0;border-color:transparent #1a1a1a transparent transparent}[id^=geminilabs-site-reviews].widget ul.glsr-reviews{list-style:none;margin-left:0}[id^=geminilabs-site-reviews].widget .glsr-review-title,[id^=geminilabs-site-reviews].widget p{margin-bottom:1em}.glsr-review{margin-bottom:2em}.glsr-review p{margin:0 0 1em}.glsr-field,h3.glsr-form-title{margin-bottom:24px}.glsr-review-date{font-style:italic}.glsr-review-meta>span:not(:last-child){margin-right:.5em}.glsr-review-link{white-space:nowrap}[class*=glsr-star-]{display:inline-block;width:16px;height:16px;font-size:16px;vertical-align:text-top;background-repeat:no-repeat;background-size:16px}.glsr-star-empty{background-image:url(../img/star-empty.svg)}.glsr-star-full{background-image:url(../img/star-filled.svg)}.glsr-star-half{background-image:url(../img/star-half.svg)}.gl-star-rating[data-star-rating]{line-height:1}.glsr-field-messages{color:#1976D2}.glsr-has-error{color:#D32F2F}.glsr-field-error{display:block;font-size:.875em}.glsr-field ul{list-style-type:none}.glsr-field label{display:block}.glsr-field label[for^=terms]{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.glsr-field label[for^=rating]:after,.glsr-field.glsr-required label:after{content:"*";margin-left:.33em}.glsr-field input[type=checkbox]{margin-right:.25em}.glsr-field select[name=rating]{display:block;height:26px;visibility:hidden}.glsr-form-messages{color:#21759b}.glsr-form-description span,.gslr-has-errors{color:#c0392b}h3.glsr-form-title{font:900 16px/1.5 Lato,sans-serif;text-transform:uppercase;margin-top:0}.shortcode-reviews-form .glsr-form-description{font-size:14px;line-height:1.7142857143;color:#767676}.glsr-field label[for^=rating]:after,.glsr-field-error,.glsr-field.glsr-required label:after{color:#c0392b}.glsr-field input[type=text],.glsr-field input[type=email],.glsr-field input[type=url]{width:100%}@media screen and (max-width:1079px){#secondary .gl-star-rating[data-star-rating] .gl-star-rating-stars>span{width:21px;height:21px;background-size:21px}#secondary .gl-star-rating[data-star-rating] .gl-star-rating-stars>span:last-child{margin-right:0}}
|
1 |
+
.gl-star-rating[data-star-rating]{position:relative;display:block}.gl-star-rating[data-star-rating]>select{overflow:hidden;position:absolute!important;top:0;width:1px;height:1px;clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);white-space:nowrap}.gl-star-rating-ltr[data-star-rating]>select{left:0}.gl-star-rating-rtl[data-star-rating]>select{right:0}.gl-star-rating[data-star-rating]>select:focus+.gl-star-rating-stars:before{opacity:.5;display:block;position:absolute;width:100%;height:100%;content:"";outline:1px dotted currentColor;pointer-events:none}.gl-star-rating-stars{position:relative;display:inline-block;height:26px;vertical-align:middle;cursor:pointer}.gl-star-rating-stars>span{display:inline-block;width:24px;height:24px;background-size:24px;background-repeat:no-repeat;background-image:url(../img/star-empty.svg);margin:0 4px 0 0}.gl-star-rating-stars>span:last-of-type{margin-right:0}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span{margin:0 0 0 4px}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span:last-of-type{margin-left:0}.gl-star-rating-stars.s10>span:first-child,.gl-star-rating-stars.s20>span:nth-child(-1n+2),.gl-star-rating-stars.s30>span:nth-child(-1n+3),.gl-star-rating-stars.s40>span:nth-child(-1n+4),.gl-star-rating-stars.s50>span:nth-child(-1n+5),.gl-star-rating-stars.s60>span:nth-child(-1n+6),.gl-star-rating-stars.s70>span:nth-child(-1n+7),.gl-star-rating-stars.s80>span:nth-child(-1n+8),.gl-star-rating-stars.s90>span:nth-child(-1n+9),.gl-star-rating-stars.s100>span{background-image:url(../img/star-filled.svg)}.gl-star-rating-text{display:inline-block;position:relative;height:26px;line-height:26px;font-size:.8em;font-weight:600;color:#fff;background-color:#1a1a1a;white-space:nowrap;vertical-align:middle;padding:0 12px 0 6px;margin:0 0 0 12px}.gl-star-rating-text:before{position:absolute;top:0;left:-12px;width:0;height:0;content:"";border-style:solid;border-width:13px 12px 13px 0;border-color:transparent #1a1a1a transparent transparent}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text{padding:0 6px 0 12px;margin:0 12px 0 0}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text:before{left:unset;right:-12px;border-width:13px 0 13px 12px;border-color:transparent transparent transparent #1a1a1a}[id^=geminilabs-site-reviews].widget ul.glsr-reviews{list-style:none}[id^=geminilabs-site-reviews].widget .glsr-review-title,[id^=geminilabs-site-reviews].widget p{margin-bottom:1em}.glsr-reviews{position:relative}.glsr-reviews:after{content:"";display:table;clear:both}.glsr-ajax-navigation,.glsr-navigation,.glsr-review{opacity:1;transition:opacity .5s}.glsr-hide .glsr-ajax-navigation,.glsr-hide .glsr-navigation,.glsr-hide .glsr-review{opacity:0!important}.glsr-hide .glsr-loader{display:block}.glsr-review{margin-bottom:3em}.glsr-review p{white-space:pre-line;margin:0 0 1em}.glsr-review-assigned{display:block;font-style:italic}.glsr-review-date{font-style:italic}.glsr-review-date,.glsr-review-link{white-space:nowrap}.glsr-review-avatar{margin:-8px 0 0;width:36px;height:36px}.glsr-review-avatar img{height:100%;-o-object-fit:cover;object-fit:cover}.glsr-star-empty,.glsr-star-full,.glsr-star-half{display:inline-block;width:20px;height:20px;font-size:16px;vertical-align:sub;background-repeat:no-repeat;background-size:20px}@media screen and (min-width:56.875em){.glsr-widget [class*=glsr-star-]{width:16px;height:16px;background-size:16px}.glsr-widget .glsr-review-avatar{width:30px;height:30px}}.glsr-star-empty{background-image:url(../img/star-empty.svg)}.glsr-star-full{background-image:url(../img/star-filled.svg)}.glsr-star-half{background-image:url(../img/star-half.svg)}.glsr-hidden{display:none}.glsr-read-more{white-space:nowrap}.glsr-read-more:before{content:"\2026";margin-right:.5em}.glsr-visible+.glsr-read-more:before{content:""}.glsr-review-response{position:relative;font-size:.875em;background-color:rgba(0,0,0,.075);border-radius:2px;padding:1em;margin-top:1.5rem}.glsr-review-response p:last-of-type{margin-bottom:0}.glsr-review-response:before{content:"";display:block;position:absolute;top:-18px;height:0;width:0;border-style:solid;border-color:rgba(0,0,0,.075) transparent}.glsr-loader{display:none;position:absolute;bottom:0;left:calc(50% - 12px);width:24px;height:24px;border-radius:50%;animation:a .5s infinite linear;transform:translateZ(0);margin:0}.glsr-loader:after,.glsr-loader:before{content:"";position:absolute;width:8px;height:8px;background:rgba(0,0,0,.75);border-radius:50%}.glsr-loader:before{top:0;left:0}.glsr-loader:after{bottom:0;right:0}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.glsr-reviews .screen-reader-text{position:absolute;height:1px;width:1px;border:0;overflow:hidden;clip:rect(0 0 0 0);word-wrap:normal!important;padding:0;margin:-1px}.glsr-ltr [id^=geminilabs-site-reviews].widget ul.glsr-reviews{margin-left:0}.glsr-ltr .glsr-review-excerpt>span:not(:last-child),.glsr-ltr .glsr-review-meta>span:not(:last-child){margin-right:.5em}.glsr-ltr .glsr-review-avatar{float:left;margin-right:12px}.glsr-ltr .glsr-review-response:before{left:50px;border-width:0 24px 18px 0}.glsr-rtl [id^=geminilabs-site-reviews].widget ul.glsr-reviews{margin-right:0}.glsr-rtl .glsr-review-excerpt>span:not(:last-child),.glsr-rtl .glsr-review-meta>span:not(:last-child){margin-left:.5em}.glsr-rtl .glsr-review-avatar{float:right;margin-left:12px}.glsr-rtl .glsr-review-response:before{right:50px;border-width:0 0 18px 24px}.gl-star-rating[data-star-rating]{line-height:1}.glsr-field-messages{color:#1976d2}.glsr-has-error,.glsr-has-errors{color:#d32f2f}.glsr-field{margin-bottom:1em}.glsr-field-error{display:block;font-size:.875em;color:#d32f2f}.glsr-field ul{list-style-type:none}.glsr-field label{display:block}.glsr-field label[for^=terms]{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.glsr-field.glsr-required label:after,.glsr-field label[for^=rating]:after{content:"*";color:#d32f2f}.glsr-field select[name=rating]{display:block;height:26px}.glsr-field select[name=rating]:after,.glsr-field select[name=rating]:before{display:none!important}.glsr-recaptcha-holder{margin-top:1em}.glsr-field button[type=submit] span{display:none}.glsr-field button[type=submit][disabled] span{display:inline;position:relative}.glsr-field button[type=submit] span:after,.glsr-field button[type=submit] span:before{display:inline-block;position:absolute;top:50%;height:1em;width:1em;content:"";border:.2em solid currentColor;border-radius:100%;box-sizing:border-box;margin:-.5em auto 0;animation:b .6s infinite linear}.glsr-field button[type=submit] span:before{border-top-color:transparent;opacity:.5}.glsr-field button[type=submit] span:after{border-color:transparent;border-top-color:currentColor}@keyframes b{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.glsr-ltr .glsr-field.glsr-required label:after,.glsr-ltr .glsr-field label[for^=rating]:after{margin-left:.33em}.glsr-ltr .glsr-field input[type=checkbox]{margin-right:.25em}.glsr-ltr .glsr-field button[type=submit][disabled] span{margin-right:1.65em}.glsr-ltr .glsr-field button[type=submit] span:after,.glsr-ltr .glsr-field button[type=submit] span:before{left:0}.glsr-rtl .glsr-field.glsr-required label:after,.glsr-rtl .glsr-field label[for^=rating]:after{margin-right:.33em}.glsr-rtl .glsr-field input[type=checkbox]{margin-left:.25em}.glsr-rtl .glsr-field button[type=submit][disabled] span{margin-left:1.65em}.glsr-rtl .glsr-field button[type=submit] span:after,.glsr-rtl .glsr-field button[type=submit] span:before{right:0}.glsr-summary{position:relative;width:100%;max-width:400px;font-size:16px;line-height:1.5;margin-bottom:1em}.glsr-summary .glsr-review-rating{display:inline-block}.glsr-summary [class*=glsr-star-]{width:26px;height:26px;background-size:24px}.glsr-summary-rating{line-height:1.25;font-size:24px;font-weight:700}.glsr-summary-text{display:block;font-size:14px}.glsr-percentage-bars{position:relative;width:100%;max-width:400px;font-size:16px;line-height:1.5;margin-bottom:1em}.glsr-bar{display:table-row;white-space:nowrap}.glsr-bar>span{display:table-cell;vertical-align:middle}.glsr-bar-background{position:relative;width:100%}.glsr-bar-background:before{display:block;position:absolute;width:100%;height:12px;content:"";background:rgba(0,0,0,.075)}.glsr-bar-percent{position:relative;display:block;height:12px;background-color:#ffb900}.glsr-bar-count{text-align:right;font-size:14px}.glsr-ltr .glsr-review-rating,.glsr-ltr .glsr-summary-rating{margin-right:10px}.glsr-ltr .glsr-bar-label{padding-right:10px}.glsr-ltr .glsr-bar-count{padding-left:10px}.glsr-rtl .glsr-review-rating,.glsr-rtl .glsr-summary-rating{margin-left:10px}.glsr-rtl .glsr-bar-label{padding-left:10px}.glsr-rtl .glsr-bar-count{padding-right:10px}.glsr-rtl [class*=glsr-star-]{transform:scaleX(-1)}.glsr-form-messages{color:#21759b}.gslr-has-errors{color:#c0392b}h3.glsr-form-title{font:900 16px/1.5 Lato,sans-serif;text-transform:uppercase;margin-top:0;margin-bottom:24px}.glsr-form-description span{color:#c0392b}.shortcode-reviews-form .glsr-form-description{font-size:14px;line-height:1.71429;color:#767676}.glsr-field{margin-bottom:24px}.glsr-field-error,.glsr-field.glsr-required label:after,.glsr-field label[for^=rating]:after{color:#c0392b}.glsr-field input[type=email],.glsr-field input[type=text],.glsr-field input[type=url]{width:100%}@media screen and (max-width:1079px){#secondary .gl-star-rating[data-star-rating] .gl-star-rating-stars>span{width:21px;height:21px;background-size:21px}#secondary .gl-star-rating-ltr[data-star-rating] .gl-star-rating-stars>span:last-child{margin-right:0}#secondary .gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span:last-child{margin-left:0}}.footer-sidebar .glsr-review-response,.primary-sidebar .glsr-review-response{background-color:hsla(0,0%,100%,.075)}.footer-sidebar .glsr-review-response:before,.primary-sidebar .glsr-review-response:before{border-color:hsla(0,0%,100%,.075) transparent}.glsr-loader{bottom:100px}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/css/twenty-seventeen.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
.gl-star-rating[data-star-rating]{position:relative;display:block}.gl-star-rating[data-star-rating]>select{overflow:hidden;position:absolute!important;top:0;width:1px;height:1px;clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);white-space:nowrap}.gl-star-rating-ltr[data-star-rating]>select{left:0}.gl-star-rating-rtl[data-star-rating]>select{right:0}.gl-star-rating[data-star-rating]>select:focus+.gl-star-rating-stars:before{opacity:.5;display:block;position:absolute;width:100%;height:100%;content:"";outline:1px dotted currentColor;pointer-events:none}.gl-star-rating-stars{position:relative;display:inline-block;height:26px;vertical-align:middle;cursor:pointer}.gl-star-rating-stars>span{display:inline-block;width:24px;height:24px;background-size:24px;background-repeat:no-repeat;background-image:url(../img/star-empty.svg);margin:0 4px 0 0}.gl-star-rating-stars>span:last-of-type{margin-right:0}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span{margin:0 0 0 4px}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span:last-of-type{margin-left:0}.gl-star-rating-stars.s10>span:first-child,.gl-star-rating-stars.s20>span:nth-child(-1n+2),.gl-star-rating-stars.s30>span:nth-child(-1n+3),.gl-star-rating-stars.s40>span:nth-child(-1n+4),.gl-star-rating-stars.s50>span:nth-child(-1n+5),.gl-star-rating-stars.s60>span:nth-child(-1n+6),.gl-star-rating-stars.s70>span:nth-child(-1n+7),.gl-star-rating-stars.s80>span:nth-child(-1n+8),.gl-star-rating-stars.s90>span:nth-child(-1n+9),.gl-star-rating-stars.s100>span{background-image:url(../img/star-filled.svg)}.gl-star-rating-text{display:inline-block;position:relative;height:26px;line-height:26px;font-size:.8em;font-weight:600;color:#fff;background-color:#1a1a1a;white-space:nowrap;vertical-align:middle;padding:0 12px 0 6px;margin:0 0 0 12px}.gl-star-rating-text:before{position:absolute;top:0;left:-12px;width:0;height:0;content:"";border-style:solid;border-width:13px 12px 13px 0;border-color:transparent #1a1a1a transparent transparent}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text{padding:0 6px 0 12px;margin:0 12px 0 0}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text:before{left:unset;right:-12px;border-width:13px 0 13px 12px;border-color:transparent transparent transparent #1a1a1a}[id^=geminilabs-site-reviews].widget ul.glsr-reviews{list-style:none}[id^=geminilabs-site-reviews].widget .glsr-review-title,[id^=geminilabs-site-reviews].widget p{margin-bottom:1em}.glsr-reviews{position:relative}.glsr-reviews:after{content:"";display:table;clear:both}.glsr-ajax-navigation,.glsr-navigation,.glsr-review{opacity:1;transition:opacity .5s}.glsr-hide .glsr-ajax-navigation,.glsr-hide .glsr-navigation,.glsr-hide .glsr-review{opacity:0!important}.glsr-hide .glsr-loader{display:block}.glsr-review{margin-bottom:3em}.glsr-review p{white-space:pre-line;margin:0 0 1em}.glsr-review-assigned{display:block;font-style:italic}.glsr-review-date{font-style:italic}.glsr-review-date,.glsr-review-link{white-space:nowrap}.glsr-review-avatar{margin:-8px 0 0;width:36px;height:36px}.glsr-review-avatar img{height:100%;-o-object-fit:cover;object-fit:cover}.glsr-star-empty,.glsr-star-full,.glsr-star-half{display:inline-block;width:20px;height:20px;font-size:16px;vertical-align:sub;background-repeat:no-repeat;background-size:20px}@media screen and (min-width:56.875em){.glsr-widget [class*=glsr-star-]{width:16px;height:16px;background-size:16px}.glsr-widget .glsr-review-avatar{width:30px;height:30px}}.glsr-star-empty{background-image:url(../img/star-empty.svg)}.glsr-star-full{background-image:url(../img/star-filled.svg)}.glsr-star-half{background-image:url(../img/star-half.svg)}.glsr-hidden{display:none}.glsr-read-more{white-space:nowrap}.glsr-read-more:before{content:"\2026";margin-right:.5em}.glsr-visible+.glsr-read-more:before{content:""}.glsr-review-response{position:relative;font-size:.875em;background-color:rgba(0,0,0,.075);border-radius:2px;padding:1em;margin-top:1.5rem}.glsr-review-response p:last-of-type{margin-bottom:0}.glsr-review-response:before{content:"";display:block;position:absolute;top:-18px;height:0;width:0;border-style:solid;border-color:rgba(0,0,0,.075) transparent}.glsr-loader{display:none;position:absolute;bottom:0;left:calc(50% - 12px);width:24px;height:24px;border-radius:50%;animation:a .5s infinite linear;transform:translateZ(0);margin:0}.glsr-loader:after,.glsr-loader:before{content:"";position:absolute;width:8px;height:8px;background:rgba(0,0,0,.75);border-radius:50%}.glsr-loader:before{top:0;left:0}.glsr-loader:after{bottom:0;right:0}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.glsr-reviews .screen-reader-text{position:absolute;height:1px;width:1px;border:0;overflow:hidden;clip:rect(0 0 0 0);word-wrap:normal!important;padding:0;margin:-1px}.glsr-ltr [id^=geminilabs-site-reviews].widget ul.glsr-reviews{margin-left:0}.glsr-ltr .glsr-review-excerpt>span:not(:last-child),.glsr-ltr .glsr-review-meta>span:not(:last-child){margin-right:.5em}.glsr-ltr .glsr-review-avatar{float:left;margin-right:12px}.glsr-ltr .glsr-review-response:before{left:50px;border-width:0 24px 18px 0}.glsr-rtl [id^=geminilabs-site-reviews].widget ul.glsr-reviews{margin-right:0}.glsr-rtl .glsr-review-excerpt>span:not(:last-child),.glsr-rtl .glsr-review-meta>span:not(:last-child){margin-left:.5em}.glsr-rtl .glsr-review-avatar{float:right;margin-left:12px}.glsr-rtl .glsr-review-response:before{right:50px;border-width:0 0 18px 24px}.gl-star-rating[data-star-rating]{line-height:1}.glsr-field-messages{color:#1976d2}.glsr-has-error,.glsr-has-errors{color:#d32f2f}.glsr-field{margin-bottom:1em}.glsr-field-error{display:block;font-size:.875em;color:#d32f2f}.glsr-field ul{list-style-type:none}.glsr-field label{display:block}.glsr-field label[for^=terms]{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.glsr-field.glsr-required label:after,.glsr-field label[for^=rating]:after{content:"*";color:#d32f2f}.glsr-field select[name=rating]{display:block;height:26px}.glsr-field select[name=rating]:after,.glsr-field select[name=rating]:before{display:none!important}.glsr-recaptcha-holder{margin-top:1em}.glsr-field button[type=submit] span{display:none}.glsr-field button[type=submit][disabled] span{display:inline;position:relative}.glsr-field button[type=submit] span:after,.glsr-field button[type=submit] span:before{display:inline-block;position:absolute;top:50%;height:1em;width:1em;content:"";border:.2em solid currentColor;border-radius:100%;box-sizing:border-box;margin:-.5em auto 0;animation:b .6s infinite linear}.glsr-field button[type=submit] span:before{border-top-color:transparent;opacity:.5}.glsr-field button[type=submit] span:after{border-color:transparent;border-top-color:currentColor}@keyframes b{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.glsr-ltr .glsr-field.glsr-required label:after,.glsr-ltr .glsr-field label[for^=rating]:after{margin-left:.33em}.glsr-ltr .glsr-field input[type=checkbox]{margin-right:.25em}.glsr-ltr .glsr-field button[type=submit][disabled] span{margin-right:1.65em}.glsr-ltr .glsr-field button[type=submit] span:after,.glsr-ltr .glsr-field button[type=submit] span:before{left:0}.glsr-rtl .glsr-field.glsr-required label:after,.glsr-rtl .glsr-field label[for^=rating]:after{margin-right:.33em}.glsr-rtl .glsr-field input[type=checkbox]{margin-left:.25em}.glsr-rtl .glsr-field button[type=submit][disabled] span{margin-left:1.65em}.glsr-rtl .glsr-field button[type=submit] span:after,.glsr-rtl .glsr-field button[type=submit] span:before{right:0}.glsr-summary{position:relative;width:100%;max-width:400px;font-size:16px;line-height:1.5;margin-bottom:1em}.glsr-summary .glsr-review-rating{display:inline-block}.glsr-summary [class*=glsr-star-]{width:26px;height:26px;background-size:24px}.glsr-summary-rating{line-height:1.25;font-size:24px;font-weight:700}.glsr-summary-text{display:block;font-size:14px}.glsr-percentage-bars{position:relative;width:100%;max-width:400px;font-size:16px;line-height:1.5;margin-bottom:1em}.glsr-bar{display:table-row;white-space:nowrap}.glsr-bar>span{display:table-cell;vertical-align:middle}.glsr-bar-background{position:relative;width:100%}.glsr-bar-background:before{display:block;position:absolute;width:100%;height:12px;content:"";background:rgba(0,0,0,.075)}.glsr-bar-percent{position:relative;display:block;height:12px;background-color:#ffb900}.glsr-bar-count{text-align:right;font-size:14px}.glsr-ltr .glsr-review-rating,.glsr-ltr .glsr-summary-rating{margin-right:10px}.glsr-ltr .glsr-bar-label{padding-right:10px}.glsr-ltr .glsr-bar-count{padding-left:10px}.glsr-rtl .glsr-review-rating,.glsr-rtl .glsr-summary-rating{margin-left:10px}.glsr-rtl .glsr-bar-label{padding-left:10px}.glsr-rtl .glsr-bar-count{padding-right:10px}.glsr-rtl [class*=glsr-star-]{transform:scaleX(-1)}.glsr-loader{bottom:7em}@media screen and (min-width:48em){.glsr-loader{bottom:7.5em}}
|
assets/css/twenty-sixteen.css
CHANGED
@@ -1,8 +1 @@
|
|
1 |
-
/*!
|
2 |
-
* Star Rating
|
3 |
-
*
|
4 |
-
* Version: 1.3.0
|
5 |
-
* Author: Paul Ryley (http://geminilabs.io)
|
6 |
-
* URL: https://github.com/geminilabs/star-rating.js
|
7 |
-
* License: MIT
|
8 |
-
*/.glsr-field label:not([for^=terms]),.glsr-form-messages,.glsr-form-title{font-family:Montserrat,"Helvetica Neue",sans-serif}.gl-star-rating[data-star-rating]{position:relative;display:block}.gl-star-rating[data-star-rating]>select{position:absolute!important;top:0;left:0;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);visibility:visible}.gl-star-rating[data-star-rating] .gl-star-rating-stars{display:inline-block;height:26px;vertical-align:middle;cursor:pointer}.gl-star-rating[data-star-rating] .gl-star-rating-stars>span{display:inline-block;width:24px;height:24px;background-size:24px;background-repeat:no-repeat;background-image:url(../img/star-empty.svg);margin-right:4px}.gl-star-rating[data-star-rating] .gl-star-rating-stars.s100>span,.gl-star-rating[data-star-rating] .gl-star-rating-stars.s10>span:nth-child(1),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s20>span:nth-child(-1n+2),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s30>span:nth-child(-1n+3),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s40>span:nth-child(-1n+4),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s50>span:nth-child(-1n+5),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s60>span:nth-child(-1n+6),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s70>span:nth-child(-1n+7),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s80>span:nth-child(-1n+8),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s90>span:nth-child(-1n+9){background-image:url(../img/star-filled.svg)}.gl-star-rating[data-star-rating] .gl-star-rating-text{display:inline-block;position:relative;height:26px;line-height:26px;font-size:.8em;font-weight:600;color:#fff;background-color:#1a1a1a;white-space:nowrap;vertical-align:middle;padding:0 12px 0 6px;margin:0 0 0 12px}.gl-star-rating[data-star-rating] .gl-star-rating-text:before{position:absolute;top:0;left:-12px;width:0;height:0;content:"";border-style:solid;border-width:13px 12px 13px 0;border-color:transparent #1a1a1a transparent transparent}[id^=geminilabs-site-reviews].widget ul.glsr-reviews{list-style:none;margin-left:0}[id^=geminilabs-site-reviews].widget .glsr-review-title,[id^=geminilabs-site-reviews].widget p{margin-bottom:1em}.glsr-review{margin-bottom:2em}.glsr-review p{margin:0 0 1em}.glsr-review-date{font-style:italic}.glsr-review-meta>span:not(:last-child){margin-right:.5em}.glsr-review-link{white-space:nowrap}[class*=glsr-star-]{display:inline-block;width:16px;height:16px;font-size:16px;vertical-align:text-top;background-repeat:no-repeat;background-size:16px}.glsr-star-empty{background-image:url(../img/star-empty.svg)}.glsr-star-full{background-image:url(../img/star-filled.svg)}.glsr-star-half{background-image:url(../img/star-half.svg)}.gl-star-rating[data-star-rating]{line-height:1}.glsr-field-messages{color:#1976D2}.glsr-has-error{color:#D32F2F}.glsr-field ul{list-style-type:none}.glsr-field label{display:block}.glsr-field label[for^=terms]{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.glsr-field input[type=checkbox]{margin-right:.25em}.glsr-field select[name=rating]{display:block;height:26px;visibility:hidden}.glsr-form-title{font-size:23px;font-size:1.4375rem;font-weight:700;line-height:1.3125;border-top:4px solid #1a1a1a;padding-top:1.2173913043em;margin-bottom:1.2173913043em}.glsr-form-description{color:#686868;font-size:13px;font-size:.8125rem;line-height:1.6153846154;margin-bottom:2.1538461538em}.glsr-form-description span,.glsr-form-messages{color:#007acc}.gslr-has-errors{color:#e4002e}.glsr-field{margin-bottom:1.75em}.glsr-field-error{display:block;color:#e4002e;font-size:13px;font-size:.8125rem;line-height:1.6153846154}.glsr-field-error:first-child{margin-top:.5384615385em}.glsr-field label:not([for^=terms]){color:#686868;font-size:13px;font-size:.8125rem;letter-spacing:.0769230769em;line-height:1.6153846154;margin-bottom:.5384615385em;text-transform:uppercase}.glsr-field label[for^=rating]:after,.glsr-field.glsr-required label:after{content:"*";font-family:Merriweather,Georgia,serif;color:#007acc;margin-left:5px}.glsr-field ::-webkit-input-placeholder{font-family:Merriweather,Georgia,serif}.glsr-field :-moz-placeholder{font-family:Merriweather,Georgia,serif}.glsr-field ::-moz-placeholder{font-family:Merriweather,Georgia,serif}.glsr-field :-ms-input-placeholder{font-family:Merriweather,Georgia,serif}
|
1 |
+
.gl-star-rating[data-star-rating]{position:relative;display:block}.gl-star-rating[data-star-rating]>select{overflow:hidden;position:absolute!important;top:0;width:1px;height:1px;clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);white-space:nowrap}.gl-star-rating-ltr[data-star-rating]>select{left:0}.gl-star-rating-rtl[data-star-rating]>select{right:0}.gl-star-rating[data-star-rating]>select:focus+.gl-star-rating-stars:before{opacity:.5;display:block;position:absolute;width:100%;height:100%;content:"";outline:1px dotted currentColor;pointer-events:none}.gl-star-rating-stars{position:relative;display:inline-block;height:26px;vertical-align:middle;cursor:pointer}.gl-star-rating-stars>span{display:inline-block;width:24px;height:24px;background-size:24px;background-repeat:no-repeat;background-image:url(../img/star-empty.svg);margin:0 4px 0 0}.gl-star-rating-stars>span:last-of-type{margin-right:0}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span{margin:0 0 0 4px}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span:last-of-type{margin-left:0}.gl-star-rating-stars.s10>span:first-child,.gl-star-rating-stars.s20>span:nth-child(-1n+2),.gl-star-rating-stars.s30>span:nth-child(-1n+3),.gl-star-rating-stars.s40>span:nth-child(-1n+4),.gl-star-rating-stars.s50>span:nth-child(-1n+5),.gl-star-rating-stars.s60>span:nth-child(-1n+6),.gl-star-rating-stars.s70>span:nth-child(-1n+7),.gl-star-rating-stars.s80>span:nth-child(-1n+8),.gl-star-rating-stars.s90>span:nth-child(-1n+9),.gl-star-rating-stars.s100>span{background-image:url(../img/star-filled.svg)}.gl-star-rating-text{display:inline-block;position:relative;height:26px;line-height:26px;font-size:.8em;font-weight:600;color:#fff;background-color:#1a1a1a;white-space:nowrap;vertical-align:middle;padding:0 12px 0 6px;margin:0 0 0 12px}.gl-star-rating-text:before{position:absolute;top:0;left:-12px;width:0;height:0;content:"";border-style:solid;border-width:13px 12px 13px 0;border-color:transparent #1a1a1a transparent transparent}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text{padding:0 6px 0 12px;margin:0 12px 0 0}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text:before{left:unset;right:-12px;border-width:13px 0 13px 12px;border-color:transparent transparent transparent #1a1a1a}[id^=geminilabs-site-reviews].widget ul.glsr-reviews{list-style:none}[id^=geminilabs-site-reviews].widget .glsr-review-title,[id^=geminilabs-site-reviews].widget p{margin-bottom:1em}.glsr-reviews{position:relative}.glsr-reviews:after{content:"";display:table;clear:both}.glsr-ajax-navigation,.glsr-navigation,.glsr-review{opacity:1;transition:opacity .5s}.glsr-hide .glsr-ajax-navigation,.glsr-hide .glsr-navigation,.glsr-hide .glsr-review{opacity:0!important}.glsr-hide .glsr-loader{display:block}.glsr-review{margin-bottom:3em}.glsr-review p{white-space:pre-line;margin:0 0 1em}.glsr-review-assigned{display:block;font-style:italic}.glsr-review-date{font-style:italic}.glsr-review-date,.glsr-review-link{white-space:nowrap}.glsr-review-avatar{margin:-8px 0 0;width:36px;height:36px}.glsr-review-avatar img{height:100%;-o-object-fit:cover;object-fit:cover}.glsr-star-empty,.glsr-star-full,.glsr-star-half{display:inline-block;width:20px;height:20px;font-size:16px;vertical-align:sub;background-repeat:no-repeat;background-size:20px}@media screen and (min-width:56.875em){.glsr-widget [class*=glsr-star-]{width:16px;height:16px;background-size:16px}.glsr-widget .glsr-review-avatar{width:30px;height:30px}}.glsr-star-empty{background-image:url(../img/star-empty.svg)}.glsr-star-full{background-image:url(../img/star-filled.svg)}.glsr-star-half{background-image:url(../img/star-half.svg)}.glsr-hidden{display:none}.glsr-read-more{white-space:nowrap}.glsr-read-more:before{content:"\2026";margin-right:.5em}.glsr-visible+.glsr-read-more:before{content:""}.glsr-review-response{position:relative;font-size:.875em;background-color:rgba(0,0,0,.075);border-radius:2px;padding:1em;margin-top:1.5rem}.glsr-review-response p:last-of-type{margin-bottom:0}.glsr-review-response:before{content:"";display:block;position:absolute;top:-18px;height:0;width:0;border-style:solid;border-color:rgba(0,0,0,.075) transparent}.glsr-loader{display:none;position:absolute;bottom:0;left:calc(50% - 12px);width:24px;height:24px;border-radius:50%;animation:a .5s infinite linear;transform:translateZ(0);margin:0}.glsr-loader:after,.glsr-loader:before{content:"";position:absolute;width:8px;height:8px;background:rgba(0,0,0,.75);border-radius:50%}.glsr-loader:before{top:0;left:0}.glsr-loader:after{bottom:0;right:0}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.glsr-reviews .screen-reader-text{position:absolute;height:1px;width:1px;border:0;overflow:hidden;clip:rect(0 0 0 0);word-wrap:normal!important;padding:0;margin:-1px}.glsr-ltr [id^=geminilabs-site-reviews].widget ul.glsr-reviews{margin-left:0}.glsr-ltr .glsr-review-excerpt>span:not(:last-child),.glsr-ltr .glsr-review-meta>span:not(:last-child){margin-right:.5em}.glsr-ltr .glsr-review-avatar{float:left;margin-right:12px}.glsr-ltr .glsr-review-response:before{left:50px;border-width:0 24px 18px 0}.glsr-rtl [id^=geminilabs-site-reviews].widget ul.glsr-reviews{margin-right:0}.glsr-rtl .glsr-review-excerpt>span:not(:last-child),.glsr-rtl .glsr-review-meta>span:not(:last-child){margin-left:.5em}.glsr-rtl .glsr-review-avatar{float:right;margin-left:12px}.glsr-rtl .glsr-review-response:before{right:50px;border-width:0 0 18px 24px}.gl-star-rating[data-star-rating]{line-height:1}.glsr-field-messages{color:#1976d2}.glsr-has-error,.glsr-has-errors{color:#d32f2f}.glsr-field{margin-bottom:1em}.glsr-field-error{display:block;font-size:.875em;color:#d32f2f}.glsr-field ul{list-style-type:none}.glsr-field label{display:block}.glsr-field label[for^=terms]{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.glsr-field.glsr-required label:after,.glsr-field label[for^=rating]:after{content:"*";color:#d32f2f}.glsr-field select[name=rating]{display:block;height:26px}.glsr-field select[name=rating]:after,.glsr-field select[name=rating]:before{display:none!important}.glsr-recaptcha-holder{margin-top:1em}.glsr-field button[type=submit] span{display:none}.glsr-field button[type=submit][disabled] span{display:inline;position:relative}.glsr-field button[type=submit] span:after,.glsr-field button[type=submit] span:before{display:inline-block;position:absolute;top:50%;height:1em;width:1em;content:"";border:.2em solid currentColor;border-radius:100%;box-sizing:border-box;margin:-.5em auto 0;animation:b .6s infinite linear}.glsr-field button[type=submit] span:before{border-top-color:transparent;opacity:.5}.glsr-field button[type=submit] span:after{border-color:transparent;border-top-color:currentColor}@keyframes b{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.glsr-ltr .glsr-field.glsr-required label:after,.glsr-ltr .glsr-field label[for^=rating]:after{margin-left:.33em}.glsr-ltr .glsr-field input[type=checkbox]{margin-right:.25em}.glsr-ltr .glsr-field button[type=submit][disabled] span{margin-right:1.65em}.glsr-ltr .glsr-field button[type=submit] span:after,.glsr-ltr .glsr-field button[type=submit] span:before{left:0}.glsr-rtl .glsr-field.glsr-required label:after,.glsr-rtl .glsr-field label[for^=rating]:after{margin-right:.33em}.glsr-rtl .glsr-field input[type=checkbox]{margin-left:.25em}.glsr-rtl .glsr-field button[type=submit][disabled] span{margin-left:1.65em}.glsr-rtl .glsr-field button[type=submit] span:after,.glsr-rtl .glsr-field button[type=submit] span:before{right:0}.glsr-summary{position:relative;width:100%;max-width:400px;font-size:16px;line-height:1.5;margin-bottom:1em}.glsr-summary .glsr-review-rating{display:inline-block}.glsr-summary [class*=glsr-star-]{width:26px;height:26px;background-size:24px}.glsr-summary-rating{line-height:1.25;font-size:24px;font-weight:700}.glsr-summary-text{display:block;font-size:14px}.glsr-percentage-bars{position:relative;width:100%;max-width:400px;font-size:16px;line-height:1.5;margin-bottom:1em}.glsr-bar{display:table-row;white-space:nowrap}.glsr-bar>span{display:table-cell;vertical-align:middle}.glsr-bar-background{position:relative;width:100%}.glsr-bar-background:before{display:block;position:absolute;width:100%;height:12px;content:"";background:rgba(0,0,0,.075)}.glsr-bar-percent{position:relative;display:block;height:12px;background-color:#ffb900}.glsr-bar-count{text-align:right;font-size:14px}.glsr-ltr .glsr-review-rating,.glsr-ltr .glsr-summary-rating{margin-right:10px}.glsr-ltr .glsr-bar-label{padding-right:10px}.glsr-ltr .glsr-bar-count{padding-left:10px}.glsr-rtl .glsr-review-rating,.glsr-rtl .glsr-summary-rating{margin-left:10px}.glsr-rtl .glsr-bar-label{padding-left:10px}.glsr-rtl .glsr-bar-count{padding-right:10px}.glsr-rtl [class*=glsr-star-]{transform:scaleX(-1)}.glsr-form-title{font-family:Montserrat,"Helvetica Neue",sans-serif;font-size:23px;font-size:1.4375rem;font-weight:700;line-height:1.3125;border-top:4px solid #1a1a1a;padding-top:1.21739em;margin-bottom:1.21739em}.glsr-form-description{color:#686868;font-size:13px;font-size:.8125rem;line-height:1.61538;margin-bottom:2.15385em}.glsr-form-description span{color:#007acc}.glsr-form-messages{color:#007acc;font-family:Montserrat,"Helvetica Neue",sans-serif}.gslr-has-errors{color:#e4002e}.glsr-field{margin-bottom:1.75em}.glsr-field-error{color:#e4002e;font-size:13px;font-size:.8125rem;line-height:1.61538}.glsr-field-error:first-child{margin-top:.53846em}.glsr-field label:not([for^=terms]){font-family:Montserrat,"Helvetica Neue",sans-serif;color:#686868;font-size:13px;font-size:.8125rem;letter-spacing:.07692em;line-height:1.61538;margin-bottom:.53846em;text-transform:uppercase}.glsr-field.glsr-required label:after,.glsr-field label[for^=rating]:after{font-family:Merriweather,Georgia,serif;color:#007acc}.glsr-field ::-webkit-input-placeholder{font-family:Merriweather,Georgia,serif}.glsr-field :-moz-placeholder,.glsr-field ::-moz-placeholder{font-family:Merriweather,Georgia,serif}.glsr-field :-ms-input-placeholder{font-family:Merriweather,Georgia,serif}.glsr-loader{bottom:2.947368421em;font-size:1.1875rem;margin:14px 0}@media screen and (min-width:44.375em){.glsr-loader{bottom:4.421052632em}}@media screen and (min-width:61.5625em){.glsr-loader{bottom:5.894736842em}}.glsr-ltr .glsr-field.glsr-required label:after,.glsr-ltr .glsr-field label[for^=rating]:after{margin-left:5px}.glsr-rtl .glsr-field.glsr-required label:after,.glsr-rtl .glsr-field label[for^=rating]:after{margin-right:5px}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/css/twenty-ten.css
CHANGED
@@ -1,8 +1 @@
|
|
1 |
-
|
2 |
-
* Star Rating
|
3 |
-
*
|
4 |
-
* Version: 1.3.0
|
5 |
-
* Author: Paul Ryley (http://geminilabs.io)
|
6 |
-
* URL: https://github.com/geminilabs/star-rating.js
|
7 |
-
* License: MIT
|
8 |
-
*/.gl-star-rating[data-star-rating]{position:relative;display:block}.gl-star-rating[data-star-rating]>select{position:absolute!important;top:0;left:0;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);visibility:visible}.gl-star-rating[data-star-rating] .gl-star-rating-stars{display:inline-block;height:26px;vertical-align:middle;cursor:pointer}.gl-star-rating[data-star-rating] .gl-star-rating-stars>span{display:inline-block;width:24px;height:24px;background-size:24px;background-repeat:no-repeat;background-image:url(../img/star-empty.svg);margin-right:4px}.gl-star-rating[data-star-rating] .gl-star-rating-stars.s100>span,.gl-star-rating[data-star-rating] .gl-star-rating-stars.s10>span:nth-child(1),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s20>span:nth-child(-1n+2),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s30>span:nth-child(-1n+3),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s40>span:nth-child(-1n+4),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s50>span:nth-child(-1n+5),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s60>span:nth-child(-1n+6),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s70>span:nth-child(-1n+7),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s80>span:nth-child(-1n+8),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s90>span:nth-child(-1n+9){background-image:url(../img/star-filled.svg)}.gl-star-rating[data-star-rating] .gl-star-rating-text{display:inline-block;position:relative;height:26px;line-height:26px;font-size:.8em;font-weight:600;color:#fff;background-color:#1a1a1a;white-space:nowrap;vertical-align:middle;padding:0 12px 0 6px;margin:0 0 0 12px}.gl-star-rating[data-star-rating] .gl-star-rating-text:before{position:absolute;top:0;left:-12px;width:0;height:0;content:"";border-style:solid;border-width:13px 12px 13px 0;border-color:transparent #1a1a1a transparent transparent}[id^=geminilabs-site-reviews].widget ul.glsr-reviews{list-style:none;margin-left:0}[id^=geminilabs-site-reviews].widget .glsr-review-title,[id^=geminilabs-site-reviews].widget p{margin-bottom:1em}.glsr-review{margin-bottom:2em}.glsr-review p{margin:0 0 1em}.glsr-review-date{font-style:italic}.glsr-review-meta>span:not(:last-child){margin-right:.5em}.glsr-review-link{white-space:nowrap}[class*=glsr-star-]{display:inline-block;width:16px;height:16px;font-size:16px;vertical-align:text-top;background-repeat:no-repeat;background-size:16px}.glsr-star-empty{background-image:url(../img/star-empty.svg)}.glsr-star-full{background-image:url(../img/star-filled.svg)}.glsr-star-half{background-image:url(../img/star-half.svg)}.gl-star-rating[data-star-rating]{line-height:1}.glsr-field-messages{color:#1976D2}.glsr-has-error{color:#D32F2F}.glsr-field{margin-bottom:1em}.glsr-field-error{display:block;font-size:.875em}.glsr-field ul{list-style-type:none}.glsr-field label{display:block}.glsr-field label[for^=terms]{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.glsr-field label[for^=rating]:after,.glsr-field.glsr-required label:after{content:"*";margin-left:.33em}.glsr-field select[name=rating]{display:block;height:26px;visibility:hidden}.glsr-form-messages{color:#2b54d6}.gslr-has-errors{color:#ff4b33}.shortcode-reviews-form{position:relative;border-top:1px solid #e7e7e7;margin:24px 0}#content .glsr-form-title,.glsr-form-title{color:#000;font-size:20px;font-weight:600;font-family:"Helvetica Neue",Arial,Helvetica,"Nimbus Sans L",sans-serif;margin:18px 0}.glsr-field label[for^=rating]:after,.glsr-field-error,.glsr-field.glsr-required label:after,.glsr-form-description span{color:#ff4b33}.glsr-field{margin:0 0 9px}.glsr-field input[type=text],.glsr-field input[type=email],.glsr-field input[type=url]{width:98%;margin:0}.glsr-field input[type=checkbox]{margin-right:.25em}.glsr-field textarea{width:98%}
|
1 |
+
.gl-star-rating[data-star-rating]{position:relative;display:block}.gl-star-rating[data-star-rating]>select{overflow:hidden;position:absolute!important;top:0;width:1px;height:1px;clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);white-space:nowrap}.gl-star-rating-ltr[data-star-rating]>select{left:0}.gl-star-rating-rtl[data-star-rating]>select{right:0}.gl-star-rating[data-star-rating]>select:focus+.gl-star-rating-stars:before{opacity:.5;display:block;position:absolute;width:100%;height:100%;content:"";outline:1px dotted currentColor;pointer-events:none}.gl-star-rating-stars{position:relative;display:inline-block;height:26px;vertical-align:middle;cursor:pointer}.gl-star-rating-stars>span{display:inline-block;width:24px;height:24px;background-size:24px;background-repeat:no-repeat;background-image:url(../img/star-empty.svg);margin:0 4px 0 0}.gl-star-rating-stars>span:last-of-type{margin-right:0}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span{margin:0 0 0 4px}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span:last-of-type{margin-left:0}.gl-star-rating-stars.s10>span:first-child,.gl-star-rating-stars.s20>span:nth-child(-1n+2),.gl-star-rating-stars.s30>span:nth-child(-1n+3),.gl-star-rating-stars.s40>span:nth-child(-1n+4),.gl-star-rating-stars.s50>span:nth-child(-1n+5),.gl-star-rating-stars.s60>span:nth-child(-1n+6),.gl-star-rating-stars.s70>span:nth-child(-1n+7),.gl-star-rating-stars.s80>span:nth-child(-1n+8),.gl-star-rating-stars.s90>span:nth-child(-1n+9),.gl-star-rating-stars.s100>span{background-image:url(../img/star-filled.svg)}.gl-star-rating-text{display:inline-block;position:relative;height:26px;line-height:26px;font-size:.8em;font-weight:600;color:#fff;background-color:#1a1a1a;white-space:nowrap;vertical-align:middle;padding:0 12px 0 6px;margin:0 0 0 12px}.gl-star-rating-text:before{position:absolute;top:0;left:-12px;width:0;height:0;content:"";border-style:solid;border-width:13px 12px 13px 0;border-color:transparent #1a1a1a transparent transparent}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text{padding:0 6px 0 12px;margin:0 12px 0 0}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text:before{left:unset;right:-12px;border-width:13px 0 13px 12px;border-color:transparent transparent transparent #1a1a1a}[id^=geminilabs-site-reviews].widget ul.glsr-reviews{list-style:none}[id^=geminilabs-site-reviews].widget .glsr-review-title,[id^=geminilabs-site-reviews].widget p{margin-bottom:1em}.glsr-reviews{position:relative}.glsr-reviews:after{content:"";display:table;clear:both}.glsr-ajax-navigation,.glsr-navigation,.glsr-review{opacity:1;transition:opacity .5s}.glsr-hide .glsr-ajax-navigation,.glsr-hide .glsr-navigation,.glsr-hide .glsr-review{opacity:0!important}.glsr-hide .glsr-loader{display:block}.glsr-review{margin-bottom:3em}.glsr-review p{white-space:pre-line;margin:0 0 1em}.glsr-review-assigned{display:block;font-style:italic}.glsr-review-date{font-style:italic}.glsr-review-date,.glsr-review-link{white-space:nowrap}.glsr-review-avatar{margin:-8px 0 0;width:36px;height:36px}.glsr-review-avatar img{height:100%;-o-object-fit:cover;object-fit:cover}.glsr-star-empty,.glsr-star-full,.glsr-star-half{display:inline-block;width:20px;height:20px;font-size:16px;vertical-align:sub;background-repeat:no-repeat;background-size:20px}@media screen and (min-width:56.875em){.glsr-widget [class*=glsr-star-]{width:16px;height:16px;background-size:16px}.glsr-widget .glsr-review-avatar{width:30px;height:30px}}.glsr-star-empty{background-image:url(../img/star-empty.svg)}.glsr-star-full{background-image:url(../img/star-filled.svg)}.glsr-star-half{background-image:url(../img/star-half.svg)}.glsr-hidden{display:none}.glsr-read-more{white-space:nowrap}.glsr-read-more:before{content:"\2026";margin-right:.5em}.glsr-visible+.glsr-read-more:before{content:""}.glsr-review-response{position:relative;font-size:.875em;background-color:rgba(0,0,0,.075);border-radius:2px;padding:1em;margin-top:1.5rem}.glsr-review-response p:last-of-type{margin-bottom:0}.glsr-review-response:before{content:"";display:block;position:absolute;top:-18px;height:0;width:0;border-style:solid;border-color:rgba(0,0,0,.075) transparent}.glsr-loader{display:none;position:absolute;bottom:0;left:calc(50% - 12px);width:24px;height:24px;border-radius:50%;animation:a .5s infinite linear;transform:translateZ(0);margin:0}.glsr-loader:after,.glsr-loader:before{content:"";position:absolute;width:8px;height:8px;background:rgba(0,0,0,.75);border-radius:50%}.glsr-loader:before{top:0;left:0}.glsr-loader:after{bottom:0;right:0}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.glsr-reviews .screen-reader-text{position:absolute;height:1px;width:1px;border:0;overflow:hidden;clip:rect(0 0 0 0);word-wrap:normal!important;padding:0;margin:-1px}.glsr-ltr [id^=geminilabs-site-reviews].widget ul.glsr-reviews{margin-left:0}.glsr-ltr .glsr-review-excerpt>span:not(:last-child),.glsr-ltr .glsr-review-meta>span:not(:last-child){margin-right:.5em}.glsr-ltr .glsr-review-avatar{float:left;margin-right:12px}.glsr-ltr .glsr-review-response:before{left:50px;border-width:0 24px 18px 0}.glsr-rtl [id^=geminilabs-site-reviews].widget ul.glsr-reviews{margin-right:0}.glsr-rtl .glsr-review-excerpt>span:not(:last-child),.glsr-rtl .glsr-review-meta>span:not(:last-child){margin-left:.5em}.glsr-rtl .glsr-review-avatar{float:right;margin-left:12px}.glsr-rtl .glsr-review-response:before{right:50px;border-width:0 0 18px 24px}.gl-star-rating[data-star-rating]{line-height:1}.glsr-field-messages{color:#1976d2}.glsr-has-error,.glsr-has-errors{color:#d32f2f}.glsr-field{margin-bottom:1em}.glsr-field-error{display:block;font-size:.875em;color:#d32f2f}.glsr-field ul{list-style-type:none}.glsr-field label{display:block}.glsr-field label[for^=terms]{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.glsr-field.glsr-required label:after,.glsr-field label[for^=rating]:after{content:"*";color:#d32f2f}.glsr-field select[name=rating]{display:block;height:26px}.glsr-field select[name=rating]:after,.glsr-field select[name=rating]:before{display:none!important}.glsr-recaptcha-holder{margin-top:1em}.glsr-field button[type=submit] span{display:none}.glsr-field button[type=submit][disabled] span{display:inline;position:relative}.glsr-field button[type=submit] span:after,.glsr-field button[type=submit] span:before{display:inline-block;position:absolute;top:50%;height:1em;width:1em;content:"";border:.2em solid currentColor;border-radius:100%;box-sizing:border-box;margin:-.5em auto 0;animation:b .6s infinite linear}.glsr-field button[type=submit] span:before{border-top-color:transparent;opacity:.5}.glsr-field button[type=submit] span:after{border-color:transparent;border-top-color:currentColor}@keyframes b{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.glsr-ltr .glsr-field.glsr-required label:after,.glsr-ltr .glsr-field label[for^=rating]:after{margin-left:.33em}.glsr-ltr .glsr-field input[type=checkbox]{margin-right:.25em}.glsr-ltr .glsr-field button[type=submit][disabled] span{margin-right:1.65em}.glsr-ltr .glsr-field button[type=submit] span:after,.glsr-ltr .glsr-field button[type=submit] span:before{left:0}.glsr-rtl .glsr-field.glsr-required label:after,.glsr-rtl .glsr-field label[for^=rating]:after{margin-right:.33em}.glsr-rtl .glsr-field input[type=checkbox]{margin-left:.25em}.glsr-rtl .glsr-field button[type=submit][disabled] span{margin-left:1.65em}.glsr-rtl .glsr-field button[type=submit] span:after,.glsr-rtl .glsr-field button[type=submit] span:before{right:0}.glsr-summary{position:relative;width:100%;max-width:400px;font-size:16px;line-height:1.5;margin-bottom:1em}.glsr-summary .glsr-review-rating{display:inline-block}.glsr-summary [class*=glsr-star-]{width:26px;height:26px;background-size:24px}.glsr-summary-rating{line-height:1.25;font-size:24px;font-weight:700}.glsr-summary-text{display:block;font-size:14px}.glsr-percentage-bars{position:relative;width:100%;max-width:400px;font-size:16px;line-height:1.5;margin-bottom:1em}.glsr-bar{display:table-row;white-space:nowrap}.glsr-bar>span{display:table-cell;vertical-align:middle}.glsr-bar-background{position:relative;width:100%}.glsr-bar-background:before{display:block;position:absolute;width:100%;height:12px;content:"";background:rgba(0,0,0,.075)}.glsr-bar-percent{position:relative;display:block;height:12px;background-color:#ffb900}.glsr-bar-count{text-align:right;font-size:14px}.glsr-ltr .glsr-review-rating,.glsr-ltr .glsr-summary-rating{margin-right:10px}.glsr-ltr .glsr-bar-label{padding-right:10px}.glsr-ltr .glsr-bar-count{padding-left:10px}.glsr-rtl .glsr-review-rating,.glsr-rtl .glsr-summary-rating{margin-left:10px}.glsr-rtl .glsr-bar-label{padding-left:10px}.glsr-rtl .glsr-bar-count{padding-right:10px}.glsr-rtl [class*=glsr-star-]{transform:scaleX(-1)}.glsr-form-messages{color:#2b54d6}.gslr-has-errors{color:#ff4b33}.shortcode-reviews-form{position:relative;border-top:1px solid #e7e7e7;margin:24px 0}#content .glsr-form-title,.glsr-form-title{color:#000;font-size:20px;font-weight:600;font-family:"Helvetica Neue",Arial,Helvetica,"Nimbus Sans L",sans-serif;margin:18px 0}.glsr-form-description span{color:#ff4b33}.glsr-field{margin:0 0 9px}.glsr-field-error,.glsr-field.glsr-required label:after,.glsr-field label[for^=rating]:after{color:#ff4b33}.glsr-field input[type=email],.glsr-field input[type=text],.glsr-field input[type=url]{width:98%;margin:0}.glsr-field textarea{width:98%}#content .glsr-review-response p{margin-bottom:1em}#content .glsr-review-response p:last-of-type{margin-bottom:0}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/css/twenty-thirteen.css
CHANGED
@@ -1,8 +1 @@
|
|
1 |
-
|
2 |
-
* Star Rating
|
3 |
-
*
|
4 |
-
* Version: 1.3.0
|
5 |
-
* Author: Paul Ryley (http://geminilabs.io)
|
6 |
-
* URL: https://github.com/geminilabs/star-rating.js
|
7 |
-
* License: MIT
|
8 |
-
*/.gl-star-rating[data-star-rating]{position:relative;display:block}.gl-star-rating[data-star-rating]>select{position:absolute!important;top:0;left:0;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);visibility:visible}.gl-star-rating[data-star-rating] .gl-star-rating-stars{display:inline-block;height:26px;vertical-align:middle;cursor:pointer}.gl-star-rating[data-star-rating] .gl-star-rating-stars>span{display:inline-block;width:24px;height:24px;background-size:24px;background-repeat:no-repeat;background-image:url(../img/star-empty.svg);margin-right:4px}.gl-star-rating[data-star-rating] .gl-star-rating-stars.s100>span,.gl-star-rating[data-star-rating] .gl-star-rating-stars.s10>span:nth-child(1),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s20>span:nth-child(-1n+2),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s30>span:nth-child(-1n+3),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s40>span:nth-child(-1n+4),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s50>span:nth-child(-1n+5),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s60>span:nth-child(-1n+6),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s70>span:nth-child(-1n+7),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s80>span:nth-child(-1n+8),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s90>span:nth-child(-1n+9){background-image:url(../img/star-filled.svg)}.gl-star-rating[data-star-rating] .gl-star-rating-text{display:inline-block;position:relative;height:26px;line-height:26px;font-size:.8em;font-weight:600;color:#fff;background-color:#1a1a1a;white-space:nowrap;vertical-align:middle;padding:0 12px 0 6px;margin:0 0 0 12px}.gl-star-rating[data-star-rating] .gl-star-rating-text:before{position:absolute;top:0;left:-12px;width:0;height:0;content:"";border-style:solid;border-width:13px 12px 13px 0;border-color:transparent #1a1a1a transparent transparent}[id^=geminilabs-site-reviews].widget ul.glsr-reviews{list-style:none;margin-left:0}[id^=geminilabs-site-reviews].widget .glsr-review-title,[id^=geminilabs-site-reviews].widget p{margin-bottom:1em}.glsr-review{margin-bottom:2em}.glsr-review p{margin:0 0 1em}.glsr-review-date{font-style:italic}.glsr-review-meta>span:not(:last-child){margin-right:.5em}.glsr-review-link{white-space:nowrap}[class*=glsr-star-]{display:inline-block;width:16px;height:16px;font-size:16px;vertical-align:text-top;background-repeat:no-repeat;background-size:16px}.glsr-star-empty{background-image:url(../img/star-empty.svg)}.glsr-star-full{background-image:url(../img/star-filled.svg)}.glsr-star-half{background-image:url(../img/star-half.svg)}.gl-star-rating[data-star-rating]{line-height:1}.glsr-field-messages{color:#1976D2}.glsr-has-error{color:#D32F2F}.glsr-field-error{display:block;font-size:.875em}.glsr-field ul{list-style-type:none}.glsr-field label{display:block}.glsr-field label[for^=terms]{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.glsr-field label[for^=rating]:after,.glsr-field.glsr-required label:after{content:"*";margin-left:.33em}.glsr-field input[type=checkbox]{margin-right:.25em}.glsr-field select[name=rating]{display:block;height:26px;visibility:hidden}.glsr-form-messages{color:#21759b}.glsr-field label[for^=rating]:after,.glsr-field-error,.glsr-field.glsr-required label:after,.glsr-form-description span,.gslr-has-errors{color:#ed331c}.glsr-field{margin-bottom:12px}.glsr-field input[type=text],.glsr-field input[type=email],.glsr-field input[type=url],.glsr-field textarea{width:100%}
|
1 |
+
.gl-star-rating[data-star-rating]{position:relative;display:block}.gl-star-rating[data-star-rating]>select{overflow:hidden;position:absolute!important;top:0;width:1px;height:1px;clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);white-space:nowrap}.gl-star-rating-ltr[data-star-rating]>select{left:0}.gl-star-rating-rtl[data-star-rating]>select{right:0}.gl-star-rating[data-star-rating]>select:focus+.gl-star-rating-stars:before{opacity:.5;display:block;position:absolute;width:100%;height:100%;content:"";outline:1px dotted currentColor;pointer-events:none}.gl-star-rating-stars{position:relative;display:inline-block;height:26px;vertical-align:middle;cursor:pointer}.gl-star-rating-stars>span{display:inline-block;width:24px;height:24px;background-size:24px;background-repeat:no-repeat;background-image:url(../img/star-empty.svg);margin:0 4px 0 0}.gl-star-rating-stars>span:last-of-type{margin-right:0}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span{margin:0 0 0 4px}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span:last-of-type{margin-left:0}.gl-star-rating-stars.s10>span:first-child,.gl-star-rating-stars.s20>span:nth-child(-1n+2),.gl-star-rating-stars.s30>span:nth-child(-1n+3),.gl-star-rating-stars.s40>span:nth-child(-1n+4),.gl-star-rating-stars.s50>span:nth-child(-1n+5),.gl-star-rating-stars.s60>span:nth-child(-1n+6),.gl-star-rating-stars.s70>span:nth-child(-1n+7),.gl-star-rating-stars.s80>span:nth-child(-1n+8),.gl-star-rating-stars.s90>span:nth-child(-1n+9),.gl-star-rating-stars.s100>span{background-image:url(../img/star-filled.svg)}.gl-star-rating-text{display:inline-block;position:relative;height:26px;line-height:26px;font-size:.8em;font-weight:600;color:#fff;background-color:#1a1a1a;white-space:nowrap;vertical-align:middle;padding:0 12px 0 6px;margin:0 0 0 12px}.gl-star-rating-text:before{position:absolute;top:0;left:-12px;width:0;height:0;content:"";border-style:solid;border-width:13px 12px 13px 0;border-color:transparent #1a1a1a transparent transparent}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text{padding:0 6px 0 12px;margin:0 12px 0 0}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text:before{left:unset;right:-12px;border-width:13px 0 13px 12px;border-color:transparent transparent transparent #1a1a1a}[id^=geminilabs-site-reviews].widget ul.glsr-reviews{list-style:none}[id^=geminilabs-site-reviews].widget .glsr-review-title,[id^=geminilabs-site-reviews].widget p{margin-bottom:1em}.glsr-reviews{position:relative}.glsr-reviews:after{content:"";display:table;clear:both}.glsr-ajax-navigation,.glsr-navigation,.glsr-review{opacity:1;transition:opacity .5s}.glsr-hide .glsr-ajax-navigation,.glsr-hide .glsr-navigation,.glsr-hide .glsr-review{opacity:0!important}.glsr-hide .glsr-loader{display:block}.glsr-review{margin-bottom:3em}.glsr-review p{white-space:pre-line;margin:0 0 1em}.glsr-review-assigned{display:block;font-style:italic}.glsr-review-date{font-style:italic}.glsr-review-date,.glsr-review-link{white-space:nowrap}.glsr-review-avatar{margin:-8px 0 0;width:36px;height:36px}.glsr-review-avatar img{height:100%;-o-object-fit:cover;object-fit:cover}.glsr-star-empty,.glsr-star-full,.glsr-star-half{display:inline-block;width:20px;height:20px;font-size:16px;vertical-align:sub;background-repeat:no-repeat;background-size:20px}@media screen and (min-width:56.875em){.glsr-widget [class*=glsr-star-]{width:16px;height:16px;background-size:16px}.glsr-widget .glsr-review-avatar{width:30px;height:30px}}.glsr-star-empty{background-image:url(../img/star-empty.svg)}.glsr-star-full{background-image:url(../img/star-filled.svg)}.glsr-star-half{background-image:url(../img/star-half.svg)}.glsr-hidden{display:none}.glsr-read-more{white-space:nowrap}.glsr-read-more:before{content:"\2026";margin-right:.5em}.glsr-visible+.glsr-read-more:before{content:""}.glsr-review-response{position:relative;font-size:.875em;background-color:rgba(0,0,0,.075);border-radius:2px;padding:1em;margin-top:1.5rem}.glsr-review-response p:last-of-type{margin-bottom:0}.glsr-review-response:before{content:"";display:block;position:absolute;top:-18px;height:0;width:0;border-style:solid;border-color:rgba(0,0,0,.075) transparent}.glsr-loader{display:none;position:absolute;bottom:0;left:calc(50% - 12px);width:24px;height:24px;border-radius:50%;animation:a .5s infinite linear;transform:translateZ(0);margin:0}.glsr-loader:after,.glsr-loader:before{content:"";position:absolute;width:8px;height:8px;background:rgba(0,0,0,.75);border-radius:50%}.glsr-loader:before{top:0;left:0}.glsr-loader:after{bottom:0;right:0}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.glsr-reviews .screen-reader-text{position:absolute;height:1px;width:1px;border:0;overflow:hidden;clip:rect(0 0 0 0);word-wrap:normal!important;padding:0;margin:-1px}.glsr-ltr [id^=geminilabs-site-reviews].widget ul.glsr-reviews{margin-left:0}.glsr-ltr .glsr-review-excerpt>span:not(:last-child),.glsr-ltr .glsr-review-meta>span:not(:last-child){margin-right:.5em}.glsr-ltr .glsr-review-avatar{float:left;margin-right:12px}.glsr-ltr .glsr-review-response:before{left:50px;border-width:0 24px 18px 0}.glsr-rtl [id^=geminilabs-site-reviews].widget ul.glsr-reviews{margin-right:0}.glsr-rtl .glsr-review-excerpt>span:not(:last-child),.glsr-rtl .glsr-review-meta>span:not(:last-child){margin-left:.5em}.glsr-rtl .glsr-review-avatar{float:right;margin-left:12px}.glsr-rtl .glsr-review-response:before{right:50px;border-width:0 0 18px 24px}.gl-star-rating[data-star-rating]{line-height:1}.glsr-field-messages{color:#1976d2}.glsr-has-error,.glsr-has-errors{color:#d32f2f}.glsr-field{margin-bottom:1em}.glsr-field-error{display:block;font-size:.875em;color:#d32f2f}.glsr-field ul{list-style-type:none}.glsr-field label{display:block}.glsr-field label[for^=terms]{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.glsr-field.glsr-required label:after,.glsr-field label[for^=rating]:after{content:"*";color:#d32f2f}.glsr-field select[name=rating]{display:block;height:26px}.glsr-field select[name=rating]:after,.glsr-field select[name=rating]:before{display:none!important}.glsr-recaptcha-holder{margin-top:1em}.glsr-field button[type=submit] span{display:none}.glsr-field button[type=submit][disabled] span{display:inline;position:relative}.glsr-field button[type=submit] span:after,.glsr-field button[type=submit] span:before{display:inline-block;position:absolute;top:50%;height:1em;width:1em;content:"";border:.2em solid currentColor;border-radius:100%;box-sizing:border-box;margin:-.5em auto 0;animation:b .6s infinite linear}.glsr-field button[type=submit] span:before{border-top-color:transparent;opacity:.5}.glsr-field button[type=submit] span:after{border-color:transparent;border-top-color:currentColor}@keyframes b{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.glsr-ltr .glsr-field.glsr-required label:after,.glsr-ltr .glsr-field label[for^=rating]:after{margin-left:.33em}.glsr-ltr .glsr-field input[type=checkbox]{margin-right:.25em}.glsr-ltr .glsr-field button[type=submit][disabled] span{margin-right:1.65em}.glsr-ltr .glsr-field button[type=submit] span:after,.glsr-ltr .glsr-field button[type=submit] span:before{left:0}.glsr-rtl .glsr-field.glsr-required label:after,.glsr-rtl .glsr-field label[for^=rating]:after{margin-right:.33em}.glsr-rtl .glsr-field input[type=checkbox]{margin-left:.25em}.glsr-rtl .glsr-field button[type=submit][disabled] span{margin-left:1.65em}.glsr-rtl .glsr-field button[type=submit] span:after,.glsr-rtl .glsr-field button[type=submit] span:before{right:0}.glsr-summary{position:relative;width:100%;max-width:400px;font-size:16px;line-height:1.5;margin-bottom:1em}.glsr-summary .glsr-review-rating{display:inline-block}.glsr-summary [class*=glsr-star-]{width:26px;height:26px;background-size:24px}.glsr-summary-rating{line-height:1.25;font-size:24px;font-weight:700}.glsr-summary-text{display:block;font-size:14px}.glsr-percentage-bars{position:relative;width:100%;max-width:400px;font-size:16px;line-height:1.5;margin-bottom:1em}.glsr-bar{display:table-row;white-space:nowrap}.glsr-bar>span{display:table-cell;vertical-align:middle}.glsr-bar-background{position:relative;width:100%}.glsr-bar-background:before{display:block;position:absolute;width:100%;height:12px;content:"";background:rgba(0,0,0,.075)}.glsr-bar-percent{position:relative;display:block;height:12px;background-color:#ffb900}.glsr-bar-count{text-align:right;font-size:14px}.glsr-ltr .glsr-review-rating,.glsr-ltr .glsr-summary-rating{margin-right:10px}.glsr-ltr .glsr-bar-label{padding-right:10px}.glsr-ltr .glsr-bar-count{padding-left:10px}.glsr-rtl .glsr-review-rating,.glsr-rtl .glsr-summary-rating{margin-left:10px}.glsr-rtl .glsr-bar-label{padding-left:10px}.glsr-rtl .glsr-bar-count{padding-right:10px}.glsr-rtl [class*=glsr-star-]{transform:scaleX(-1)}.glsr-form-messages{color:#21759b}.glsr-form-description span,.gslr-has-errors{color:#ed331c}.glsr-field{margin-bottom:12px}.glsr-field-error,.glsr-field.glsr-required label:after,.glsr-field label[for^=rating]:after{color:#ed331c}.glsr-field input[type=email],.glsr-field input[type=text],.glsr-field input[type=url],.glsr-field textarea{width:100%}#secondary .glsr-review-response{background-color:hsla(0,0%,100%,.075)}#secondary .glsr-review-response:before{border-color:hsla(0,0%,100%,.075) transparent}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/css/twenty-twelve.css
CHANGED
@@ -1,8 +1 @@
|
|
1 |
-
|
2 |
-
* Star Rating
|
3 |
-
*
|
4 |
-
* Version: 1.3.0
|
5 |
-
* Author: Paul Ryley (http://geminilabs.io)
|
6 |
-
* URL: https://github.com/geminilabs/star-rating.js
|
7 |
-
* License: MIT
|
8 |
-
*/.gl-star-rating[data-star-rating]{position:relative;display:block}.gl-star-rating[data-star-rating]>select{position:absolute!important;top:0;left:0;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);visibility:visible}.gl-star-rating[data-star-rating] .gl-star-rating-stars{display:inline-block;height:26px;vertical-align:middle;cursor:pointer}.gl-star-rating[data-star-rating] .gl-star-rating-stars>span{display:inline-block;width:24px;height:24px;background-size:24px;background-repeat:no-repeat;background-image:url(../img/star-empty.svg);margin-right:4px}.gl-star-rating[data-star-rating] .gl-star-rating-stars.s100>span,.gl-star-rating[data-star-rating] .gl-star-rating-stars.s10>span:nth-child(1),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s20>span:nth-child(-1n+2),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s30>span:nth-child(-1n+3),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s40>span:nth-child(-1n+4),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s50>span:nth-child(-1n+5),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s60>span:nth-child(-1n+6),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s70>span:nth-child(-1n+7),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s80>span:nth-child(-1n+8),.gl-star-rating[data-star-rating] .gl-star-rating-stars.s90>span:nth-child(-1n+9){background-image:url(../img/star-filled.svg)}.gl-star-rating[data-star-rating] .gl-star-rating-text{display:inline-block;position:relative;height:26px;line-height:26px;font-size:.8em;font-weight:600;color:#fff;background-color:#1a1a1a;white-space:nowrap;vertical-align:middle;padding:0 12px 0 6px;margin:0 0 0 12px}.gl-star-rating[data-star-rating] .gl-star-rating-text:before{position:absolute;top:0;left:-12px;width:0;height:0;content:"";border-style:solid;border-width:13px 12px 13px 0;border-color:transparent #1a1a1a transparent transparent}[id^=geminilabs-site-reviews].widget ul.glsr-reviews{list-style:none;margin-left:0}[id^=geminilabs-site-reviews].widget .glsr-review-title,[id^=geminilabs-site-reviews].widget p{margin-bottom:1em}.glsr-review{margin-bottom:2em}.glsr-review p{margin:0 0 1em}.glsr-review-date{font-style:italic}.glsr-review-meta>span:not(:last-child){margin-right:.5em}.glsr-review-link{white-space:nowrap}[class*=glsr-star-]{display:inline-block;width:16px;height:16px;font-size:16px;vertical-align:text-top;background-repeat:no-repeat;background-size:16px}.glsr-star-empty{background-image:url(../img/star-empty.svg)}.glsr-star-full{background-image:url(../img/star-filled.svg)}.glsr-star-half{background-image:url(../img/star-half.svg)}.gl-star-rating[data-star-rating]{line-height:1}.glsr-field-messages{color:#1976D2}.glsr-has-error{color:#D32F2F}.glsr-field{margin-bottom:1em}.glsr-field-error{display:block;font-size:.875em}.glsr-field ul{list-style-type:none}.glsr-field label[for^=terms]{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.glsr-field label[for^=rating]:after,.glsr-field.glsr-required label:after{content:"*";margin-left:.33em}.glsr-field input[type=checkbox]{margin-right:.25em}.glsr-field select[name=rating]{display:block;height:26px;visibility:hidden}.glsr-form-messages{color:#0088d0}.glsr-field label[for^=rating]:after,.glsr-field-error,.glsr-field.glsr-required label:after,.glsr-form-description span,.gslr-has-errors{color:red}h3.glsr-form-title{margin:1.7142857143rem 0}.glsr-field,.shortcode-reviews-form p.glsr-form-description,.widget-area .widget p.glsr-form-description{line-height:1.5;margin:.7857142857rem 0}.glsr-field label{display:block;line-height:1.7142857143}.glsr-field input[type=text],.glsr-field input[type=email],.glsr-field input[type=url],.glsr-field textarea{width:100%;box-sizing:border-box;font-size:12px;font-size:.8571428571 rem;line-height:1.7142857143;padding:10px;padding:.8571428571 rem}
|
1 |
+
.gl-star-rating[data-star-rating]{position:relative;display:block}.gl-star-rating[data-star-rating]>select{overflow:hidden;position:absolute!important;top:0;width:1px;height:1px;clip:rect(1px,1px,1px,1px);-webkit-clip-path:circle(1px at 0 0);clip-path:circle(1px at 0 0);white-space:nowrap}.gl-star-rating-ltr[data-star-rating]>select{left:0}.gl-star-rating-rtl[data-star-rating]>select{right:0}.gl-star-rating[data-star-rating]>select:focus+.gl-star-rating-stars:before{opacity:.5;display:block;position:absolute;width:100%;height:100%;content:"";outline:1px dotted currentColor;pointer-events:none}.gl-star-rating-stars{position:relative;display:inline-block;height:26px;vertical-align:middle;cursor:pointer}.gl-star-rating-stars>span{display:inline-block;width:24px;height:24px;background-size:24px;background-repeat:no-repeat;background-image:url(../img/star-empty.svg);margin:0 4px 0 0}.gl-star-rating-stars>span:last-of-type{margin-right:0}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span{margin:0 0 0 4px}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-stars>span:last-of-type{margin-left:0}.gl-star-rating-stars.s10>span:first-child,.gl-star-rating-stars.s20>span:nth-child(-1n+2),.gl-star-rating-stars.s30>span:nth-child(-1n+3),.gl-star-rating-stars.s40>span:nth-child(-1n+4),.gl-star-rating-stars.s50>span:nth-child(-1n+5),.gl-star-rating-stars.s60>span:nth-child(-1n+6),.gl-star-rating-stars.s70>span:nth-child(-1n+7),.gl-star-rating-stars.s80>span:nth-child(-1n+8),.gl-star-rating-stars.s90>span:nth-child(-1n+9),.gl-star-rating-stars.s100>span{background-image:url(../img/star-filled.svg)}.gl-star-rating-text{display:inline-block;position:relative;height:26px;line-height:26px;font-size:.8em;font-weight:600;color:#fff;background-color:#1a1a1a;white-space:nowrap;vertical-align:middle;padding:0 12px 0 6px;margin:0 0 0 12px}.gl-star-rating-text:before{position:absolute;top:0;left:-12px;width:0;height:0;content:"";border-style:solid;border-width:13px 12px 13px 0;border-color:transparent #1a1a1a transparent transparent}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text{padding:0 6px 0 12px;margin:0 12px 0 0}.gl-star-rating-rtl[data-star-rating] .gl-star-rating-text:before{left:unset;right:-12px;border-width:13px 0 13px 12px;border-color:transparent transparent transparent #1a1a1a}[id^=geminilabs-site-reviews].widget ul.glsr-reviews{list-style:none}[id^=geminilabs-site-reviews].widget .glsr-review-title,[id^=geminilabs-site-reviews].widget p{margin-bottom:1em}.glsr-reviews{position:relative}.glsr-reviews:after{content:"";display:table;clear:both}.glsr-ajax-navigation,.glsr-navigation,.glsr-review{opacity:1;transition:opacity .5s}.glsr-hide .glsr-ajax-navigation,.glsr-hide .glsr-navigation,.glsr-hide .glsr-review{opacity:0!important}.glsr-hide .glsr-loader{display:block}.glsr-review{margin-bottom:3em}.glsr-review p{white-space:pre-line;margin:0 0 1em}.glsr-review-assigned{display:block;font-style:italic}.glsr-review-date{font-style:italic}.glsr-review-date,.glsr-review-link{white-space:nowrap}.glsr-review-avatar{margin:-8px 0 0;width:36px;height:36px}.glsr-review-avatar img{height:100%;-o-object-fit:cover;object-fit:cover}.glsr-star-empty,.glsr-star-full,.glsr-star-half{display:inline-block;width:20px;height:20px;font-size:16px;vertical-align:sub;background-repeat:no-repeat;background-size:20px}@media screen and (min-width:56.875em){.glsr-widget [class*=glsr-star-]{width:16px;height:16px;background-size:16px}.glsr-widget .glsr-review-avatar{width:30px;height:30px}}.glsr-star-empty{background-image:url(../img/star-empty.svg)}.glsr-star-full{background-image:url(../img/star-filled.svg)}.glsr-star-half{background-image:url(../img/star-half.svg)}.glsr-hidden{display:none}.glsr-read-more{white-space:nowrap}.glsr-read-more:before{content:"\2026";margin-right:.5em}.glsr-visible+.glsr-read-more:before{content:""}.glsr-review-response{position:relative;font-size:.875em;background-color:rgba(0,0,0,.075);border-radius:2px;padding:1em;margin-top:1.5rem}.glsr-review-response p:last-of-type{margin-bottom:0}.glsr-review-response:before{content:"";display:block;position:absolute;top:-18px;height:0;width:0;border-style:solid;border-color:rgba(0,0,0,.075) transparent}.glsr-loader{display:none;position:absolute;bottom:0;left:calc(50% - 12px);width:24px;height:24px;border-radius:50%;animation:a .5s infinite linear;transform:translateZ(0);margin:0}.glsr-loader:after,.glsr-loader:before{content:"";position:absolute;width:8px;height:8px;background:rgba(0,0,0,.75);border-radius:50%}.glsr-loader:before{top:0;left:0}.glsr-loader:after{bottom:0;right:0}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.glsr-reviews .screen-reader-text{position:absolute;height:1px;width:1px;border:0;overflow:hidden;clip:rect(0 0 0 0);word-wrap:normal!important;padding:0;margin:-1px}.glsr-ltr [id^=geminilabs-site-reviews].widget ul.glsr-reviews{margin-left:0}.glsr-ltr .glsr-review-excerpt>span:not(:last-child),.glsr-ltr .glsr-review-meta>span:not(:last-child){margin-right:.5em}.glsr-ltr .glsr-review-avatar{float:left;margin-right:12px}.glsr-ltr .glsr-review-response:before{left:50px;border-width:0 24px 18px 0}.glsr-rtl [id^=geminilabs-site-reviews].widget ul.glsr-reviews{margin-right:0}.glsr-rtl .glsr-review-excerpt>span:not(:last-child),.glsr-rtl .glsr-review-meta>span:not(:last-child){margin-left:.5em}.glsr-rtl .glsr-review-avatar{float:right;margin-left:12px}.glsr-rtl .glsr-review-response:before{right:50px;border-width:0 0 18px 24px}.gl-star-rating[data-star-rating]{line-height:1}.glsr-field-messages{color:#1976d2}.glsr-has-error,.glsr-has-errors{color:#d32f2f}.glsr-field{margin-bottom:1em}.glsr-field-error{display:block;font-size:.875em;color:#d32f2f}.glsr-field ul{list-style-type:none}.glsr-field label{display:block}.glsr-field label[for^=terms]{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.glsr-field.glsr-required label:after,.glsr-field label[for^=rating]:after{content:"*";color:#d32f2f}.glsr-field select[name=rating]{display:block;height:26px}.glsr-field select[name=rating]:after,.glsr-field select[name=rating]:before{display:none!important}.glsr-recaptcha-holder{margin-top:1em}.glsr-field button[type=submit] span{display:none}.glsr-field button[type=submit][disabled] span{display:inline;position:relative}.glsr-field button[type=submit] span:after,.glsr-field button[type=submit] span:before{display:inline-block;position:absolute;top:50%;height:1em;width:1em;content:"";border:.2em solid currentColor;border-radius:100%;box-sizing:border-box;margin:-.5em auto 0;animation:b .6s infinite linear}.glsr-field button[type=submit] span:before{border-top-color:transparent;opacity:.5}.glsr-field button[type=submit] span:after{border-color:transparent;border-top-color:currentColor}@keyframes b{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.glsr-ltr .glsr-field.glsr-required label:after,.glsr-ltr .glsr-field label[for^=rating]:after{margin-left:.33em}.glsr-ltr .glsr-field input[type=checkbox]{margin-right:.25em}.glsr-ltr .glsr-field button[type=submit][disabled] span{margin-right:1.65em}.glsr-ltr .glsr-field button[type=submit] span:after,.glsr-ltr .glsr-field button[type=submit] span:before{left:0}.glsr-rtl .glsr-field.glsr-required label:after,.glsr-rtl .glsr-field label[for^=rating]:after{margin-right:.33em}.glsr-rtl .glsr-field input[type=checkbox]{margin-left:.25em}.glsr-rtl .glsr-field button[type=submit][disabled] span{margin-left:1.65em}.glsr-rtl .glsr-field button[type=submit] span:after,.glsr-rtl .glsr-field button[type=submit] span:before{right:0}.glsr-summary{position:relative;width:100%;max-width:400px;font-size:16px;line-height:1.5;margin-bottom:1em}.glsr-summary .glsr-review-rating{display:inline-block}.glsr-summary [class*=glsr-star-]{width:26px;height:26px;background-size:24px}.glsr-summary-rating{line-height:1.25;font-size:24px;font-weight:700}.glsr-summary-text{display:block;font-size:14px}.glsr-percentage-bars{position:relative;width:100%;max-width:400px;font-size:16px;line-height:1.5;margin-bottom:1em}.glsr-bar{display:table-row;white-space:nowrap}.glsr-bar>span{display:table-cell;vertical-align:middle}.glsr-bar-background{position:relative;width:100%}.glsr-bar-background:before{display:block;position:absolute;width:100%;height:12px;content:"";background:rgba(0,0,0,.075)}.glsr-bar-percent{position:relative;display:block;height:12px;background-color:#ffb900}.glsr-bar-count{text-align:right;font-size:14px}.glsr-ltr .glsr-review-rating,.glsr-ltr .glsr-summary-rating{margin-right:10px}.glsr-ltr .glsr-bar-label{padding-right:10px}.glsr-ltr .glsr-bar-count{padding-left:10px}.glsr-rtl .glsr-review-rating,.glsr-rtl .glsr-summary-rating{margin-left:10px}.glsr-rtl .glsr-bar-label{padding-left:10px}.glsr-rtl .glsr-bar-count{padding-right:10px}.glsr-rtl [class*=glsr-star-]{transform:scaleX(-1)}.glsr-form-messages{color:#0088d0}.gslr-has-errors{color:red}h3.glsr-form-title{margin:24px 0;margin:1.71429rem 0}.glsr-form-description span{color:red}.glsr-field,.shortcode-reviews-form p.glsr-form-description,.widget-area .widget p.glsr-form-description{line-height:1.5;margin:11px 0;margin:.78571rem 0}.glsr-field-error,.glsr-field.glsr-required label:after,.glsr-field label[for^=rating]:after{color:red}.glsr-field label{line-height:1.71429}.glsr-field input[type=email],.glsr-field input[type=text],.glsr-field input[type=url],.glsr-field textarea{width:100%;box-sizing:border-box;font-size:12px;font-size:.85714 rem;line-height:1.71429;padding:10px;padding:.85714 rem}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/img/star-empty.svg
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1800 1800">
|
2 |
<title>star-empty</title>
|
3 |
-
<g fill="#
|
4 |
<path d="M900 0l300 600 600 75-413 462 113 663-600-300-600 300 112-663L0 675l600-75L900 0zm0 224L666 693l-465 58 318 356-87 515 468-234 468 234-87-515 318-356-465-58-234-469z"/>
|
5 |
</g>
|
6 |
</svg>
|
1 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1800 1800">
|
2 |
<title>star-empty</title>
|
3 |
+
<g fill="#ffb900">
|
4 |
<path d="M900 0l300 600 600 75-413 462 113 663-600-300-600 300 112-663L0 675l600-75L900 0zm0 224L666 693l-465 58 318 356-87 515 468-234 468 234-87-515 318-356-465-58-234-469z"/>
|
5 |
</g>
|
6 |
</svg>
|
assets/img/star-filled.svg
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1800 1800">
|
2 |
<title>star-filled</title>
|
3 |
-
<g fill="#
|
4 |
<path d="M900 0L600 600 0 675l412 462-112 663 600-300 600 300-113-663 413-462-600-75z"/>
|
5 |
</g>
|
6 |
</svg>
|
1 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1800 1800">
|
2 |
<title>star-filled</title>
|
3 |
+
<g fill="#ffb900">
|
4 |
<path d="M900 0L600 600 0 675l412 462-112 663 600-300 600 300-113-663 413-462-600-75z"/>
|
5 |
</g>
|
6 |
</svg>
|
assets/img/star-half.svg
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1800 1800">
|
2 |
<title>star-half</title>
|
3 |
-
<g fill="#
|
4 |
<path d="M900 0L600 600 0 675l413 462-113 663 600-300 600 300-112-663 412-462-600-75L900 0zm0 224l234 469 465 58-318 356 87 515-468-234V224z"/>
|
5 |
</g>
|
6 |
</svg>
|
1 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1800 1800">
|
2 |
<title>star-half</title>
|
3 |
+
<g fill="#ffb900">
|
4 |
<path d="M900 0L600 600 0 675l413 462-113 663 600-300 600 300-112-663 412-462-600-75L900 0zm0 224l234 469 465 58-318 356 87 515-468-234V224z"/>
|
5 |
</g>
|
6 |
</svg>
|
assets/js/mce-plugin.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
!function(n){"use strict";window.tinymce.PluginManager.add("glsr_shortcode",function(n){n.addCommand("GLSR_Shortcode",function(){GLSR.shortcode.create(n.id)})})}();
|
assets/js/recaptcha.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
"use strict";var glsr_render_recaptcha=function(){var e,c;[].forEach.call(document.querySelectorAll(".glsr-submit-review-form"),function(r){r.onsubmit=null,(c=r.querySelector(".glsr-recaptcha-holder"))&&(c.innerHTML="",e=grecaptcha.render(c,{callback:function(r){GLSR.submitForm(r)},"expired-callback":function(){grecaptcha.reset(e)}},!0))})};
|
assets/js/site-reviews-admin.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
"use strict";var x=jQuery.noConflict(),GLSR={addons:{},pinned:{}};GLSR.colorControls=function(){"object"==typeof x.wp&&"function"==typeof x.wp.wpColorPicker&&x(document).find('input[type="text"].color-picker-hex').each(function(){var e=x(this),n=e.data("colorpicker")||{};e.wpColorPicker(n)})},GLSR.dismissNotices=function(){x(".notice.is-dismissible").each(function(){var e=x(this);e.fadeTo(100,0,function(){e.slideUp(100,function(){e.remove()})})})},GLSR.getURLParameter=function(e){return decodeURIComponent((new RegExp("[?|&]"+e+"=([^&;]+?)(&|#|;|$)").exec(location.search)||[null,""])[1].replace(/\+/g,"%20"))||null},GLSR.insertNotices=function(e){e=e||!1,e&&(x("#glsr-notices").length||(x("#message.notice").remove(),x("form#post").before('<div id="glsr-notices" />')),x("#glsr-notices").html(e),x(document).trigger("wp-updates-notice-added"))},GLSR.normalizeValue=function(e){return["true","on","1"].indexOf(e)>-1||!(["false","off","0"].indexOf(e)>-1)&&e},GLSR.normalizeValues=function(e){return e.map(GLSR.normalizeValue)},GLSR.onClearLog=function(e){e.preventDefault();var n=x(this);if(!n.is(":disabled")){var t={action:site_reviews.action,request:{action:"clear-log"}};n.prop("disabled",!0),x.post(site_reviews.ajaxurl,t,function(e){GLSR.insertNotices(e.notices),x("#log-file").val(e.log),n.prop("disabled",!1)},"json")}},GLSR.onFieldChange=function(){var e=x(this).closest("form").find("[data-depends]");if(e.length)for(var n=this.getAttribute("name"),t=this.getAttribute("type"),i=0;i<e.length;i++)try{var o,s=JSON.parse(e[i].getAttribute("data-depends"));if(s.name!==n)continue;o="checkbox"===t?!!this.checked:x.isArray(s.value)?x.inArray(GLSR.normalizeValue(this.value),GLSR.normalizeValues(s.value))!==-1:GLSR.normalizeValue(s.value)===GLSR.normalizeValue(this.value),GLSR.toggleHiddenField(e[i],o)}catch(a){}},GLSR.pointers=function(e){x(e.target).pointer({content:e.options.content,position:e.options.position,close:function(){x.post(ajaxurl,{pointer:e.id,action:"dismiss-wp-pointer"})}}).pointer("open").pointer("sendToTop"),x(document).on("wp-window-resized",function(){x(e.target).pointer("reposition")})},GLSR.textareaResize=function(e){var n=320,t=e[0];t.style.height="auto",t.style.height=t.scrollHeight>n?t.scrollHeight+"px":n+"px"},GLSR.toggleHiddenField=function(e,n){var t=x(e).closest(".glsr-field");t.length&&(n?t.removeClass("hidden"):t.addClass("hidden"))},GLSR.pinned.events=function(){var e=x("#pinned-status-select");x("a.cancel-pinned-status").on("click",function(n){n.preventDefault(),e.slideUp("fast").siblings("a.edit-pinned-status").show().focus(),e.find("select").val("0"===x("#hidden-pinned-status").val()?1:0)}),x("a.edit-pinned-status").on("click",function(n){n.preventDefault(),e.is(":hidden")&&(e.slideDown("fast",function(){e.find("select").focus()}),x(this).hide())}),x("a.save-pinned-status").on("click",function(n){n.preventDefault(),e.slideUp("fast").siblings("a.edit-pinned-status").show().focus(),GLSR.pinned.save(x(this))}),x("table").on("click","td.sticky i",GLSR.pinned.onToggle)},GLSR.pinned.onToggle=function(){var e=x(this),n={action:site_reviews.action,request:{action:"toggle-pinned",id:e[0].getAttribute("data-id")}};x.post(site_reviews.ajaxurl,n,function(n){n.pinned?e.addClass("pinned"):e.removeClass("pinned")})},GLSR.pinned.save=function(e){var n={action:site_reviews.action,request:{action:"toggle-pinned",id:x("#post_ID").val(),pinned:x("#pinned-status").val()}};x.post(site_reviews.ajaxurl,n,function(n){x("#pinned-status").val(0|!n.pinned),x("#hidden-pinned-status").val(0|n.pinned),x("#pinned-status-text").text(n.pinned?e.data("yes"):e.data("no")),GLSR.insertNotices(n.notices)})},x(function(){var e=GLSR.getURLParameter("fix"),n=x("#contentdiv > textarea");e&&x('td [data-key="'+e+'"]').focus(),n.length&&(GLSR.textareaResize(n),x(document).on("wp-window-resized.editor-expand",function(){GLSR.textareaResize(n)})),x("form").on("change",":input",GLSR.onFieldChange),x("form").on("click","#clear-log",GLSR.onClearLog),GLSR.colorControls(),GLSR.pinned.events(),x.each(site_reviews_pointers.pointers,function(e,n){GLSR.pointers(n)}),x(document).on("click",".branch-4 .toggle-row, .branch-4-1 .toggle-row, .branch-4-2 .toggle-row",function(){x(this).closest("tr").toggleClass("is-expanded")})});
|
1 |