Commit initial
This commit is contained in:
commit
700686ff12
|
@ -0,0 +1,26 @@
|
||||||
|
|
||||||
|
# BEGIN WordPress
|
||||||
|
# Les directives (lignes) entre « BEGIN WordPress » et « END WordPress » sont générées
|
||||||
|
# dynamiquement, et doivent être modifiées uniquement via les filtres WordPress.
|
||||||
|
# Toute modification des directives situées entre ces marqueurs sera surchargée.
|
||||||
|
<IfModule mod_rewrite.c>
|
||||||
|
|
||||||
|
RewriteEngine On
|
||||||
|
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
||||||
|
RewriteBase /
|
||||||
|
RewriteRule ^index\.php$ - [L]
|
||||||
|
|
||||||
|
# add a trailing slash to /wp-admin
|
||||||
|
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
|
||||||
|
|
||||||
|
RewriteCond %{REQUEST_FILENAME} -f [OR]
|
||||||
|
RewriteCond %{REQUEST_FILENAME} -d
|
||||||
|
RewriteRule ^ - [L]
|
||||||
|
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
|
||||||
|
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
|
||||||
|
RewriteRule . index.php [L]
|
||||||
|
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
# END WordPress
|
||||||
|
# Redirect permanent / https://192.168.0.152/hadoly-histoire-et-objectifs
|
|
@ -0,0 +1,26 @@
|
||||||
|
|
||||||
|
# BEGIN WordPress
|
||||||
|
# Les directives (lignes) entre « BEGIN WordPress » et « END WordPress » sont générées
|
||||||
|
# dynamiquement, et doivent être modifiées uniquement via les filtres WordPress.
|
||||||
|
# Toute modification des directives situées entre ces marqueurs sera surchargée.
|
||||||
|
<IfModule mod_rewrite.c>
|
||||||
|
RewriteEngine On
|
||||||
|
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
||||||
|
RewriteBase /
|
||||||
|
RewriteRule ^index\.php$ - [L]
|
||||||
|
|
||||||
|
|
||||||
|
# add a trailing slash to /wp-admin
|
||||||
|
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
|
||||||
|
|
||||||
|
RewriteCond %{REQUEST_FILENAME} -f [OR]
|
||||||
|
RewriteCond %{REQUEST_FILENAME} -d
|
||||||
|
RewriteRule ^ - [L]
|
||||||
|
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
|
||||||
|
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
|
||||||
|
|
||||||
|
RewriteRule . /index.php [L]
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
# END WordPress
|
||||||
|
# Redirect permanent / https://192.168.0.152/hadoly-histoire-et-objectifs
|
|
@ -0,0 +1,10 @@
|
||||||
|
# Path-based git attributes
|
||||||
|
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
|
||||||
|
|
||||||
|
# Force Unix style line endings
|
||||||
|
* text eol=lf
|
||||||
|
|
||||||
|
# Explicitly mark binary types (to prevent unwanted line conversion)
|
||||||
|
*.ico binary
|
||||||
|
*.png binary
|
||||||
|
*.woff binary
|
|
@ -0,0 +1,17 @@
|
||||||
|
/.externalToolBuilders/
|
||||||
|
/.idea/
|
||||||
|
/.settings/
|
||||||
|
/.vscode/
|
||||||
|
/coverage/
|
||||||
|
/node_modules/
|
||||||
|
/vendor/
|
||||||
|
/.buildpath
|
||||||
|
/.checkstyle
|
||||||
|
/.php_cs.cache
|
||||||
|
/.project
|
||||||
|
/auth.json
|
||||||
|
/phpunit.phar
|
||||||
|
/phpunit-*.phar
|
||||||
|
/phpunit-report.coverage.xml
|
||||||
|
/phpunit-report.tests.xml
|
||||||
|
/coverage.xml
|
|
@ -0,0 +1,35 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
$finder = PhpCsFixer\Finder::create()
|
||||||
|
->in([
|
||||||
|
__DIR__ . '/src',
|
||||||
|
__DIR__ . '/test',
|
||||||
|
])
|
||||||
|
;
|
||||||
|
|
||||||
|
return PhpCsFixer\Config::create()
|
||||||
|
->setRiskyAllowed(true)
|
||||||
|
->setRules([
|
||||||
|
// Symfony includes PSR-2 and PSR-1
|
||||||
|
'@Symfony:risky' => true,
|
||||||
|
|
||||||
|
// Override some Symfony rules we don't like
|
||||||
|
'concat_space' => ['spacing' => 'one'],
|
||||||
|
'declare_equal_normalize' => ['space' => 'single'],
|
||||||
|
'blank_line_after_opening_tag' => false,
|
||||||
|
'linebreak_after_opening_tag' => true,
|
||||||
|
'single_blank_line_before_namespace' => false,
|
||||||
|
'no_blank_lines_before_namespace' => true,
|
||||||
|
|
||||||
|
// Extra rules
|
||||||
|
'no_superfluous_elseif' => true,
|
||||||
|
'no_unneeded_curly_braces' => true,
|
||||||
|
'no_unneeded_final_method' => true,
|
||||||
|
'no_unreachable_default_argument_value' => true,
|
||||||
|
'no_useless_return' => true,
|
||||||
|
'ordered_imports' => true,
|
||||||
|
'semicolon_after_instruction' => true,
|
||||||
|
'single_line_comment_style' => true,
|
||||||
|
])
|
||||||
|
->setFinder($finder)
|
||||||
|
;
|
|
@ -0,0 +1,619 @@
|
||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 3, 29 June 2007
|
||||||
|
|
||||||
|
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The GNU General Public License is a free, copyleft license for
|
||||||
|
software and other kinds of works.
|
||||||
|
|
||||||
|
The licenses for most software and other practical works are designed
|
||||||
|
to take away your freedom to share and change the works. By contrast,
|
||||||
|
the GNU General Public License is intended to guarantee your freedom to
|
||||||
|
share and change all versions of a program--to make sure it remains free
|
||||||
|
software for all its users. We, the Free Software Foundation, use the
|
||||||
|
GNU General Public License for most of our software; it applies also to
|
||||||
|
any other work released this way by its authors. You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
them if you wish), that you receive source code or can get it if you
|
||||||
|
want it, that you can change the software or use pieces of it in new
|
||||||
|
free programs, and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to prevent others from denying you
|
||||||
|
these rights or asking you to surrender the rights. Therefore, you have
|
||||||
|
certain responsibilities if you distribute copies of the software, or if
|
||||||
|
you modify it: responsibilities to respect the freedom of others.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must pass on to the recipients the same
|
||||||
|
freedoms that you received. You must make sure that they, too, receive
|
||||||
|
or can get the source code. And you must show them these terms so they
|
||||||
|
know their rights.
|
||||||
|
|
||||||
|
Developers that use the GNU GPL protect your rights with two steps:
|
||||||
|
(1) assert copyright on the software, and (2) offer you this License
|
||||||
|
giving you legal permission to copy, distribute and/or modify it.
|
||||||
|
|
||||||
|
For the developers' and authors' protection, the GPL clearly explains
|
||||||
|
that there is no warranty for this free software. For both users' and
|
||||||
|
authors' sake, the GPL requires that modified versions be marked as
|
||||||
|
changed, so that their problems will not be attributed erroneously to
|
||||||
|
authors of previous versions.
|
||||||
|
|
||||||
|
Some devices are designed to deny users access to install or run
|
||||||
|
modified versions of the software inside them, although the manufacturer
|
||||||
|
can do so. This is fundamentally incompatible with the aim of
|
||||||
|
protecting users' freedom to change the software. The systematic
|
||||||
|
pattern of such abuse occurs in the area of products for individuals to
|
||||||
|
use, which is precisely where it is most unacceptable. Therefore, we
|
||||||
|
have designed this version of the GPL to prohibit the practice for those
|
||||||
|
products. If such problems arise substantially in other domains, we
|
||||||
|
stand ready to extend this provision to those domains in future versions
|
||||||
|
of the GPL, as needed to protect the freedom of users.
|
||||||
|
|
||||||
|
Finally, every program is threatened constantly by software patents.
|
||||||
|
States should not allow patents to restrict development and use of
|
||||||
|
software on general-purpose computers, but in those that do, we wish to
|
||||||
|
avoid the special danger that patents applied to a free program could
|
||||||
|
make it effectively proprietary. To prevent this, the GPL assures that
|
||||||
|
patents cannot be used to render the program non-free.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
0. Definitions.
|
||||||
|
|
||||||
|
"This License" refers to version 3 of the GNU General Public License.
|
||||||
|
|
||||||
|
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||||
|
works, such as semiconductor masks.
|
||||||
|
|
||||||
|
"The Program" refers to any copyrightable work licensed under this
|
||||||
|
License. Each licensee is addressed as "you". "Licensees" and
|
||||||
|
"recipients" may be individuals or organizations.
|
||||||
|
|
||||||
|
To "modify" a work means to copy from or adapt all or part of the work
|
||||||
|
in a fashion requiring copyright permission, other than the making of an
|
||||||
|
exact copy. The resulting work is called a "modified version" of the
|
||||||
|
earlier work or a work "based on" the earlier work.
|
||||||
|
|
||||||
|
A "covered work" means either the unmodified Program or a work based
|
||||||
|
on the Program.
|
||||||
|
|
||||||
|
To "propagate" a work means to do anything with it that, without
|
||||||
|
permission, would make you directly or secondarily liable for
|
||||||
|
infringement under applicable copyright law, except executing it on a
|
||||||
|
computer or modifying a private copy. Propagation includes copying,
|
||||||
|
distribution (with or without modification), making available to the
|
||||||
|
public, and in some countries other activities as well.
|
||||||
|
|
||||||
|
To "convey" a work means any kind of propagation that enables other
|
||||||
|
parties to make or receive copies. Mere interaction with a user through
|
||||||
|
a computer network, with no transfer of a copy, is not conveying.
|
||||||
|
|
||||||
|
An interactive user interface displays "Appropriate Legal Notices"
|
||||||
|
to the extent that it includes a convenient and prominently visible
|
||||||
|
feature that (1) displays an appropriate copyright notice, and (2)
|
||||||
|
tells the user that there is no warranty for the work (except to the
|
||||||
|
extent that warranties are provided), that licensees may convey the
|
||||||
|
work under this License, and how to view a copy of this License. If
|
||||||
|
the interface presents a list of user commands or options, such as a
|
||||||
|
menu, a prominent item in the list meets this criterion.
|
||||||
|
|
||||||
|
1. Source Code.
|
||||||
|
|
||||||
|
The "source code" for a work means the preferred form of the work
|
||||||
|
for making modifications to it. "Object code" means any non-source
|
||||||
|
form of a work.
|
||||||
|
|
||||||
|
A "Standard Interface" means an interface that either is an official
|
||||||
|
standard defined by a recognized standards body, or, in the case of
|
||||||
|
interfaces specified for a particular programming language, one that
|
||||||
|
is widely used among developers working in that language.
|
||||||
|
|
||||||
|
The "System Libraries" of an executable work include anything, other
|
||||||
|
than the work as a whole, that (a) is included in the normal form of
|
||||||
|
packaging a Major Component, but which is not part of that Major
|
||||||
|
Component, and (b) serves only to enable use of the work with that
|
||||||
|
Major Component, or to implement a Standard Interface for which an
|
||||||
|
implementation is available to the public in source code form. A
|
||||||
|
"Major Component", in this context, means a major essential component
|
||||||
|
(kernel, window system, and so on) of the specific operating system
|
||||||
|
(if any) on which the executable work runs, or a compiler used to
|
||||||
|
produce the work, or an object code interpreter used to run it.
|
||||||
|
|
||||||
|
The "Corresponding Source" for a work in object code form means all
|
||||||
|
the source code needed to generate, install, and (for an executable
|
||||||
|
work) run the object code and to modify the work, including scripts to
|
||||||
|
control those activities. However, it does not include the work's
|
||||||
|
System Libraries, or general-purpose tools or generally available free
|
||||||
|
programs which are used unmodified in performing those activities but
|
||||||
|
which are not part of the work. For example, Corresponding Source
|
||||||
|
includes interface definition files associated with source files for
|
||||||
|
the work, and the source code for shared libraries and dynamically
|
||||||
|
linked subprograms that the work is specifically designed to require,
|
||||||
|
such as by intimate data communication or control flow between those
|
||||||
|
subprograms and other parts of the work.
|
||||||
|
|
||||||
|
The Corresponding Source need not include anything that users
|
||||||
|
can regenerate automatically from other parts of the Corresponding
|
||||||
|
Source.
|
||||||
|
|
||||||
|
The Corresponding Source for a work in source code form is that
|
||||||
|
same work.
|
||||||
|
|
||||||
|
2. Basic Permissions.
|
||||||
|
|
||||||
|
All rights granted under this License are granted for the term of
|
||||||
|
copyright on the Program, and are irrevocable provided the stated
|
||||||
|
conditions are met. This License explicitly affirms your unlimited
|
||||||
|
permission to run the unmodified Program. The output from running a
|
||||||
|
covered work is covered by this License only if the output, given its
|
||||||
|
content, constitutes a covered work. This License acknowledges your
|
||||||
|
rights of fair use or other equivalent, as provided by copyright law.
|
||||||
|
|
||||||
|
You may make, run and propagate covered works that you do not
|
||||||
|
convey, without conditions so long as your license otherwise remains
|
||||||
|
in force. You may convey covered works to others for the sole purpose
|
||||||
|
of having them make modifications exclusively for you, or provide you
|
||||||
|
with facilities for running those works, provided that you comply with
|
||||||
|
the terms of this License in conveying all material for which you do
|
||||||
|
not control copyright. Those thus making or running the covered works
|
||||||
|
for you must do so exclusively on your behalf, under your direction
|
||||||
|
and control, on terms that prohibit them from making any copies of
|
||||||
|
your copyrighted material outside their relationship with you.
|
||||||
|
|
||||||
|
Conveying under any other circumstances is permitted solely under
|
||||||
|
the conditions stated below. Sublicensing is not allowed; section 10
|
||||||
|
makes it unnecessary.
|
||||||
|
|
||||||
|
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||||
|
|
||||||
|
No covered work shall be deemed part of an effective technological
|
||||||
|
measure under any applicable law fulfilling obligations under article
|
||||||
|
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||||
|
similar laws prohibiting or restricting circumvention of such
|
||||||
|
measures.
|
||||||
|
|
||||||
|
When you convey a covered work, you waive any legal power to forbid
|
||||||
|
circumvention of technological measures to the extent such circumvention
|
||||||
|
is effected by exercising rights under this License with respect to
|
||||||
|
the covered work, and you disclaim any intention to limit operation or
|
||||||
|
modification of the work as a means of enforcing, against the work's
|
||||||
|
users, your or third parties' legal rights to forbid circumvention of
|
||||||
|
technological measures.
|
||||||
|
|
||||||
|
4. Conveying Verbatim Copies.
|
||||||
|
|
||||||
|
You may convey verbatim copies of the Program's source code as you
|
||||||
|
receive it, in any medium, provided that you conspicuously and
|
||||||
|
appropriately publish on each copy an appropriate copyright notice;
|
||||||
|
keep intact all notices stating that this License and any
|
||||||
|
non-permissive terms added in accord with section 7 apply to the code;
|
||||||
|
keep intact all notices of the absence of any warranty; and give all
|
||||||
|
recipients a copy of this License along with the Program.
|
||||||
|
|
||||||
|
You may charge any price or no price for each copy that you convey,
|
||||||
|
and you may offer support or warranty protection for a fee.
|
||||||
|
|
||||||
|
5. Conveying Modified Source Versions.
|
||||||
|
|
||||||
|
You may convey a work based on the Program, or the modifications to
|
||||||
|
produce it from the Program, in the form of source code under the
|
||||||
|
terms of section 4, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) The work must carry prominent notices stating that you modified
|
||||||
|
it, and giving a relevant date.
|
||||||
|
|
||||||
|
b) The work must carry prominent notices stating that it is
|
||||||
|
released under this License and any conditions added under section
|
||||||
|
7. This requirement modifies the requirement in section 4 to
|
||||||
|
"keep intact all notices".
|
||||||
|
|
||||||
|
c) You must license the entire work, as a whole, under this
|
||||||
|
License to anyone who comes into possession of a copy. This
|
||||||
|
License will therefore apply, along with any applicable section 7
|
||||||
|
additional terms, to the whole of the work, and all its parts,
|
||||||
|
regardless of how they are packaged. This License gives no
|
||||||
|
permission to license the work in any other way, but it does not
|
||||||
|
invalidate such permission if you have separately received it.
|
||||||
|
|
||||||
|
d) If the work has interactive user interfaces, each must display
|
||||||
|
Appropriate Legal Notices; however, if the Program has interactive
|
||||||
|
interfaces that do not display Appropriate Legal Notices, your
|
||||||
|
work need not make them do so.
|
||||||
|
|
||||||
|
A compilation of a covered work with other separate and independent
|
||||||
|
works, which are not by their nature extensions of the covered work,
|
||||||
|
and which are not combined with it such as to form a larger program,
|
||||||
|
in or on a volume of a storage or distribution medium, is called an
|
||||||
|
"aggregate" if the compilation and its resulting copyright are not
|
||||||
|
used to limit the access or legal rights of the compilation's users
|
||||||
|
beyond what the individual works permit. Inclusion of a covered work
|
||||||
|
in an aggregate does not cause this License to apply to the other
|
||||||
|
parts of the aggregate.
|
||||||
|
|
||||||
|
6. Conveying Non-Source Forms.
|
||||||
|
|
||||||
|
You may convey a covered work in object code form under the terms
|
||||||
|
of sections 4 and 5, provided that you also convey the
|
||||||
|
machine-readable Corresponding Source under the terms of this License,
|
||||||
|
in one of these ways:
|
||||||
|
|
||||||
|
a) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by the
|
||||||
|
Corresponding Source fixed on a durable physical medium
|
||||||
|
customarily used for software interchange.
|
||||||
|
|
||||||
|
b) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by a
|
||||||
|
written offer, valid for at least three years and valid for as
|
||||||
|
long as you offer spare parts or customer support for that product
|
||||||
|
model, to give anyone who possesses the object code either (1) a
|
||||||
|
copy of the Corresponding Source for all the software in the
|
||||||
|
product that is covered by this License, on a durable physical
|
||||||
|
medium customarily used for software interchange, for a price no
|
||||||
|
more than your reasonable cost of physically performing this
|
||||||
|
conveying of source, or (2) access to copy the
|
||||||
|
Corresponding Source from a network server at no charge.
|
||||||
|
|
||||||
|
c) Convey individual copies of the object code with a copy of the
|
||||||
|
written offer to provide the Corresponding Source. This
|
||||||
|
alternative is allowed only occasionally and noncommercially, and
|
||||||
|
only if you received the object code with such an offer, in accord
|
||||||
|
with subsection 6b.
|
||||||
|
|
||||||
|
d) Convey the object code by offering access from a designated
|
||||||
|
place (gratis or for a charge), and offer equivalent access to the
|
||||||
|
Corresponding Source in the same way through the same place at no
|
||||||
|
further charge. You need not require recipients to copy the
|
||||||
|
Corresponding Source along with the object code. If the place to
|
||||||
|
copy the object code is a network server, the Corresponding Source
|
||||||
|
may be on a different server (operated by you or a third party)
|
||||||
|
that supports equivalent copying facilities, provided you maintain
|
||||||
|
clear directions next to the object code saying where to find the
|
||||||
|
Corresponding Source. Regardless of what server hosts the
|
||||||
|
Corresponding Source, you remain obligated to ensure that it is
|
||||||
|
available for as long as needed to satisfy these requirements.
|
||||||
|
|
||||||
|
e) Convey the object code using peer-to-peer transmission, provided
|
||||||
|
you inform other peers where the object code and Corresponding
|
||||||
|
Source of the work are being offered to the general public at no
|
||||||
|
charge under subsection 6d.
|
||||||
|
|
||||||
|
A separable portion of the object code, whose source code is excluded
|
||||||
|
from the Corresponding Source as a System Library, need not be
|
||||||
|
included in conveying the object code work.
|
||||||
|
|
||||||
|
A "User Product" is either (1) a "consumer product", which means any
|
||||||
|
tangible personal property which is normally used for personal, family,
|
||||||
|
or household purposes, or (2) anything designed or sold for incorporation
|
||||||
|
into a dwelling. In determining whether a product is a consumer product,
|
||||||
|
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||||
|
product received by a particular user, "normally used" refers to a
|
||||||
|
typical or common use of that class of product, regardless of the status
|
||||||
|
of the particular user or of the way in which the particular user
|
||||||
|
actually uses, or expects or is expected to use, the product. A product
|
||||||
|
is a consumer product regardless of whether the product has substantial
|
||||||
|
commercial, industrial or non-consumer uses, unless such uses represent
|
||||||
|
the only significant mode of use of the product.
|
||||||
|
|
||||||
|
"Installation Information" for a User Product means any methods,
|
||||||
|
procedures, authorization keys, or other information required to install
|
||||||
|
and execute modified versions of a covered work in that User Product from
|
||||||
|
a modified version of its Corresponding Source. The information must
|
||||||
|
suffice to ensure that the continued functioning of the modified object
|
||||||
|
code is in no case prevented or interfered with solely because
|
||||||
|
modification has been made.
|
||||||
|
|
||||||
|
If you convey an object code work under this section in, or with, or
|
||||||
|
specifically for use in, a User Product, and the conveying occurs as
|
||||||
|
part of a transaction in which the right of possession and use of the
|
||||||
|
User Product is transferred to the recipient in perpetuity or for a
|
||||||
|
fixed term (regardless of how the transaction is characterized), the
|
||||||
|
Corresponding Source conveyed under this section must be accompanied
|
||||||
|
by the Installation Information. But this requirement does not apply
|
||||||
|
if neither you nor any third party retains the ability to install
|
||||||
|
modified object code on the User Product (for example, the work has
|
||||||
|
been installed in ROM).
|
||||||
|
|
||||||
|
The requirement to provide Installation Information does not include a
|
||||||
|
requirement to continue to provide support service, warranty, or updates
|
||||||
|
for a work that has been modified or installed by the recipient, or for
|
||||||
|
the User Product in which it has been modified or installed. Access to a
|
||||||
|
network may be denied when the modification itself materially and
|
||||||
|
adversely affects the operation of the network or violates the rules and
|
||||||
|
protocols for communication across the network.
|
||||||
|
|
||||||
|
Corresponding Source conveyed, and Installation Information provided,
|
||||||
|
in accord with this section must be in a format that is publicly
|
||||||
|
documented (and with an implementation available to the public in
|
||||||
|
source code form), and must require no special password or key for
|
||||||
|
unpacking, reading or copying.
|
||||||
|
|
||||||
|
7. Additional Terms.
|
||||||
|
|
||||||
|
"Additional permissions" are terms that supplement the terms of this
|
||||||
|
License by making exceptions from one or more of its conditions.
|
||||||
|
Additional permissions that are applicable to the entire Program shall
|
||||||
|
be treated as though they were included in this License, to the extent
|
||||||
|
that they are valid under applicable law. If additional permissions
|
||||||
|
apply only to part of the Program, that part may be used separately
|
||||||
|
under those permissions, but the entire Program remains governed by
|
||||||
|
this License without regard to the additional permissions.
|
||||||
|
|
||||||
|
When you convey a copy of a covered work, you may at your option
|
||||||
|
remove any additional permissions from that copy, or from any part of
|
||||||
|
it. (Additional permissions may be written to require their own
|
||||||
|
removal in certain cases when you modify the work.) You may place
|
||||||
|
additional permissions on material, added by you to a covered work,
|
||||||
|
for which you have or can give appropriate copyright permission.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, for material you
|
||||||
|
add to a covered work, you may (if authorized by the copyright holders of
|
||||||
|
that material) supplement the terms of this License with terms:
|
||||||
|
|
||||||
|
a) Disclaiming warranty or limiting liability differently from the
|
||||||
|
terms of sections 15 and 16 of this License; or
|
||||||
|
|
||||||
|
b) Requiring preservation of specified reasonable legal notices or
|
||||||
|
author attributions in that material or in the Appropriate Legal
|
||||||
|
Notices displayed by works containing it; or
|
||||||
|
|
||||||
|
c) Prohibiting misrepresentation of the origin of that material, or
|
||||||
|
requiring that modified versions of such material be marked in
|
||||||
|
reasonable ways as different from the original version; or
|
||||||
|
|
||||||
|
d) Limiting the use for publicity purposes of names of licensors or
|
||||||
|
authors of the material; or
|
||||||
|
|
||||||
|
e) Declining to grant rights under trademark law for use of some
|
||||||
|
trade names, trademarks, or service marks; or
|
||||||
|
|
||||||
|
f) Requiring indemnification of licensors and authors of that
|
||||||
|
material by anyone who conveys the material (or modified versions of
|
||||||
|
it) with contractual assumptions of liability to the recipient, for
|
||||||
|
any liability that these contractual assumptions directly impose on
|
||||||
|
those licensors and authors.
|
||||||
|
|
||||||
|
All other non-permissive additional terms are considered "further
|
||||||
|
restrictions" within the meaning of section 10. If the Program as you
|
||||||
|
received it, or any part of it, contains a notice stating that it is
|
||||||
|
governed by this License along with a term that is a further
|
||||||
|
restriction, you may remove that term. If a license document contains
|
||||||
|
a further restriction but permits relicensing or conveying under this
|
||||||
|
License, you may add to a covered work material governed by the terms
|
||||||
|
of that license document, provided that the further restriction does
|
||||||
|
not survive such relicensing or conveying.
|
||||||
|
|
||||||
|
If you add terms to a covered work in accord with this section, you
|
||||||
|
must place, in the relevant source files, a statement of the
|
||||||
|
additional terms that apply to those files, or a notice indicating
|
||||||
|
where to find the applicable terms.
|
||||||
|
|
||||||
|
Additional terms, permissive or non-permissive, may be stated in the
|
||||||
|
form of a separately written license, or stated as exceptions;
|
||||||
|
the above requirements apply either way.
|
||||||
|
|
||||||
|
8. Termination.
|
||||||
|
|
||||||
|
You may not propagate or modify a covered work except as expressly
|
||||||
|
provided under this License. Any attempt otherwise to propagate or
|
||||||
|
modify it is void, and will automatically terminate your rights under
|
||||||
|
this License (including any patent licenses granted under the third
|
||||||
|
paragraph of section 11).
|
||||||
|
|
||||||
|
However, if you cease all violation of this License, then your
|
||||||
|
license from a particular copyright holder is reinstated (a)
|
||||||
|
provisionally, unless and until the copyright holder explicitly and
|
||||||
|
finally terminates your license, and (b) permanently, if the copyright
|
||||||
|
holder fails to notify you of the violation by some reasonable means
|
||||||
|
prior to 60 days after the cessation.
|
||||||
|
|
||||||
|
Moreover, your license from a particular copyright holder is
|
||||||
|
reinstated permanently if the copyright holder notifies you of the
|
||||||
|
violation by some reasonable means, this is the first time you have
|
||||||
|
received notice of violation of this License (for any work) from that
|
||||||
|
copyright holder, and you cure the violation prior to 30 days after
|
||||||
|
your receipt of the notice.
|
||||||
|
|
||||||
|
Termination of your rights under this section does not terminate the
|
||||||
|
licenses of parties who have received copies or rights from you under
|
||||||
|
this License. If your rights have been terminated and not permanently
|
||||||
|
reinstated, you do not qualify to receive new licenses for the same
|
||||||
|
material under section 10.
|
||||||
|
|
||||||
|
9. Acceptance Not Required for Having Copies.
|
||||||
|
|
||||||
|
You are not required to accept this License in order to receive or
|
||||||
|
run a copy of the Program. Ancillary propagation of a covered work
|
||||||
|
occurring solely as a consequence of using peer-to-peer transmission
|
||||||
|
to receive a copy likewise does not require acceptance. However,
|
||||||
|
nothing other than this License grants you permission to propagate or
|
||||||
|
modify any covered work. These actions infringe copyright if you do
|
||||||
|
not accept this License. Therefore, by modifying or propagating a
|
||||||
|
covered work, you indicate your acceptance of this License to do so.
|
||||||
|
|
||||||
|
10. Automatic Licensing of Downstream Recipients.
|
||||||
|
|
||||||
|
Each time you convey a covered work, the recipient automatically
|
||||||
|
receives a license from the original licensors, to run, modify and
|
||||||
|
propagate that work, subject to this License. You are not responsible
|
||||||
|
for enforcing compliance by third parties with this License.
|
||||||
|
|
||||||
|
An "entity transaction" is a transaction transferring control of an
|
||||||
|
organization, or substantially all assets of one, or subdividing an
|
||||||
|
organization, or merging organizations. If propagation of a covered
|
||||||
|
work results from an entity transaction, each party to that
|
||||||
|
transaction who receives a copy of the work also receives whatever
|
||||||
|
licenses to the work the party's predecessor in interest had or could
|
||||||
|
give under the previous paragraph, plus a right to possession of the
|
||||||
|
Corresponding Source of the work from the predecessor in interest, if
|
||||||
|
the predecessor has it or can get it with reasonable efforts.
|
||||||
|
|
||||||
|
You may not impose any further restrictions on the exercise of the
|
||||||
|
rights granted or affirmed under this License. For example, you may
|
||||||
|
not impose a license fee, royalty, or other charge for exercise of
|
||||||
|
rights granted under this License, and you may not initiate litigation
|
||||||
|
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||||
|
any patent claim is infringed by making, using, selling, offering for
|
||||||
|
sale, or importing the Program or any portion of it.
|
||||||
|
|
||||||
|
11. Patents.
|
||||||
|
|
||||||
|
A "contributor" is a copyright holder who authorizes use under this
|
||||||
|
License of the Program or a work on which the Program is based. The
|
||||||
|
work thus licensed is called the contributor's "contributor version".
|
||||||
|
|
||||||
|
A contributor's "essential patent claims" are all patent claims
|
||||||
|
owned or controlled by the contributor, whether already acquired or
|
||||||
|
hereafter acquired, that would be infringed by some manner, permitted
|
||||||
|
by this License, of making, using, or selling its contributor version,
|
||||||
|
but do not include claims that would be infringed only as a
|
||||||
|
consequence of further modification of the contributor version. For
|
||||||
|
purposes of this definition, "control" includes the right to grant
|
||||||
|
patent sublicenses in a manner consistent with the requirements of
|
||||||
|
this License.
|
||||||
|
|
||||||
|
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||||
|
patent license under the contributor's essential patent claims, to
|
||||||
|
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||||
|
propagate the contents of its contributor version.
|
||||||
|
|
||||||
|
In the following three paragraphs, a "patent license" is any express
|
||||||
|
agreement or commitment, however denominated, not to enforce a patent
|
||||||
|
(such as an express permission to practice a patent or covenant not to
|
||||||
|
sue for patent infringement). To "grant" such a patent license to a
|
||||||
|
party means to make such an agreement or commitment not to enforce a
|
||||||
|
patent against the party.
|
||||||
|
|
||||||
|
If you convey a covered work, knowingly relying on a patent license,
|
||||||
|
and the Corresponding Source of the work is not available for anyone
|
||||||
|
to copy, free of charge and under the terms of this License, through a
|
||||||
|
publicly available network server or other readily accessible means,
|
||||||
|
then you must either (1) cause the Corresponding Source to be so
|
||||||
|
available, or (2) arrange to deprive yourself of the benefit of the
|
||||||
|
patent license for this particular work, or (3) arrange, in a manner
|
||||||
|
consistent with the requirements of this License, to extend the patent
|
||||||
|
license to downstream recipients. "Knowingly relying" means you have
|
||||||
|
actual knowledge that, but for the patent license, your conveying the
|
||||||
|
covered work in a country, or your recipient's use of the covered work
|
||||||
|
in a country, would infringe one or more identifiable patents in that
|
||||||
|
country that you have reason to believe are valid.
|
||||||
|
|
||||||
|
If, pursuant to or in connection with a single transaction or
|
||||||
|
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||||
|
covered work, and grant a patent license to some of the parties
|
||||||
|
receiving the covered work authorizing them to use, propagate, modify
|
||||||
|
or convey a specific copy of the covered work, then the patent license
|
||||||
|
you grant is automatically extended to all recipients of the covered
|
||||||
|
work and works based on it.
|
||||||
|
|
||||||
|
A patent license is "discriminatory" if it does not include within
|
||||||
|
the scope of its coverage, prohibits the exercise of, or is
|
||||||
|
conditioned on the non-exercise of one or more of the rights that are
|
||||||
|
specifically granted under this License. You may not convey a covered
|
||||||
|
work if you are a party to an arrangement with a third party that is
|
||||||
|
in the business of distributing software, under which you make payment
|
||||||
|
to the third party based on the extent of your activity of conveying
|
||||||
|
the work, and under which the third party grants, to any of the
|
||||||
|
parties who would receive the covered work from you, a discriminatory
|
||||||
|
patent license (a) in connection with copies of the covered work
|
||||||
|
conveyed by you (or copies made from those copies), or (b) primarily
|
||||||
|
for and in connection with specific products or compilations that
|
||||||
|
contain the covered work, unless you entered into that arrangement,
|
||||||
|
or that patent license was granted, prior to 28 March 2007.
|
||||||
|
|
||||||
|
Nothing in this License shall be construed as excluding or limiting
|
||||||
|
any implied license or other defenses to infringement that may
|
||||||
|
otherwise be available to you under applicable patent law.
|
||||||
|
|
||||||
|
12. No Surrender of Others' Freedom.
|
||||||
|
|
||||||
|
If conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot convey a
|
||||||
|
covered work so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you may
|
||||||
|
not convey it at all. For example, if you agree to terms that obligate you
|
||||||
|
to collect a royalty for further conveying from those to whom you convey
|
||||||
|
the Program, the only way you could satisfy both those terms and this
|
||||||
|
License would be to refrain entirely from conveying the Program.
|
||||||
|
|
||||||
|
13. Use with the GNU Affero General Public License.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, you have
|
||||||
|
permission to link or combine any covered work with a work licensed
|
||||||
|
under version 3 of the GNU Affero General Public License into a single
|
||||||
|
combined work, and to convey the resulting work. The terms of this
|
||||||
|
License will continue to apply to the part which is the covered work,
|
||||||
|
but the special requirements of the GNU Affero General Public License,
|
||||||
|
section 13, concerning interaction through a network will apply to the
|
||||||
|
combination as such.
|
||||||
|
|
||||||
|
14. Revised Versions of this License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions of
|
||||||
|
the GNU General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the
|
||||||
|
Program specifies that a certain numbered version of the GNU General
|
||||||
|
Public License "or any later version" applies to it, you have the
|
||||||
|
option of following the terms and conditions either of that numbered
|
||||||
|
version or of any later version published by the Free Software
|
||||||
|
Foundation. If the Program does not specify a version number of the
|
||||||
|
GNU General Public License, you may choose any version ever published
|
||||||
|
by the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Program specifies that a proxy can decide which future
|
||||||
|
versions of the GNU General Public License can be used, that proxy's
|
||||||
|
public statement of acceptance of a version permanently authorizes you
|
||||||
|
to choose that version for the Program.
|
||||||
|
|
||||||
|
Later license versions may give you additional or different
|
||||||
|
permissions. However, no additional obligations are imposed on any
|
||||||
|
author or copyright holder as a result of your choosing to follow a
|
||||||
|
later version.
|
||||||
|
|
||||||
|
15. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||||
|
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||||
|
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||||
|
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||||
|
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||||
|
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
16. Limitation of Liability.
|
||||||
|
|
||||||
|
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||||
|
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||||
|
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||||
|
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||||
|
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||||
|
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||||
|
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||||
|
SUCH DAMAGES.
|
||||||
|
|
||||||
|
17. Interpretation of Sections 15 and 16.
|
||||||
|
|
||||||
|
If the disclaimer of warranty and limitation of liability provided
|
||||||
|
above cannot be given local legal effect according to their terms,
|
||||||
|
reviewing courts shall apply local law that most closely approximates
|
||||||
|
an absolute waiver of all civil liability in connection with the
|
||||||
|
Program, unless a warranty or assumption of liability accompanies a
|
||||||
|
copy of the Program in return for a fee.
|
|
@ -0,0 +1,97 @@
|
||||||
|
# DBSR: Database Search & Replace
|
||||||
|
|
||||||
|
DBSR provides functionality for committing search-and-replace-operations on
|
||||||
|
MySQL databases. It's main advantage above using a simple REPLACE()-SQL
|
||||||
|
statement is the support for parsing PHP serialized strings, which are commonly
|
||||||
|
used in for example WordPress databases.
|
||||||
|
|
||||||
|
Since DBSR does its own parsing of serialized strings, it is also able to repair
|
||||||
|
corrupted serializations, a problem often seen when less advanced search-replace
|
||||||
|
scripts were used before on the same database.
|
||||||
|
|
||||||
|
## Requirements
|
||||||
|
Minimum supported PHP version is 5.3 and is tested with versions up to 7.4. PDO
|
||||||
|
is used for connecting with the database, so make sure you have the `pdo` and
|
||||||
|
`pdo_mysql` extensions enabled.
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
First, head over to [the releases page](https://github.com/DvdGiessen/DBSR/releases)
|
||||||
|
and download the latest version of DBSR.
|
||||||
|
|
||||||
|
You can either download the CLI version which you can use from the command
|
||||||
|
line, or the GUI version which can be uploaded to a webserver and accessed
|
||||||
|
through a web browser.
|
||||||
|
|
||||||
|
*Note:* Some tutorials make you download this entire repository and put it on
|
||||||
|
your web server. I do not recommend this. For most users, just downloading the
|
||||||
|
GUI version ([DBSearchReplace-GUI.php](https://github.com/DvdGiessen/DBSR/releases))
|
||||||
|
and uploading that to your web server is the recommended way to use DBSR.
|
||||||
|
|
||||||
|
*Note:* Another thing I see many tutorials recommend is using the `extensive
|
||||||
|
search` option. In most cases, if you are just replacing plain text values
|
||||||
|
in your WordPress database, you **should not** use this option. It will make
|
||||||
|
DBSR extremely slow and is not needed, everything will work fine without it.
|
||||||
|
|
||||||
|
### GUI version
|
||||||
|
![Screenshot of the DBSR GUI](screenshot.png)
|
||||||
|
|
||||||
|
The GUI of DBSR provides a simple to use, 4 step wizard for performing search
|
||||||
|
and replace operations on your database. It has a number of handy features for
|
||||||
|
auto-detecting and completing your settings, offering some automated checks to
|
||||||
|
help prevent common mistakes, and the ability to delete itself after you've
|
||||||
|
completed all your work.
|
||||||
|
|
||||||
|
### CLI version
|
||||||
|
Usage of the CLI version is best explained by the built-in `--help` output:
|
||||||
|
|
||||||
|
```
|
||||||
|
Usage: DBSearchReplace-CLI.php [options] -- SEARCH REPLACE [SEARCH REPLACE...]
|
||||||
|
DBSearchReplace-CLI.php --file FILENAME
|
||||||
|
|
||||||
|
CLI options:
|
||||||
|
--help display this help and exit
|
||||||
|
--version print version information and
|
||||||
|
exit
|
||||||
|
--file FILENAME JSON-encoded config file to load
|
||||||
|
--output text|json output format (default: text)
|
||||||
|
PDO options:
|
||||||
|
--host HOSTNAME hostname of the MySQL server
|
||||||
|
--port PORTNUMBER port number of the MySQL server
|
||||||
|
--user USERNAME username used for connecting to
|
||||||
|
the MySQL server
|
||||||
|
--password PASSWORD password used for connecting to
|
||||||
|
the MySQL server
|
||||||
|
--database DATABASE name of the database to be
|
||||||
|
searched
|
||||||
|
--charset CHARSET character set used for
|
||||||
|
connecting to the MySQL server
|
||||||
|
DBSR options:
|
||||||
|
--case-insensitive [true|false] use case-insensitive search and
|
||||||
|
replace (default: false)
|
||||||
|
--extensive-search [true|false] process *all* database rows
|
||||||
|
(default: false)
|
||||||
|
--search-page-size SIZE number of rows to process
|
||||||
|
simultaneously (default: 10000)
|
||||||
|
--var-match-strict [true|false] use strict matching
|
||||||
|
(default: true)
|
||||||
|
--floats-precision PRECISION up to how many decimals floats
|
||||||
|
should be matched (default: 5)
|
||||||
|
--convert-charsets [true|false] automatically convert character
|
||||||
|
sets (default: true)
|
||||||
|
--var-cast-replace [true|false] cast all replace-values to the
|
||||||
|
original type (default: true)
|
||||||
|
--db-write-changes [true|false] write changed values back to the
|
||||||
|
database (default: true)
|
||||||
|
--handle-serialize [true|false] interpret serialized strings as
|
||||||
|
their PHP types (default: true)
|
||||||
|
```
|
||||||
|
|
||||||
|
For an example of a configuration file, see [example-config.json](example-config.json).
|
||||||
|
|
||||||
|
## Issues?
|
||||||
|
If you encounter any issues with DBSR, [open an issue on GitHub
|
||||||
|
](https://github.com/DvdGiessen/DBSR/issues/new) and provide as much details as
|
||||||
|
possible.
|
||||||
|
|
||||||
|
## License
|
||||||
|
DBSR is free software licensed under the GPLv3. See LICENSE for more information.
|
|
@ -0,0 +1,9 @@
|
||||||
|
ToDo-list for the DBSR project, in non-specific order
|
||||||
|
|
||||||
|
DBSR:
|
||||||
|
- Write a set of (unit) tests for DBSR and helper classes
|
||||||
|
- Add option to generate extensive logging (specific rows changed, comparision various callbacks, etc)
|
||||||
|
|
||||||
|
DBSR_GUI:
|
||||||
|
- Allow casting of input integers or floats combined with an option to enable strict search
|
||||||
|
- Add access to all other options of DBSR
|
|
@ -0,0 +1,397 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Simple compilescript for DBSR.
|
||||||
|
*
|
||||||
|
* Compared to the rest of DBSR this code is a mess,
|
||||||
|
* but since it's only used for compiling I never
|
||||||
|
* spend to much time on refactoring this. Feel free
|
||||||
|
* to do so. ;)
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Directories
|
||||||
|
$input_directory = 'src';
|
||||||
|
$output_directory = 'compiled';
|
||||||
|
|
||||||
|
// Minimize output (optimalisations like whitespace removal and file combination, reducing total size and increasing speed)
|
||||||
|
$minimize_php = TRUE;
|
||||||
|
$minimize_html = TRUE;
|
||||||
|
$minimize_js = TRUE;
|
||||||
|
$minimize_css = TRUE;
|
||||||
|
$minimize_svg = TRUE;
|
||||||
|
|
||||||
|
// Compress entire PHP output file using a compression algorithm
|
||||||
|
// Valid options: none, gzip
|
||||||
|
// Note that gzip will void cross-platform compatibility!
|
||||||
|
$compress = 'none';
|
||||||
|
|
||||||
|
// Files to compile
|
||||||
|
$compile_sets = array(
|
||||||
|
'DBSearchReplace-GUI.php' => array(
|
||||||
|
'DBSR.php',
|
||||||
|
'DBSR_GUI_Resources',
|
||||||
|
'DBSR_GUI.php',
|
||||||
|
'Bootstrapper.php',
|
||||||
|
'DBSR_GUI_Bootstrapper.php'
|
||||||
|
),
|
||||||
|
'DBSearchReplace-CLI.php' => array(
|
||||||
|
'DBSR.php',
|
||||||
|
'DBSR_CLI.php',
|
||||||
|
'Bootstrapper.php',
|
||||||
|
'DBSR_CLI_Bootstrapper.php'
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
|
// Stop throwing irritating errors, we're simply compiling!
|
||||||
|
error_reporting(0);
|
||||||
|
|
||||||
|
// Uses UglifyJS... if you don't have it, get the latest version from GitHub <https://github.com/mishoo/UglifyJS2>
|
||||||
|
function jsCompiler($code) {
|
||||||
|
// Start uglifyjs
|
||||||
|
$process = proc_open('.' . DIRECTORY_SEPARATOR . 'node_modules' . DIRECTORY_SEPARATOR . '.bin' . DIRECTORY_SEPARATOR . 'uglifyjs -c unsafe=true -b beautify=false,ascii_only=true', array(
|
||||||
|
0 => array('pipe', 'r'),
|
||||||
|
1 => array('pipe', 'w'),
|
||||||
|
2 => array('pipe', 'w'),
|
||||||
|
), $pipes);
|
||||||
|
|
||||||
|
// Check if uglifyjs could be found / started
|
||||||
|
if(is_resource($process)) {
|
||||||
|
// Write the code to STDIN for uglifyjs
|
||||||
|
fwrite($pipes[0], $code, strlen($code));
|
||||||
|
|
||||||
|
// Close the pipe so uglifyjs knows it's time to start
|
||||||
|
fclose($pipes[0]);
|
||||||
|
|
||||||
|
// Read the compressed output from STDOUT
|
||||||
|
$code_compressed = trim(stream_get_contents($pipes[1]));
|
||||||
|
|
||||||
|
// Close STDOUT to prevent deadlocks
|
||||||
|
fclose($pipes[1]);
|
||||||
|
|
||||||
|
// Read any errors from STDERR
|
||||||
|
$errors = stream_get_contents($pipes[2]);
|
||||||
|
|
||||||
|
// Close STDERR to prevent deadlocks
|
||||||
|
fclose($pipes[2]);
|
||||||
|
|
||||||
|
// Close the process handle
|
||||||
|
$return_value = proc_close($process);
|
||||||
|
|
||||||
|
// Check if the code compression completed succesfully
|
||||||
|
if($return_value > 0) {
|
||||||
|
// Something went wrong, return the old code
|
||||||
|
echo 'Warning: UglifyJS returned a non-zero value!', PHP_EOL;
|
||||||
|
if(!empty($errors)) echo $errors, PHP_EOL;
|
||||||
|
return $code;
|
||||||
|
} else {
|
||||||
|
// Return the compressed code
|
||||||
|
return $code_compressed;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// No uglifyjs, so just return the raw code
|
||||||
|
echo 'Warning: failed to run UglifyJS!', PHP_EOL;
|
||||||
|
return $code;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Process dir function
|
||||||
|
function add_resources($dir, $prefix, &$source) {
|
||||||
|
global $minimize_php, $minimize_html, $minimize_js, $minimize_css, $minimize_svg;
|
||||||
|
|
||||||
|
// Record any winnings by compression
|
||||||
|
$compression_winnings = 0;
|
||||||
|
|
||||||
|
// Load up all resources in this directory
|
||||||
|
$resources = glob($dir . DIRECTORY_SEPARATOR . '*');
|
||||||
|
|
||||||
|
// Special case: CSS/JS compression
|
||||||
|
if((preg_match('#/?js$#', $dir) && $minimize_js) || (preg_match('#/?css$#', $dir) && $minimize_css)) {
|
||||||
|
if(preg_match('#/?js$#', $dir)) {
|
||||||
|
// JS order
|
||||||
|
$order = array(
|
||||||
|
'jquery',
|
||||||
|
'jquery-ui',
|
||||||
|
'jquery-liteaccordion',
|
||||||
|
'jquery-blockui',
|
||||||
|
'script',
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
// CSS order
|
||||||
|
$order = array(
|
||||||
|
'SourceSansPro',
|
||||||
|
'SourceCodePro',
|
||||||
|
'reset',
|
||||||
|
'jquery-ui',
|
||||||
|
'jquery-liteaccordion',
|
||||||
|
'style',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Webfonts CSS special case
|
||||||
|
if(preg_match('#/?css$#', $dir)) {
|
||||||
|
$resources = array_merge($resources, glob(str_replace('css', 'webfonts', $dir) . DIRECTORY_SEPARATOR . '*.css'));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Collect resource content
|
||||||
|
$resource_content = '';
|
||||||
|
foreach($order as $o) {
|
||||||
|
foreach($resources as $key => $resource) {
|
||||||
|
if(strpos($resource, $o) !== FALSE) {
|
||||||
|
if($resource_file_content = file_get_contents($resource)) {
|
||||||
|
$resource_content .= "\n" . $resource_file_content;
|
||||||
|
} else {
|
||||||
|
exit('Unable to load file ' . basename($resource));
|
||||||
|
}
|
||||||
|
unset($resources[$key]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
foreach($resources as $key => $resource) {
|
||||||
|
if(!is_file($resource)) continue;
|
||||||
|
if(is_readable($resource) && ($resource_file_content = file_get_contents($resource))) {
|
||||||
|
$resource_content .= "\n" . $resource_file_content;
|
||||||
|
} else {
|
||||||
|
exit('Unable to load file ' . basename($resource));
|
||||||
|
}
|
||||||
|
unset($resources[$key]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Save length to calculate winnings
|
||||||
|
$resource_content_length = strlen($resource_content);
|
||||||
|
|
||||||
|
// Compile / minimize
|
||||||
|
if(preg_match('#/?js$#', $dir)) {
|
||||||
|
// JS using Closure Compiler
|
||||||
|
$resource_content = jsCompiler($resource_content);
|
||||||
|
} else {
|
||||||
|
// CSS using regexes
|
||||||
|
$resource_content = preg_replace('#/\*.*?\*/#s', '', $resource_content);
|
||||||
|
$resource_content = preg_replace('/[\r\n]+/', '', $resource_content);
|
||||||
|
$resource_content = preg_replace('/\s*([:,])\s*/', '$1', $resource_content);
|
||||||
|
$resource_content = preg_replace('/\s*{\s*/', '{', $resource_content);
|
||||||
|
$resource_content = preg_replace('/\s*;?\s*}\s*/', '}', $resource_content);
|
||||||
|
$resource_content = preg_replace('/\s+/', ' ', $resource_content);
|
||||||
|
$resource_content = trim($resource_content);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Calculate improvement by compression / minimization
|
||||||
|
$compression_winnings += $resource_content_length - strlen($resource_content);
|
||||||
|
|
||||||
|
// Write to source
|
||||||
|
if(preg_match('/[^\w\s[:print:]]/', $resource_content, $matches)) {
|
||||||
|
$resource_content = 'base64:' . base64_encode($resource_content);
|
||||||
|
} else {
|
||||||
|
$resource_content = 'normal:' . $resource_content;
|
||||||
|
}
|
||||||
|
if(preg_match('#/?js$#', $dir)) {
|
||||||
|
$source .= 'public static $js_scriptjs = ' . var_export($resource_content, TRUE) . ';' . "\n";
|
||||||
|
} else {
|
||||||
|
$source .= 'public static $css_stylecss = ' . var_export($resource_content, TRUE) . ';' . "\n";
|
||||||
|
}
|
||||||
|
} elseif(preg_match('#/?webfonts$#', $dir) && $minimize_css) {
|
||||||
|
foreach($resources as $key => $resource) {
|
||||||
|
if(preg_match('#\.css$#', $resource)) {
|
||||||
|
unset($resources[$key]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Loop through dir
|
||||||
|
foreach($resources as $resource) {
|
||||||
|
if(is_readable($resource) && is_file($resource)) {
|
||||||
|
if(!($resource_content = file_get_contents($resource))) {
|
||||||
|
exit('Unable to load file ' . basename($resource));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Save length to calculate winnings
|
||||||
|
$resource_content_length = strlen($resource_content);
|
||||||
|
|
||||||
|
// Special case: template file
|
||||||
|
if(basename($resource) == 'template.html') {
|
||||||
|
// Remove all JS tags to account for compression
|
||||||
|
if($minimize_js) $resource_content = preg_replace('#(\s*<script[^>]+></script>)+(\s+<script[^>]+script.js[^>]+></script>)#', '$2', $resource_content);
|
||||||
|
|
||||||
|
// Remove all LINK tags to account for CSS compression
|
||||||
|
if($minimize_css) $resource_content = preg_replace('#(\s*<link[^>]*rel="stylesheet"[^>]*/>)+(\s+<link[^>]+style.css[^>]+/>)#', '$2', $resource_content);
|
||||||
|
|
||||||
|
// Remove useless HTML whitespace
|
||||||
|
if($minimize_html) {
|
||||||
|
$resource_content = preg_replace('/\s+/', ' ', $resource_content);
|
||||||
|
$resource_content = str_replace('> <', '><', $resource_content);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Special case: SVG font files
|
||||||
|
if(substr(basename($resource), -4) == '.svg' && $minimize_svg) {
|
||||||
|
$resource_content = preg_replace('/\s+/', ' ', $resource_content);
|
||||||
|
$resource_content = str_replace('> <', '><', $resource_content);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Calculate improvement by compression / minimization
|
||||||
|
$compression_winnings += $resource_content_length - strlen($resource_content);
|
||||||
|
|
||||||
|
if(preg_match('/[^\w\s[:print:]]/', $resource_content)) {
|
||||||
|
$resource_content = 'base64:' . base64_encode($resource_content);
|
||||||
|
} else {
|
||||||
|
$resource_content = 'normal:' . $resource_content;
|
||||||
|
}
|
||||||
|
$source .= 'public static $' . preg_replace('/[^\w]/', '', preg_replace('#[/\\\\]#', '_', ($prefix == '' ? '' : ($prefix . '/')) . basename($resource))) . ' = ' . var_export($resource_content, TRUE) . ';' . "\n";
|
||||||
|
} elseif(is_readable($resource) && is_dir($resource)) {
|
||||||
|
$compression_winnings += add_resources($resource, ($prefix == '' ? '' : ($prefix . '/')) . basename($resource), $source);
|
||||||
|
} else {
|
||||||
|
exit('Unable to load file ' . basename($resource));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return $compression_winnings;
|
||||||
|
}
|
||||||
|
|
||||||
|
function normalizeFileSize($size) {
|
||||||
|
$filesizename = array(' bytes', ' KiB', ' MiB', ' GiB', ' TiB', ' PiB', ' EiB', ' ZiB', ' YiB');
|
||||||
|
return $size ? round($size/pow(1024, ($i = floor(log($size, 1024)))), 2) . $filesizename[$i] : '0 bytes';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Process each file set
|
||||||
|
foreach($compile_sets as $name => $files) {
|
||||||
|
$compression_winnings = 0;
|
||||||
|
$source = '<?php';
|
||||||
|
foreach($files as $key => $file) {
|
||||||
|
$file_path = $input_directory . DIRECTORY_SEPARATOR . $file;
|
||||||
|
if(is_readable($file_path) && is_dir($file_path)) {
|
||||||
|
$source .= ' class ' . $file . ' { ';
|
||||||
|
$compression_winnings += add_resources($file_path, '', $source);
|
||||||
|
$source .= '
|
||||||
|
/**
|
||||||
|
* Get the resource file content.
|
||||||
|
* @param string $resource The filename of the resource.
|
||||||
|
* @return mixed The content of the file as string, or FALSE if unsuccessful.
|
||||||
|
*/
|
||||||
|
public static function getResource($resource) {
|
||||||
|
// Clean the resource name
|
||||||
|
$resource = preg_replace(\'/[^\w]/\', \'\', preg_replace(\'#[/\\\\\\\\]#\', \'_\', $resource));
|
||||||
|
|
||||||
|
// Look it up and return it
|
||||||
|
if(isset(static::$$resource)) {
|
||||||
|
// Check for base64 encoding
|
||||||
|
switch(substr(static::$$resource, 0, 6)) {
|
||||||
|
case \'base64\':
|
||||||
|
return base64_decode(substr(static::$$resource, 7));
|
||||||
|
|
||||||
|
default:
|
||||||
|
case \'normal\':
|
||||||
|
return substr(static::$$resource, 7);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
}';
|
||||||
|
$source .= '}';
|
||||||
|
} elseif(is_readable($file_path) && is_file($file_path)) {
|
||||||
|
$source .= substr(file_get_contents($file_path), 5);
|
||||||
|
} else {
|
||||||
|
exit('Unable to load file ' . $file);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if($minimize_php) {
|
||||||
|
$compressed = '';
|
||||||
|
|
||||||
|
$tokens = token_get_all($source);
|
||||||
|
$previous_token_keyword = FALSE;
|
||||||
|
$previous_token_char = FALSE;
|
||||||
|
foreach($tokens as $token) {
|
||||||
|
if(is_array($token)) {
|
||||||
|
switch($token[0]) {
|
||||||
|
case T_DOC_COMMENT:
|
||||||
|
case T_COMMENT:
|
||||||
|
case T_WHITESPACE:
|
||||||
|
continue 2;
|
||||||
|
}
|
||||||
|
$current_token_keyword = FALSE;
|
||||||
|
switch($token[0]) {
|
||||||
|
case T_ABSTRACT:
|
||||||
|
case T_AS:
|
||||||
|
case T_BREAK:
|
||||||
|
case T_CALLABLE:
|
||||||
|
case T_CASE:
|
||||||
|
case T_CLASS:
|
||||||
|
case T_CLONE:
|
||||||
|
case T_CONST:
|
||||||
|
case T_CONTINUE:
|
||||||
|
case T_ECHO:
|
||||||
|
case T_ELSE:
|
||||||
|
case T_ELSEIF:
|
||||||
|
case T_EXTENDS:
|
||||||
|
case T_FINAL:
|
||||||
|
case T_FUNCTION:
|
||||||
|
case T_GLOBAL:
|
||||||
|
case T_GOTO:
|
||||||
|
case T_IMPLEMENTS:
|
||||||
|
case T_INCLUDE:
|
||||||
|
case T_INCLUDE_ONCE:
|
||||||
|
case T_INSTANCEOF:
|
||||||
|
case T_INSTEADOF:
|
||||||
|
case T_INTERFACE:
|
||||||
|
case T_LOGICAL_AND:
|
||||||
|
case T_LOGICAL_OR:
|
||||||
|
case T_LOGICAL_XOR:
|
||||||
|
case T_NAMESPACE:
|
||||||
|
case T_NEW:
|
||||||
|
case T_PRIVATE:
|
||||||
|
case T_PUBLIC:
|
||||||
|
case T_PROTECTED:
|
||||||
|
case T_REQUIRE:
|
||||||
|
case T_REQUIRE_ONCE:
|
||||||
|
case T_RETURN:
|
||||||
|
case T_STATIC:
|
||||||
|
case T_THROW:
|
||||||
|
case T_TRAIT:
|
||||||
|
case T_USE:
|
||||||
|
case T_VAR:
|
||||||
|
case T_RETURN:
|
||||||
|
$current_token_keyword = TRUE;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
$compressed .= (!$previous_token_char && ($previous_token_keyword || $current_token_keyword) ? ' ' : '') . $token[1];
|
||||||
|
|
||||||
|
$previous_token_keyword = $current_token_keyword;
|
||||||
|
$previous_token_char = FALSE;
|
||||||
|
} else {
|
||||||
|
$compressed .= $token;
|
||||||
|
$previous_token_keyword = FALSE;
|
||||||
|
$previous_token_char = TRUE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$compressed = trim(substr($compressed, 5));
|
||||||
|
|
||||||
|
switch($compress) {
|
||||||
|
case 'gzip':
|
||||||
|
$compressed = 'eval(gzuncompress(base64_decode(\'' . base64_encode(gzcompress($compressed, 9)) . '\')));';
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Re-insert the GPL into the compressed
|
||||||
|
$compressed = '<?php' . "\n" .
|
||||||
|
'/* This file is part of DBSR.' . "\n" .
|
||||||
|
' *' . "\n" .
|
||||||
|
' * DBSR is free software: you can redistribute it and/or modify' . "\n" .
|
||||||
|
' * it under the terms of the GNU General Public License as published by' . "\n" .
|
||||||
|
' * the Free Software Foundation, either version 3 of the License, or' . "\n" .
|
||||||
|
' * (at your option) any later version.' . "\n" .
|
||||||
|
' *' . "\n" .
|
||||||
|
' * DBSR is distributed in the hope that it will be useful,' . "\n" .
|
||||||
|
' * but WITHOUT ANY WARRANTY; without even the implied warranty of' . "\n" .
|
||||||
|
' * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the' . "\n" .
|
||||||
|
' * GNU General Public License for more details.' . "\n" .
|
||||||
|
' *' . "\n" .
|
||||||
|
' * You should have received a copy of the GNU General Public License' . "\n" .
|
||||||
|
' * along with DBSR. If not, see <http://www.gnu.org/licenses/>.' . "\n" .
|
||||||
|
' */' . "\n" .
|
||||||
|
$compressed;
|
||||||
|
|
||||||
|
file_put_contents($output_directory . DIRECTORY_SEPARATOR . $name, $compressed);
|
||||||
|
echo 'Compiled file ', $name, ', total size is ' . normalizeFileSize(strlen($compressed)) . ' (including ', round(100 * (1 - (strlen($compressed) / (strlen($source) + $compression_winnings))), 1), '% reduction by compression)' . (PHP_SAPI == 'cli' ? '' : '<br />') . PHP_EOL;
|
||||||
|
} else {
|
||||||
|
file_put_contents($output_directory . DIRECTORY_SEPARATOR . $name, $source);
|
||||||
|
echo 'Compiled file ', $name, ', total size is ' . normalizeFileSize(strlen($source)) . (PHP_SAPI == 'cli' ? '' : '<br />') . PHP_EOL;
|
||||||
|
}
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,50 @@
|
||||||
|
{
|
||||||
|
"name": "dvdgiessen/dbsr",
|
||||||
|
"description": "Database Search & Replace",
|
||||||
|
"keywords": ["DBSR", "database", "search", "replace", "search-replace", "mysql", "sql"],
|
||||||
|
"homepage": "https://github.com/DvdGiessen/DBSR#readme",
|
||||||
|
"license": "GPL-3.0",
|
||||||
|
"authors": [{
|
||||||
|
"name": "DvdGiessen",
|
||||||
|
"email": "dbsr@dvdgiessen.nl",
|
||||||
|
"homepage": "http://www.dvdgiessen.nl/"
|
||||||
|
}],
|
||||||
|
"support": {
|
||||||
|
"issues": "https://github.com/DvdGiessen/DBSR/issues",
|
||||||
|
"source": "https://github.com/DvdGiessen/DBSR"
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"": "src/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"bin": [
|
||||||
|
"compiled/DBSearchReplace-CLI.php"
|
||||||
|
],
|
||||||
|
"require": {
|
||||||
|
"php": "^5.3 || ^7.0",
|
||||||
|
"ext-pdo": "*",
|
||||||
|
"ext-pdo_mysql": "*"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"eloquent/composer-npm-bridge": "4.1",
|
||||||
|
"friendsofphp/php-cs-fixer": "^2.16",
|
||||||
|
"phpunit/phpunit": "^9.2",
|
||||||
|
"squizlabs/php_codesniffer": "^3.4",
|
||||||
|
"vimeo/psalm": "^3.11"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"compile": "php -f compile.php",
|
||||||
|
"lint": [
|
||||||
|
"php-cs-fixer fix --dry-run --diff",
|
||||||
|
"phpcs --standard=PSR12 src test",
|
||||||
|
"psalm"
|
||||||
|
],
|
||||||
|
"fix": [
|
||||||
|
"php-cs-fixer fix",
|
||||||
|
"phpcbf --standard=PSR12 src test",
|
||||||
|
"psalter --issues=MissingReturnType,MissingClosureReturnType,InvalidReturnType,InvalidNullableReturnType,InvalidFalsableReturnType,MissingParamType,MismatchingDocblockParamType,MismatchingDocblockReturnType,PossiblyUndefinedVariable,PossiblyUndefinedGlobalVariable"
|
||||||
|
],
|
||||||
|
"test": "phpunit"
|
||||||
|
}
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"options": {
|
||||||
|
"CLI": {
|
||||||
|
"output": "json"
|
||||||
|
},
|
||||||
|
"PDO": {
|
||||||
|
"hostname": "localhost",
|
||||||
|
"port": 3306,
|
||||||
|
"username": "root",
|
||||||
|
"password": "",
|
||||||
|
"database": "exampledatabase",
|
||||||
|
"charset": "utf8"
|
||||||
|
},
|
||||||
|
"DBSR": {
|
||||||
|
"case-insensitive": false,
|
||||||
|
"extensive-search": false,
|
||||||
|
"search-page-size": 10000,
|
||||||
|
"var-match-strict": true,
|
||||||
|
"floats-precision": 5,
|
||||||
|
"convert-charsets": true,
|
||||||
|
"var-cast-replace": true,
|
||||||
|
"db-write-changes": true,
|
||||||
|
"handle-serialize": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"search": ["Daniel"],
|
||||||
|
"replace": ["Daniël"]
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Basic index file for easy usage of the development version.
|
||||||
|
* Note that you shouldn't use this file in production, use a
|
||||||
|
* compiled file instead!
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Turn up error reporting so parse errors in the bootstrappers will be shown
|
||||||
|
error_reporting(E_ALL);
|
||||||
|
|
||||||
|
// Set up debugging constant
|
||||||
|
define('DEBUG', TRUE);
|
||||||
|
|
||||||
|
// Load up bootstrapper so initialization can be run
|
||||||
|
require_once 'src/Bootstrapper.php';
|
||||||
|
|
||||||
|
// For development: Fast switch between CLI and GUI
|
||||||
|
if(PHP_SAPI == 'cli' || isset($_GET['args'])) {
|
||||||
|
require_once 'src/DBSR_CLI_Bootstrapper.php';
|
||||||
|
} else {
|
||||||
|
require_once 'src/DBSR_GUI_Bootstrapper.php';
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
"name": "dbsr",
|
||||||
|
"description": "Database Search & Replace",
|
||||||
|
"author": "Daniël van de Giessen",
|
||||||
|
"license": "GPL-3.0",
|
||||||
|
"homepage": "https://github.com/DvdGiessen/DBSR#readme",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/DvdGiessen/DBSR/issues"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"DBSR",
|
||||||
|
"database",
|
||||||
|
"search",
|
||||||
|
"replace",
|
||||||
|
"search-replace",
|
||||||
|
"mysql",
|
||||||
|
"sql"
|
||||||
|
],
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "git+https://github.com/DvdGiessen/DBSR.git"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"uglify-js": "^3.10.0"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"npm-check-updates": "^7.0.1"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<phpunit backupGlobals="false"
|
||||||
|
backupStaticAttributes="false"
|
||||||
|
colors="true"
|
||||||
|
convertErrorsToExceptions="true"
|
||||||
|
convertNoticesToExceptions="true"
|
||||||
|
convertWarningsToExceptions="true"
|
||||||
|
beStrictAboutChangesToGlobalState="true"
|
||||||
|
beStrictAboutOutputDuringTests="true"
|
||||||
|
beStrictAboutTestsThatDoNotTestAnything="true"
|
||||||
|
enforceTimeLimit="true"
|
||||||
|
processIsolation="false"
|
||||||
|
stopOnFailure="false">
|
||||||
|
<testsuites>
|
||||||
|
<testsuite name="DBSR testsuite">
|
||||||
|
<directory>./test/</directory>
|
||||||
|
</testsuite>
|
||||||
|
</testsuites>
|
||||||
|
<logging>
|
||||||
|
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
|
||||||
|
<log type="coverage-clover" target="coverage.xml"/>
|
||||||
|
<log type="coverage-html" target="coverage"/>
|
||||||
|
</logging>
|
||||||
|
</phpunit>
|
|
@ -0,0 +1,28 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
<psalm
|
||||||
|
name="Psalm config for DBSR"
|
||||||
|
stopOnFirstError="false"
|
||||||
|
useDocblockTypes="true"
|
||||||
|
totallyTyped="false"
|
||||||
|
>
|
||||||
|
<projectFiles>
|
||||||
|
<directory name="src" />
|
||||||
|
<directory name="test" />
|
||||||
|
</projectFiles>
|
||||||
|
|
||||||
|
<issueHandlers>
|
||||||
|
<LessSpecificReturnType errorLevel="info" />
|
||||||
|
|
||||||
|
<!-- level 3 issues - slightly lazy code writing, but provably low false-negatives -->
|
||||||
|
<DeprecatedMethod errorLevel="info" />
|
||||||
|
|
||||||
|
<MissingClosureReturnType errorLevel="info" />
|
||||||
|
<MissingReturnType errorLevel="info" />
|
||||||
|
<MissingPropertyType errorLevel="info" />
|
||||||
|
<InvalidDocblock errorLevel="info" />
|
||||||
|
<MisplacedRequiredParam errorLevel="info" />
|
||||||
|
|
||||||
|
<PropertyNotSetInConstructor errorLevel="info" />
|
||||||
|
<MissingConstructor errorLevel="info" />
|
||||||
|
</issueHandlers>
|
||||||
|
</psalm>
|
Binary file not shown.
After Width: | Height: | Size: 58 KiB |
|
@ -0,0 +1,197 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Provides basic bootstrapper functionality.
|
||||||
|
*/
|
||||||
|
class Bootstrapper
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Private variable used to prevent initialization function from running multiple times.
|
||||||
|
*
|
||||||
|
* @var boolean
|
||||||
|
*/
|
||||||
|
private static $is_initialized = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper function for converting errors to exceptions.
|
||||||
|
*
|
||||||
|
* @param integer $errno The type of the error.
|
||||||
|
* @param string $errstr The error message.
|
||||||
|
* @param string $errfile The filename where the error occured.
|
||||||
|
* @param integer $errline The line number where the error occured.
|
||||||
|
* @throws ErrorException With the given error, unless the error_reporting value does not include given error number.
|
||||||
|
*/
|
||||||
|
public static function exception_error_handler($errno, $errstr, $errfile, $errline)
|
||||||
|
{
|
||||||
|
if (($errno & error_reporting()) != 0) {
|
||||||
|
throw new ErrorException($errstr, 0, $errno, $errfile, $errline);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper function for autoloading classes.
|
||||||
|
*
|
||||||
|
* @param string $class_name The name of the class to be loaded.
|
||||||
|
* @return boolean TRUE when the class was loaded successfully, FALSE otherwise.
|
||||||
|
*/
|
||||||
|
public static function autoloader($class_name)
|
||||||
|
{
|
||||||
|
// Check if class already exists
|
||||||
|
if (class_exists($class_name)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// For each include path
|
||||||
|
$include_paths = explode(PATH_SEPARATOR, get_include_path());
|
||||||
|
foreach ($include_paths as $include_path) {
|
||||||
|
// Skip empty items
|
||||||
|
if (empty($include_path) || !is_dir($include_path)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Clean up the include path
|
||||||
|
$include_path = rtrim($include_path, '\\/' . \DIRECTORY_SEPARATOR) . \DIRECTORY_SEPARATOR;
|
||||||
|
|
||||||
|
// For each extension
|
||||||
|
foreach (array('.php', '.php5', '.inc.php', '.inc.php5', '.inc') as $extension) {
|
||||||
|
// Check for filename in subdirectories
|
||||||
|
$count = substr_count($class_name, '_');
|
||||||
|
for ($i = 0; $i <= $count; $i++) {
|
||||||
|
// Replace $i'th first underscores by directory separators
|
||||||
|
$filename = $include_path . preg_replace('/_/', \DIRECTORY_SEPARATOR, $class_name, $i) . $extension;
|
||||||
|
if (is_readable($filename)) {
|
||||||
|
include_once $filename;
|
||||||
|
if (class_exists($class_name)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Appearantly, the class couldn't be loaded
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper function for magic quote reversal: runs stripslashes recursively on an array.
|
||||||
|
*
|
||||||
|
* @see stripslashes()
|
||||||
|
*
|
||||||
|
* @param mixed $value The value to strip slashes from.
|
||||||
|
* @return mixed The value with slashes stripped off.
|
||||||
|
*/
|
||||||
|
protected static function stripslashes_recursive($value)
|
||||||
|
{
|
||||||
|
return is_array($value) ? array_map(array(__CLASS__, 'stripslashes_recursive'), $value) : (is_string($value) ? stripslashes($value) : $value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes basic PHP stuff like error handling, include paths, magic quote reversal, internal character encoding, timezones.
|
||||||
|
*/
|
||||||
|
public static function initialize()
|
||||||
|
{
|
||||||
|
// Check initialization status
|
||||||
|
if (static::$is_initialized) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set up error handling
|
||||||
|
set_error_handler(array(__CLASS__, 'exception_error_handler'));
|
||||||
|
|
||||||
|
// Define DEBUG constant
|
||||||
|
if (!defined('DEBUG')) {
|
||||||
|
define('DEBUG', false);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set error reporting level
|
||||||
|
error_reporting(DEBUG ? E_ALL : 0);
|
||||||
|
|
||||||
|
// Set up include path
|
||||||
|
set_include_path(get_include_path() . PATH_SEPARATOR . realpath(__DIR__));
|
||||||
|
|
||||||
|
// Set up autoloader
|
||||||
|
spl_autoload_register(array(__CLASS__, 'autoloader'));
|
||||||
|
|
||||||
|
// Get rid of magic quotes
|
||||||
|
if (function_exists('get_magic_quotes_gpc') && @get_magic_quotes_gpc()) {
|
||||||
|
$_POST = static::stripslashes_recursive($_POST);
|
||||||
|
$_GET = static::stripslashes_recursive($_GET);
|
||||||
|
$_COOKIE = static::stripslashes_recursive($_COOKIE);
|
||||||
|
$_REQUEST = static::stripslashes_recursive($_REQUEST);
|
||||||
|
@ini_set('magic_quotes_gpc', false);
|
||||||
|
}
|
||||||
|
if (function_exists('set_magic_quotes_runtime')) {
|
||||||
|
@set_magic_quotes_runtime(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Try to remove any memory limitations
|
||||||
|
@ini_set('memory_limit', '-1');
|
||||||
|
|
||||||
|
// Try to set the PCRE recursion limit to a sane value
|
||||||
|
// See http://stackoverflow.com/a/7627962
|
||||||
|
@ini_set('pcre.recursion_limit', '100');
|
||||||
|
|
||||||
|
// Set internal character encoding
|
||||||
|
@ini_set('default_charset', 'UTF-8');
|
||||||
|
if (extension_loaded('mbstring')) {
|
||||||
|
@mb_internal_encoding('UTF-8');
|
||||||
|
}
|
||||||
|
if (version_compare(PHP_VERSION, '5.6', '<') && extension_loaded('iconv')) {
|
||||||
|
@iconv_set_encoding('internal_encoding', 'UTF-8');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set the timezone
|
||||||
|
date_default_timezone_set('UTC');
|
||||||
|
|
||||||
|
// Set initialization status
|
||||||
|
static::$is_initialized = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Destroys the current PHP session.
|
||||||
|
*/
|
||||||
|
public static function sessionDestroy()
|
||||||
|
{
|
||||||
|
$_SESSION = array();
|
||||||
|
session_destroy();
|
||||||
|
session_commit();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Starts a PHP session and provides basic protection against session hijacking.
|
||||||
|
*/
|
||||||
|
public static function sessionStart()
|
||||||
|
{
|
||||||
|
// Determine current security data
|
||||||
|
$security_data = array(
|
||||||
|
'server_ip' => @$_SERVER['SERVER_ADDR'],
|
||||||
|
'server_file' => __FILE__,
|
||||||
|
'client_ip' => $_SERVER['REMOTE_ADDR'],
|
||||||
|
'client_ua' => $_SERVER['HTTP_USER_AGENT']
|
||||||
|
);
|
||||||
|
|
||||||
|
// Set the session life time to 24 hours
|
||||||
|
@ini_set('sessions.gc_maxlifetime', (string) (60 * 60 * 24));
|
||||||
|
|
||||||
|
// Set the session name
|
||||||
|
session_name('DBSR_session');
|
||||||
|
|
||||||
|
// Open a session to access and store user data
|
||||||
|
session_start();
|
||||||
|
|
||||||
|
// If the session is new...
|
||||||
|
if (session_id() == '' || !isset($_SESSION['_session_security_data'])) {
|
||||||
|
// Set the security data
|
||||||
|
$_SESSION['_session_security_data'] = $security_data;
|
||||||
|
} else {
|
||||||
|
// Check if the session is invalid
|
||||||
|
if ($_SESSION['_session_security_data'] !== $security_data) {
|
||||||
|
// Destroy the current session
|
||||||
|
static::sessionDestroy();
|
||||||
|
|
||||||
|
// Start a new one
|
||||||
|
static::sessionStart();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,582 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* DBSR_CLI provides a CLI interface for the DBSR class.
|
||||||
|
*/
|
||||||
|
class DBSR_CLI
|
||||||
|
{
|
||||||
|
// Static properties
|
||||||
|
/**
|
||||||
|
* Options available as parameters and their default values.
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
protected static $default_options = array(
|
||||||
|
'CLI' => array(
|
||||||
|
'help' => array(
|
||||||
|
'name' => array('help', 'h', '?'),
|
||||||
|
'parameter' => null,
|
||||||
|
'description' => 'display this help and exit',
|
||||||
|
'default_value' => null,
|
||||||
|
),
|
||||||
|
'version' => array(
|
||||||
|
'name' => array('version', 'v'),
|
||||||
|
'parameter' => null,
|
||||||
|
'description' => 'print version information and exit',
|
||||||
|
'default_value' => null,
|
||||||
|
),
|
||||||
|
'file' => array(
|
||||||
|
'name' => array('file', 'configfile', 'config', 'f'),
|
||||||
|
'parameter' => 'FILENAME',
|
||||||
|
'description' => 'JSON-encoded config file to load',
|
||||||
|
'default_value' => null,
|
||||||
|
),
|
||||||
|
'output' => array(
|
||||||
|
'name' => array('output', 'o'),
|
||||||
|
'parameter' => 'text|json',
|
||||||
|
'description' => 'output format',
|
||||||
|
'default_value' => 'text',
|
||||||
|
),
|
||||||
|
),
|
||||||
|
|
||||||
|
'PDO' => array(
|
||||||
|
'host' => array(
|
||||||
|
'name' => array('host', 'hostname'),
|
||||||
|
'parameter' => 'HOSTNAME',
|
||||||
|
'description' => 'hostname of the MySQL server',
|
||||||
|
'default_value' => null,
|
||||||
|
),
|
||||||
|
'port' => array(
|
||||||
|
'name' => array('port', 'portnumber'),
|
||||||
|
'parameter' => 'PORTNUMBER',
|
||||||
|
'description' => 'port number of the MySQL server',
|
||||||
|
'default_value' => null,
|
||||||
|
),
|
||||||
|
'user' => array(
|
||||||
|
'name' => array('user', 'username', 'u'),
|
||||||
|
'parameter' => 'USERNAME',
|
||||||
|
'description' => 'username used for connecting to the MySQL server',
|
||||||
|
'default_value' => null,
|
||||||
|
),
|
||||||
|
'password' => array(
|
||||||
|
'name' => array('password', 'pass', 'p'),
|
||||||
|
'parameter' => 'PASSWORD',
|
||||||
|
'description' => 'password used for connecting to the MySQL server',
|
||||||
|
'default_value' => null,
|
||||||
|
),
|
||||||
|
'database' => array(
|
||||||
|
'name' => array('database', 'db', 'd'),
|
||||||
|
'parameter' => 'DATABASE',
|
||||||
|
'description' => 'name of the database to be searched',
|
||||||
|
'default_value' => null,
|
||||||
|
),
|
||||||
|
'charset' => array(
|
||||||
|
'name' => array('charset', 'characterset', 'char'),
|
||||||
|
'parameter' => 'CHARSET',
|
||||||
|
'description' => 'character set used for connecting to the MySQL server',
|
||||||
|
'default_value' => null,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
|
||||||
|
'DBSR' => array(
|
||||||
|
DBSR::OPTION_CASE_INSENSITIVE => array(
|
||||||
|
'name' => 'case-insensitive',
|
||||||
|
'parameter' => '[true|false]',
|
||||||
|
'description' => 'use case-insensitive search and replace',
|
||||||
|
'default_value' => false,
|
||||||
|
),
|
||||||
|
DBSR::OPTION_EXTENSIVE_SEARCH => array(
|
||||||
|
'name' => 'extensive-search',
|
||||||
|
'parameter' => '[true|false]',
|
||||||
|
'description' => 'process *all* database rows',
|
||||||
|
'default_value' => false,
|
||||||
|
),
|
||||||
|
DBSR::OPTION_SEARCH_PAGE_SIZE => array(
|
||||||
|
'name' => 'search-page-size',
|
||||||
|
'parameter' => 'SIZE',
|
||||||
|
'description' => 'number of rows to process simultaneously',
|
||||||
|
'default_value' => 10000,
|
||||||
|
),
|
||||||
|
DBSR::OPTION_VAR_MATCH_STRICT => array(
|
||||||
|
'name' => 'var-match-strict',
|
||||||
|
'parameter' => '[true|false]',
|
||||||
|
'description' => 'use strict matching',
|
||||||
|
'default_value' => true,
|
||||||
|
),
|
||||||
|
DBSR::OPTION_FLOATS_PRECISION => array(
|
||||||
|
'name' => 'floats-precision',
|
||||||
|
'parameter' => 'PRECISION',
|
||||||
|
'description' => 'up to how many decimals floats should be matched',
|
||||||
|
'default_value' => 5,
|
||||||
|
),
|
||||||
|
DBSR::OPTION_CONVERT_CHARSETS => array(
|
||||||
|
'name' => 'convert-charsets',
|
||||||
|
'parameter' => '[true|false]',
|
||||||
|
'description' => 'automatically convert character sets',
|
||||||
|
'default_value' => true,
|
||||||
|
),
|
||||||
|
DBSR::OPTION_VAR_CAST_REPLACE => array(
|
||||||
|
'name' => 'var-cast-replace',
|
||||||
|
'parameter' => '[true|false]',
|
||||||
|
'description' => 'cast all replace-values to the original type',
|
||||||
|
'default_value' => true,
|
||||||
|
),
|
||||||
|
DBSR::OPTION_DB_WRITE_CHANGES => array(
|
||||||
|
'name' => 'db-write-changes',
|
||||||
|
'parameter' => '[true|false]',
|
||||||
|
'description' => 'write changed values back to the database',
|
||||||
|
'default_value' => true,
|
||||||
|
),
|
||||||
|
DBSR::OPTION_HANDLE_SERIALIZE => array(
|
||||||
|
'name' => 'handle-serialize',
|
||||||
|
'parameter' => '[true|false]',
|
||||||
|
'description' => 'interpret serialized strings as their PHP types',
|
||||||
|
'default_value' => true,
|
||||||
|
),
|
||||||
|
DBSR::OPTION_LOCK_TABLES => array(
|
||||||
|
'name' => 'lock-tables',
|
||||||
|
'parameter' => '[true|false]',
|
||||||
|
'description' => 'lock tables when running',
|
||||||
|
'default_value' => true,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
|
// Static methods
|
||||||
|
/**
|
||||||
|
* Prints the version string.
|
||||||
|
*/
|
||||||
|
public static function printVersion()
|
||||||
|
{
|
||||||
|
echo 'DBSR ' . DBSR::VERSION . ' CLI, running on PHP ', PHP_VERSION, ' (', \PHP_SAPI, '), ', PHP_OS, '.', "\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prints the help text based on $default_options.
|
||||||
|
*
|
||||||
|
* @param $filename The filename to display, NULL for autodetect using $argv.
|
||||||
|
*/
|
||||||
|
public static function printHelp($filename = null)
|
||||||
|
{
|
||||||
|
$pad_left = 4;
|
||||||
|
$width_left = 40;
|
||||||
|
$width_right = 32;
|
||||||
|
if (null === $filename) {
|
||||||
|
if (isset($_SERVER['argv']) && is_array($_SERVER['argv'])) {
|
||||||
|
$filename = $_SERVER['argv'][0];
|
||||||
|
} else {
|
||||||
|
$filename = basename($_SERVER['SCRIPT_NAME']);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static::printVersion();
|
||||||
|
|
||||||
|
echo "\n",
|
||||||
|
'Usage: ', $filename, ' [options] -- SEARCH REPLACE [SEARCH REPLACE...]', "\n" .
|
||||||
|
' ', $filename, ' --file FILENAME', "\n" .
|
||||||
|
"\n";
|
||||||
|
foreach (static::$default_options as $name => $optionset) {
|
||||||
|
echo $name, ' options:', "\n";
|
||||||
|
foreach ($optionset as $option) {
|
||||||
|
// Force type to array
|
||||||
|
$option['name'] = (array) $option['name'];
|
||||||
|
|
||||||
|
// Option
|
||||||
|
$parameter = (strlen($option['name'][0]) > 1 ? '--' : '-') . $option['name'][0];
|
||||||
|
|
||||||
|
// Parameter
|
||||||
|
if (null !== $option['parameter']) {
|
||||||
|
$parameter .= ' ' . $option['parameter'];
|
||||||
|
}
|
||||||
|
|
||||||
|
// Description
|
||||||
|
$description_array = preg_split('/(.{1,' . $width_right . '}(?:\s(?!$)|(?=$)))/', $option['description'], null, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE);
|
||||||
|
$description = $description_array[0];
|
||||||
|
for ($i = 1; $i < count($description_array); $i++) {
|
||||||
|
$description .= "\n" . str_repeat(' ', $width_left + $pad_left) . $description_array[$i];
|
||||||
|
}
|
||||||
|
|
||||||
|
// Default
|
||||||
|
if (null !== $option['default_value']) {
|
||||||
|
$default = $option['default_value'];
|
||||||
|
if (is_bool($default)) {
|
||||||
|
$default = $default ? 'true' : 'false';
|
||||||
|
} else {
|
||||||
|
$default = (string) $default;
|
||||||
|
}
|
||||||
|
$default = ' (default: ' . $default . ')';
|
||||||
|
if (strlen($description_array[count($description_array) - 1]) + strlen($default) > $width_right) {
|
||||||
|
$description .= "\n" . str_repeat(' ', $width_left + $pad_left - 1);
|
||||||
|
}
|
||||||
|
$description .= $default;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Echo the option
|
||||||
|
echo str_repeat(' ', $pad_left), str_pad($parameter, $width_left), $description, "\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the corresponding default option given a switch name.
|
||||||
|
*
|
||||||
|
* @param string $switch The switch to search for.
|
||||||
|
* @param boolean $check_prefix Whether to check for the correct prefix.
|
||||||
|
* @return mixed The option array, or FALSE if the switch was not found.
|
||||||
|
*/
|
||||||
|
protected static function getOption($switch, $check_prefix = true)
|
||||||
|
{
|
||||||
|
foreach (static::$default_options as $setname => $set) {
|
||||||
|
foreach ($set as $id => $option) {
|
||||||
|
foreach ((array) $option['name'] as $name) {
|
||||||
|
if ($switch == ($check_prefix ? (strlen($name) > 1 ? ('--' . $name) : ('-' . $name)) : $name)) {
|
||||||
|
$option['set'] = $setname;
|
||||||
|
$option['id'] = $id;
|
||||||
|
return $option;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Properties
|
||||||
|
/**
|
||||||
|
* @var PDO
|
||||||
|
*/
|
||||||
|
protected $pdo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var DBSR
|
||||||
|
*/
|
||||||
|
protected $dbsr;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Options currently set.
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
protected $options = array();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The search-values.
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
protected $search = array();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The replace-values.
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
protected $replace = array();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* List of configfiles which have been processed.
|
||||||
|
* Used to reprevent recursive inclusion.
|
||||||
|
*
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
private $configfiles = array();
|
||||||
|
|
||||||
|
// Methods
|
||||||
|
/**
|
||||||
|
* Constructor: builds a new DBSR_CLI object and initalizes all options to their defaults
|
||||||
|
*/
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
foreach (static::$default_options as $setname => $set) {
|
||||||
|
foreach ($set as $id => $option) {
|
||||||
|
if (null !== $option['default_value']) {
|
||||||
|
$this->options[$setname][$id] = $option['default_value'];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Executes DBSR with the currently set options. Does not return but dies with the result.
|
||||||
|
*/
|
||||||
|
public function exec()
|
||||||
|
{
|
||||||
|
// Prepare the DSN and PDO options array
|
||||||
|
$pdo_options = array(
|
||||||
|
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
|
||||||
|
);
|
||||||
|
|
||||||
|
$dsn = 'mysql:';
|
||||||
|
if (isset($this->options['PDO']['host'])) {
|
||||||
|
$dsn .= 'host=' . $this->options['PDO']['host'];
|
||||||
|
if (isset($this->options['PDO']['port'])) {
|
||||||
|
$dsn .= ':' . $this->options['PDO']['port'];
|
||||||
|
}
|
||||||
|
$dsn .= ';';
|
||||||
|
}
|
||||||
|
if (isset($this->options['PDO']['database'])) {
|
||||||
|
$dsn .= 'dbname=' . $this->options['PDO']['database'] . ';';
|
||||||
|
}
|
||||||
|
if (isset($this->options['PDO']['charset'])) {
|
||||||
|
$pdo_options[PDO::MYSQL_ATTR_INIT_COMMAND] = 'SET NAMES ' . $this->options['PDO']['charset'];
|
||||||
|
$dsn .= 'charset=' . $this->options['PDO']['charset'] . ';';
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
// Try building a PDO, DBSR and running the search- and replace-action
|
||||||
|
$this->pdo = new PDO($dsn, @$this->options['PDO']['user'], @$this->options['PDO']['password'], $pdo_options);
|
||||||
|
$this->dbsr = new DBSR($this->pdo);
|
||||||
|
|
||||||
|
// Set the DBSR options
|
||||||
|
foreach ($this->options['DBSR'] as $option => $value) {
|
||||||
|
$this->dbsr->setOption($option, $value);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set the search- and replace-values
|
||||||
|
$this->dbsr->setValues($this->search, $this->replace);
|
||||||
|
|
||||||
|
// Execute DBSR
|
||||||
|
$result = $this->dbsr->exec();
|
||||||
|
} catch (Exception $e) {
|
||||||
|
// Check the output type for the exception
|
||||||
|
switch ($this->options['CLI']['output']) {
|
||||||
|
case 'json':
|
||||||
|
exit(json_encode(array('error' => $e->getMessage())));
|
||||||
|
|
||||||
|
case 'text':
|
||||||
|
default:
|
||||||
|
exit($e->getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Output the result
|
||||||
|
switch ($this->options['CLI']['output']) {
|
||||||
|
case 'text':
|
||||||
|
exit('Result: ' . $result . ' rows were ' . ($this->options['DBSR'][DBSR::OPTION_DB_WRITE_CHANGES] ? 'changed' : 'matched (no changes were written to the databasse)') . '!');
|
||||||
|
|
||||||
|
case 'json':
|
||||||
|
exit(json_encode(array('result' => $result)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parses command line arguments. Directly outputs and dies in case of errors.
|
||||||
|
*
|
||||||
|
* @param array $arguments The array of arguments, the first element being the script's filename.
|
||||||
|
*/
|
||||||
|
public function parseArguments(array $arguments)
|
||||||
|
{
|
||||||
|
if (empty($arguments)) {
|
||||||
|
if (isset($_SERVER['argv']) && is_array($_SERVER['argv'])) {
|
||||||
|
$arguments = $_SERVER['argv'];
|
||||||
|
} else {
|
||||||
|
$arguments = array(basename($_SERVER['SCRIPT_NAME']));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if there are no arguments
|
||||||
|
if (count($arguments) <= 1) {
|
||||||
|
echo 'Usage: ', $arguments[0], ' [options] -- SEARCH REPLACE [SEARCH REPLACE...]', "\n" .
|
||||||
|
' ', $arguments[0], ' --file FILENAME', "\n" .
|
||||||
|
'Try `', $arguments[0], ' --help` for more information.', "\n";
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Loop over all arguments
|
||||||
|
for ($i = 1; $i < count($arguments); $i++) {
|
||||||
|
switch ($arguments[$i]) {
|
||||||
|
case '--':
|
||||||
|
// Check the number of search- and replace-values
|
||||||
|
if (count($arguments) - 1 - $i == 0) {
|
||||||
|
exit('Missing search- and replace-values!');
|
||||||
|
}
|
||||||
|
if ((count($arguments) - 1 - $i) % 2 != 0) {
|
||||||
|
exit('Missing replace-value for seach-value: ' . (string) $arguments[count($arguments) - 1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Save all search- and replace-values
|
||||||
|
for (++$i; $i < count($arguments); $i++) {
|
||||||
|
$this->search[] = $arguments[$i];
|
||||||
|
$this->replace[] = $arguments[++$i];
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
// Get the option
|
||||||
|
$option = static::getOption($arguments[$i]);
|
||||||
|
if (!$option) {
|
||||||
|
exit('Unknown argument: ' . (string) $arguments[$i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check for any arguments
|
||||||
|
if (null !== $option['parameter']) {
|
||||||
|
$arg = @$arguments[$i + 1];
|
||||||
|
|
||||||
|
// Boolean value without argument?
|
||||||
|
if (is_bool($option['default_value']) && (null === $arg || preg_match('/^\-/', $arg))) {
|
||||||
|
$this->options[$option['set']][$option['id']] = !$option['default_value'];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Missing argument?
|
||||||
|
if (null === $arg || preg_match('/^\-/', $arg)) {
|
||||||
|
exit('Missing option for ' . (string) $arguments[$i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Special cases
|
||||||
|
switch ($option['set'] . '/' . $option['id']) {
|
||||||
|
case 'CLI/output':
|
||||||
|
if ($arg == 'json' && !extension_loaded('json')) {
|
||||||
|
exit('Error: The PHP JSON extension is not available!');
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 'CLI/file':
|
||||||
|
if (!extension_loaded('json')) {
|
||||||
|
exit('Error: The PHP JSON extension is not available!');
|
||||||
|
}
|
||||||
|
if (!$this->parseConfig($arg)) {
|
||||||
|
exit('Failed to parse config file: ' . (string) $arg);
|
||||||
|
}
|
||||||
|
$i++;
|
||||||
|
break 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse the argument
|
||||||
|
if (null !== $option['default_value']) {
|
||||||
|
// Special cases and specific error messages
|
||||||
|
if (is_bool($option['default_value'])) {
|
||||||
|
if (strtolower($arg) == 'true') {
|
||||||
|
$arg = true;
|
||||||
|
} elseif (strtolower($arg) == 'false') {
|
||||||
|
$arg = false;
|
||||||
|
} elseif (is_numeric($arg)) {
|
||||||
|
$arg = (bool) (int) $arg;
|
||||||
|
} else {
|
||||||
|
exit('Invalid argument, expected boolean for ' . (string) $arguments[$i]);
|
||||||
|
}
|
||||||
|
} elseif (is_int()) {
|
||||||
|
if (is_numeric($arg)) {
|
||||||
|
$arg = (int) $arg;
|
||||||
|
} else {
|
||||||
|
exit('Invalid argument, expected integer for ' . (string) $arguments[$i]);
|
||||||
|
}
|
||||||
|
} elseif (is_float()) {
|
||||||
|
if (is_numeric($arg)) {
|
||||||
|
$arg = (float) $arg;
|
||||||
|
} else {
|
||||||
|
exit('Invalid argument, expected float for ' . (string) $arguments[$i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Typeset
|
||||||
|
settype($arg, gettype($option['default_value']));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Save the argument
|
||||||
|
$this->options[$option['set']][$option['id']] = $arg;
|
||||||
|
$i++;
|
||||||
|
} else {
|
||||||
|
// Special cases
|
||||||
|
switch ($option['set'] . '/' . $option['id']) {
|
||||||
|
case 'CLI/help':
|
||||||
|
exit(static::printHelp($arguments[0]));
|
||||||
|
|
||||||
|
case 'CLI/version':
|
||||||
|
exit(static::printVersion());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parses a config file
|
||||||
|
* @param string $file Path to the config file.
|
||||||
|
*/
|
||||||
|
public function parseConfig($file)
|
||||||
|
{
|
||||||
|
// Check if the file exists
|
||||||
|
if (!file_exists($file) || !realpath($file)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if we've read the file before
|
||||||
|
if (in_array(realpath($file), $this->configfiles)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
$this->configfiles[] = realpath($file);
|
||||||
|
|
||||||
|
// Read file contents
|
||||||
|
$file_contents = @file_get_contents($file);
|
||||||
|
if (!$file_contents) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Decode content
|
||||||
|
$file_array = json_decode($file_contents, true);
|
||||||
|
if (!is_array($file_array)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Load search- and replace-values (if existing)
|
||||||
|
if (isset($file_array['search']) && is_array($file_array['search'])) {
|
||||||
|
$this->search += $file_array['search'];
|
||||||
|
}
|
||||||
|
if (isset($file_array['replace']) && is_array($file_array['replace'])) {
|
||||||
|
$this->replace += $file_array['replace'];
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check for options
|
||||||
|
if (isset($file_array['options']) && is_array($file_array['options'])) {
|
||||||
|
// Return success
|
||||||
|
return $this->_parseConfigArray($file_array['options']);
|
||||||
|
} else {
|
||||||
|
// No options, no problems
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* parseConfig: runs through an option array and parses every option.
|
||||||
|
*
|
||||||
|
* @param array $array The array of options
|
||||||
|
* $return boolean TRUE if the array was parsed succesfully, FALSE otherwise.
|
||||||
|
*/
|
||||||
|
private function _parseConfigArray(array $array)
|
||||||
|
{
|
||||||
|
foreach ($array as $key => $element) {
|
||||||
|
if (is_array($element)) {
|
||||||
|
if (!$this->_parseConfigArray($element)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Check the option
|
||||||
|
$option = static::getOption($key, false);
|
||||||
|
if (!$option) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Special cases without paramaters
|
||||||
|
switch ($option['set'] . '/' . $option['id']) {
|
||||||
|
case 'CLI/help':
|
||||||
|
exit(static::printHelp());
|
||||||
|
|
||||||
|
case 'CLI/version':
|
||||||
|
exit(static::printVersion());
|
||||||
|
}
|
||||||
|
|
||||||
|
// No parameter? No go!
|
||||||
|
if (null === $option['parameter']) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Special cases with paramaters
|
||||||
|
switch ($option['set'] . '/' . $option['id']) {
|
||||||
|
case 'CLI/file':
|
||||||
|
if (!$this->parseConfig($element)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Save the value
|
||||||
|
$this->options[$option['set']][$option['id']] = $element;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,53 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Bootstrapper for the DBSR CLI.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Initialization
|
||||||
|
Bootstrapper::initialize();
|
||||||
|
|
||||||
|
// If it seems we're running from a webserver
|
||||||
|
if (\PHP_SAPI != 'cli' && !empty($_SERVER['REMOTE_ADDR'])) {
|
||||||
|
// Build a argument array
|
||||||
|
$_SERVER['argv'] = array(basename($_SERVER['SCRIPT_FILENAME']));
|
||||||
|
if (isset($_GET['args']) && strlen(trim($_GET['args'])) > 0) {
|
||||||
|
$_SERVER['argv'] = array_merge($_SERVER['argv'], explode(' ', trim($_GET['args'])));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Don't output HTML in any of the internal functions
|
||||||
|
@ini_set('html_errors', 0);
|
||||||
|
|
||||||
|
/** Output buffer callback function with a simple CLI webinterface */
|
||||||
|
function DBSR_CLI_output($output)
|
||||||
|
{
|
||||||
|
header('Content-Type: text/html; charset=UTF-8');
|
||||||
|
return '<!DOCTYPE html>' . "\n" .
|
||||||
|
'<html lang="en">' . "\n" .
|
||||||
|
'<head>' . "\n" .
|
||||||
|
"\t" . '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />' . "\n" .
|
||||||
|
"\t" . '<title>DBSR CLI</title>' . "\n" .
|
||||||
|
'</head>' . "\n" .
|
||||||
|
'<body>' . "\n" .
|
||||||
|
"\t" . '<form action="' . @$_SERVER['argv'][0] . '" method="get">' . "\n" .
|
||||||
|
"\t\t" . '<p>' . htmlspecialchars(@$_SERVER['argv'][0]) . ' <input type="text" name="args" value="' . htmlspecialchars(@$_GET['args']) . '" size="100" autofocus="autofocus"/></p>' . "\n" .
|
||||||
|
"\t" . '</form>' . "\n" .
|
||||||
|
"\t" . '<pre>' . htmlspecialchars($output) . '</pre>' . "\n" .
|
||||||
|
'</body>' . "\n" .
|
||||||
|
'</html>';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Start the CLI output bufferer
|
||||||
|
ob_start('DBSR_CLI_output');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create a new DBSR_CLI instance
|
||||||
|
$cli = new DBSR_CLI();
|
||||||
|
|
||||||
|
// Parse the arguments passed to the script
|
||||||
|
$cli->parseArguments($_SERVER['argv']);
|
||||||
|
|
||||||
|
// Execute the actual search- and replace-action
|
||||||
|
$cli->exec();
|
||||||
|
|
||||||
|
// There's no continuing after including this file
|
||||||
|
exit;
|
|
@ -0,0 +1,829 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* DBSR_GUI provides functionality for the GUI interface for the DBSR class.
|
||||||
|
*/
|
||||||
|
class DBSR_GUI
|
||||||
|
{
|
||||||
|
// Constants
|
||||||
|
/**
|
||||||
|
* Formatting option: formats as a plain, HTML-safe, string.
|
||||||
|
*/
|
||||||
|
const FORMAT_STRING_PLAINHTML = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Formatting option: formats as a PHP escaped string.
|
||||||
|
*/
|
||||||
|
const FORMAT_STRING_PHPESCAPE = 1;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Formatting option: formats as a hex editor.
|
||||||
|
*/
|
||||||
|
const FORMAT_STRING_HEXEDITOR = 2;
|
||||||
|
|
||||||
|
// Properties
|
||||||
|
/**
|
||||||
|
* Options set during for this DBSR_GUI instance.
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
protected $options = array();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The maximum step completed succesfully.
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
|
protected $maxStep = 0;
|
||||||
|
|
||||||
|
// Static methods
|
||||||
|
/**
|
||||||
|
* Formats a string according to the given formatting style.
|
||||||
|
*
|
||||||
|
* @param string $string The string to be formatted.
|
||||||
|
* @param int $format One of the DBSR_GUI::FORMAT_STRING_* constants.
|
||||||
|
* @return string The formatted string.
|
||||||
|
*/
|
||||||
|
public static function formatString($string, $format = self::FORMAT_STRING_PLAINHTML)
|
||||||
|
{
|
||||||
|
// Check input
|
||||||
|
if (!is_string($string)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Result string
|
||||||
|
$result = '';
|
||||||
|
|
||||||
|
// Switch format
|
||||||
|
switch ($format) {
|
||||||
|
case static::FORMAT_STRING_PHPESCAPE:
|
||||||
|
$result .= '"';
|
||||||
|
for ($i = 0; $i < strlen($string); $i++) {
|
||||||
|
switch ($string[$i]) {
|
||||||
|
case "\n":
|
||||||
|
$result .= '\\n';
|
||||||
|
break;
|
||||||
|
case "\r":
|
||||||
|
$result .= '\\r';
|
||||||
|
break;
|
||||||
|
case "\t":
|
||||||
|
$result .= '\\t';
|
||||||
|
break;
|
||||||
|
case "\x0B":
|
||||||
|
$result .= '\\v';
|
||||||
|
break;
|
||||||
|
case "\x1B":
|
||||||
|
$result .= '\\e';
|
||||||
|
break;
|
||||||
|
case "\x0C":
|
||||||
|
$result .= '\\f';
|
||||||
|
break;
|
||||||
|
case '\\':
|
||||||
|
$result .= '\\\\';
|
||||||
|
break;
|
||||||
|
case "\"":
|
||||||
|
$result .= '\\"';
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
$ord = ord($string[$i]);
|
||||||
|
if ($ord >= 32 && $ord < 127) {
|
||||||
|
$result .= htmlspecialchars($string[$i]);
|
||||||
|
} else {
|
||||||
|
$result .= '\\x' . str_pad(strtoupper(dechex($ord)), 2, '0', STR_PAD_LEFT);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$result .= '"';
|
||||||
|
break;
|
||||||
|
|
||||||
|
case static::FORMAT_STRING_HEXEDITOR:
|
||||||
|
// Padding for non-visible characters
|
||||||
|
static $pad = '.';
|
||||||
|
|
||||||
|
// Calculate strst padding string
|
||||||
|
static $from = '';
|
||||||
|
static $to = '';
|
||||||
|
if ($from === '') {
|
||||||
|
for ($i = 0; $i <= 0xFF; $i++) {
|
||||||
|
$from .= chr($i);
|
||||||
|
$to .= ($i >= 0x20 && $i <= 0x7E) ? chr($i) : $pad;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Number of bytes per line
|
||||||
|
$width = max(min(strlen($string), strlen($string) > 48 ? 16 : 8), 1);
|
||||||
|
|
||||||
|
$hex = str_split(bin2hex($string), $width * 2);
|
||||||
|
$chars = str_split(strtr($string, $from, $to), $width);
|
||||||
|
|
||||||
|
$offset = 0;
|
||||||
|
$leftpad = strlen((string) strlen($string));
|
||||||
|
foreach ($hex as $i => $line) {
|
||||||
|
$result .= '<b>';
|
||||||
|
$result .= str_pad($offset, $leftpad, ' ', STR_PAD_LEFT);
|
||||||
|
$result .= '</b> : ';
|
||||||
|
$result .= str_pad(implode(' ', str_split($line, 2)), 3 * $width, ' ', STR_PAD_RIGHT);
|
||||||
|
$result .= ' [<i>';
|
||||||
|
$result .= htmlspecialchars(str_pad($chars[$i], $width, ' ', STR_PAD_RIGHT));
|
||||||
|
$result .= '</i>]<br />' . "\n";
|
||||||
|
$offset += $width;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case static::FORMAT_STRING_PLAINHTML:
|
||||||
|
default:
|
||||||
|
$result = htmlspecialchars($string);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return the result
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the levenshtein distance between two strings.
|
||||||
|
*
|
||||||
|
* Though having the same complexity (O(n*m)) as the
|
||||||
|
* build-in PHP function it's implemented a lot more
|
||||||
|
* efficiently. The build-in version of PHP uses a m*n
|
||||||
|
* matrix to calculate the distance, resulting in a huge
|
||||||
|
* memory hog (which is why the maximum string length is
|
||||||
|
* limited to 255 chars). This version uses a bottom-up
|
||||||
|
* dynamic programming approach which limits the matrix
|
||||||
|
* size to 2*n, speeding up the memory allocation and
|
||||||
|
* allowing for longer input strings.
|
||||||
|
*
|
||||||
|
* @param string $str1 The first string to be compared.
|
||||||
|
* @param string $str2 The seconds string to be compared.
|
||||||
|
* @return integer The levenshtein distance between the two strings.
|
||||||
|
*/
|
||||||
|
public static function levenshtein($str1, $str2)
|
||||||
|
{
|
||||||
|
// Save string lengths
|
||||||
|
$len1 = strlen($str1);
|
||||||
|
$len2 = strlen($str2);
|
||||||
|
|
||||||
|
// Strip common prefix
|
||||||
|
$i = 0;
|
||||||
|
do {
|
||||||
|
if (substr($str1, $i, 1) != substr($str2, $i, 1)) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
$i++;
|
||||||
|
$len1--;
|
||||||
|
$len2--;
|
||||||
|
} while ($len1 > 0 && $len2 > 0);
|
||||||
|
if ($i > 0) {
|
||||||
|
$str1 = substr($str1, $i);
|
||||||
|
$str2 = substr($str2, $i);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Strip common suffix
|
||||||
|
$i = 0;
|
||||||
|
do {
|
||||||
|
if (substr($str1, $len1 - 1, 1) != substr($str2, $len2-1, 1)) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
$i++;
|
||||||
|
$len1--;
|
||||||
|
$len2--;
|
||||||
|
} while ($len1 > 0 && $len2 > 0);
|
||||||
|
if ($i > 0) {
|
||||||
|
$str1 = substr($str1, 0, $len1);
|
||||||
|
$str2 = substr($str2, 0, $len2);
|
||||||
|
}
|
||||||
|
|
||||||
|
// If either of the strings has length 0; return the length of the other string
|
||||||
|
if ($len1 == 0) {
|
||||||
|
return $len2;
|
||||||
|
}
|
||||||
|
if ($len2 == 0) {
|
||||||
|
return $len1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create the arrays
|
||||||
|
$v0 = range(0, $len1);
|
||||||
|
$v1 = array();
|
||||||
|
|
||||||
|
// The actual algorithm
|
||||||
|
for ($i = 1; $i <= $len2; $i++) {
|
||||||
|
$v1[0] = $i;
|
||||||
|
$str2j = substr($str2, $i - 1, 1);
|
||||||
|
|
||||||
|
for ($j = 1; $j <= $len1; $j++) {
|
||||||
|
$cost = (substr($str1, $j - 1, 1) == $str2j) ? 0 : 1;
|
||||||
|
|
||||||
|
$m_min = $v0[$j] + 1;
|
||||||
|
$b = $v1[$j - 1] + 1;
|
||||||
|
$c = $v0[$j - 1] + $cost;
|
||||||
|
|
||||||
|
if ($b < $m_min) {
|
||||||
|
$m_min = $b;
|
||||||
|
}
|
||||||
|
if ($c < $m_min) {
|
||||||
|
$m_min = $c;
|
||||||
|
}
|
||||||
|
|
||||||
|
$v1[$j] = $m_min;
|
||||||
|
}
|
||||||
|
|
||||||
|
$vTmp = $v0;
|
||||||
|
$v0 = $v1;
|
||||||
|
$v1 = $vTmp;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $v0[$len1];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the resource file content.
|
||||||
|
* @param string $resource The filename of the resource.
|
||||||
|
* @return mixed The content of the file as string, or FALSE if unsuccessful.
|
||||||
|
*/
|
||||||
|
public static function getResource($resource)
|
||||||
|
{
|
||||||
|
// Check if a compiled version is available
|
||||||
|
if (class_exists('DBSR_GUI_Resources', false)) {
|
||||||
|
return DBSR_GUI_Resources::getResource($resource);
|
||||||
|
}
|
||||||
|
|
||||||
|
// No directory traversing
|
||||||
|
if (preg_match('/\\.\\.[\\/\\\\]/', $resource)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Correct resource path separators
|
||||||
|
$resource = str_replace('/', \DIRECTORY_SEPARATOR, $resource);
|
||||||
|
|
||||||
|
// Add path to filename
|
||||||
|
$resource = __DIR__ . \DIRECTORY_SEPARATOR . 'DBSR_GUI_Resources' . \DIRECTORY_SEPARATOR . $resource;
|
||||||
|
|
||||||
|
// Does the file exists
|
||||||
|
if (!is_readable($resource) || !is_file($resource)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return the content
|
||||||
|
return @file_get_contents($resource);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a MySQL PDO instance according to the given parameters.
|
||||||
|
*
|
||||||
|
* @param string $db_host
|
||||||
|
* @param integer $db_port
|
||||||
|
* @param string $db_user
|
||||||
|
* @param string $db_pass
|
||||||
|
* @param string $db_name
|
||||||
|
* @param sttring $db_char
|
||||||
|
*
|
||||||
|
* @throws PDOException
|
||||||
|
*/
|
||||||
|
public static function getPDO($db_host = null, $db_port = null, $db_user = null, $db_pass = null, $db_name = null, $db_char = null)
|
||||||
|
{
|
||||||
|
// Prepare the DSN and PDO options array
|
||||||
|
$pdo_options = array(
|
||||||
|
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
|
||||||
|
);
|
||||||
|
|
||||||
|
$dsn = 'mysql:';
|
||||||
|
if (!empty($db_host)) {
|
||||||
|
$dsn .= 'host=' . $db_host;
|
||||||
|
if (!empty($db_port)) {
|
||||||
|
$dsn .= ':' . $db_port;
|
||||||
|
}
|
||||||
|
$dsn .= ';';
|
||||||
|
}
|
||||||
|
if (!empty($db_name)) {
|
||||||
|
$dsn .= 'dbname=' . $db_name . ';';
|
||||||
|
}
|
||||||
|
if (!empty($db_char)) {
|
||||||
|
$pdo_options[PDO::MYSQL_ATTR_INIT_COMMAND] = 'SET NAMES ' . $db_char;
|
||||||
|
$dsn .= 'charset=' . $db_char . ';';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Try connecting
|
||||||
|
return new PDO($dsn, $db_user, $db_pass, $pdo_options);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Searches available configuration files for database configuration.
|
||||||
|
*
|
||||||
|
* @return array All values detected from configuration files.
|
||||||
|
*/
|
||||||
|
public static function detectConfig()
|
||||||
|
{
|
||||||
|
// Variables to retrieve
|
||||||
|
$variables = array(
|
||||||
|
'db_host' => 'DB_HOST',
|
||||||
|
'db_user' => 'DB_USER',
|
||||||
|
'db_pass' => 'DB_PASSWORD',
|
||||||
|
'db_name' => 'DB_NAME',
|
||||||
|
'db_char' => 'DB_CHARSET',
|
||||||
|
'wp_prefix' => '$table_prefix',
|
||||||
|
);
|
||||||
|
|
||||||
|
// Configfiles, will be seached in order
|
||||||
|
$configfiles = array(
|
||||||
|
'database.conf.php',
|
||||||
|
'wp-config.php',
|
||||||
|
'..' . \DIRECTORY_SEPARATOR . 'database.conf.php',
|
||||||
|
'..' . \DIRECTORY_SEPARATOR . 'wp-config.php',
|
||||||
|
);
|
||||||
|
|
||||||
|
// Result array
|
||||||
|
$detected = array();
|
||||||
|
|
||||||
|
// For each configfile
|
||||||
|
foreach ($configfiles as $configfile) {
|
||||||
|
if (count($variables) > 0) {
|
||||||
|
// Load it
|
||||||
|
if (file_exists($configfile) && ($config = file_get_contents($configfile))) {
|
||||||
|
// By default, the entire file is the block
|
||||||
|
$config_blocks = array($config);
|
||||||
|
|
||||||
|
// Try to determine if a specific block contains our needs
|
||||||
|
$regex_block = '/(?:[iI][fF]\s*\(\s*[sS][tT][rR][iI]?(?:[sS][tT][rR]|[pP][oO][sS])\s*\(\s*\$_SERVER\s*\[\s*[\'"]SERVER_NAME[\'"]\s*\]\s*,\s*[\'"]((?:[^\'"]|\\\\\'|\\\\")*)[\'"]\s*\)[^\)]*\)|[eE][lL][sS][eE])\s*(\{(?:[^\{\}]*|\2)*\})/ms';
|
||||||
|
if (preg_match_all($regex_block, $config, $matches, PREG_SET_ORDER)) {
|
||||||
|
// For each subset
|
||||||
|
foreach ($matches as &$match) {
|
||||||
|
// Discard the complete match
|
||||||
|
array_shift($match);
|
||||||
|
|
||||||
|
// Check if the detected name matches agains the current server name
|
||||||
|
if ($match[0] == '' || stripos($_SERVER['SERVER_NAME'], $match[0]) !== false) {
|
||||||
|
// Add this block as prefered block
|
||||||
|
array_unshift($config_blocks, $match[1]);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Loop through each block
|
||||||
|
foreach ($config_blocks as $config_block) {
|
||||||
|
if (count($variables) > 0) {
|
||||||
|
// Search for each variable and unset it if found
|
||||||
|
foreach ($variables as $varname => $variable) {
|
||||||
|
if (count($variables) > 0) {
|
||||||
|
// Is this a define or a simple variable?
|
||||||
|
if ($variable[0] == '$') {
|
||||||
|
$regex_variable = '/' . preg_quote($variable) . '\s*=\s*[\'"](([^\'"]|\\\\\'|\\\\")*)[\'"]\s*;/';
|
||||||
|
} else {
|
||||||
|
$regex_variable = '/[dD][eE][fF][iI][nN][eE]\s*\(\s*[\'"]' . preg_quote($variable) . '[\'"]\s*,\s*[\'"](([^\'"]|\\\\\'|\\\\")*)[\'"]\s*\)\s*;/';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Find the variable
|
||||||
|
if (preg_match($regex_variable, $config_block, $matches)) {
|
||||||
|
$detected[$varname] = $matches[1];
|
||||||
|
unset($variables[$varname]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Special case: extract the port number from the hostname
|
||||||
|
if (isset($detected['db_host']) && preg_match('/^(.*):(\d+)$/', $detected['db_host'], $matches)) {
|
||||||
|
$detected['db_host'] = $matches[1];
|
||||||
|
$detected['db_port'] = $matches[2];
|
||||||
|
}
|
||||||
|
if (isset($detected['db_host']) && !isset($detected['db_port'])) {
|
||||||
|
$detected['db_port'] = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return the results
|
||||||
|
return $detected;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides auto-complete hints for a given field.
|
||||||
|
*
|
||||||
|
* @param string $id The id of the field.
|
||||||
|
* @param string $term The currently typed term.
|
||||||
|
* @param array $arguments Other arguments currently filled in the form.
|
||||||
|
* @return array The hints, in order of likelyhood.
|
||||||
|
*/
|
||||||
|
public static function autoComplete($id, $term, $arguments)
|
||||||
|
{
|
||||||
|
switch ($id) {
|
||||||
|
case 'db_name':
|
||||||
|
try {
|
||||||
|
// Check if we can connect to the database with the given arguments
|
||||||
|
$pdo = static::getPDO(@$arguments['db_host'], @$arguments['db_port'], @$arguments['db_user'], @$arguments['db_pass'], null, null);
|
||||||
|
|
||||||
|
// Fetch a list of databases
|
||||||
|
$result = $pdo->query('SHOW DATABASES;', PDO::FETCH_COLUMN, 0);
|
||||||
|
|
||||||
|
// Filter matching databases
|
||||||
|
$databases = array();
|
||||||
|
foreach ($result as $r) {
|
||||||
|
if (strtolower(substr($r, 0, strlen($term))) == strtolower($term)) {
|
||||||
|
$databases[] = $r;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return result
|
||||||
|
return $databases;
|
||||||
|
} catch (Exception $e) {
|
||||||
|
// Error: return nothing
|
||||||
|
return array();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'db_char':
|
||||||
|
try {
|
||||||
|
// Check if we can connect to the database with the given arguments
|
||||||
|
$pdo = static::getPDO(@$arguments['db_host'], @$arguments['db_port'], @$arguments['db_user'], @$arguments['db_pass'], null, null);
|
||||||
|
|
||||||
|
// Fetch a list of databases
|
||||||
|
$result = $pdo->query('SHOW CHARACTER SET;', PDO::FETCH_COLUMN, 0);
|
||||||
|
|
||||||
|
// Filter matching databases
|
||||||
|
$charsets = array();
|
||||||
|
foreach ($result as $r) {
|
||||||
|
if (strtolower(substr($r, 0, strlen($term))) == strtolower($term)) {
|
||||||
|
$charsets[] = $r;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return result
|
||||||
|
return $charsets;
|
||||||
|
} catch (Exception $e) {
|
||||||
|
// Error: return nothing
|
||||||
|
return array();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
// Unknown field, return nothing
|
||||||
|
return array();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Methods
|
||||||
|
/**
|
||||||
|
* Constructor: resets the step for every new instance.
|
||||||
|
*/
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
$this->resetStep();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Validates the AJAX requests and returns a response for the GUI.
|
||||||
|
*
|
||||||
|
* @param integer $step The step to validate.
|
||||||
|
* @param array $arguments The arguments for validating this step.
|
||||||
|
*
|
||||||
|
* @return array The response to send to the GUI.
|
||||||
|
*/
|
||||||
|
public function completeStep($step, $arguments)
|
||||||
|
{
|
||||||
|
if ($step > $this->maxStep + 1) {
|
||||||
|
return array(
|
||||||
|
'valid' => false,
|
||||||
|
'error' => 'First complete step ' . ($this->maxStep + 1) . '!'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
switch ($step) {
|
||||||
|
case 1:
|
||||||
|
// Validate the database connection information
|
||||||
|
if (!isset($arguments['db_host']) || empty($arguments['db_host'])) {
|
||||||
|
return array(
|
||||||
|
'valid' => false,
|
||||||
|
'error' => 'Please enter a hostname!',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if (!isset($arguments['db_name']) || empty($arguments['db_name'])) {
|
||||||
|
return array(
|
||||||
|
'valid' => false,
|
||||||
|
'error' => 'Please enter a database name!',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if (!isset($arguments['db_char']) || empty($arguments['db_char'])) {
|
||||||
|
return array(
|
||||||
|
'valid' => false,
|
||||||
|
'error' => 'Please enter a character set!',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Try to connect
|
||||||
|
try {
|
||||||
|
$pdo = static::getPDO(@$arguments['db_host'], @$arguments['db_port'], @$arguments['db_user'], @$arguments['db_pass'], @$arguments['db_name'], @$arguments['db_char']);
|
||||||
|
$pdo->query('SHOW TABLES;');
|
||||||
|
} catch (Exception $e) {
|
||||||
|
return array(
|
||||||
|
'valid' => false,
|
||||||
|
'error' => $e->getMessage(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Save maximum step
|
||||||
|
$this->maxStep = $step;
|
||||||
|
|
||||||
|
// Save options
|
||||||
|
$this->options['db_host'] = @$arguments['db_host'];
|
||||||
|
$this->options['db_port'] = @$arguments['db_port'];
|
||||||
|
$this->options['db_user'] = @$arguments['db_user'];
|
||||||
|
$this->options['db_pass'] = @$arguments['db_pass'];
|
||||||
|
$this->options['db_name'] = @$arguments['db_name'];
|
||||||
|
$this->options['db_char'] = @$arguments['db_char'];
|
||||||
|
|
||||||
|
// Return data for the GUI
|
||||||
|
return array(
|
||||||
|
'valid' => true,
|
||||||
|
'data' => array(
|
||||||
|
'db_host' => @$arguments['db_host'],
|
||||||
|
'db_port' => @$arguments['db_port'],
|
||||||
|
'db_user' => @$arguments['db_user'],
|
||||||
|
'db_pass' => @$arguments['db_pass'],
|
||||||
|
'db_name' => @$arguments['db_name'],
|
||||||
|
'db_char' => @$arguments['db_char'],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
|
case 2:
|
||||||
|
// Check the search- and replace-values
|
||||||
|
if (!is_array(@$arguments['search']) || count(@$arguments['search']) == 0) {
|
||||||
|
return array(
|
||||||
|
'valid' => false,
|
||||||
|
'error' => 'Missing search values!',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if (!is_array(@$arguments['replace']) || count(@$arguments['replace']) == 0 || count(@$arguments['search']) != count(@$arguments['replace'])) {
|
||||||
|
return array(
|
||||||
|
'valid' => false,
|
||||||
|
'error' => 'Missing replace values!',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Clean indices
|
||||||
|
$arguments['search'] = array_values(@$arguments['search']);
|
||||||
|
$arguments['replace'] = array_values(@$arguments['replace']);
|
||||||
|
|
||||||
|
// Parse escaped values
|
||||||
|
$escapedvalues = isset($arguments['escapedvalues']) && strtolower($arguments['escapedvalues']) == 'on';
|
||||||
|
if ($escapedvalues) {
|
||||||
|
for ($i = 0; $i < count($arguments['search']); $i++) {
|
||||||
|
$arguments['search'][$i] = stripcslashes($arguments['search'][$i]);
|
||||||
|
$arguments['replace'][$i] = stripcslashes($arguments['replace'][$i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove all identical values
|
||||||
|
for ($i = 0; $i < count($arguments['search']); $i++) {
|
||||||
|
if (empty($arguments['search'][$i])) {
|
||||||
|
return array(
|
||||||
|
'valid' => false,
|
||||||
|
'error' => 'Search-value cannot be empty!',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if ($arguments['search'][$i] === $arguments['replace'][$i]) {
|
||||||
|
array_splice($arguments['search'], $i, 1);
|
||||||
|
array_splice($arguments['replace'], $i, 1);
|
||||||
|
$i--;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check the length again
|
||||||
|
if (count($arguments['search']) == 0) {
|
||||||
|
return array(
|
||||||
|
'valid' => false,
|
||||||
|
'error' => 'All given search- and replace-values are identical!',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Save maximum step
|
||||||
|
$this->maxStep = $step;
|
||||||
|
|
||||||
|
// Save options
|
||||||
|
$this->options['search'] = $arguments['search'];
|
||||||
|
$this->options['replace'] = $arguments['replace'];
|
||||||
|
|
||||||
|
$this->options['escapedvalues'] = $escapedvalues;
|
||||||
|
$this->options['dbsr_caseinsensitive'] = isset($arguments['dbsr_caseinsensitive']) && strtolower($arguments['dbsr_caseinsensitive']) == 'on';
|
||||||
|
$this->options['dbsr_extensivesearch'] = isset($arguments['dbsr_extensivesearch']) && strtolower($arguments['dbsr_extensivesearch']) == 'on';
|
||||||
|
|
||||||
|
// Return data for the GUI
|
||||||
|
$values = array();
|
||||||
|
foreach (array(
|
||||||
|
'values_raw' => static::FORMAT_STRING_PLAINHTML,
|
||||||
|
'values_escaped' => static::FORMAT_STRING_PHPESCAPE,
|
||||||
|
'values_hex' => static::FORMAT_STRING_HEXEDITOR,
|
||||||
|
) as $name => $type) {
|
||||||
|
$values[$name] = '';
|
||||||
|
for ($i = 0; $i < count($arguments['search']); $i++) {
|
||||||
|
$values[$name] .= '<tr><td><code>';
|
||||||
|
$values[$name] .= static::formatString($arguments['search'][$i], $type);
|
||||||
|
$values[$name] .= '</code></td><td><code>';
|
||||||
|
$values[$name] .= static::formatString($arguments['replace'][$i], $type);
|
||||||
|
$values[$name] .= '</code></td></tr>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Determine suggestions
|
||||||
|
$suggestions = $this->getSuggestions();
|
||||||
|
if (count($suggestions) > 0) {
|
||||||
|
$values['suggestions'] = '<p>' . implode('</p><p>', $suggestions) . '</p>';
|
||||||
|
} else {
|
||||||
|
$values['suggestions'] = '';
|
||||||
|
}
|
||||||
|
|
||||||
|
return array(
|
||||||
|
'valid' => true,
|
||||||
|
'data' => array(
|
||||||
|
'escapedvalues' => $this->options['escapedvalues'],
|
||||||
|
'dbsr_caseinsensitive' => $this->options['dbsr_caseinsensitive'],
|
||||||
|
'dbsr_extensivesearch' => $this->options['dbsr_extensivesearch'],
|
||||||
|
),
|
||||||
|
'html' => $values,
|
||||||
|
);
|
||||||
|
|
||||||
|
case 3:
|
||||||
|
if (!isset($arguments['confirmed']) || strtolower($arguments['confirmed']) != 'on') {
|
||||||
|
return array(
|
||||||
|
'valid' => false,
|
||||||
|
'error' => 'Please confirm the data stated above is correct!',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Run DBSR
|
||||||
|
try {
|
||||||
|
// Build a PDO instance
|
||||||
|
$pdo = static::getPDO($this->options['db_host'], $this->options['db_port'], $this->options['db_user'], $this->options['db_pass'], $this->options['db_name'], $this->options['db_char']);
|
||||||
|
|
||||||
|
// Build a DBSR instance
|
||||||
|
$dbsr = new DBSR($pdo);
|
||||||
|
|
||||||
|
// Set some DBSR options
|
||||||
|
$dbsr->setOption(DBSR::OPTION_CASE_INSENSITIVE, $this->options['dbsr_caseinsensitive']);
|
||||||
|
$dbsr->setOption(DBSR::OPTION_EXTENSIVE_SEARCH, $this->options['dbsr_extensivesearch']);
|
||||||
|
|
||||||
|
// Set the search- and replace-values
|
||||||
|
$dbsr->setValues($this->options['search'], $this->options['replace']);
|
||||||
|
|
||||||
|
// Reset the maximum step
|
||||||
|
$this->resetStep();
|
||||||
|
|
||||||
|
// Execute DBSR
|
||||||
|
$result = $dbsr->exec();
|
||||||
|
|
||||||
|
// Return the result
|
||||||
|
return array(
|
||||||
|
'valid' => true,
|
||||||
|
'data' => array(
|
||||||
|
'result' => $result,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
} catch (Exception $e) {
|
||||||
|
// Return the error
|
||||||
|
return array(
|
||||||
|
'valid' => true,
|
||||||
|
'error' => $e->getMessage(),
|
||||||
|
'errorCode' => $e->getCode(),
|
||||||
|
'errorFile' => $e->getFile(),
|
||||||
|
'errorLine' => $e->getLine(),
|
||||||
|
'errorTrace' => $e->getTrace(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
default:
|
||||||
|
return array(
|
||||||
|
'valid' => false,
|
||||||
|
'error' => 'Unknown step!',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Resets the maximum step.
|
||||||
|
*/
|
||||||
|
public function resetStep()
|
||||||
|
{
|
||||||
|
$this->maxStep = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides simple suggestions for common mistakes based on the search- and replace-values.
|
||||||
|
*/
|
||||||
|
protected function getSuggestions()
|
||||||
|
{
|
||||||
|
// Array with all our messages
|
||||||
|
$messages = array();
|
||||||
|
|
||||||
|
// Build a PDO instance
|
||||||
|
$pdo = static::getPDO($this->options['db_host'], $this->options['db_port'], $this->options['db_user'], $this->options['db_pass'], $this->options['db_name'], $this->options['db_char']);
|
||||||
|
|
||||||
|
// Try to determine the WP prefix
|
||||||
|
$config = static::detectConfig();
|
||||||
|
$wp_prefix = !empty($config['wp_prefix']) ? $config['wp_prefix'] : 'wp_';
|
||||||
|
|
||||||
|
// Define the regex for matching domain names
|
||||||
|
$domain_regex = '/^https?:\\/\\/([a-z0-9](?:[-a-z0-9]*[a-z0-9])?(?:\\.[a-z0-9](?:[-a-z0-9]*[a-z0-9])?)*)\\/?$/iS';
|
||||||
|
|
||||||
|
// Switches to prevent double messages
|
||||||
|
$domain = false;
|
||||||
|
$specialchars = false;
|
||||||
|
$newlines = false;
|
||||||
|
|
||||||
|
// Get some of the server info to use a spelling probes
|
||||||
|
$spelling_probes = array(
|
||||||
|
$_SERVER['SERVER_NAME'], // current server name
|
||||||
|
__DIR__, // current directory
|
||||||
|
);
|
||||||
|
|
||||||
|
// Find WP siteurl
|
||||||
|
try {
|
||||||
|
$result = $pdo->query('SELECT `option_value` FROM `' . $wp_prefix . 'options` WHERE `option_name` = \'siteurl\'', PDO::FETCH_COLUMN, 0)->fetch();
|
||||||
|
if (!empty($result)) {
|
||||||
|
// Save the domain name
|
||||||
|
$result = preg_replace($domain_regex, '$1', $result);
|
||||||
|
if (!in_array($result, $spelling_probes)) {
|
||||||
|
$spelling_probes[] = $result;
|
||||||
|
}
|
||||||
|
|
||||||
|
// WWW-less domain name
|
||||||
|
$result = preg_replace('/^www\\.(.+)$/i', '$1', $result);
|
||||||
|
if (!in_array($result, $spelling_probes)) {
|
||||||
|
$spelling_probes[] = $result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (PDOException $e) {
|
||||||
|
// Ignore exceptions when retrieving probes
|
||||||
|
}
|
||||||
|
|
||||||
|
// Find WP path
|
||||||
|
try {
|
||||||
|
$result = $pdo->query('SELECT `option_value` FROM `' . $wp_prefix . 'options` WHERE `option_name` = \'recently_edited\'', PDO::FETCH_COLUMN, 0)->fetch();
|
||||||
|
if (!empty($result)) {
|
||||||
|
$result = preg_replace('/^(\\/.*)\\/wp-content\\/.*$/i', '$1', preg_replace('/^.*s:\d+:"([^"]+)";.*$/i', '$1', $result));
|
||||||
|
if (strpos($result, '"') === false && !in_array($result, $spelling_probes)) {
|
||||||
|
$spelling_probes[] = $result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (PDOException $e) {
|
||||||
|
// Ignore exceptions when retrieving probes
|
||||||
|
}
|
||||||
|
|
||||||
|
// Loop over all values
|
||||||
|
for ($i = 0; $i < count($this->options['search']); $i++) {
|
||||||
|
if (!$domain && preg_match($domain_regex, $this->options['search'][$i]) && preg_match($domain_regex, $this->options['replace'][$i])) {
|
||||||
|
// Domain name
|
||||||
|
$domain = true;
|
||||||
|
$messages[] = 'It seems you\'re going to replace a domain name.<br />Be aware that it is recommended to omit any pre- and suffixes (such as <code>http://</code> or a trailing slash) to ensure <b>all</b> occurences of the domain name will be replaced.';
|
||||||
|
} else {
|
||||||
|
// Spelling
|
||||||
|
foreach ($spelling_probes as $probe) {
|
||||||
|
if ($this->options['dbsr_caseinsensitive']) {
|
||||||
|
if (strtolower($this->options['search'][$i]) != strtolower($probe) && static::levenshtein(strtolower($this->options['search'][$i]), strtolower($probe)) < 4) {
|
||||||
|
$messages[] = 'I suspect you might have made a typo in the ' . ($i + 1) . 'th search-value. Did you mean "<code>' . htmlspecialchars($probe) . '</code>"?';
|
||||||
|
}
|
||||||
|
if (strtolower($this->options['replace'][$i]) != strtolower($probe) && static::levenshtein(strtolower($this->options['replace'][$i]), strtolower($probe)) < 4) {
|
||||||
|
$messages[] = 'I suspect you might have made a typo in the ' . ($i + 1) . 'th replace-value. Did you mean "<code>' . htmlspecialchars($probe) . '</code>"?';
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if ($this->options['search'][$i] != $probe && static::levenshtein($this->options['search'][$i], $probe) < 4) {
|
||||||
|
$messages[] = 'I suspect you might have made a typo in the ' . ($i + 1) . 'th search-value. Did you mean "<code>' . htmlspecialchars($probe) . '</code>"?';
|
||||||
|
}
|
||||||
|
if ($this->options['replace'][$i] != $probe && static::levenshtein($this->options['replace'][$i], $probe) < 4) {
|
||||||
|
$messages[] = 'I suspect you might have made a typo in the ' . ($i + 1) . 'th replace-value. Did you mean "<code>' . htmlspecialchars($probe) . '</code>"?';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Non-ASCII characters
|
||||||
|
for ($j = 0; $j < strlen($this->options['search'][$i]) && !$specialchars; $j++) {
|
||||||
|
$ord = ord($this->options['search'][$i][$j]);
|
||||||
|
if ($ord < 9 || ($ord > 10 && $ord < 13) || ($ord > 13 && $ord < 32) || $ord >= 127) {
|
||||||
|
$messages[] = 'There are some non-ASCII characters in your search value(s).<br />Be aware that DBSR does not provide any transliteration support, thus leaving character encoding entirely up to your browser and the database. Be sure to set the correct charset, and optionally use the "extended search" option of DBSR.';
|
||||||
|
$specialchars = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for ($j = 0; $j < strlen($this->options['replace'][$i]) && !$specialchars; $j++) {
|
||||||
|
$ord = ord($this->options['replace'][$i][$j]);
|
||||||
|
if ($ord < 9 || ($ord > 10 && $ord < 13) || ($ord > 13 && $ord < 32) || $ord >= 127) {
|
||||||
|
$messages[] = 'There are some non-ASCII characters in your replace value(s).<br />Be aware that DBSR does not provide any transliteration support, thus leaving character encoding entirely up to your browser and the database. Be sure to set the correct charset, and optionally use the "extended search" option of DBSR.';
|
||||||
|
$specialchars = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Newlines
|
||||||
|
if (!$newlines && !$this->options['escapedvalues']) {
|
||||||
|
if (strpos($this->options['search'][$i], "\n") !== false) {
|
||||||
|
$newlines = true;
|
||||||
|
$messages[] = 'You\'ve used ' . (strpos($_SESSION['search'][$i], "\r\n") !== false ? 'Windows-style ("<code>\r\n</code>")' : 'Unix-style ("<code>\n</code>")') . ' line endings. If this is not what you want, go back and change it.';
|
||||||
|
}
|
||||||
|
if (!$newlines && strpos($this->options['replace'][$i], "\n") !== false) {
|
||||||
|
$newlines = true;
|
||||||
|
$messages[] = 'You\'ve used ' . (strpos($_SESSION['replace'][$i], "\r\n") !== false ? 'Windows-style ("<code>\r\n</code>")' : 'Unix-style ("<code>\n</code>")') . ' line endings. If this is not what you want, go back and change it.';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return the messages
|
||||||
|
return $messages;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,155 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Bootstrapper for the DBSR GUI.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Initialization
|
||||||
|
Bootstrapper::initialize();
|
||||||
|
Bootstrapper::sessionStart();
|
||||||
|
|
||||||
|
// Set our exception handler
|
||||||
|
function DBSR_GUI_ExceptionHandler($e)
|
||||||
|
{
|
||||||
|
// Check if the current request is an AJAX-request
|
||||||
|
if (isset($_GET['ajax'])) {
|
||||||
|
// Send the error as JSON
|
||||||
|
header('Content-Type: application/json');
|
||||||
|
exit(json_encode(array(
|
||||||
|
'error' => $e->getMessage(),
|
||||||
|
'errorCode' => $e->getCode(),
|
||||||
|
'errorFile' => $e->getFile(),
|
||||||
|
'errorLine' => $e->getLine(),
|
||||||
|
'errorTrace' => $e->getTrace(),
|
||||||
|
)));
|
||||||
|
} else {
|
||||||
|
// Rethrow
|
||||||
|
throw $e;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
set_exception_handler('DBSR_GUI_ExceptionHandler');
|
||||||
|
|
||||||
|
// Check if we're reloading the page?
|
||||||
|
if (!isset($_GET['ajax']) && !isset($_GET['resource'])) {
|
||||||
|
Bootstrapper::sessionDestroy();
|
||||||
|
Bootstrapper::sessionStart();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Save a DBSR_GUI instance in the session
|
||||||
|
if (!isset($_SESSION['DBSR_GUI'])) {
|
||||||
|
$_SESSION['DBSR_GUI'] = new DBSR_GUI();
|
||||||
|
}
|
||||||
|
$dbsr_gui = $_SESSION['DBSR_GUI'];
|
||||||
|
|
||||||
|
// Check if this is a AJAX-request
|
||||||
|
if (isset($_GET['ajax'])) {
|
||||||
|
// Build a JSON-response
|
||||||
|
header('Content-Type: application/json');
|
||||||
|
|
||||||
|
// Check for JSON extension
|
||||||
|
if (!extension_loaded('json')) {
|
||||||
|
exit('{"error":"The PHP JSON extension is not available!"}');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Initialization
|
||||||
|
if (isset($_GET['initialize'])) {
|
||||||
|
exit(json_encode(array(
|
||||||
|
'data' => DBSR_GUI::detectConfig() + array(
|
||||||
|
'DBSR_version' => DBSR::VERSION,
|
||||||
|
),
|
||||||
|
'selfdestruct' => class_exists('DBSR_GUI_Resources', false) && realpath(__FILE__) == realpath($_SERVER['SCRIPT_FILENAME']) && is_writable(__FILE__),
|
||||||
|
)));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Autocomplete
|
||||||
|
if (isset($_GET['autocomplete'])) {
|
||||||
|
exit(json_encode(DBSR_GUI::autoComplete($_POST['id'], $_POST['term'], $_POST)));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Step
|
||||||
|
if (isset($_GET['step'])) {
|
||||||
|
exit(json_encode($dbsr_gui->completeStep((int) $_POST['step'], $_POST)));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Selfdestruct
|
||||||
|
if (isset($_GET['selfdestruct'])) {
|
||||||
|
exit(json_encode(class_exists('DBSR_GUI_Resources', false) && realpath(__FILE__) == realpath($_SERVER['SCRIPT_FILENAME']) && @unlink(__FILE__)));
|
||||||
|
}
|
||||||
|
|
||||||
|
// No autocomplete or step?
|
||||||
|
header('HTTP/1.1 400 Bad Request');
|
||||||
|
exit(json_encode(array('error' => 'Unknown action!')));
|
||||||
|
} else {
|
||||||
|
// If no specific resource is requested, serve the template
|
||||||
|
if (!isset($_GET['resource'])) {
|
||||||
|
$_GET['resource'] = 'template.html';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get the resource
|
||||||
|
if ($resource = DBSR_GUI::getResource($_GET['resource'])) {
|
||||||
|
// Set the correct headers
|
||||||
|
switch (strtolower(preg_replace('/^.*\.(\w+)$/', '$1', $_GET['resource']))) {
|
||||||
|
case 'html':
|
||||||
|
header('Content-Type: text/html; charset=UTF-8');
|
||||||
|
// Internet Explorer has always held a special place in our code
|
||||||
|
// Try using Chrome Frame for IE8 and lower, and else at least disable the compatibility view
|
||||||
|
if (isset($_SERVER['HTTP_USER_AGENT']) && strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false) {
|
||||||
|
header('X-UA-Compatible: IE=edge,chrome=IE8');
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'css':
|
||||||
|
header('Content-Type: text/css');
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'js':
|
||||||
|
header('Content-Type: text/javascript');
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'png':
|
||||||
|
header('Content-Type: image/png');
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'woff':
|
||||||
|
header('Content-Type: application/x-font-woff');
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'otf':
|
||||||
|
header('Content-Type: application/x-font-otf');
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'eot':
|
||||||
|
header('Content-Type: application/x-font-eot');
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'ttf':
|
||||||
|
header('Content-Type: application/x-font-ttf');
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'svg':
|
||||||
|
header('Content-Type: image/svg+xml');
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'ico':
|
||||||
|
header('Content-Type: image/vnd.microsoft.icon');
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
header('Content-Disposition: inline; filename=' . basename($_GET['resource']));
|
||||||
|
|
||||||
|
// Compress output (zlib takes care of client/server headers automatically)
|
||||||
|
if (extension_loaded('zlib') && ini_get('output_handler') != 'ob_gzhandler') {
|
||||||
|
@ini_set('zlib.output_compression', true);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set expires header (only when running a compressed version)
|
||||||
|
if (class_exists('DBSR_GUI_Resources', false)) {
|
||||||
|
header('Expires: ' . gmdate('D, d M Y H:i:s \\G\\M\\T', time() + 7 * 24 * 60 * 60));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Output the resource
|
||||||
|
exit($resource);
|
||||||
|
} else {
|
||||||
|
// Not found
|
||||||
|
header('HTTP/1.1 404 Not Found');
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,253 @@
|
||||||
|
@charset 'utf-8';
|
||||||
|
/*************************************************!
|
||||||
|
*
|
||||||
|
* project: liteAccordion - a horizontal accordion plugin for jQuery
|
||||||
|
* author: Nicola Hibbert
|
||||||
|
* url: http://nicolahibbert.com/liteaccordion-v2/
|
||||||
|
* demo: http://www.nicolahibbert.com/demo/liteAccordion/
|
||||||
|
*
|
||||||
|
* Version: 2.2.0
|
||||||
|
* Copyright: (c) 2010-2013 Nicola Hibbert
|
||||||
|
* Licence: MIT
|
||||||
|
*
|
||||||
|
**************************************************/
|
||||||
|
/****************************************** Core */
|
||||||
|
.liteAccordion {
|
||||||
|
text-align: left;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 24px;
|
||||||
|
font: 'Helvetica Neue', Verdana, Arial, sans-serif;
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
-webkit-perspective: 1000;
|
||||||
|
-webkit-tap-highlight-color: transparent;
|
||||||
|
}
|
||||||
|
.liteAccordion { padding: 0; margin: 0; border: 0; box-sizing: content-box }
|
||||||
|
.liteAccordion > ol { position: relative; overflow: hidden; height: 100%; margin: 0; padding: 0; list-style-type: none }
|
||||||
|
.liteAccordion > ol > li { list-style-type: none }
|
||||||
|
.liteAccordion .slide > h2 {
|
||||||
|
color: black;
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: normal;
|
||||||
|
margin: 0;
|
||||||
|
z-index: 100;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
-webkit-backface-visibility: hidden; /* fixes chrome bug */
|
||||||
|
-webkit-transform: translateX(-100%) rotate(-90deg);
|
||||||
|
-webkit-transform-origin: right top;
|
||||||
|
-moz-transform: translateX(-100%) rotate(-90deg);
|
||||||
|
-moz-transform-origin: right top;
|
||||||
|
-o-transform: translateX(-100%) rotate(-90deg);
|
||||||
|
-o-transform-origin: right top;
|
||||||
|
transform: translateX(-100%) rotate(-90deg);
|
||||||
|
transform-origin: right top;
|
||||||
|
}
|
||||||
|
.liteAccordion .slide > h2 span {
|
||||||
|
display: block;
|
||||||
|
padding-right: 8%;
|
||||||
|
text-align: right;
|
||||||
|
height: 90%;
|
||||||
|
margin-top: 5px;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-khtml-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
.liteAccordion .slide > h2 b {
|
||||||
|
display: inline-block;
|
||||||
|
position: absolute;
|
||||||
|
top: 13%;
|
||||||
|
left: 10%;
|
||||||
|
text-align: center;
|
||||||
|
-webkit-transform: rotate(90deg);
|
||||||
|
-moz-transform: rotate(90deg);
|
||||||
|
-o-transform: rotate(90deg);
|
||||||
|
transform: rotate(90deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.liteAccordion .slide > h2:hover { cursor: pointer }
|
||||||
|
.liteAccordion .slide > div { height: 100%; position: absolute; top: 0; z-index: 10; overflow: hidden; background: white }
|
||||||
|
.liteAccordion .ap-caption { padding: 10px 15px; position: absolute; bottom: 20px; right: 30px; z-index: 3; background: black;
|
||||||
|
background: rgba(0,0,0,0.7); color: white; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px }
|
||||||
|
.liteAccordion noscript p { padding: 10px; margin: 0; background: white }
|
||||||
|
|
||||||
|
/****************************************** Basic */
|
||||||
|
.liteAccordion.basic .slide > h2 { background: #333; color: white; line-height: 225% }
|
||||||
|
|
||||||
|
/****************************************** Dark */
|
||||||
|
.liteAccordion.dark {
|
||||||
|
border: 9px solid #353535;
|
||||||
|
border-bottom-width: 8px;
|
||||||
|
padding: 5px 5px 6px 0;
|
||||||
|
background: #030303;
|
||||||
|
-webkit-box-shadow: 0 -1px 0 #5b5b5b inset, 0 5px 15px rgba(0, 0, 0, 0.4);
|
||||||
|
-moz-box-shadow: 0 -1px 0 #5b5b5b inset, 0 5px 15px rgba(0, 0, 0, 0.4);
|
||||||
|
-ms-box-shadow: 0 -1px 0 #5b5b5b inset, 0 5px 15px rgba(0, 0, 0, 0.4);
|
||||||
|
-o-box-shadow: 0 -1px 0 #5b5b5b inset, 0 5px 15px rgba(0, 0, 0, 0.4);
|
||||||
|
box-shadow: 0 -1px 0 #5b5b5b inset, 0 5px 15px rgba(0, 0, 0, 0.4);
|
||||||
|
}
|
||||||
|
.liteAccordion.dark .slide > h2 { background: #030303; text-shadow: 0 -1px 0 #030303; line-height: 265% }
|
||||||
|
.liteAccordion.dark .slide > h2 span { background: #353535; color: white }
|
||||||
|
.liteAccordion.dark .slide > h2 b { background: #353535; color: #030303; text-shadow: -1px 1px 0 #5b5b5b }
|
||||||
|
.liteAccordion.dark .slide > h2.selected span, .liteAccordion.dark .slide > h2.selected span:hover {
|
||||||
|
background: #353535;
|
||||||
|
background: -moz-linear-gradient(left, #353535 0%, #555555 100%);
|
||||||
|
background: -webkit-gradient(linear, left top, right top, color-stop(0%,#353535), color-stop(100%,#555555));
|
||||||
|
background: -webkit-linear-gradient(left, #353535 0%,#555555 100%);
|
||||||
|
background: -o-linear-gradient(left, #353535 0%,#555555 100%);
|
||||||
|
background: -ms-linear-gradient(left, #353535 0%,#555555 100%);
|
||||||
|
background: linear-gradient(left, #353535 0%,#555555 100%);
|
||||||
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#353535', endColorstr='#555555',GradientType=1 );
|
||||||
|
}
|
||||||
|
.liteAccordion.dark .slide > h2.selected b {
|
||||||
|
background: #383838;
|
||||||
|
background: -moz-linear-gradient(top, #3a3a3a 0%, #363636 100%);
|
||||||
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3a3a3a), color-stop(100%,#363636));
|
||||||
|
background: -webkit-linear-gradient(top, #3a3a3a 0%,#363636 100%);
|
||||||
|
background: -o-linear-gradient(top, #3a3a3a 0%,#363636 100%);
|
||||||
|
background: -ms-linear-gradient(top, #3a3a3a 0%,#363636 100%);
|
||||||
|
background: linear-gradient(top, #3a3a3a 0%,#363636 100%);
|
||||||
|
}
|
||||||
|
.liteAccordion.dark .slide > div { background: #030303; margin-left: 5px }
|
||||||
|
|
||||||
|
/***************************************** Light */
|
||||||
|
.liteAccordion.light {
|
||||||
|
border: 9px solid white;
|
||||||
|
border-bottom-width: 8px;
|
||||||
|
padding: 5px 5px 6px 0;
|
||||||
|
background: #a0a0a0;
|
||||||
|
-webkit-box-shadow: -1px -1px 0 #c0c0c0, 1px 1px 0 #c0c0c0, 0 5px 15px rgba(0, 0, 0, 0.4);
|
||||||
|
-moz-box-shadow: -1px -1px 0 #c0c0c0, 1px 1px 0 #c0c0c0, 0 5px 15px rgba(0, 0, 0, 0.4);
|
||||||
|
-ms-box-shadow: -1px -1px 0 #c0c0c0, 1px 1px 0 #c0c0c0, 0 5px 15px rgba(0, 0, 0, 0.4);
|
||||||
|
-o-box-shadow: -1px -1px 0 #c0c0c0, 1px 1px 0 #c0c0c0, 0 5px 15px rgba(0, 0, 0, 0.4);
|
||||||
|
box-shadow: -1px -1px 0 #c0c0c0, 1px 1px 0 #c0c0c0, 0 5px 15px rgba(0, 0, 0, 0.4);
|
||||||
|
}
|
||||||
|
.liteAccordion.light .slide > h2 { background: #a0a0a0; text-shadow: 0 -1px 0 white; line-height: 265% }
|
||||||
|
.liteAccordion.light .slide > h2 span {
|
||||||
|
background: #fcfcfc;
|
||||||
|
background: -moz-linear-gradient(left, #fcfcfc 0%, #ededed 100%);
|
||||||
|
background: -webkit-gradient(linear, left top, right top, color-stop(0%,#fcfcfc), color-stop(100%,#ededed));
|
||||||
|
background: -webkit-linear-gradient(left, #fcfcfc 0%,#ededed 100%);
|
||||||
|
background: -o-linear-gradient(left, #fcfcfc 0%,#ededed 100%);
|
||||||
|
background: -ms-linear-gradient(left, #fcfcfc 0%,#ededed 100%);
|
||||||
|
background: linear-gradient(left, #fcfcfc 0%,#ededed 100%);
|
||||||
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#ededed',GradientType=1 );
|
||||||
|
-webkit-box-shadow: -1px -1px 0 #909090 inset, 1px 1px 0 #909090 inset;
|
||||||
|
-moz-box-shadow: -1px -1px 0 #909090 inset, 1px 1px 0 #909090 inset;
|
||||||
|
-o-box-shadow: -1px -1px 0 #909090 inset, 1px 1px 0 #909090 inset;
|
||||||
|
box-shadow: -1px -1px 0 #909090 inset, 1px 1px 0 #909090 inset;
|
||||||
|
color: #909090;
|
||||||
|
}
|
||||||
|
.liteAccordion.light .slide > h2 b { background: #ffffff; color: #909090; text-shadow: -1px 1px 0 white }
|
||||||
|
.liteAccordion.light .slide > h2.selected span, .liteAccordion.light .slide h2.selected span:hover, .liteAccordion.light .slide > h2.selected b { background: #ffffff }
|
||||||
|
.liteAccordion.light .slide > div { background: #a0a0a0; margin-left: 5px }
|
||||||
|
|
||||||
|
/**************************************** Stitch */
|
||||||
|
.liteAccordion.stitch {
|
||||||
|
position: relative;
|
||||||
|
padding: 5px 0 5px 5px;
|
||||||
|
border: 11px solid #353535;
|
||||||
|
background: #353535;
|
||||||
|
-webkit-box-shadow: 0 -1px 0 #5b5b5b inset, 0 5px 15px rgba(0, 0, 0, 0.4);
|
||||||
|
-moz-box-shadow: 0 -1px 0 #5b5b5b inset, 0 5px 15px rgba(0, 0, 0, 0.4);
|
||||||
|
-o-box-shadow: 0 -1px 0 #5b5b5b inset, 0 5px 15px rgba(0, 0, 0, 0.4);
|
||||||
|
box-shadow: 0 -1px 0 #5b5b5b inset, 0 5px 15px rgba(0, 0, 0, 0.4);
|
||||||
|
}
|
||||||
|
.liteAccordion.stitch:before {
|
||||||
|
content: '';
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
position: absolute;
|
||||||
|
top: -9px;
|
||||||
|
left: -9px;
|
||||||
|
background: #353535;
|
||||||
|
border: 9px solid transparent;
|
||||||
|
-webkit-border-image: url('bg_stitch.png') 9 repeat;
|
||||||
|
-moz-border-image: url('bg_stitch.png') 9 repeat;
|
||||||
|
-o-border-image: url('bg_stitch.png') 9 repeat;
|
||||||
|
border-image: url('bg_stitch.png') 9 repeat;
|
||||||
|
}
|
||||||
|
.liteAccordion.stitch .slide > h2 { background: #353535 }
|
||||||
|
.liteAccordion.stitch .slide > h2 span {
|
||||||
|
height: auto;
|
||||||
|
padding-right: 5%;
|
||||||
|
color: white;
|
||||||
|
text-shadow: -1px 1px 0 #5b5b5b;
|
||||||
|
border: 9px solid transparent;
|
||||||
|
background-image: url('bg_noise.png');
|
||||||
|
margin-top: 0;
|
||||||
|
-webkit-border-image: url('bg_stitch.png') 9 repeat;
|
||||||
|
-moz-border-image: url('bg_stitch.png') 9 repeat;
|
||||||
|
-o-border-image: url('bg_stitch.png') 9 repeat;
|
||||||
|
border-image: url('bg_stitch.png') 9 repeat;
|
||||||
|
}
|
||||||
|
.liteAccordion.stitch .slide > h2.selected:after {
|
||||||
|
content: '';
|
||||||
|
display: block;
|
||||||
|
height: 11px;
|
||||||
|
width: 11px;
|
||||||
|
position: absolute;
|
||||||
|
bottom: -3px;
|
||||||
|
right: 38px;
|
||||||
|
-webkit-transform: rotate(45deg);
|
||||||
|
-moz-transform: rotate(45deg);
|
||||||
|
-o-transform: rotate(45deg);
|
||||||
|
transform: rotate(45deg);
|
||||||
|
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
|
||||||
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
|
||||||
|
border: 9px solid transparent;
|
||||||
|
border-top: 0;
|
||||||
|
border-left: 0;
|
||||||
|
-webkit-border-image: url('bg_stitch.png') 9 repeat;
|
||||||
|
-moz-border-image: url('bg_stitch.png') 9 repeat;
|
||||||
|
-o-border-image: url('bg_stitch.png') 9 repeat;
|
||||||
|
border-image: url('bg_stitch.png') 9 repeat;
|
||||||
|
background-image: url('bg_noise.png');
|
||||||
|
}
|
||||||
|
|
||||||
|
.liteAccordion.stitch .slide:nth-child(1) > h2 span, .liteAccordion.stitch .slide:nth-child(1) > h2:after { background-color: #c25252 }
|
||||||
|
.liteAccordion.stitch .slide:nth-child(2) > h2 span, .liteAccordion.stitch .slide:nth-child(2) > h2:after { background-color: #ca9859 }
|
||||||
|
.liteAccordion.stitch .slide:nth-child(3) > h2 span, .liteAccordion.stitch .slide:nth-child(3) > h2:after { background-color: #96ba5f }
|
||||||
|
.liteAccordion.stitch .slide:nth-child(4) > h2 span, .liteAccordion.stitch .slide:nth-child(4) > h2:after { background-color: #59abb7 }
|
||||||
|
.liteAccordion.stitch .slide:nth-child(5) > h2 span, .liteAccordion.stitch .slide:nth-child(5) > h2:after { background-color: #bb6098 }
|
||||||
|
.liteAccordion.stitch .slide > h2 b { top: 19%; color: white; text-shadow: 1px 1px 0 #5b5b5b }
|
||||||
|
.liteAccordion.stitch .slide > div { margin-right: 6px }
|
||||||
|
.liteAccordion.stitch.rounded > ol { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; border-radius: 0 }
|
||||||
|
|
||||||
|
/*************************************** Rounded */
|
||||||
|
.liteAccordion.rounded, .rounded > ol { -webkit-border-radius: 6px; -moz-border-radius: 6px; -ms-border-radius: 6px; border-radius: 6px }
|
||||||
|
.liteAccordion.rounded .slide > h2 span { -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; border-radius: 4px }
|
||||||
|
|
||||||
|
/******************************************** IE */
|
||||||
|
/* stitch */
|
||||||
|
.liteAccordion.ie.stitch .slide > h2 { /*line-height: 265%*/ }
|
||||||
|
.liteAccordion.ie.stitch .slide > h2 span { /*height: 89%; padding-right: 8%*/ }
|
||||||
|
.liteAccordion.ie.stitch .slide > h2.selected:after { display: none }
|
||||||
|
.liteAccordion.ie.stitch .slide-0 > h2 span { background-color: #c25252 }
|
||||||
|
.liteAccordion.ie.stitch .slide-1 > h2 span { background-color: #ca9859 }
|
||||||
|
.liteAccordion.ie.stitch .slide-2 > h2 span { background-color: #96ba5f }
|
||||||
|
.liteAccordion.ie.stitch .slide-3 > h2 span { background-color: #59abb7 }
|
||||||
|
.liteAccordion.ie.stitch .slide-4 > h2 span { background-color: #bb6098 }
|
||||||
|
.liteAccordion.ie.stitch .slide-5 > h2 span { background-color: #c25252 }
|
||||||
|
.liteAccordion.ie.stitch .slide-6 > h2 span { background-color: #ca9859 }
|
||||||
|
.liteAccordion.ie.stitch .slide-7 > h2 span { background-color: #96ba5f }
|
||||||
|
.liteAccordion.ie.stitch .slide-8 > h2 span { background-color: #59abb7 }
|
||||||
|
.liteAccordion.ie.stitch .slide-9 > h2 span { background-color: #bb6098 }
|
||||||
|
|
||||||
|
/* transforms */
|
||||||
|
.liteAccordion.ie .slide > h2,
|
||||||
|
.liteAccordion.ie .slide > h2 span,
|
||||||
|
.liteAccordion.ie .slide > h2 b { filter: none; -ms-filter: none; -ms-transform: none }
|
||||||
|
.liteAccordion.ie7 .slide > h2 { filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3) }
|
||||||
|
.liteAccordion.ie7 .slide > h2 b { filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1) }
|
||||||
|
.liteAccordion.ie8 .slide > h2 { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)" }
|
||||||
|
.liteAccordion.ie8 .slide > h2 b { -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)" }
|
||||||
|
.liteAccordion.ie9 .slide > h2 { -ms-transform: translateX(-100%) rotate(-90deg); -ms-transform-origin: right top }
|
||||||
|
.liteAccordion.ie9 .slide > h2 b { -ms-transform: rotate(90deg) }
|
||||||
|
|
||||||
|
/* misc */
|
||||||
|
.liteAccordion.ie7 .slide > h2 b, .liteAccordion.ie8 .slide > h2 b { top: 44%; left: 5% }
|
||||||
|
.liteAccordion.ie7.stitch .slide > h2 b, .liteAccordion.ie8.stitch .slide > h2 b { top: 36% }
|
||||||
|
.liteAccordion.ie9.stitch { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4) }
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,48 @@
|
||||||
|
/* http://meyerweb.com/eric/tools/css/reset/
|
||||||
|
v2.0 | 20110126
|
||||||
|
License: none (public domain)
|
||||||
|
*/
|
||||||
|
|
||||||
|
html, body, div, span, applet, object, iframe,
|
||||||
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||||
|
a, abbr, acronym, address, big, cite, code,
|
||||||
|
del, dfn, em, img, ins, kbd, q, s, samp,
|
||||||
|
small, strike, strong, sub, sup, tt, var,
|
||||||
|
b, u, i, center,
|
||||||
|
dl, dt, dd, ol, ul, li,
|
||||||
|
fieldset, form, label, legend,
|
||||||
|
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||||
|
article, aside, canvas, details, embed,
|
||||||
|
figure, figcaption, footer, header, hgroup,
|
||||||
|
menu, nav, output, ruby, section, summary,
|
||||||
|
time, mark, audio, video {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
font-size: 100%;
|
||||||
|
font: inherit;
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
/* HTML5 display-role reset for older browsers */
|
||||||
|
article, aside, details, figcaption, figure,
|
||||||
|
footer, header, hgroup, menu, nav, section {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
ol, ul {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
blockquote, q {
|
||||||
|
quotes: none;
|
||||||
|
}
|
||||||
|
blockquote:before, blockquote:after,
|
||||||
|
q:before, q:after {
|
||||||
|
content: '';
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
border-spacing: 0;
|
||||||
|
}
|
|
@ -0,0 +1,213 @@
|
||||||
|
/* This file is part of DBSR.
|
||||||
|
*
|
||||||
|
* DBSR is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* DBSR is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with DBSR. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
html {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
|
background-color: #F2F2F2;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
width: 90%;
|
||||||
|
height: 94%;
|
||||||
|
margin: 0 auto 0;
|
||||||
|
|
||||||
|
min-width: 900px;
|
||||||
|
min-height: 650px;
|
||||||
|
|
||||||
|
font-family: 'Source Sans Pro', Verdana, Geneva, sans-serif;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: 24px;
|
||||||
|
font-weight: bolder;
|
||||||
|
margin-top: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin: 10px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
code, input[type="text"], textarea {
|
||||||
|
font-family: 'Source Code Pro', 'Consolas', 'Courier New', monospace;
|
||||||
|
}
|
||||||
|
|
||||||
|
body > h1 {
|
||||||
|
height: 4%;
|
||||||
|
margin-top: 0.75%;
|
||||||
|
margin-left: 2%;
|
||||||
|
|
||||||
|
font-family: 'Source Code Pro', 'Consolas', 'Courier New', monospace;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 26px;
|
||||||
|
text-shadow: 2px 2px 2px #999999;
|
||||||
|
}
|
||||||
|
|
||||||
|
body > .version {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
|
||||||
|
height: 4%;
|
||||||
|
margin-top: 0.75%;
|
||||||
|
margin-left: 2%;
|
||||||
|
|
||||||
|
font-family: 'Source Code Pro', 'Consolas', 'Courier New', monospace;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 12px;
|
||||||
|
text-shadow: 2px 2px 2px #999999;
|
||||||
|
}
|
||||||
|
|
||||||
|
#container {
|
||||||
|
width: 100%;
|
||||||
|
height: 96% !important;
|
||||||
|
|
||||||
|
margin-top: 0.75%;
|
||||||
|
|
||||||
|
border: 1px solid #333333;
|
||||||
|
box-shadow: 0 0 20px #737373;
|
||||||
|
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
}
|
||||||
|
#container .slide > h2 {
|
||||||
|
width: 48px !important;
|
||||||
|
height: 100% !important;
|
||||||
|
-webkit-transform: none;
|
||||||
|
-moz-transform: none;
|
||||||
|
-ms-transform: none;
|
||||||
|
-o-transform: none;
|
||||||
|
transform: none;
|
||||||
|
|
||||||
|
font-family: 'Source Code Pro', 'Consolas', 'Courier New', monospace;
|
||||||
|
}
|
||||||
|
#container .slide > h2 span {
|
||||||
|
height: 44px;
|
||||||
|
width: 99999px;
|
||||||
|
margin-top: 25px;
|
||||||
|
margin-left: 4px;
|
||||||
|
padding-right: 0;
|
||||||
|
vertical-align: baseline;
|
||||||
|
-webkit-transform: translateX(-100%) rotate(-90deg);
|
||||||
|
-moz-transform: translateX(-100%) rotate(-90deg);
|
||||||
|
-ms-transform: translateX(-100%) rotate(-90deg);
|
||||||
|
-o-transform: translateX(-100%) rotate(-90deg);
|
||||||
|
transform: translateX(-100%) rotate(-90deg);
|
||||||
|
|
||||||
|
-webkit-transform-origin: right top;
|
||||||
|
-moz-transform-origin: right top;
|
||||||
|
-ms-transform-origin: right top;
|
||||||
|
-o-transform-origin: right top;
|
||||||
|
transform-origin: right top;
|
||||||
|
}
|
||||||
|
#container .slide > h2 b {
|
||||||
|
top: auto;
|
||||||
|
bottom: 10px;
|
||||||
|
left: 18px;
|
||||||
|
font-size: 22px;
|
||||||
|
-webkit-transform: none;
|
||||||
|
-moz-transform: none;
|
||||||
|
-ms-transform: none;
|
||||||
|
-o-transform: none;
|
||||||
|
transform: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#container .slide > div {
|
||||||
|
height: 100%;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#container .slide > div > div {
|
||||||
|
position: relative;
|
||||||
|
height: auto;
|
||||||
|
min-height: 100%;
|
||||||
|
min-height: -webkit-calc(100% - 2px);
|
||||||
|
min-height: -moz-calc(100% - 2px);
|
||||||
|
min-height: -ms-calc(100% - 2px);
|
||||||
|
min-height: -o-calc(100% - 2px);
|
||||||
|
min-height: calc(100% - 2px);
|
||||||
|
padding: 1px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#container .slide > div form {
|
||||||
|
margin: 40px 40px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.blockUI.blockOverlay {
|
||||||
|
background-color: #000;
|
||||||
|
opacity: 0.6;
|
||||||
|
cursor: wait;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.blockUI.blockMsg {
|
||||||
|
width: 30%;
|
||||||
|
top: 40%;
|
||||||
|
left: 35%;
|
||||||
|
text-align: center;
|
||||||
|
padding: 5px;
|
||||||
|
opacity: 0.6;
|
||||||
|
cursor: wait;
|
||||||
|
color: #fff;
|
||||||
|
background-color: #000;
|
||||||
|
-webkit-border-radius: 10px;
|
||||||
|
-moz-border-radius: 10px;
|
||||||
|
-ms-border-radius: 10px;
|
||||||
|
-o-border-radius: 10px;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.errormessage {
|
||||||
|
color: red;
|
||||||
|
font-weight: bolder;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
i, .html-suggestions {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
}
|
||||||
|
table td, table th {
|
||||||
|
border: 1px solid #919191;
|
||||||
|
font-size: 1em;
|
||||||
|
padding: 5px 10px 3px;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type="text"], input[type="password"] {
|
||||||
|
min-width: 180px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.values-switch {
|
||||||
|
color: #808080;
|
||||||
|
}
|
||||||
|
.values-switch a {
|
||||||
|
color: #808080;
|
||||||
|
}
|
||||||
|
.values-switch a:hover {
|
||||||
|
color: #737373;
|
||||||
|
}
|
||||||
|
.values-switch a.active {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #8C8C8C;
|
||||||
|
}
|
||||||
|
.values-switch a.active:hover {
|
||||||
|
color: #8C8C8C;
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 5.3 KiB |
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,680 @@
|
||||||
|
/*!
|
||||||
|
* jQuery blockUI plugin
|
||||||
|
* Version 2.70.0-2014.11.23
|
||||||
|
* Requires jQuery v1.7 or later
|
||||||
|
*
|
||||||
|
* Examples at: http://malsup.com/jquery/block/
|
||||||
|
* Copyright (c) 2007-2013 M. Alsup
|
||||||
|
* Dual licensed under the MIT and GPL licenses:
|
||||||
|
* http://www.opensource.org/licenses/mit-license.php
|
||||||
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Thanks to Amir-Hossein Sobhi for some excellent contributions!
|
||||||
|
*/
|
||||||
|
|
||||||
|
;(function () {
|
||||||
|
/*jshint eqeqeq:false curly:false latedef:false */
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function setup($)
|
||||||
|
{
|
||||||
|
$.fn._fadeIn = $.fn.fadeIn;
|
||||||
|
|
||||||
|
var noOp = $.noop || function () {};
|
||||||
|
|
||||||
|
// this bit is to ensure we don't call setExpression when we shouldn't (with extra muscle to handle
|
||||||
|
// confusing userAgent strings on Vista)
|
||||||
|
var msie = /MSIE/.test(navigator.userAgent);
|
||||||
|
var ie6 = /MSIE 6.0/.test(navigator.userAgent) && ! /MSIE 8.0/.test(navigator.userAgent);
|
||||||
|
var mode = document.documentMode || 0;
|
||||||
|
var setExpr = $.isFunction(document.createElement('div').style.setExpression);
|
||||||
|
|
||||||
|
// global $ methods for blocking/unblocking the entire page
|
||||||
|
$.blockUI = function (opts) {
|
||||||
|
install(window, opts); };
|
||||||
|
$.unblockUI = function (opts) {
|
||||||
|
remove(window, opts); };
|
||||||
|
|
||||||
|
// convenience method for quick growl-like notifications (http://www.google.com/search?q=growl)
|
||||||
|
$.growlUI = function (title, message, timeout, onClose) {
|
||||||
|
var $m = $('<div class="growlUI"></div>');
|
||||||
|
if (title) {
|
||||||
|
$m.append('<h1>'+title+'</h1>');
|
||||||
|
}
|
||||||
|
if (message) {
|
||||||
|
$m.append('<h2>'+message+'</h2>');
|
||||||
|
}
|
||||||
|
if (timeout === undefined) {
|
||||||
|
timeout = 3000;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Added by konapun: Set timeout to 30 seconds if this growl is moused over, like normal toast notifications
|
||||||
|
var callBlock = function (opts) {
|
||||||
|
opts = opts || {};
|
||||||
|
|
||||||
|
$.blockUI({
|
||||||
|
message: $m,
|
||||||
|
fadeIn : typeof opts.fadeIn !== 'undefined' ? opts.fadeIn : 700,
|
||||||
|
fadeOut: typeof opts.fadeOut !== 'undefined' ? opts.fadeOut : 1000,
|
||||||
|
timeout: typeof opts.timeout !== 'undefined' ? opts.timeout : timeout,
|
||||||
|
centerY: false,
|
||||||
|
showOverlay: false,
|
||||||
|
onUnblock: onClose,
|
||||||
|
css: $.blockUI.defaults.growlCSS
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
callBlock();
|
||||||
|
var nonmousedOpacity = $m.css('opacity');
|
||||||
|
$m.mouseover(function () {
|
||||||
|
callBlock({
|
||||||
|
fadeIn: 0,
|
||||||
|
timeout: 30000
|
||||||
|
});
|
||||||
|
|
||||||
|
var displayBlock = $('.blockMsg');
|
||||||
|
displayBlock.stop(); // cancel fadeout if it has started
|
||||||
|
displayBlock.fadeTo(300, 1); // make it easier to read the message by removing transparency
|
||||||
|
}).mouseout(function () {
|
||||||
|
$('.blockMsg').fadeOut(1000);
|
||||||
|
});
|
||||||
|
// End konapun additions
|
||||||
|
};
|
||||||
|
|
||||||
|
// plugin method for blocking element content
|
||||||
|
$.fn.block = function (opts) {
|
||||||
|
if ( this[0] === window ) {
|
||||||
|
$.blockUI(opts);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
var fullOpts = $.extend({}, $.blockUI.defaults, opts || {});
|
||||||
|
this.each(function () {
|
||||||
|
var $el = $(this);
|
||||||
|
if (fullOpts.ignoreIfBlocked && $el.data('blockUI.isBlocked')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
$el.unblock({ fadeOut: 0 });
|
||||||
|
});
|
||||||
|
|
||||||
|
return this.each(function () {
|
||||||
|
if ($.css(this,'position') == 'static') {
|
||||||
|
this.style.position = 'relative';
|
||||||
|
$(this).data('blockUI.static', true);
|
||||||
|
}
|
||||||
|
this.style.zoom = 1; // force 'hasLayout' in ie
|
||||||
|
install(this, opts);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
// plugin method for unblocking element content
|
||||||
|
$.fn.unblock = function (opts) {
|
||||||
|
if ( this[0] === window ) {
|
||||||
|
$.unblockUI(opts);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
return this.each(function () {
|
||||||
|
remove(this, opts);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
$.blockUI.version = 2.70; // 2nd generation blocking at no extra cost!
|
||||||
|
|
||||||
|
// override these in your code to change the default behavior and style
|
||||||
|
$.blockUI.defaults = {
|
||||||
|
// message displayed when blocking (use null for no message)
|
||||||
|
message: '<h1>Please wait...</h1>',
|
||||||
|
|
||||||
|
title: null, // title string; only used when theme == true
|
||||||
|
draggable: true, // only used when theme == true (requires jquery-ui.js to be loaded)
|
||||||
|
|
||||||
|
theme: false, // set to true to use with jQuery UI themes
|
||||||
|
|
||||||
|
// styles for the message when blocking; if you wish to disable
|
||||||
|
// these and use an external stylesheet then do this in your code:
|
||||||
|
// $.blockUI.defaults.css = {};
|
||||||
|
css: {
|
||||||
|
padding: 0,
|
||||||
|
margin: 0,
|
||||||
|
width: '30%',
|
||||||
|
top: '40%',
|
||||||
|
left: '35%',
|
||||||
|
textAlign: 'center',
|
||||||
|
color: '#000',
|
||||||
|
border: '3px solid #aaa',
|
||||||
|
backgroundColor:'#fff',
|
||||||
|
cursor: 'wait'
|
||||||
|
},
|
||||||
|
|
||||||
|
// minimal style set used when themes are used
|
||||||
|
themedCSS: {
|
||||||
|
width: '30%',
|
||||||
|
top: '40%',
|
||||||
|
left: '35%'
|
||||||
|
},
|
||||||
|
|
||||||
|
// styles for the overlay
|
||||||
|
overlayCSS: {
|
||||||
|
backgroundColor: '#000',
|
||||||
|
opacity: 0.6,
|
||||||
|
cursor: 'wait'
|
||||||
|
},
|
||||||
|
|
||||||
|
// style to replace wait cursor before unblocking to correct issue
|
||||||
|
// of lingering wait cursor
|
||||||
|
cursorReset: 'default',
|
||||||
|
|
||||||
|
// styles applied when using $.growlUI
|
||||||
|
growlCSS: {
|
||||||
|
width: '350px',
|
||||||
|
top: '10px',
|
||||||
|
left: '',
|
||||||
|
right: '10px',
|
||||||
|
border: 'none',
|
||||||
|
padding: '5px',
|
||||||
|
opacity: 0.6,
|
||||||
|
cursor: 'default',
|
||||||
|
color: '#fff',
|
||||||
|
backgroundColor: '#000',
|
||||||
|
'-webkit-border-radius':'10px',
|
||||||
|
'-moz-border-radius': '10px',
|
||||||
|
'border-radius': '10px'
|
||||||
|
},
|
||||||
|
|
||||||
|
// IE issues: 'about:blank' fails on HTTPS and javascript:false is s-l-o-w
|
||||||
|
// (hat tip to Jorge H. N. de Vasconcelos)
|
||||||
|
/*jshint scripturl:true */
|
||||||
|
iframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank',
|
||||||
|
|
||||||
|
// force usage of iframe in non-IE browsers (handy for blocking applets)
|
||||||
|
forceIframe: false,
|
||||||
|
|
||||||
|
// z-index for the blocking overlay
|
||||||
|
baseZ: 1000,
|
||||||
|
|
||||||
|
// set these to true to have the message automatically centered
|
||||||
|
centerX: true, // <-- only effects element blocking (page block controlled via css above)
|
||||||
|
centerY: true,
|
||||||
|
|
||||||
|
// allow body element to be stetched in ie6; this makes blocking look better
|
||||||
|
// on "short" pages. disable if you wish to prevent changes to the body height
|
||||||
|
allowBodyStretch: true,
|
||||||
|
|
||||||
|
// enable if you want key and mouse events to be disabled for content that is blocked
|
||||||
|
bindEvents: true,
|
||||||
|
|
||||||
|
// be default blockUI will supress tab navigation from leaving blocking content
|
||||||
|
// (if bindEvents is true)
|
||||||
|
constrainTabKey: true,
|
||||||
|
|
||||||
|
// fadeIn time in millis; set to 0 to disable fadeIn on block
|
||||||
|
fadeIn: 200,
|
||||||
|
|
||||||
|
// fadeOut time in millis; set to 0 to disable fadeOut on unblock
|
||||||
|
fadeOut: 400,
|
||||||
|
|
||||||
|
// time in millis to wait before auto-unblocking; set to 0 to disable auto-unblock
|
||||||
|
timeout: 0,
|
||||||
|
|
||||||
|
// disable if you don't want to show the overlay
|
||||||
|
showOverlay: true,
|
||||||
|
|
||||||
|
// if true, focus will be placed in the first available input field when
|
||||||
|
// page blocking
|
||||||
|
focusInput: true,
|
||||||
|
|
||||||
|
// elements that can receive focus
|
||||||
|
focusableElements: ':input:enabled:visible',
|
||||||
|
|
||||||
|
// suppresses the use of overlay styles on FF/Linux (due to performance issues with opacity)
|
||||||
|
// no longer needed in 2012
|
||||||
|
// applyPlatformOpacityRules: true,
|
||||||
|
|
||||||
|
// callback method invoked when fadeIn has completed and blocking message is visible
|
||||||
|
onBlock: null,
|
||||||
|
|
||||||
|
// callback method invoked when unblocking has completed; the callback is
|
||||||
|
// passed the element that has been unblocked (which is the window object for page
|
||||||
|
// blocks) and the options that were passed to the unblock call:
|
||||||
|
// onUnblock(element, options)
|
||||||
|
onUnblock: null,
|
||||||
|
|
||||||
|
// callback method invoked when the overlay area is clicked.
|
||||||
|
// setting this will turn the cursor to a pointer, otherwise cursor defined in overlayCss will be used.
|
||||||
|
onOverlayClick: null,
|
||||||
|
|
||||||
|
// don't ask; if you really must know: http://groups.google.com/group/jquery-en/browse_thread/thread/36640a8730503595/2f6a79a77a78e493#2f6a79a77a78e493
|
||||||
|
quirksmodeOffsetHack: 4,
|
||||||
|
|
||||||
|
// class name of the message block
|
||||||
|
blockMsgClass: 'blockMsg',
|
||||||
|
|
||||||
|
// if it is already blocked, then ignore it (don't unblock and reblock)
|
||||||
|
ignoreIfBlocked: false
|
||||||
|
};
|
||||||
|
|
||||||
|
// private data and functions follow...
|
||||||
|
|
||||||
|
var pageBlock = null;
|
||||||
|
var pageBlockEls = [];
|
||||||
|
|
||||||
|
function install(el, opts)
|
||||||
|
{
|
||||||
|
var css, themedCSS;
|
||||||
|
var full = (el == window);
|
||||||
|
var msg = (opts && opts.message !== undefined ? opts.message : undefined);
|
||||||
|
opts = $.extend({}, $.blockUI.defaults, opts || {});
|
||||||
|
|
||||||
|
if (opts.ignoreIfBlocked && $(el).data('blockUI.isBlocked')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
opts.overlayCSS = $.extend({}, $.blockUI.defaults.overlayCSS, opts.overlayCSS || {});
|
||||||
|
css = $.extend({}, $.blockUI.defaults.css, opts.css || {});
|
||||||
|
if (opts.onOverlayClick) {
|
||||||
|
opts.overlayCSS.cursor = 'pointer';
|
||||||
|
}
|
||||||
|
|
||||||
|
themedCSS = $.extend({}, $.blockUI.defaults.themedCSS, opts.themedCSS || {});
|
||||||
|
msg = msg === undefined ? opts.message : msg;
|
||||||
|
|
||||||
|
// remove the current block (if there is one)
|
||||||
|
if (full && pageBlock) {
|
||||||
|
remove(window, {fadeOut:0});
|
||||||
|
}
|
||||||
|
|
||||||
|
// if an existing element is being used as the blocking content then we capture
|
||||||
|
// its current place in the DOM (and current display style) so we can restore
|
||||||
|
// it when we unblock
|
||||||
|
if (msg && typeof msg != 'string' && (msg.parentNode || msg.jquery)) {
|
||||||
|
var node = msg.jquery ? msg[0] : msg;
|
||||||
|
var data = {};
|
||||||
|
$(el).data('blockUI.history', data);
|
||||||
|
data.el = node;
|
||||||
|
data.parent = node.parentNode;
|
||||||
|
data.display = node.style.display;
|
||||||
|
data.position = node.style.position;
|
||||||
|
if (data.parent) {
|
||||||
|
data.parent.removeChild(node);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$(el).data('blockUI.onUnblock', opts.onUnblock);
|
||||||
|
var z = opts.baseZ;
|
||||||
|
|
||||||
|
// blockUI uses 3 layers for blocking, for simplicity they are all used on every platform;
|
||||||
|
// layer1 is the iframe layer which is used to supress bleed through of underlying content
|
||||||
|
// layer2 is the overlay layer which has opacity and a wait cursor (by default)
|
||||||
|
// layer3 is the message content that is displayed while blocking
|
||||||
|
var lyr1, lyr2, lyr3, s;
|
||||||
|
if (msie || opts.forceIframe) {
|
||||||
|
lyr1 = $('<iframe class="blockUI" style="z-index:'+ (z++) +';display:none;border:none;margin:0;padding:0;position:absolute;width:100%;height:100%;top:0;left:0" src="'+opts.iframeSrc+'"></iframe>');
|
||||||
|
} else {
|
||||||
|
lyr1 = $('<div class="blockUI" style="display:none"></div>');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (opts.theme) {
|
||||||
|
lyr2 = $('<div class="blockUI blockOverlay ui-widget-overlay" style="z-index:'+ (z++) +';display:none"></div>');
|
||||||
|
} else {
|
||||||
|
lyr2 = $('<div class="blockUI blockOverlay" style="z-index:'+ (z++) +';display:none;border:none;margin:0;padding:0;width:100%;height:100%;top:0;left:0"></div>');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (opts.theme && full) {
|
||||||
|
s = '<div class="blockUI ' + opts.blockMsgClass + ' blockPage ui-dialog ui-widget ui-corner-all" style="z-index:'+(z+10)+';display:none;position:fixed">';
|
||||||
|
if ( opts.title ) {
|
||||||
|
s += '<div class="ui-widget-header ui-dialog-titlebar ui-corner-all blockTitle">'+(opts.title || ' ')+'</div>';
|
||||||
|
}
|
||||||
|
s += '<div class="ui-widget-content ui-dialog-content"></div>';
|
||||||
|
s += '</div>';
|
||||||
|
} else if (opts.theme) {
|
||||||
|
s = '<div class="blockUI ' + opts.blockMsgClass + ' blockElement ui-dialog ui-widget ui-corner-all" style="z-index:'+(z+10)+';display:none;position:absolute">';
|
||||||
|
if ( opts.title ) {
|
||||||
|
s += '<div class="ui-widget-header ui-dialog-titlebar ui-corner-all blockTitle">'+(opts.title || ' ')+'</div>';
|
||||||
|
}
|
||||||
|
s += '<div class="ui-widget-content ui-dialog-content"></div>';
|
||||||
|
s += '</div>';
|
||||||
|
} else if (full) {
|
||||||
|
s = '<div class="blockUI ' + opts.blockMsgClass + ' blockPage" style="z-index:'+(z+10)+';display:none;position:fixed"></div>';
|
||||||
|
} else {
|
||||||
|
s = '<div class="blockUI ' + opts.blockMsgClass + ' blockElement" style="z-index:'+(z+10)+';display:none;position:absolute"></div>';
|
||||||
|
}
|
||||||
|
lyr3 = $(s);
|
||||||
|
|
||||||
|
// if we have a message, style it
|
||||||
|
if (msg) {
|
||||||
|
if (opts.theme) {
|
||||||
|
lyr3.css(themedCSS);
|
||||||
|
lyr3.addClass('ui-widget-content');
|
||||||
|
} else {
|
||||||
|
lyr3.css(css);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// style the overlay
|
||||||
|
if (!opts.theme /*&& (!opts.applyPlatformOpacityRules)*/) {
|
||||||
|
lyr2.css(opts.overlayCSS);
|
||||||
|
}
|
||||||
|
lyr2.css('position', full ? 'fixed' : 'absolute');
|
||||||
|
|
||||||
|
// make iframe layer transparent in IE
|
||||||
|
if (msie || opts.forceIframe) {
|
||||||
|
lyr1.css('opacity',0.0);
|
||||||
|
}
|
||||||
|
|
||||||
|
//$([lyr1[0],lyr2[0],lyr3[0]]).appendTo(full ? 'body' : el);
|
||||||
|
var layers = [lyr1,lyr2,lyr3], $par = full ? $('body') : $(el);
|
||||||
|
$.each(layers, function () {
|
||||||
|
this.appendTo($par);
|
||||||
|
});
|
||||||
|
|
||||||
|
if (opts.theme && opts.draggable && $.fn.draggable) {
|
||||||
|
lyr3.draggable({
|
||||||
|
handle: '.ui-dialog-titlebar',
|
||||||
|
cancel: 'li'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// ie7 must use absolute positioning in quirks mode and to account for activex issues (when scrolling)
|
||||||
|
var expr = setExpr && (!$.support.boxModel || $('object,embed', full ? null : el).length > 0);
|
||||||
|
if (ie6 || expr) {
|
||||||
|
// give body 100% height
|
||||||
|
if (full && opts.allowBodyStretch && $.support.boxModel) {
|
||||||
|
$('html,body').css('height','100%');
|
||||||
|
}
|
||||||
|
|
||||||
|
// fix ie6 issue when blocked element has a border width
|
||||||
|
if ((ie6 || !$.support.boxModel) && !full) {
|
||||||
|
var t = sz(el,'borderTopWidth'), l = sz(el,'borderLeftWidth');
|
||||||
|
var fixT = t ? '(0 - '+t+')' : 0;
|
||||||
|
var fixL = l ? '(0 - '+l+')' : 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// simulate fixed position
|
||||||
|
$.each(layers, function (i,o) {
|
||||||
|
var s = o[0].style;
|
||||||
|
s.position = 'absolute';
|
||||||
|
if (i < 2) {
|
||||||
|
if (full) {
|
||||||
|
s.setExpression('height','Math.max(document.body.scrollHeight, document.body.offsetHeight) - (jQuery.support.boxModel?0:'+opts.quirksmodeOffsetHack+') + "px"');
|
||||||
|
} else {
|
||||||
|
s.setExpression('height','this.parentNode.offsetHeight + "px"');
|
||||||
|
}
|
||||||
|
if (full) {
|
||||||
|
s.setExpression('width','jQuery.support.boxModel && document.documentElement.clientWidth || document.body.clientWidth + "px"');
|
||||||
|
} else {
|
||||||
|
s.setExpression('width','this.parentNode.offsetWidth + "px"');
|
||||||
|
}
|
||||||
|
if (fixL) {
|
||||||
|
s.setExpression('left', fixL);
|
||||||
|
}
|
||||||
|
if (fixT) {
|
||||||
|
s.setExpression('top', fixT);
|
||||||
|
}
|
||||||
|
} else if (opts.centerY) {
|
||||||
|
if (full) {
|
||||||
|
s.setExpression('top','(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (blah = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"');
|
||||||
|
}
|
||||||
|
s.marginTop = 0;
|
||||||
|
} else if (!opts.centerY && full) {
|
||||||
|
var top = (opts.css && opts.css.top) ? parseInt(opts.css.top, 10) : 0;
|
||||||
|
var expression = '((document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + '+top+') + "px"';
|
||||||
|
s.setExpression('top',expression);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// show the message
|
||||||
|
if (msg) {
|
||||||
|
if (opts.theme) {
|
||||||
|
lyr3.find('.ui-widget-content').append(msg);
|
||||||
|
} else {
|
||||||
|
lyr3.append(msg);
|
||||||
|
}
|
||||||
|
if (msg.jquery || msg.nodeType) {
|
||||||
|
$(msg).show();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((msie || opts.forceIframe) && opts.showOverlay) {
|
||||||
|
lyr1.show(); // opacity is zero
|
||||||
|
}
|
||||||
|
if (opts.fadeIn) {
|
||||||
|
var cb = opts.onBlock ? opts.onBlock : noOp;
|
||||||
|
var cb1 = (opts.showOverlay && !msg) ? cb : noOp;
|
||||||
|
var cb2 = msg ? cb : noOp;
|
||||||
|
if (opts.showOverlay) {
|
||||||
|
lyr2._fadeIn(opts.fadeIn, cb1);
|
||||||
|
}
|
||||||
|
if (msg) {
|
||||||
|
lyr3._fadeIn(opts.fadeIn, cb2);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (opts.showOverlay) {
|
||||||
|
lyr2.show();
|
||||||
|
}
|
||||||
|
if (msg) {
|
||||||
|
lyr3.show();
|
||||||
|
}
|
||||||
|
if (opts.onBlock) {
|
||||||
|
opts.onBlock.bind(lyr3)();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// bind key and mouse events
|
||||||
|
bind(1, el, opts);
|
||||||
|
|
||||||
|
if (full) {
|
||||||
|
pageBlock = lyr3[0];
|
||||||
|
pageBlockEls = $(opts.focusableElements,pageBlock);
|
||||||
|
if (opts.focusInput) {
|
||||||
|
setTimeout(focus, 20);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
center(lyr3[0], opts.centerX, opts.centerY);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (opts.timeout) {
|
||||||
|
// auto-unblock
|
||||||
|
var to = setTimeout(function () {
|
||||||
|
if (full) {
|
||||||
|
$.unblockUI(opts);
|
||||||
|
} else {
|
||||||
|
$(el).unblock(opts);
|
||||||
|
}
|
||||||
|
}, opts.timeout);
|
||||||
|
$(el).data('blockUI.timeout', to);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// remove the block
|
||||||
|
function remove(el, opts)
|
||||||
|
{
|
||||||
|
var count;
|
||||||
|
var full = (el == window);
|
||||||
|
var $el = $(el);
|
||||||
|
var data = $el.data('blockUI.history');
|
||||||
|
var to = $el.data('blockUI.timeout');
|
||||||
|
if (to) {
|
||||||
|
clearTimeout(to);
|
||||||
|
$el.removeData('blockUI.timeout');
|
||||||
|
}
|
||||||
|
opts = $.extend({}, $.blockUI.defaults, opts || {});
|
||||||
|
bind(0, el, opts); // unbind events
|
||||||
|
|
||||||
|
if (opts.onUnblock === null) {
|
||||||
|
opts.onUnblock = $el.data('blockUI.onUnblock');
|
||||||
|
$el.removeData('blockUI.onUnblock');
|
||||||
|
}
|
||||||
|
|
||||||
|
var els;
|
||||||
|
if (full) { // crazy selector to handle odd field errors in ie6/7
|
||||||
|
els = $('body').children().filter('.blockUI').add('body > .blockUI');
|
||||||
|
} else {
|
||||||
|
els = $el.find('>.blockUI');
|
||||||
|
}
|
||||||
|
|
||||||
|
// fix cursor issue
|
||||||
|
if ( opts.cursorReset ) {
|
||||||
|
if ( els.length > 1 ) {
|
||||||
|
els[1].style.cursor = opts.cursorReset;
|
||||||
|
}
|
||||||
|
if ( els.length > 2 ) {
|
||||||
|
els[2].style.cursor = opts.cursorReset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (full) {
|
||||||
|
pageBlock = pageBlockEls = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (opts.fadeOut) {
|
||||||
|
count = els.length;
|
||||||
|
els.stop().fadeOut(opts.fadeOut, function () {
|
||||||
|
if ( --count === 0) {
|
||||||
|
reset(els,data,opts,el);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
reset(els, data, opts, el);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// move blocking element back into the DOM where it started
|
||||||
|
function reset(els,data,opts,el)
|
||||||
|
{
|
||||||
|
var $el = $(el);
|
||||||
|
if ( $el.data('blockUI.isBlocked') ) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
els.each(function (i,o) {
|
||||||
|
// remove via DOM calls so we don't lose event handlers
|
||||||
|
if (this.parentNode) {
|
||||||
|
this.parentNode.removeChild(this);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if (data && data.el) {
|
||||||
|
data.el.style.display = data.display;
|
||||||
|
data.el.style.position = data.position;
|
||||||
|
data.el.style.cursor = 'default'; // #59
|
||||||
|
if (data.parent) {
|
||||||
|
data.parent.appendChild(data.el);
|
||||||
|
}
|
||||||
|
$el.removeData('blockUI.history');
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($el.data('blockUI.static')) {
|
||||||
|
$el.css('position', 'static'); // #22
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeof opts.onUnblock == 'function') {
|
||||||
|
opts.onUnblock(el,opts);
|
||||||
|
}
|
||||||
|
|
||||||
|
// fix issue in Safari 6 where block artifacts remain until reflow
|
||||||
|
var body = $(document.body), w = body.width(), cssW = body[0].style.width;
|
||||||
|
body.width(w-1).width(w);
|
||||||
|
body[0].style.width = cssW;
|
||||||
|
}
|
||||||
|
|
||||||
|
// bind/unbind the handler
|
||||||
|
function bind(b, el, opts)
|
||||||
|
{
|
||||||
|
var full = el == window, $el = $(el);
|
||||||
|
|
||||||
|
// don't bother unbinding if there is nothing to unbind
|
||||||
|
if (!b && (full && !pageBlock || !full && !$el.data('blockUI.isBlocked'))) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$el.data('blockUI.isBlocked', b);
|
||||||
|
|
||||||
|
// don't bind events when overlay is not in use or if bindEvents is false
|
||||||
|
if (!full || !opts.bindEvents || (b && !opts.showOverlay)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// bind anchors and inputs for mouse and key events
|
||||||
|
var events = 'mousedown mouseup keydown keypress keyup touchstart touchend touchmove';
|
||||||
|
if (b) {
|
||||||
|
$(document).bind(events, opts, handler);
|
||||||
|
} else {
|
||||||
|
$(document).unbind(events, handler);
|
||||||
|
}
|
||||||
|
|
||||||
|
// former impl...
|
||||||
|
// var $e = $('a,:input');
|
||||||
|
// b ? $e.bind(events, opts, handler) : $e.unbind(events, handler);
|
||||||
|
}
|
||||||
|
|
||||||
|
// event handler to suppress keyboard/mouse events when blocking
|
||||||
|
function handler(e)
|
||||||
|
{
|
||||||
|
// allow tab navigation (conditionally)
|
||||||
|
if (e.type === 'keydown' && e.keyCode && e.keyCode == 9) {
|
||||||
|
if (pageBlock && e.data.constrainTabKey) {
|
||||||
|
var els = pageBlockEls;
|
||||||
|
var fwd = !e.shiftKey && e.target === els[els.length-1];
|
||||||
|
var back = e.shiftKey && e.target === els[0];
|
||||||
|
if (fwd || back) {
|
||||||
|
setTimeout(function () {
|
||||||
|
focus(back);},10);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var opts = e.data;
|
||||||
|
var target = $(e.target);
|
||||||
|
if (target.hasClass('blockOverlay') && opts.onOverlayClick) {
|
||||||
|
opts.onOverlayClick(e);
|
||||||
|
}
|
||||||
|
|
||||||
|
// allow events within the message content
|
||||||
|
if (target.parents('div.' + opts.blockMsgClass).length > 0) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// allow events for content that is not being blocked
|
||||||
|
return target.parents().children().filter('div.blockUI').length === 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
function focus(back)
|
||||||
|
{
|
||||||
|
if (!pageBlockEls) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var e = pageBlockEls[back===true ? pageBlockEls.length-1 : 0];
|
||||||
|
if (e) {
|
||||||
|
e.focus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function center(el, x, y)
|
||||||
|
{
|
||||||
|
var p = el.parentNode, s = el.style;
|
||||||
|
var l = ((p.offsetWidth - el.offsetWidth)/2) - sz(p,'borderLeftWidth');
|
||||||
|
var t = ((p.offsetHeight - el.offsetHeight)/2) - sz(p,'borderTopWidth');
|
||||||
|
if (x) {
|
||||||
|
s.left = l > 0 ? (l+'px') : '0';
|
||||||
|
}
|
||||||
|
if (y) {
|
||||||
|
s.top = t > 0 ? (t+'px') : '0';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function sz(el, p)
|
||||||
|
{
|
||||||
|
return parseInt($.css(el,p),10)||0;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*global define:true */
|
||||||
|
if (typeof define === 'function' && define.amd && define.amd.jQuery) {
|
||||||
|
define(['jquery'], setup);
|
||||||
|
} else {
|
||||||
|
setup(jQuery);
|
||||||
|
}
|
||||||
|
|
||||||
|
})();
|
|
@ -0,0 +1,13 @@
|
||||||
|
/*************************************************!
|
||||||
|
*
|
||||||
|
* project: liteAccordion - a horizontal accordion plugin for jQuery
|
||||||
|
* author: Nicola Hibbert
|
||||||
|
* url: http://nicolahibbert.com/liteaccordion-v2/
|
||||||
|
* demo: http://www.nicolahibbert.com/demo/liteAccordion/
|
||||||
|
*
|
||||||
|
* Version: 2.2.0
|
||||||
|
* Copyright: (c) 2010-2013 Nicola Hibbert
|
||||||
|
* Licence: MIT
|
||||||
|
*
|
||||||
|
**************************************************/
|
||||||
|
(function(b){var a=function(g,l){var i={containerWidth:960,containerHeight:320,headerWidth:48,activateOn:"click",firstSlide:1,slideSpeed:800,onTriggerSlide:function(m){},onSlideAnimComplete:function(){},autoPlay:false,pauseOnHover:false,cycleSpeed:6000,easing:"swing",theme:"basic",rounded:false,enumerateSlides:false,linkable:false},h=b.extend({},i,l),c=g.children("ol").children("li"),j=c.children(":first-child"),k=c.length,f=h.containerWidth-k*h.headerWidth,e={play:function(m){var n=d.nextSlide(m&&m);if(d.playing){return}d.playing=setInterval(function(){j.eq(n()).trigger("click.liteAccordion")},h.cycleSpeed)},stop:function(){clearInterval(d.playing);d.playing=0},next:function(){e.stop();j.eq(d.currentSlide===k-1?0:d.currentSlide+1).trigger("click.liteAccordion")},prev:function(){e.stop();j.eq(d.currentSlide-1).trigger("click.liteAccordion")},destroy:function(){e.stop();b(window).off(".liteAccordion");g.attr("style","").removeClass("liteAccordion basic dark light stitch").removeData("liteAccordion").off(".liteAccordion").find("li > :first-child").off(".liteAccordion").filter(".selected").removeClass("selected").end().find("b").remove();c.removeClass("slide").children().attr("style","")},debug:function(){return{elem:g,defaults:i,settings:h,methods:e,core:d}}},d={setStyles:function(){g.width(h.containerWidth).height(h.containerHeight).addClass("liteAccordion").addClass(h.rounded&&"rounded").addClass(h.theme);c.addClass("slide").children(":first-child").height(h.headerWidth);d.setSlidePositions()},setSlidePositions:function(){var m=j.filter(".selected");if(!m.length){j.eq(h.firstSlide-1).addClass("selected")}j.each(function(n){var q=b(this),p=n*h.headerWidth,o=j.first().next(),r=parseInt(o.css("marginLeft"),10)||parseInt(o.css("marginRight"),10)||0;if(m.length){if(n>j.index(m)){p+=f}}else{if(n>=h.firstSlide){p+=f}}q.css("left",p).width(h.containerHeight).next().width(f-r).css({left:p,paddingLeft:h.headerWidth});h.enumerateSlides&&q.append("<b>"+(n+1)+"</b>")})},bindEvents:function(){if(h.activateOn==="click"){j.on("click.liteAccordion",d.triggerSlide)}else{if(h.activateOn==="mouseover"){j.on("click.liteAccordion mouseover.liteAccordion",d.triggerSlide)}}if(h.linkable){b(window).on("hashchange.liteAccordion",function(n){var m=c.filter(function(){return b(this).attr("data-slide-name")===window.location.hash.split("#")[1]});if(m.length){d.triggerSlide.call(m.children("h2")[0],n)}})}if(h.pauseOnHover&&h.autoPlay){g.on("mouseover.liteAccordion",function(){d.playing&&e.stop()}).on("mouseout.liteAccordion",function(){!d.playing&&e.play(d.currentSlide)})}},currentSlide:h.firstSlide-1,nextSlide:function(m){var n=m+1||d.currentSlide+1;return function(){return n++%k}},playing:0,slideAnimCompleteFlag:false,triggerSlide:function(o){var n=b(this),m={elem:n,index:j.index(n),next:n.next(),prev:n.parent().prev().children("h2"),parent:n.parent()};if(h.linkable&&m.parent.attr("data-slide-name")){if(m.parent.attr("data-slide-name")!==window.location.hash.split("#")[1]){return window.location.hash="#"+m.parent.attr("data-slide-name")}}d.currentSlide=m.index;d.slideAnimCompleteFlag=false;h.onTriggerSlide.call(m.next,n);if(n.hasClass("selected")&&n.position().left<f/2){d.animSlide.call(m)}else{d.animSlideGroup(m)}if(h.autoPlay){e.stop();e.play(j.index(j.filter(".selected")))}},animSlide:function(m){var n=this;if(typeof this.pos==="undefined"){this.pos=f}j.removeClass("selected").filter(this.elem).addClass("selected");if(!!this.index){this.elem.add(this.next).stop(true).animate({left:this.pos+this.index*h.headerWidth},h.slideSpeed,h.easing,function(){if(!d.slideAnimCompleteFlag){h.onSlideAnimComplete.call(m?m.next:n.prev.next());d.slideAnimCompleteFlag=true}});j.removeClass("selected").filter(this.prev).addClass("selected")}},animSlideGroup:function(m){var n=["left","right"];b.each(n,function(o,p){var r,q;if(p==="left"){r=":lt("+(m.index+1)+")";q=0}else{r=":gt("+m.index+")";q=f}c.filter(r).children("h2").each(function(){var t=b(this),s={elem:t,index:j.index(t),next:t.next(),prev:t.parent().prev().children("h2"),pos:q};d.animSlide.call(s,m)})});j.removeClass("selected").filter(m.elem).addClass("selected")},ieClass:function(m){if(m<7){e.destroy()}if(m>=10){return}if(m===7||m===8){c.each(function(n){b(this).addClass("slide-"+n)})}g.addClass("ie ie"+m)},init:function(){var n=navigator.userAgent,m=n.indexOf("MSIE");if(m!==-1){n=n.slice(m+5,m+7);d.ieClass(+n)}d.setStyles();d.bindEvents();if(h.cycleSpeed<h.slideSpeed){h.cycleSpeed=h.slideSpeed}h.autoPlay&&e.play()}};d.init();return e};b.fn.liteAccordion=function(e){var d=this,c=d.data("liteAccordion");if(typeof e==="object"||!e){return d.each(function(){var f;if(c){return}f=new a(d,e);d.data("liteAccordion",f)})}else{if(typeof e==="string"&&c[e]){if(e==="debug"){return c[e].call(d)}else{c[e].call(d);return d}}}}})(jQuery);
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,381 @@
|
||||||
|
/* This file is part of DBSR.
|
||||||
|
*
|
||||||
|
* DBSR is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* DBSR is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with DBSR. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
jQuery(function ($) {
|
||||||
|
// Do the initalization AJAX request
|
||||||
|
$.ajax({
|
||||||
|
type: 'POST',
|
||||||
|
url: '?ajax&initialize',
|
||||||
|
dataType: 'json',
|
||||||
|
success: function (response, status, xhr) {
|
||||||
|
// Update the forms using response
|
||||||
|
for (i in response.data) {
|
||||||
|
$('.data-' + i).each(function () {
|
||||||
|
// Input-elements can't use the .text() method
|
||||||
|
if ($(this).is('input')) {
|
||||||
|
// And checkboxes need setting the "checked" attribute instead of their value
|
||||||
|
if ($(this).is(':checkbox')) {
|
||||||
|
$(this).prop('checked', response.data[i]);
|
||||||
|
} else {
|
||||||
|
$(this).val(response.data[i]);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (response.data[i] === null) {
|
||||||
|
response.data[i] = '';
|
||||||
|
}
|
||||||
|
$(this).text(response.data[i]);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fix port number display
|
||||||
|
$('span.prefix-colon:not(:empty)').each(function () {
|
||||||
|
if ($(this).text().substring(0, 1) != ':') {
|
||||||
|
$(this).text(':' + $(this).text());
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Self-destruct authorized?
|
||||||
|
if (response.selfdestruct) {
|
||||||
|
$('#selfdestruct').prop('disabled', false);
|
||||||
|
$('#selfdestruct').change(function () {
|
||||||
|
$('#container .slide:last-child > div form input:submit').val($(this).is(':checked') ? 'Self-destruct' : 'Restart');
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
$('#selfdestruct, label[for="selfdestruct"]').remove();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Save the window width for responsive optimalisation
|
||||||
|
var windowWidth = $('body').width();
|
||||||
|
|
||||||
|
// Options for the liteAccordion
|
||||||
|
var liteAccordionOptions = {
|
||||||
|
containerWidth: windowWidth,
|
||||||
|
enumerateSlides: true,
|
||||||
|
linkable: false
|
||||||
|
};
|
||||||
|
|
||||||
|
// Build the liteAccordion
|
||||||
|
$('#container').liteAccordion(liteAccordionOptions);
|
||||||
|
|
||||||
|
// Bind resize event to make it responsive
|
||||||
|
$(window).on('resize orientationChanged', function () {
|
||||||
|
// Get the current width
|
||||||
|
var currentWidth = $('body').width();
|
||||||
|
|
||||||
|
// Only rebuild if the width changed (height is all CSS)
|
||||||
|
if (windowWidth != currentWidth) {
|
||||||
|
// Rebuild the liteAccordion with the new width
|
||||||
|
$('#container').liteAccordion('destroy').liteAccordion($.extend(liteAccordionOptions, {
|
||||||
|
containerWidth: currentWidth
|
||||||
|
}));
|
||||||
|
|
||||||
|
// Save the new width
|
||||||
|
windowWidth = currentWidth;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Directly trigger resize event once to adjust for body with changes caused by inital liteAccordion activation
|
||||||
|
$(window).trigger('resize');
|
||||||
|
|
||||||
|
// Remove default styling, use our own one from the CSS instead
|
||||||
|
$.blockUI.defaults.css = {};
|
||||||
|
$.blockUI.defaults.overlayCSS = {};
|
||||||
|
$.blockUI.defaults.growlCSS = {};
|
||||||
|
|
||||||
|
// Block all steps but the first
|
||||||
|
$('#container .slide:not(:first-child) > div > div').block({
|
||||||
|
message: null,
|
||||||
|
overlayCSS: {
|
||||||
|
cursor: 'default'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Value display
|
||||||
|
$('#container .values-switch a').click(function (e) {
|
||||||
|
// Show the correct set
|
||||||
|
$(this).parents('table').find('tbody').not('.' + $(this).attr('class').replace(/\s/, '.')).css('display', 'none');
|
||||||
|
$(this).parents('table').find('tbody.' + $(this).attr('class').replace(/\s/, '.')).css('display', 'table-row-group');
|
||||||
|
|
||||||
|
// Style the link
|
||||||
|
$(this).siblings().css('font-weight', 'normal');
|
||||||
|
$(this).css('font-weight', 'bolder');
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
$('#container .values-switch a.values-raw').click();
|
||||||
|
|
||||||
|
// Add / remove value buttons
|
||||||
|
$('#addField').click(function () {
|
||||||
|
var i = $('#srFields').children().length;
|
||||||
|
$('#srFields').append('<tr><td><textarea name="search[' + i + ']" rows="10" cols="50"></textarea></td><td><textarea name="replace[' + i + ']" rows="10" cols="50"></textarea></td></tr>')
|
||||||
|
|
||||||
|
if ($('#srFields').children().length > 1) {
|
||||||
|
$('#removeField').prop('disabled', false);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
$('#removeField').click(function () {
|
||||||
|
if ($('#srFields').children().length > 1) {
|
||||||
|
$('#srFields').children(':last-child').remove();
|
||||||
|
}
|
||||||
|
if ($('#srFields').children().length == 1) {
|
||||||
|
$(this).prop('disabled', true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Previous / next buttons
|
||||||
|
$('#container .slide > div form input.prev').click(function (e) {
|
||||||
|
$(this).parents('.slide').prev('.slide').children('h2').click();
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
$('#container .slide:not(:last-child) > div form').submit(function (e) {
|
||||||
|
// Save $(this)
|
||||||
|
var $this = $(this);
|
||||||
|
var $next = $this.parents('.slide').next('.slide').children('div').children('div');
|
||||||
|
var $prev = $this.parents('.slide').prev('.slide').children('div').children('div');
|
||||||
|
var $nexts = $this.parents('.slide').siblings('.slide').slice($this.parents('.slide').index()).children('div').children('div');
|
||||||
|
var $prevs = $this.parents('.slide').siblings('.slide').slice(0, $this.parents('.slide').index()).children('div').children('div');
|
||||||
|
|
||||||
|
if ($next.parents('.slide').is(':last-child') && $this.find('#confirmed').is(':not(:checked)')) {
|
||||||
|
$this.find('.errormessage').text('Please confirm the data stated above is correct!');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Stepping lock
|
||||||
|
if (window.DBSR_stepping) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
window.DBSR_stepping = true;
|
||||||
|
|
||||||
|
// Block all next steps
|
||||||
|
$nexts.block({
|
||||||
|
message: null,
|
||||||
|
overlayCSS: {
|
||||||
|
cursor: 'default'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
// Show loader on next step
|
||||||
|
$next.block({message: 'Processing data from previous step...'});
|
||||||
|
|
||||||
|
// Variable for storing (optional) slide timeouts
|
||||||
|
var slideTimeout;
|
||||||
|
|
||||||
|
// Check if we're proceeding to the last step
|
||||||
|
if ($next.parents('.slide').is(':last-child')) {
|
||||||
|
$next.block({message: 'Executing search and replace...'});
|
||||||
|
$this.parents('.slide').next('.slide').children('h2').not('.selected').click();
|
||||||
|
$('#container .slide:not(:last-child) > div > div').block({
|
||||||
|
message: null,
|
||||||
|
overlayCSS: {
|
||||||
|
cursor: 'default'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
// For all other steps, wait a short time before moving along to the next slide for improved user feedback
|
||||||
|
slideTimeout = setTimeout(function () {
|
||||||
|
$this.parents('.slide').next('.slide').children('h2').not('.selected').click();
|
||||||
|
}, 400);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Do the AJAX request
|
||||||
|
$.ajax({
|
||||||
|
type: 'POST',
|
||||||
|
url: '?ajax&step',
|
||||||
|
data: $this.serialize(),
|
||||||
|
dataType: 'json',
|
||||||
|
success: function (response, status, xhr) {
|
||||||
|
// Clear the sliding timeout
|
||||||
|
clearTimeout(slideTimeout);
|
||||||
|
|
||||||
|
// Validation successful?
|
||||||
|
if (response.valid) {
|
||||||
|
// Remove the last message
|
||||||
|
$this.find('.errormessage').text('');
|
||||||
|
|
||||||
|
// Set next error message (pretty rare)
|
||||||
|
if (response.error) {
|
||||||
|
$next.find('.errormessage').text(response.error);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Update the forms using response
|
||||||
|
if (response.data) {
|
||||||
|
for (i in response.data) {
|
||||||
|
$('#container .data-' + i).each(function () {
|
||||||
|
// Input-elements can't use the .text() method
|
||||||
|
if ($(this).is('input')) {
|
||||||
|
// And checkboxes need setting the "checked" attribute instead of their value
|
||||||
|
if ($(this).is(':checkbox')) {
|
||||||
|
$(this).prop('checked', response.data[i]);
|
||||||
|
} else {
|
||||||
|
$(this).val(response.data[i]);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$(this).text(response.data[i]);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (response.html) {
|
||||||
|
for (i in response.html) {
|
||||||
|
$('#container .html-' + i).each(function () {
|
||||||
|
// Set the HTML
|
||||||
|
$(this).html(response.html[i]);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reselect raw values
|
||||||
|
$('#container .values-switch a.values-raw').click();
|
||||||
|
|
||||||
|
// Remove loader
|
||||||
|
$next.unblock();
|
||||||
|
|
||||||
|
// Move to the next step
|
||||||
|
$this.parents('.slide').next('.slide').children('h2').not('.selected').click();
|
||||||
|
|
||||||
|
// Stepping lock
|
||||||
|
window.DBSR_stepping = false;
|
||||||
|
} else {
|
||||||
|
// Display message and go back (if needed)
|
||||||
|
$this.find('.errormessage').text(response.error);
|
||||||
|
$this.parents('.slide').children('div').children('div').unblock();
|
||||||
|
$this.parents('.slide').children('h2').not('.selected').click();
|
||||||
|
|
||||||
|
// Block next steps
|
||||||
|
$nexts.block({
|
||||||
|
message: null,
|
||||||
|
overlayCSS: {
|
||||||
|
cursor: 'default'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Unblock previous steps
|
||||||
|
$prevs.unblock();
|
||||||
|
|
||||||
|
// Stepping lock
|
||||||
|
window.DBSR_stepping = false;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
error: function (response, status, xhr) {
|
||||||
|
// Show error
|
||||||
|
$next.block({message: 'Error processing request: ' + status});
|
||||||
|
$this.parents('.slide').next('.slide').children('h2').not('.selected').click();
|
||||||
|
|
||||||
|
// Stepping lock
|
||||||
|
window.DBSR_stepping = false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
$('#container .slide:last-child > div form input:submit').click(function (e) {
|
||||||
|
if ($('#selfdestruct').is(':checked')) {
|
||||||
|
$('#container .slide:last-child > div > div').block({
|
||||||
|
message: 'Self-destruction in progress...'
|
||||||
|
});
|
||||||
|
$.ajax({
|
||||||
|
type: 'POST',
|
||||||
|
url: '?ajax&selfdestruct',
|
||||||
|
dataType: 'json',
|
||||||
|
success: function (response, status, xhr) {
|
||||||
|
if (response) {
|
||||||
|
$('#container .slide:last-child > div > div').block({
|
||||||
|
message: 'Self-destruction succesful!',
|
||||||
|
css: {
|
||||||
|
cursor: 'default'
|
||||||
|
},
|
||||||
|
overlayCSS: {
|
||||||
|
cursor: 'default'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
$('#container .slide:last-child > div > div').block({
|
||||||
|
message: 'Failed to self-destruct, please delete this file manually!',
|
||||||
|
css: {
|
||||||
|
cursor: 'default'
|
||||||
|
},
|
||||||
|
overlayCSS: {
|
||||||
|
cursor: 'default'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
error: function (response, status, xhr) {
|
||||||
|
$('#container .slide:last-child > div > div').block({
|
||||||
|
message: 'Error while self-destructing: ' + status,
|
||||||
|
overlayCSS: {
|
||||||
|
cursor: 'default'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
$('#confirmed').prop('checked', false);
|
||||||
|
$('#container .slide:last-child > div > div').block({
|
||||||
|
message: null,
|
||||||
|
overlayCSS: {
|
||||||
|
cursor: 'default'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
$('#container .slide:first-child > div > div').unblock();
|
||||||
|
$('#container .slide:first-child h2').click();
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
|
||||||
|
// Autocompletion
|
||||||
|
var cache = {};
|
||||||
|
$('input.autocomplete').autocomplete({
|
||||||
|
minLength: 1,
|
||||||
|
source: function (request, response) {
|
||||||
|
// Check the cache
|
||||||
|
var spu = $('#db_user').val() + '@' + $('#db_host').val() + ':' + $('#db_port').val();
|
||||||
|
var id = $(this.element).attr('id');
|
||||||
|
var term = request.term;
|
||||||
|
if (spu in cache && id in cache[spu] && term in cache[spu][id]) {
|
||||||
|
// Cache hit
|
||||||
|
response(cache[spu][id][term]);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Save the id
|
||||||
|
request.id = id;
|
||||||
|
|
||||||
|
// AJAX request
|
||||||
|
$.ajax({
|
||||||
|
type: 'POST',
|
||||||
|
url: '?ajax&autocomplete',
|
||||||
|
data: $.param(request) + '&' + $(this.element[0].form).serialize(),
|
||||||
|
dataType: 'json',
|
||||||
|
success: function (data, status, xhr) {
|
||||||
|
if (data.length > 0) {
|
||||||
|
// Save to the cache
|
||||||
|
if (!cache[spu]) {
|
||||||
|
cache[spu] = {};
|
||||||
|
}
|
||||||
|
if (!cache[spu][id]) {
|
||||||
|
cache[spu][id] = {};
|
||||||
|
}
|
||||||
|
cache[spu][id][term] = data;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return data
|
||||||
|
response(data);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,229 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<title>DBSR: Database Search and Replace</title>
|
||||||
|
<meta name="description" content="DBSR provides functionality for commiting search-and-replace-operations on MySQL databases." />
|
||||||
|
<link href="?resource=favicon.ico" rel="shortcut icon" />
|
||||||
|
<link href="?resource=css/reset.css" rel="stylesheet" type="text/css" />
|
||||||
|
<link href="?resource=css/jquery-ui-1.12.1.custom.min.css" rel="stylesheet" type="text/css" />
|
||||||
|
<link href="?resource=css/jquery-liteaccordion-2.2.0.css" rel="stylesheet" type="text/css" />
|
||||||
|
<link href="?resource=webfonts/SourceSansPro.css" rel="stylesheet" type="text/css" />
|
||||||
|
<link href="?resource=webfonts/SourceCodePro.css" rel="stylesheet" type="text/css" />
|
||||||
|
<link href="?resource=css/style.css" rel="stylesheet" type="text/css" />
|
||||||
|
<script type="text/javascript" src="?resource=js/jquery-3.1.1.min.js"></script>
|
||||||
|
<script type="text/javascript" src="?resource=js/jquery-ui-1.12.1.custom.min.js"></script>
|
||||||
|
<script type="text/javascript" src="?resource=js/jquery-liteaccordion-2.2.0.min.js"></script>
|
||||||
|
<script type="text/javascript" src="?resource=js/jquery-blockui-2.70.min.js"></script>
|
||||||
|
<script type="text/javascript" src="?resource=js/script.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>DBSR: Database Search and Replace</h1>
|
||||||
|
<p class="version">DBSR version <span class="data-DBSR_version">VERSION</span> GUI</p>
|
||||||
|
<noscript><p>This page requires JavaScript to work properly!</p></noscript>
|
||||||
|
<div id="container">
|
||||||
|
<ol>
|
||||||
|
<li>
|
||||||
|
<h2><span>Database connection information</span></h2>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<form method="post">
|
||||||
|
<h2>Database connection information</h2>
|
||||||
|
<p>
|
||||||
|
Enter the connection details for the database server below.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td><label for="db_host">Hostname</label></td>
|
||||||
|
<td><input name="db_host" id="db_host" type="text" class="data-db_host" /></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><label for="db_port">Port number</label></td>
|
||||||
|
<td><input name="db_port" id="db_port" type="text" class="data-db_port" /></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><label for="db_user">Username</label></td>
|
||||||
|
<td><input name="db_user" id="db_user" type="text" class="data-db_user" /></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><label for="db_pass">Password</label></td>
|
||||||
|
<td><input name="db_pass" id="db_pass" type="password" class="data-db_pass" /></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><label for="db_name">Database</label></td>
|
||||||
|
<td><input name="db_name" id="db_name" type="text" class="data-db_name autocomplete" /></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><label for="db_char">Charset</label></td>
|
||||||
|
<td><input name="db_char" id="db_char" type="text" class="data-db_char autocomplete" /></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<p>
|
||||||
|
<input type="hidden" name="step" value="1" />
|
||||||
|
<input type="submit" value="Next" />
|
||||||
|
</p>
|
||||||
|
<p class="errormessage"></p>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h2><span>Search and replace options</span></h2>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<form method="post">
|
||||||
|
<h2>Search and replace options</h2>
|
||||||
|
<p>
|
||||||
|
You have selected the database "<span class="data-db_name">DATABASE NAME</span>" on <span class="data-db_host">DATABASE HOST</span><span class="data-db_port prefix-colon">:PORT</span>.
|
||||||
|
The connection will use the <span class="data-db_char">DATABASE CHARSET</span> character set.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Please enter the search and replaces values in the form below.
|
||||||
|
</p>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Search for:</th>
|
||||||
|
<th>Replace with:</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tfoot>
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">
|
||||||
|
<input type="button" value="+" id="addField" />
|
||||||
|
<input type="button" value="-" id="removeField" disabled="disabled" />
|
||||||
|
<span class="note-right" style="float: right;">Note that all values are processed in order and thus may replace preceding values.</span>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tfoot>
|
||||||
|
<tbody id="srFields">
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<textarea name="search[0]" rows="10" cols="50"></textarea>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td>
|
||||||
|
<textarea name="replace[0]" rows="10" cols="50"></textarea>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<p>
|
||||||
|
When searching for a specific string it's sometimes useful to enter escaped sequences such as "<code>\n</code>" or <code>\x5C</code>".<br />
|
||||||
|
Checking the box below will make DBSR interpret all escaped sequences as PHP would in a double-quoted string.<br />
|
||||||
|
<input type="checkbox" name="escapedvalues" id="escapedvalues" class="data-escapedvalues" /><label for="escapedvalues">Interpret PHP escaped sequences.</label>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Case-insensitive search is disabled by default since most databases and filesystems are case-sensitive.<br />
|
||||||
|
Toggeling this settings might come in handy when running search-and-replace actions for user input.<br />
|
||||||
|
<input type="checkbox" name="dbsr_caseinsensitive" id="dbsr_caseinsensitive" class="data-dbsr_caseinsensitive" /><label for="dbsr_caseinsensitive">Case-insensitive search.</label>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
For performance reasons, DBSR normally only processes rows which contain one or more of the plain search strings.<br />
|
||||||
|
Checking the box below will make DBSR search through <b>every</b> field in the entire database, even if the search string does not occur in it.<br />
|
||||||
|
This may be useful when due to serialization the exact search strings do not occour in the database or when using DBSR to repair currupted serialized strings.<br />
|
||||||
|
<i>Note:</i> This makes DBSR a lot slower. In most cases, when there are no special characters in your search value, you shouldn't use this option.<br />
|
||||||
|
<input type="checkbox" name="dbsr_extensivesearch" id="dbsr_extensivesearch" class="data-dbsr_extensivesearch" /><label for="dbsr_extensivesearch">Run an extended search.</label>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<input type="hidden" name="step" value="2" />
|
||||||
|
<input type="button" value="Previous" class="prev" />
|
||||||
|
<input type="submit" value="Next" />
|
||||||
|
</p>
|
||||||
|
<p class="errormessage"></p>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h2><span>Confirmation</span></h2>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<form method="post">
|
||||||
|
<h2>Confirmation</h2>
|
||||||
|
<p>
|
||||||
|
You selected the database "<span class="data-db_name">DATABASE NAME</span>" on <span class="data-db_host">DATABASE HOST</span><span class="data-db_port">:PORT</span>.
|
||||||
|
The connection will use the <span class="data-db_char">DATABASE CHARSET</span> character set.
|
||||||
|
</p>
|
||||||
|
<p>The following strings will be used for search-and-replace:</p>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Search for:</th>
|
||||||
|
<th>Replace with:</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tfoot>
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">
|
||||||
|
<span class="values-switch">
|
||||||
|
View as
|
||||||
|
<a href="#" class="values-raw">raw values</a>,
|
||||||
|
<a href="#" class="values-escaped">PHP escaped values</a> or
|
||||||
|
<a href="#" class="values-hex">hex values</a>
|
||||||
|
</span>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tfoot>
|
||||||
|
<tbody class="values-raw html-values_raw">
|
||||||
|
<tr>
|
||||||
|
<td><code>RAW SEARCH VALUE</code></td>
|
||||||
|
<td><code>RAW REPLACE VALUE</code></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
<tbody class="values-escaped html-values_escaped">
|
||||||
|
<tr>
|
||||||
|
<td><code>ESCAPED SEARCH VALUE</code></td>
|
||||||
|
<td><code>ESCAPED REPLACE VALUE</code></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
<tbody class="values-hex html-values_hex">
|
||||||
|
<tr>
|
||||||
|
<td><code>HEX SEARCH VALUE</code></td>
|
||||||
|
<td><code>HEX REPLACE VALUE</code></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<div class="html-suggestions"></div>
|
||||||
|
<p>
|
||||||
|
It is highly recommended to make a backup of your database before using DBSR!<br />
|
||||||
|
If you haven't done so yet, do it now! Remember Murphy's law!
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<input type="checkbox" name="confirmed" id="confirmed" /><label for="confirmed">Yes, I have read the warnings above and checked that the search and replaces values are correct.</label>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<input type="hidden" name="step" value="3" />
|
||||||
|
<input type="button" value="Previous" class="prev" />
|
||||||
|
<input type="submit" value="Start!" />
|
||||||
|
</p>
|
||||||
|
<p class="errormessage"></p>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h2><span>Results</span></h2>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<form method="post">
|
||||||
|
<h2>Results</h2>
|
||||||
|
<p>
|
||||||
|
<span class="data-result">RESULT</span> occurence(s) found and replaced.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<input type="checkbox" name="selfdestruct" id="selfdestruct" disabled="disabled" /><label for="selfdestruct">Delete DBSR from the web server.</label><br />
|
||||||
|
<input type="submit" value="Restart" />
|
||||||
|
</p>
|
||||||
|
<p class="errormessage"></p>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,15 @@
|
||||||
|
/* Source Code Pro is licensed under the SIL Open Font License, Version 1.1 - http://scripts.sil.org/OFL */
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Source Code Pro';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: normal;
|
||||||
|
src: local('SourceCodePro-Regular'),
|
||||||
|
url(?resource=webfonts/SourceCodePro-Regular.woff) format('woff');
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Source Code Pro';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: bold;
|
||||||
|
src: local('SourceCodePro-Bold'),
|
||||||
|
url(?resource=webfonts/SourceCodePro-Bold.woff) format('woff');
|
||||||
|
}
|
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,15 @@
|
||||||
|
/* Source Sans Pro is licensed under the SIL Open Font License, Version 1.1 - http://scripts.sil.org/OFL */
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Source Sans Pro';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: normal;
|
||||||
|
src: local('SourceSansPro-Regular'),
|
||||||
|
url(?resource=webfonts/SourceSansPro-Regular.woff) format('woff');
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Source Sans Pro';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: bold;
|
||||||
|
src: local('SourceSansPro-Bold'),
|
||||||
|
url(?resource=webfonts/SourceSansPro-Bold.woff) format('woff');
|
||||||
|
}
|
|
@ -0,0 +1,122 @@
|
||||||
|
<?php
|
||||||
|
/* This file is part of DBSR.
|
||||||
|
*
|
||||||
|
* DBSR is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* DBSR is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with DBSR. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Use Composer auto-loader for dependencies
|
||||||
|
require_once dirname(__DIR__) . \DIRECTORY_SEPARATOR . 'vendor' . \DIRECTORY_SEPARATOR . 'autoload.php';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* PHPUnit tests for the DBSR class.
|
||||||
|
*
|
||||||
|
* @author Daniël van de Giessen
|
||||||
|
* @package DBSR
|
||||||
|
*/
|
||||||
|
class DBSRTest extends \PHPUnit\Framework\TestCase
|
||||||
|
{
|
||||||
|
public function testCreateClass()
|
||||||
|
{
|
||||||
|
// Find a non-existing class name
|
||||||
|
do {
|
||||||
|
$className = 'DBSRTest_RandomClass_' . mt_rand(0, PHP_INT_MAX);
|
||||||
|
} while (class_exists($className, false));
|
||||||
|
|
||||||
|
// Run the static method
|
||||||
|
DBSR::createClass($className);
|
||||||
|
|
||||||
|
// Test existance of previously nonexisting class
|
||||||
|
$this->assertTrue(class_exists($className, false), 'Testing class existance after calling DBSR::createClass()...');
|
||||||
|
|
||||||
|
// Test errorless behaviour when calling with a existing class
|
||||||
|
DBSR::createClass('DBSRTest');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testGetPHPType()
|
||||||
|
{
|
||||||
|
// Test case array
|
||||||
|
$testCases = array();
|
||||||
|
|
||||||
|
// Base test case settings (for automatic generation)
|
||||||
|
// TODO: add BIT and all date/time types
|
||||||
|
$baseTestCases = array(
|
||||||
|
'boolean' => array(
|
||||||
|
'BOOL' => 0,
|
||||||
|
'BOOLEAN' => 0,
|
||||||
|
),
|
||||||
|
'integer' => array(
|
||||||
|
'INT' => 1,
|
||||||
|
'INTEGER' => 1,
|
||||||
|
'TINYINT' => 1,
|
||||||
|
'SMALLINT' => 1,
|
||||||
|
'MEDIUMINT' => 1,
|
||||||
|
'BIGINT' => 1,
|
||||||
|
),
|
||||||
|
'float' => array(
|
||||||
|
'DECIMAL' => 2,
|
||||||
|
'NUMERIC' => 2,
|
||||||
|
'FLOAT' => 2,
|
||||||
|
'DOUBLE' => 2,
|
||||||
|
'DOUBLE PRECISION' => 2,
|
||||||
|
'REAL' => 2,
|
||||||
|
'DEC' => 2,
|
||||||
|
'FIXED' => 2,
|
||||||
|
),
|
||||||
|
'string' => array(
|
||||||
|
'CHAR' => 1,
|
||||||
|
'VARCHAR' => 1,
|
||||||
|
'BINARY' => 1,
|
||||||
|
'VARBINARY' => 1,
|
||||||
|
'BLOB' => 0,
|
||||||
|
'TINYBLOB' => 0,
|
||||||
|
'MEDIUMBLOB' => 0,
|
||||||
|
'LONGBLOB' => 0,
|
||||||
|
'TEXT' => 0,
|
||||||
|
'TINYTEXT' => 0,
|
||||||
|
'MEDIUMTEXT' => 0,
|
||||||
|
'LONGTEXT' => 0,
|
||||||
|
'ENUM' => 0,
|
||||||
|
'SET' => 0,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
|
// Generate numeric test cases
|
||||||
|
foreach ($baseTestCases as $expected => $tests) {
|
||||||
|
foreach ($tests as $type => $argc) {
|
||||||
|
$testCases[$expected][] = $type;
|
||||||
|
$testCases[$expected][] = strtolower($type);
|
||||||
|
$testCases[$expected][] = ' ' . $type . ' ';
|
||||||
|
if ($argc >= 1) {
|
||||||
|
$testCases[$expected][] = $type . '(10)';
|
||||||
|
$testCases[$expected][] = strtolower($type) . '(10)';
|
||||||
|
$testCases[$expected][] = ' ' . $type . '(10) ';
|
||||||
|
$testCases[$expected][] = $type . '( 10 )';
|
||||||
|
}
|
||||||
|
if ($argc >= 2) {
|
||||||
|
$testCases[$expected][] = $type . '(10,5)';
|
||||||
|
$testCases[$expected][] = strtolower($type) . '(10,5)';
|
||||||
|
$testCases[$expected][] = ' ' . $type . '(10,5) ';
|
||||||
|
$testCases[$expected][] = $type . '( 10 , 5 )';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Run test cases
|
||||||
|
foreach ($testCases as $expected => $testCase) {
|
||||||
|
foreach ($testCase as $test) {
|
||||||
|
$this->assertEquals($expected, DBSR::getPHPType($test), 'MySQL type "' . $test . '" should convert to a PHP ' . $expected);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
<h1>It works!</h1>
|
||||||
|
|
||||||
|
<p>This is the landing page of <strong>Alain</strong>.</p>
|
|
@ -0,0 +1,17 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Front to the WordPress application. This file doesn't do anything, but loads
|
||||||
|
* wp-blog-header.php which does and tells WordPress to load the theme.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tells WordPress to load the WordPress theme and output it.
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
define( 'WP_USE_THEMES', true );
|
||||||
|
|
||||||
|
/** Loads the WordPress Environment and Template */
|
||||||
|
require __DIR__ . '/wp-blog-header.php';
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?php
|
||||||
|
phpinfo();
|
|
@ -0,0 +1,384 @@
|
||||||
|
WordPress - Web publishing software
|
||||||
|
|
||||||
|
Copyright 2011-2022 by the contributors
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
|
This program incorporates work covered by the following copyright and
|
||||||
|
permission notices:
|
||||||
|
|
||||||
|
b2 is (c) 2001, 2002 Michel Valdrighi - https://cafelog.com
|
||||||
|
|
||||||
|
Wherever third party code has been used, credit has been given in the code's
|
||||||
|
comments.
|
||||||
|
|
||||||
|
b2 is released under the GPL
|
||||||
|
|
||||||
|
and
|
||||||
|
|
||||||
|
WordPress - Web publishing software
|
||||||
|
|
||||||
|
Copyright 2003-2010 by the contributors
|
||||||
|
|
||||||
|
WordPress is released under the GPL
|
||||||
|
|
||||||
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
||||||
|
|
||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 2, June 1991
|
||||||
|
|
||||||
|
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
||||||
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The licenses for most software are designed to take away your
|
||||||
|
freedom to share and change it. By contrast, the GNU General Public
|
||||||
|
License is intended to guarantee your freedom to share and change free
|
||||||
|
software--to make sure the software is free for all its users. This
|
||||||
|
General Public License applies to most of the Free Software
|
||||||
|
Foundation's software and to any other program whose authors commit to
|
||||||
|
using it. (Some other Free Software Foundation software is covered by
|
||||||
|
the GNU Lesser General Public License instead.) You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
this service if you wish), that you receive source code or can get it
|
||||||
|
if you want it, that you can change the software or use pieces of it
|
||||||
|
in new free programs; and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to make restrictions that forbid
|
||||||
|
anyone to deny you these rights or to ask you to surrender the rights.
|
||||||
|
These restrictions translate to certain responsibilities for you if you
|
||||||
|
distribute copies of the software, or if you modify it.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must give the recipients all the rights that
|
||||||
|
you have. You must make sure that they, too, receive or can get the
|
||||||
|
source code. And you must show them these terms so they know their
|
||||||
|
rights.
|
||||||
|
|
||||||
|
We protect your rights with two steps: (1) copyright the software, and
|
||||||
|
(2) offer you this license which gives you legal permission to copy,
|
||||||
|
distribute and/or modify the software.
|
||||||
|
|
||||||
|
Also, for each author's protection and ours, we want to make certain
|
||||||
|
that everyone understands that there is no warranty for this free
|
||||||
|
software. If the software is modified by someone else and passed on, we
|
||||||
|
want its recipients to know that what they have is not the original, so
|
||||||
|
that any problems introduced by others will not reflect on the original
|
||||||
|
authors' reputations.
|
||||||
|
|
||||||
|
Finally, any free program is threatened constantly by software
|
||||||
|
patents. We wish to avoid the danger that redistributors of a free
|
||||||
|
program will individually obtain patent licenses, in effect making the
|
||||||
|
program proprietary. To prevent this, we have made it clear that any
|
||||||
|
patent must be licensed for everyone's free use or not licensed at all.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
|
0. This License applies to any program or other work which contains
|
||||||
|
a notice placed by the copyright holder saying it may be distributed
|
||||||
|
under the terms of this General Public License. The "Program", below,
|
||||||
|
refers to any such program or work, and a "work based on the Program"
|
||||||
|
means either the Program or any derivative work under copyright law:
|
||||||
|
that is to say, a work containing the Program or a portion of it,
|
||||||
|
either verbatim or with modifications and/or translated into another
|
||||||
|
language. (Hereinafter, translation is included without limitation in
|
||||||
|
the term "modification".) Each licensee is addressed as "you".
|
||||||
|
|
||||||
|
Activities other than copying, distribution and modification are not
|
||||||
|
covered by this License; they are outside its scope. The act of
|
||||||
|
running the Program is not restricted, and the output from the Program
|
||||||
|
is covered only if its contents constitute a work based on the
|
||||||
|
Program (independent of having been made by running the Program).
|
||||||
|
Whether that is true depends on what the Program does.
|
||||||
|
|
||||||
|
1. You may copy and distribute verbatim copies of the Program's
|
||||||
|
source code as you receive it, in any medium, provided that you
|
||||||
|
conspicuously and appropriately publish on each copy an appropriate
|
||||||
|
copyright notice and disclaimer of warranty; keep intact all the
|
||||||
|
notices that refer to this License and to the absence of any warranty;
|
||||||
|
and give any other recipients of the Program a copy of this License
|
||||||
|
along with the Program.
|
||||||
|
|
||||||
|
You may charge a fee for the physical act of transferring a copy, and
|
||||||
|
you may at your option offer warranty protection in exchange for a fee.
|
||||||
|
|
||||||
|
2. You may modify your copy or copies of the Program or any portion
|
||||||
|
of it, thus forming a work based on the Program, and copy and
|
||||||
|
distribute such modifications or work under the terms of Section 1
|
||||||
|
above, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) You must cause the modified files to carry prominent notices
|
||||||
|
stating that you changed the files and the date of any change.
|
||||||
|
|
||||||
|
b) You must cause any work that you distribute or publish, that in
|
||||||
|
whole or in part contains or is derived from the Program or any
|
||||||
|
part thereof, to be licensed as a whole at no charge to all third
|
||||||
|
parties under the terms of this License.
|
||||||
|
|
||||||
|
c) If the modified program normally reads commands interactively
|
||||||
|
when run, you must cause it, when started running for such
|
||||||
|
interactive use in the most ordinary way, to print or display an
|
||||||
|
announcement including an appropriate copyright notice and a
|
||||||
|
notice that there is no warranty (or else, saying that you provide
|
||||||
|
a warranty) and that users may redistribute the program under
|
||||||
|
these conditions, and telling the user how to view a copy of this
|
||||||
|
License. (Exception: if the Program itself is interactive but
|
||||||
|
does not normally print such an announcement, your work based on
|
||||||
|
the Program is not required to print an announcement.)
|
||||||
|
|
||||||
|
These requirements apply to the modified work as a whole. If
|
||||||
|
identifiable sections of that work are not derived from the Program,
|
||||||
|
and can be reasonably considered independent and separate works in
|
||||||
|
themselves, then this License, and its terms, do not apply to those
|
||||||
|
sections when you distribute them as separate works. But when you
|
||||||
|
distribute the same sections as part of a whole which is a work based
|
||||||
|
on the Program, the distribution of the whole must be on the terms of
|
||||||
|
this License, whose permissions for other licensees extend to the
|
||||||
|
entire whole, and thus to each and every part regardless of who wrote it.
|
||||||
|
|
||||||
|
Thus, it is not the intent of this section to claim rights or contest
|
||||||
|
your rights to work written entirely by you; rather, the intent is to
|
||||||
|
exercise the right to control the distribution of derivative or
|
||||||
|
collective works based on the Program.
|
||||||
|
|
||||||
|
In addition, mere aggregation of another work not based on the Program
|
||||||
|
with the Program (or with a work based on the Program) on a volume of
|
||||||
|
a storage or distribution medium does not bring the other work under
|
||||||
|
the scope of this License.
|
||||||
|
|
||||||
|
3. You may copy and distribute the Program (or a work based on it,
|
||||||
|
under Section 2) in object code or executable form under the terms of
|
||||||
|
Sections 1 and 2 above provided that you also do one of the following:
|
||||||
|
|
||||||
|
a) Accompany it with the complete corresponding machine-readable
|
||||||
|
source code, which must be distributed under the terms of Sections
|
||||||
|
1 and 2 above on a medium customarily used for software interchange; or,
|
||||||
|
|
||||||
|
b) Accompany it with a written offer, valid for at least three
|
||||||
|
years, to give any third party, for a charge no more than your
|
||||||
|
cost of physically performing source distribution, a complete
|
||||||
|
machine-readable copy of the corresponding source code, to be
|
||||||
|
distributed under the terms of Sections 1 and 2 above on a medium
|
||||||
|
customarily used for software interchange; or,
|
||||||
|
|
||||||
|
c) Accompany it with the information you received as to the offer
|
||||||
|
to distribute corresponding source code. (This alternative is
|
||||||
|
allowed only for noncommercial distribution and only if you
|
||||||
|
received the program in object code or executable form with such
|
||||||
|
an offer, in accord with Subsection b above.)
|
||||||
|
|
||||||
|
The source code for a work means the preferred form of the work for
|
||||||
|
making modifications to it. For an executable work, complete source
|
||||||
|
code means all the source code for all modules it contains, plus any
|
||||||
|
associated interface definition files, plus the scripts used to
|
||||||
|
control compilation and installation of the executable. However, as a
|
||||||
|
special exception, the source code distributed need not include
|
||||||
|
anything that is normally distributed (in either source or binary
|
||||||
|
form) with the major components (compiler, kernel, and so on) of the
|
||||||
|
operating system on which the executable runs, unless that component
|
||||||
|
itself accompanies the executable.
|
||||||
|
|
||||||
|
If distribution of executable or object code is made by offering
|
||||||
|
access to copy from a designated place, then offering equivalent
|
||||||
|
access to copy the source code from the same place counts as
|
||||||
|
distribution of the source code, even though third parties are not
|
||||||
|
compelled to copy the source along with the object code.
|
||||||
|
|
||||||
|
4. You may not copy, modify, sublicense, or distribute the Program
|
||||||
|
except as expressly provided under this License. Any attempt
|
||||||
|
otherwise to copy, modify, sublicense or distribute the Program is
|
||||||
|
void, and will automatically terminate your rights under this License.
|
||||||
|
However, parties who have received copies, or rights, from you under
|
||||||
|
this License will not have their licenses terminated so long as such
|
||||||
|
parties remain in full compliance.
|
||||||
|
|
||||||
|
5. You are not required to accept this License, since you have not
|
||||||
|
signed it. However, nothing else grants you permission to modify or
|
||||||
|
distribute the Program or its derivative works. These actions are
|
||||||
|
prohibited by law if you do not accept this License. Therefore, by
|
||||||
|
modifying or distributing the Program (or any work based on the
|
||||||
|
Program), you indicate your acceptance of this License to do so, and
|
||||||
|
all its terms and conditions for copying, distributing or modifying
|
||||||
|
the Program or works based on it.
|
||||||
|
|
||||||
|
6. Each time you redistribute the Program (or any work based on the
|
||||||
|
Program), the recipient automatically receives a license from the
|
||||||
|
original licensor to copy, distribute or modify the Program subject to
|
||||||
|
these terms and conditions. You may not impose any further
|
||||||
|
restrictions on the recipients' exercise of the rights granted herein.
|
||||||
|
You are not responsible for enforcing compliance by third parties to
|
||||||
|
this License.
|
||||||
|
|
||||||
|
7. If, as a consequence of a court judgment or allegation of patent
|
||||||
|
infringement or for any other reason (not limited to patent issues),
|
||||||
|
conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot
|
||||||
|
distribute so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you
|
||||||
|
may not distribute the Program at all. For example, if a patent
|
||||||
|
license would not permit royalty-free redistribution of the Program by
|
||||||
|
all those who receive copies directly or indirectly through you, then
|
||||||
|
the only way you could satisfy both it and this License would be to
|
||||||
|
refrain entirely from distribution of the Program.
|
||||||
|
|
||||||
|
If any portion of this section is held invalid or unenforceable under
|
||||||
|
any particular circumstance, the balance of the section is intended to
|
||||||
|
apply and the section as a whole is intended to apply in other
|
||||||
|
circumstances.
|
||||||
|
|
||||||
|
It is not the purpose of this section to induce you to infringe any
|
||||||
|
patents or other property right claims or to contest validity of any
|
||||||
|
such claims; this section has the sole purpose of protecting the
|
||||||
|
integrity of the free software distribution system, which is
|
||||||
|
implemented by public license practices. Many people have made
|
||||||
|
generous contributions to the wide range of software distributed
|
||||||
|
through that system in reliance on consistent application of that
|
||||||
|
system; it is up to the author/donor to decide if he or she is willing
|
||||||
|
to distribute software through any other system and a licensee cannot
|
||||||
|
impose that choice.
|
||||||
|
|
||||||
|
This section is intended to make thoroughly clear what is believed to
|
||||||
|
be a consequence of the rest of this License.
|
||||||
|
|
||||||
|
8. If the distribution and/or use of the Program is restricted in
|
||||||
|
certain countries either by patents or by copyrighted interfaces, the
|
||||||
|
original copyright holder who places the Program under this License
|
||||||
|
may add an explicit geographical distribution limitation excluding
|
||||||
|
those countries, so that distribution is permitted only in or among
|
||||||
|
countries not thus excluded. In such case, this License incorporates
|
||||||
|
the limitation as if written in the body of this License.
|
||||||
|
|
||||||
|
9. The Free Software Foundation may publish revised and/or new versions
|
||||||
|
of the General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the Program
|
||||||
|
specifies a version number of this License which applies to it and "any
|
||||||
|
later version", you have the option of following the terms and conditions
|
||||||
|
either of that version or of any later version published by the Free
|
||||||
|
Software Foundation. If the Program does not specify a version number of
|
||||||
|
this License, you may choose any version ever published by the Free Software
|
||||||
|
Foundation.
|
||||||
|
|
||||||
|
10. If you wish to incorporate parts of the Program into other free
|
||||||
|
programs whose distribution conditions are different, write to the author
|
||||||
|
to ask for permission. For software which is copyrighted by the Free
|
||||||
|
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||||
|
make exceptions for this. Our decision will be guided by the two goals
|
||||||
|
of preserving the free status of all derivatives of our free software and
|
||||||
|
of promoting the sharing and reuse of software generally.
|
||||||
|
|
||||||
|
NO WARRANTY
|
||||||
|
|
||||||
|
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||||
|
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||||
|
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||||
|
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||||
|
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||||
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||||
|
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||||
|
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||||
|
REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||||
|
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||||
|
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||||
|
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||||
|
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||||
|
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||||
|
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||||
|
POSSIBILITY OF SUCH DAMAGES.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
convey the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License along
|
||||||
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program is interactive, make it output a short notice like this
|
||||||
|
when it starts in an interactive mode:
|
||||||
|
|
||||||
|
Gnomovision version 69, Copyright (C) year name of author
|
||||||
|
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||||
|
parts of the General Public License. Of course, the commands you use may
|
||||||
|
be called something other than `show w' and `show c'; they could even be
|
||||||
|
mouse-clicks or menu items--whatever suits your program.
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or your
|
||||||
|
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||||
|
necessary. Here is a sample; alter the names:
|
||||||
|
|
||||||
|
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||||
|
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||||
|
|
||||||
|
<signature of Ty Coon>, 1 April 1989
|
||||||
|
Ty Coon, President of Vice
|
||||||
|
|
||||||
|
This General Public License does not permit incorporating your program into
|
||||||
|
proprietary programs. If your program is a subroutine library, you may
|
||||||
|
consider it more useful to permit linking proprietary applications with the
|
||||||
|
library. If this is what you want to do, use the GNU Lesser General
|
||||||
|
Public License instead of this License.
|
||||||
|
|
||||||
|
WRITTEN OFFER
|
||||||
|
|
||||||
|
The source code for any program binaries or compressed scripts that are
|
||||||
|
included with WordPress can be freely obtained at the following URL:
|
||||||
|
|
||||||
|
https://wordpress.org/download/source/
|
Binary file not shown.
|
@ -0,0 +1,97 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width" />
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<title>WordPress › ReadMe</title>
|
||||||
|
<link rel="stylesheet" href="wp-admin/css/install.css?ver=20100228" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1 id="logo">
|
||||||
|
<a href="https://wordpress.org/"><img alt="WordPress" src="wp-admin/images/wordpress-logo.png" /></a>
|
||||||
|
</h1>
|
||||||
|
<p style="text-align: center">Semantic Personal Publishing Platform</p>
|
||||||
|
|
||||||
|
<h2>First Things First</h2>
|
||||||
|
<p>Welcome. WordPress is a very special project to me. Every developer and contributor adds something unique to the mix, and together we create something beautiful that I am proud to be a part of. Thousands of hours have gone into WordPress, and we are dedicated to making it better every day. Thank you for making it part of your world.</p>
|
||||||
|
<p style="text-align: right">— Matt Mullenweg</p>
|
||||||
|
|
||||||
|
<h2>Installation: Famous 5-minute install</h2>
|
||||||
|
<ol>
|
||||||
|
<li>Unzip the package in an empty directory and upload everything.</li>
|
||||||
|
<li>Open <span class="file"><a href="wp-admin/install.php">wp-admin/install.php</a></span> in your browser. It will take you through the process to set up a <code>wp-config.php</code> file with your database connection details.
|
||||||
|
<ol>
|
||||||
|
<li>If for some reason this does not work, do not worry. It may not work on all web hosts. Open up <code>wp-config-sample.php</code> with a text editor like WordPad or similar and fill in your database connection details.</li>
|
||||||
|
<li>Save the file as <code>wp-config.php</code> and upload it.</li>
|
||||||
|
<li>Open <span class="file"><a href="wp-admin/install.php">wp-admin/install.php</a></span> in your browser.</li>
|
||||||
|
</ol>
|
||||||
|
</li>
|
||||||
|
<li>Once the configuration file is set up, the installer will set up the tables needed for your site. If there is an error, double check your <code>wp-config.php</code> file, and try again. If it fails again, please go to the <a href="https://wordpress.org/support/forums/">WordPress support forums</a> with as much data as you can gather.</li>
|
||||||
|
<li><strong>If you did not enter a password, note the password given to you.</strong> If you did not provide a username, it will be <code>admin</code>.</li>
|
||||||
|
<li>The installer should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username and password you chose during the installation. If a password was generated for you, you can then click on “Profile” to change the password.</li>
|
||||||
|
</ol>
|
||||||
|
|
||||||
|
<h2>Updating</h2>
|
||||||
|
<h3>Using the Automatic Updater</h3>
|
||||||
|
<ol>
|
||||||
|
<li>Open <span class="file"><a href="wp-admin/update-core.php">wp-admin/update-core.php</a></span> in your browser and follow the instructions.</li>
|
||||||
|
<li>You wanted more, perhaps? That’s it!</li>
|
||||||
|
</ol>
|
||||||
|
|
||||||
|
<h3>Updating Manually</h3>
|
||||||
|
<ol>
|
||||||
|
<li>Before you update anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</li>
|
||||||
|
<li>Delete your old WordPress files, saving ones you’ve modified.</li>
|
||||||
|
<li>Upload the new files.</li>
|
||||||
|
<li>Point your browser to <span class="file"><a href="wp-admin/upgrade.php">/wp-admin/upgrade.php</a>.</span></li>
|
||||||
|
</ol>
|
||||||
|
|
||||||
|
<h2>Migrating from other systems</h2>
|
||||||
|
<p>WordPress can <a href="https://wordpress.org/support/article/importing-content/">import from a number of systems</a>. First you need to get WordPress installed and working as described above, before using <a href="wp-admin/import.php">our import tools</a>.</p>
|
||||||
|
|
||||||
|
<h2>System Requirements</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://secure.php.net/">PHP</a> version <strong>5.6.20</strong> or greater.</li>
|
||||||
|
<li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.0</strong> or greater.</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h3>Recommendations</h3>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://secure.php.net/">PHP</a> version <strong>7.4</strong> or greater.</li>
|
||||||
|
<li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.7</strong> or greater OR <a href="https://mariadb.org/">MariaDB</a> version <strong>10.3</strong> or greater.</li>
|
||||||
|
<li>The <a href="https://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li>
|
||||||
|
<li><a href="https://wordpress.org/news/2016/12/moving-toward-ssl/">HTTPS</a> support.</li>
|
||||||
|
<li>A link to <a href="https://wordpress.org/">wordpress.org</a> on your site.</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2>Online Resources</h2>
|
||||||
|
<p>If you have any questions that are not addressed in this document, please take advantage of WordPress’ numerous online resources:</p>
|
||||||
|
<dl>
|
||||||
|
<dt><a href="https://wordpress.org/support/">HelpHub</a></dt>
|
||||||
|
<dd>HelpHub is the encyclopedia of all things WordPress. It is the most comprehensive source of information for WordPress available.</dd>
|
||||||
|
<dt><a href="https://wordpress.org/news/">The WordPress Blog</a></dt>
|
||||||
|
<dd>This is where you’ll find the latest updates and news related to WordPress. Recent WordPress news appears in your administrative dashboard by default.</dd>
|
||||||
|
<dt><a href="https://planet.wordpress.org/">WordPress Planet</a></dt>
|
||||||
|
<dd>The WordPress Planet is a news aggregator that brings together posts from WordPress blogs around the web.</dd>
|
||||||
|
<dt><a href="https://wordpress.org/support/forums/">WordPress Support Forums</a></dt>
|
||||||
|
<dd>If you’ve looked everywhere and still cannot find an answer, the support forums are very active and have a large community ready to help. To help them help you be sure to use a descriptive thread title and describe your question in as much detail as possible.</dd>
|
||||||
|
<dt><a href="https://make.wordpress.org/support/handbook/appendix/other-support-locations/introduction-to-irc/">WordPress <abbr>IRC</abbr> (Internet Relay Chat) Channel</a></dt>
|
||||||
|
<dd>There is an online chat channel that is used for discussion among people who use WordPress and occasionally support topics. The above wiki page should point you in the right direction. (<a href="https://web.libera.chat/#wordpress">irc.libera.chat #wordpress</a>)</dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
<h2>Final Notes</h2>
|
||||||
|
<ul>
|
||||||
|
<li>If you have any suggestions, ideas, or comments, or if you (gasp!) found a bug, join us in the <a href="https://wordpress.org/support/forums/">Support Forums</a>.</li>
|
||||||
|
<li>WordPress has a robust plugin <abbr>API</abbr> (Application Programming Interface) that makes extending the code easy. If you are a developer interested in utilizing this, see the <a href="https://developer.wordpress.org/plugins/">Plugin Developer Handbook</a>. You shouldn’t modify any of the core code.</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2>Share the Love</h2>
|
||||||
|
<p>WordPress has no multi-million dollar marketing campaign or celebrity sponsors, but we do have something even better—you. If you enjoy WordPress please consider telling a friend, setting it up for someone less knowledgeable than yourself, or writing the author of a media article that overlooks us.</p>
|
||||||
|
|
||||||
|
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/cafélog</a>, which came from Michel V. The work has been continued by the <a href="https://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="https://wordpress.org/donate/">donating</a>.</p>
|
||||||
|
|
||||||
|
<h2>License</h2>
|
||||||
|
<p>WordPress is free software, and is released under the terms of the <abbr>GPL</abbr> (GNU General Public License) version 2 or (at your option) any later version. See <a href="license.txt">license.txt</a>.</p>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,218 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Confirms that the activation key that is sent in an email after a user signs
|
||||||
|
* up for a new site matches the key for that user and then displays confirmation.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
*/
|
||||||
|
|
||||||
|
define( 'WP_INSTALLING', true );
|
||||||
|
|
||||||
|
/** Sets up the WordPress Environment. */
|
||||||
|
require __DIR__ . '/wp-load.php';
|
||||||
|
|
||||||
|
require __DIR__ . '/wp-blog-header.php';
|
||||||
|
|
||||||
|
if ( ! is_multisite() ) {
|
||||||
|
wp_redirect( wp_registration_url() );
|
||||||
|
die();
|
||||||
|
}
|
||||||
|
|
||||||
|
$valid_error_codes = array( 'already_active', 'blog_taken' );
|
||||||
|
|
||||||
|
list( $activate_path ) = explode( '?', wp_unslash( $_SERVER['REQUEST_URI'] ) );
|
||||||
|
$activate_cookie = 'wp-activate-' . COOKIEHASH;
|
||||||
|
|
||||||
|
$key = '';
|
||||||
|
$result = null;
|
||||||
|
|
||||||
|
if ( isset( $_GET['key'] ) && isset( $_POST['key'] ) && $_GET['key'] !== $_POST['key'] ) {
|
||||||
|
wp_die( __( 'A key value mismatch has been detected. Please follow the link provided in your activation email.' ), __( 'An error occurred during the activation' ), 400 );
|
||||||
|
} elseif ( ! empty( $_GET['key'] ) ) {
|
||||||
|
$key = $_GET['key'];
|
||||||
|
} elseif ( ! empty( $_POST['key'] ) ) {
|
||||||
|
$key = $_POST['key'];
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( $key ) {
|
||||||
|
$redirect_url = remove_query_arg( 'key' );
|
||||||
|
|
||||||
|
if ( remove_query_arg( false ) !== $redirect_url ) {
|
||||||
|
setcookie( $activate_cookie, $key, 0, $activate_path, COOKIE_DOMAIN, is_ssl(), true );
|
||||||
|
wp_safe_redirect( $redirect_url );
|
||||||
|
exit;
|
||||||
|
} else {
|
||||||
|
$result = wpmu_activate_signup( $key );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( null === $result && isset( $_COOKIE[ $activate_cookie ] ) ) {
|
||||||
|
$key = $_COOKIE[ $activate_cookie ];
|
||||||
|
$result = wpmu_activate_signup( $key );
|
||||||
|
setcookie( $activate_cookie, ' ', time() - YEAR_IN_SECONDS, $activate_path, COOKIE_DOMAIN, is_ssl(), true );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( null === $result || ( is_wp_error( $result ) && 'invalid_key' === $result->get_error_code() ) ) {
|
||||||
|
status_header( 404 );
|
||||||
|
} elseif ( is_wp_error( $result ) ) {
|
||||||
|
$error_code = $result->get_error_code();
|
||||||
|
|
||||||
|
if ( ! in_array( $error_code, $valid_error_codes, true ) ) {
|
||||||
|
status_header( 400 );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
nocache_headers();
|
||||||
|
|
||||||
|
if ( is_object( $wp_object_cache ) ) {
|
||||||
|
$wp_object_cache->cache_enabled = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fix for page title.
|
||||||
|
$wp_query->is_404 = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fires before the Site Activation page is loaded.
|
||||||
|
*
|
||||||
|
* @since 3.0.0
|
||||||
|
*/
|
||||||
|
do_action( 'activate_header' );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adds an action hook specific to this page.
|
||||||
|
*
|
||||||
|
* Fires on {@see 'wp_head'}.
|
||||||
|
*
|
||||||
|
* @since MU (3.0.0)
|
||||||
|
*/
|
||||||
|
function do_activate_header() {
|
||||||
|
/**
|
||||||
|
* Fires before the Site Activation page is loaded.
|
||||||
|
*
|
||||||
|
* Fires on the {@see 'wp_head'} action.
|
||||||
|
*
|
||||||
|
* @since 3.0.0
|
||||||
|
*/
|
||||||
|
do_action( 'activate_wp_head' );
|
||||||
|
}
|
||||||
|
add_action( 'wp_head', 'do_activate_header' );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Loads styles specific to this page.
|
||||||
|
*
|
||||||
|
* @since MU (3.0.0)
|
||||||
|
*/
|
||||||
|
function wpmu_activate_stylesheet() {
|
||||||
|
?>
|
||||||
|
<style type="text/css">
|
||||||
|
.wp-activate-container { width: 90%; margin: 0 auto; }
|
||||||
|
.wp-activate-container form { margin-top: 2em; }
|
||||||
|
#submit, #key { width: 100%; font-size: 24px; box-sizing: border-box; }
|
||||||
|
#language { margin-top: 0.5em; }
|
||||||
|
.wp-activate-container .error { background: #f66; color: #333; }
|
||||||
|
span.h3 { padding: 0 8px; font-size: 1.3em; font-weight: 600; }
|
||||||
|
</style>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
add_action( 'wp_head', 'wpmu_activate_stylesheet' );
|
||||||
|
add_action( 'wp_head', 'wp_strict_cross_origin_referrer' );
|
||||||
|
add_filter( 'wp_robots', 'wp_robots_sensitive_page' );
|
||||||
|
|
||||||
|
get_header( 'wp-activate' );
|
||||||
|
|
||||||
|
$blog_details = get_blog_details();
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id="signup-content" class="widecolumn">
|
||||||
|
<div class="wp-activate-container">
|
||||||
|
<?php if ( ! $key ) { ?>
|
||||||
|
|
||||||
|
<h2><?php _e( 'Activation Key Required' ); ?></h2>
|
||||||
|
<form name="activateform" id="activateform" method="post" action="<?php echo network_site_url( $blog_details->path . 'wp-activate.php' ); ?>">
|
||||||
|
<p>
|
||||||
|
<label for="key"><?php _e( 'Activation Key:' ); ?></label>
|
||||||
|
<br /><input type="text" name="key" id="key" value="" size="50" autofocus="autofocus" />
|
||||||
|
</p>
|
||||||
|
<p class="submit">
|
||||||
|
<input id="submit" type="submit" name="Submit" class="submit" value="<?php esc_attr_e( 'Activate' ); ?>" />
|
||||||
|
</p>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
} else {
|
||||||
|
if ( is_wp_error( $result ) && in_array( $result->get_error_code(), $valid_error_codes, true ) ) {
|
||||||
|
$signup = $result->get_error_data();
|
||||||
|
?>
|
||||||
|
<h2><?php _e( 'Your account is now active!' ); ?></h2>
|
||||||
|
<?php
|
||||||
|
echo '<p class="lead-in">';
|
||||||
|
if ( '' === $signup->domain . $signup->path ) {
|
||||||
|
printf(
|
||||||
|
/* translators: 1: Login URL, 2: Username, 3: User email address, 4: Lost password URL. */
|
||||||
|
__( 'Your account has been activated. You may now <a href="%1$s">log in</a> to the site using your chosen username of “%2$s”. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.' ),
|
||||||
|
network_site_url( $blog_details->path . 'wp-login.php', 'login' ),
|
||||||
|
$signup->user_login,
|
||||||
|
$signup->user_email,
|
||||||
|
wp_lostpassword_url()
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
printf(
|
||||||
|
/* translators: 1: Site URL, 2: Username, 3: User email address, 4: Lost password URL. */
|
||||||
|
__( 'Your site at %1$s is active. You may now log in to your site using your chosen username of “%2$s”. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.' ),
|
||||||
|
sprintf( '<a href="http://%1$s%2$s">%1$s%2$s</a>', $signup->domain, $blog_details->path ),
|
||||||
|
$signup->user_login,
|
||||||
|
$signup->user_email,
|
||||||
|
wp_lostpassword_url()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
echo '</p>';
|
||||||
|
} elseif ( null === $result || is_wp_error( $result ) ) {
|
||||||
|
?>
|
||||||
|
<h2><?php _e( 'An error occurred during the activation' ); ?></h2>
|
||||||
|
<?php if ( is_wp_error( $result ) ) : ?>
|
||||||
|
<p><?php echo $result->get_error_message(); ?></p>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php
|
||||||
|
} else {
|
||||||
|
$url = isset( $result['blog_id'] ) ? get_home_url( (int) $result['blog_id'] ) : '';
|
||||||
|
$user = get_userdata( (int) $result['user_id'] );
|
||||||
|
?>
|
||||||
|
<h2><?php _e( 'Your account is now active!' ); ?></h2>
|
||||||
|
|
||||||
|
<div id="signup-welcome">
|
||||||
|
<p><span class="h3"><?php _e( 'Username:' ); ?></span> <?php echo $user->user_login; ?></p>
|
||||||
|
<p><span class="h3"><?php _e( 'Password:' ); ?></span> <?php echo $result['password']; ?></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
if ( $url && network_home_url( '', 'http' ) !== $url ) :
|
||||||
|
switch_to_blog( (int) $result['blog_id'] );
|
||||||
|
$login_url = wp_login_url();
|
||||||
|
restore_current_blog();
|
||||||
|
?>
|
||||||
|
<p class="view">
|
||||||
|
<?php
|
||||||
|
/* translators: 1: Site URL, 2: Login URL. */
|
||||||
|
printf( __( 'Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Log in</a>' ), $url, esc_url( $login_url ) );
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
<?php else : ?>
|
||||||
|
<p class="view">
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: 1: Login URL, 2: Network home URL. */
|
||||||
|
__( 'Your account is now activated. <a href="%1$s">Log in</a> or go back to the <a href="%2$s">homepage</a>.' ),
|
||||||
|
network_site_url( $blog_details->path . 'wp-login.php', 'login' ),
|
||||||
|
network_home_url( $blog_details->path )
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
<?php
|
||||||
|
endif;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php
|
||||||
|
get_footer( 'wp-activate' );
|
|
@ -0,0 +1,642 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* About This Version administration panel.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Administration
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** WordPress Administration Bootstrap */
|
||||||
|
require_once __DIR__ . '/admin.php';
|
||||||
|
|
||||||
|
// Used in the HTML title tag.
|
||||||
|
/* translators: Page title of the About WordPress page in the admin. */
|
||||||
|
$title = _x( 'About', 'page title' );
|
||||||
|
|
||||||
|
list( $display_version ) = explode( '-', get_bloginfo( 'version' ) );
|
||||||
|
|
||||||
|
require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||||
|
?>
|
||||||
|
<div class="wrap about__container">
|
||||||
|
|
||||||
|
<div class="about__header">
|
||||||
|
<div class="about__header-title">
|
||||||
|
<h1>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: Version number. */
|
||||||
|
__( 'WordPress %s' ),
|
||||||
|
$display_version
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="about__header-text"></div>
|
||||||
|
|
||||||
|
<nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>">
|
||||||
|
<a href="about.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'What’s New' ); ?></a>
|
||||||
|
<a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a>
|
||||||
|
<a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a>
|
||||||
|
<a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="about__section changelog">
|
||||||
|
<div class="column">
|
||||||
|
<h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: 1: WordPress version number, 2: Plural number of bugs. */
|
||||||
|
_n(
|
||||||
|
'<strong>Version %1$s</strong> addressed %2$s bug.',
|
||||||
|
'<strong>Version %1$s</strong> addressed %2$s bugs.',
|
||||||
|
50
|
||||||
|
),
|
||||||
|
'6.1.1',
|
||||||
|
'50'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: HelpHub URL. */
|
||||||
|
__( 'For more information, see <a href="%s">the release notes</a>.' ),
|
||||||
|
sprintf(
|
||||||
|
/* translators: %s: WordPress version. */
|
||||||
|
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
|
||||||
|
sanitize_title( '6.1.1' )
|
||||||
|
)
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="about__section">
|
||||||
|
<div class="column">
|
||||||
|
<h2 class="aligncenter">
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: Version number. */
|
||||||
|
__( 'Welcome to WordPress %s' ),
|
||||||
|
$display_version
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</h2>
|
||||||
|
<p class="is-subheading">
|
||||||
|
<?php _e( 'This page highlights some of the most significant changes to the product since the May 2022 release of WordPress 6.0. You will also find resources for developers and anyone seeking a deeper understanding of WordPress.' ); ?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="about__section has-2-columns">
|
||||||
|
<div class="column">
|
||||||
|
<div class="about__image" style="background-color:#353535;">
|
||||||
|
<img src="https://s.w.org/images/core/6.1/about-61-style-variations.webp" alt="" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="column is-vertically-aligned-center">
|
||||||
|
<h3><?php _e( 'A new default theme powered by 10 distinct style variations' ); ?></h3>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: 1: Variation announcement post URL, 2: Accessibility-ready handbook page. */
|
||||||
|
__( 'Building on the foundational elements in the 5.9 and 6.0 releases for block themes and style variations, the new default theme, Twenty Twenty-Three, includes <a href="%1$s">10 different styles</a> and is “<a href="%2$s">Accessibility Ready</a>”.' ),
|
||||||
|
'https://make.wordpress.org/design/2022/09/07/tt3-default-theme-announcing-style-variation-selections/',
|
||||||
|
'https://make.wordpress.org/themes/handbook/review/accessibility/'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="about__section has-2-columns">
|
||||||
|
<div class="column is-vertically-aligned-center">
|
||||||
|
<h3><?php _e( 'A better creator experience with refined and additional templates' ); ?></h3>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: 1: Link to template options dev note, 2: Link to template creation dev note. */
|
||||||
|
__( '<a href="%1$s">New templates</a> include a custom template for posts and pages in the Site Editor. Search-and-replace tools speed up the design of <a href="%2$s">template parts</a>.' ),
|
||||||
|
'https://make.wordpress.org/core/2022/07/21/core-editor-improvement-deeper-customization-with-more-template-options/',
|
||||||
|
'https://make.wordpress.org/core/2022/08/25/core-editor-improvement-refining-the-template-creation-experience/'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="column">
|
||||||
|
<div class="about__image has-subtle-background-color">
|
||||||
|
<img src="https://s.w.org/images/core/6.1/about-61-templates.webp" alt="" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="about__section has-2-columns">
|
||||||
|
<div class="column">
|
||||||
|
<div class="about__image has-subtle-background-color">
|
||||||
|
<img src="https://s.w.org/images/core/6.1/about-61-design-tools.webp" alt="" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="column is-vertically-aligned-center">
|
||||||
|
<h3><?php _e( 'More consistency and control across design tools' ); ?></h3>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: Link to layout support refactor dev note. */
|
||||||
|
__( 'Upgrades to the <a href="%s">controls for design elements and blocks</a> make the layout and site-building process more consistent, complete, and intuitive.' ),
|
||||||
|
'https://make.wordpress.org/core/2022/10/11/roster-of-design-tools-per-block/'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="about__section has-2-columns">
|
||||||
|
<div class="column is-vertically-aligned-center">
|
||||||
|
<h3><?php _e( 'Menus just got easier to create and manage' ); ?></h3>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: Link to navigation block fallback dev note. */
|
||||||
|
__( '<a href="%s">New fallback options</a> in the navigation block mean you can edit the menu that’s open; no searching needed. Plus, the controls for choosing and working on menus have their own place in the block settings. The mobile menu system also gets an upgrade with new features, including different icon options, to make the menu yours.' ),
|
||||||
|
'https://make.wordpress.org/core/2022/09/27/navigation-block-fallback-behavior-in-wp-6-1-dev-note/'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="column">
|
||||||
|
<div class="about__image has-subtle-background-color">
|
||||||
|
<img src="https://s.w.org/images/core/6.1/about-61-navigation.webp" alt="" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="about__section has-2-columns">
|
||||||
|
<div class="column">
|
||||||
|
<div class="about__image has-accent-background-color">
|
||||||
|
<img src="https://s.w.org/images/core/6.1/about-61-document-settings.webp" alt="" />
|
||||||
|
</div>
|
||||||
|
<h3><?php _e( 'Improved layout and visualization of document settings' ); ?></h3>
|
||||||
|
<p><?php _e( 'A cleaner, better-organized display helps you easily view and manage important post and page settings, especially the template picker and scheduler.' ); ?></p>
|
||||||
|
</div>
|
||||||
|
<div class="column">
|
||||||
|
<div class="about__image has-accent-background-color">
|
||||||
|
<img src="https://s.w.org/images/core/6.1/about-61-lock.webp" alt="" />
|
||||||
|
</div>
|
||||||
|
<h3><?php _e( 'One-click lock settings for all inner blocks' ); ?></h3>
|
||||||
|
<p><?php _e( 'When locking blocks, a new toggle lets you apply your lock settings to all the blocks in a containing block like the group, cover, and column blocks.' ); ?></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="about__section has-3-columns">
|
||||||
|
<div class="column">
|
||||||
|
<div class="column about__image is-edge-to-edge has-accent-background-color">
|
||||||
|
<img src="https://s.w.org/images/core/6.1/about-61-sub-feature-1.webp" alt="" />
|
||||||
|
</div>
|
||||||
|
<h3 class="is-smaller-heading"><?php _e( 'Improved block placeholders' ); ?></h3>
|
||||||
|
<p><?php _e( 'Various blocks have improved placeholders that reflect customization options to help you design your site and its content. For example, the Image block placeholder displays custom borders and duotone filters even before selecting an image.' ); ?></p>
|
||||||
|
</div>
|
||||||
|
<div class="column">
|
||||||
|
<div class="column about__image is-edge-to-edge has-accent-background-color">
|
||||||
|
<img src="https://s.w.org/images/core/6.1/about-61-sub-feature-2.webp" alt="" />
|
||||||
|
</div>
|
||||||
|
<h3 class="is-smaller-heading"><?php _e( 'Compose richer lists and quotes with inner blocks' ); ?></h3>
|
||||||
|
<p><?php _e( 'The List and Quote blocks now support inner blocks, allowing for more flexible and rich compositions like adding headings inside your Quote blocks.' ); ?></p>
|
||||||
|
</div>
|
||||||
|
<div class="column">
|
||||||
|
<div class="column about__image is-edge-to-edge has-accent-background-color">
|
||||||
|
<img src="https://s.w.org/images/core/6.1/about-61-sub-feature-3.webp" alt="" />
|
||||||
|
</div>
|
||||||
|
<h3 class="is-smaller-heading"><?php _e( 'More responsive text with fluid typography' ); ?></h3>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: Link to fluid typography demo. */
|
||||||
|
__( '<a href="%s">Fluid typography</a> lets you define font sizes that adapt for easy reading in any screen size.' ),
|
||||||
|
'https://make.wordpress.org/core/2022/10/03/fluid-font-sizes-in-wordpress-6-1/'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
<div class="about__section has-2-columns">
|
||||||
|
<div class="column">
|
||||||
|
<div class="about__image">
|
||||||
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
||||||
|
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.25 18.75v2.5h1.5v-2.5h2.5v-1.5h-2.5v-2.5h-1.5v2.5h-2.5v1.5h2.5zm-6.5-1.5h-6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-6h-1.5v6a.5.5 0 0 1-.5.5h-12a.5.5 0 0 1-.5-.5v-12a.5.5 0 0 1 .5-.5h6v-1.5z" fill="#fff"/>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<h3 class="is-smaller-heading"><?php _e( 'Add starter patterns to any post type' ); ?></h3>
|
||||||
|
<p><?php _e( 'In WordPress 6.0, when you created a new page, you would see suggested patterns so you did not have to start with a blank page. In 6.1, you will also see the starter patterns modal when you create a new instance of any post type.' ); ?></p>
|
||||||
|
</div>
|
||||||
|
<div class="column">
|
||||||
|
<div class="about__image">
|
||||||
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
||||||
|
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.99 23.16a4.628 4.628 0 1 1-9.257 0 4.628 4.628 0 0 1 9.257 0zm1.5 0a6.128 6.128 0 0 1-10.252 4.535l-3.74 3.273-.988-1.13 3.75-3.28a6.128 6.128 0 1 1 11.23-3.397z" fill="#fff"/>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<h3 class="is-smaller-heading"><?php _e( 'Find block themes faster' ); ?></h3>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: Link to Block Themes on WordPress.org. */
|
||||||
|
__( 'The Themes Directory has <a href="%s">a filter for block themes</a>, and a pattern preview gives a better sense of what the theme might look like while exploring different themes and patterns.' ),
|
||||||
|
esc_url( __( 'https://wordpress.org/themes/tags/full-site-editing/' ) )
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="about__section has-2-columns">
|
||||||
|
<div class="column">
|
||||||
|
<div class="about__image">
|
||||||
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
||||||
|
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.29 16.836a1 1 0 0 1 .986-.836h1.306a1 1 0 0 1 .986.836l.244 1.466c.788.26 1.503.679 2.108 1.218l1.393-.522a1 1 0 0 1 1.217.437l.653 1.13a1 1 0 0 1-.23 1.273l-1.148.944a6.025 6.025 0 0 1 0 2.435l1.148.946a1 1 0 0 1 .23 1.272l-.652 1.13a1 1 0 0 1-1.217.437l-1.394-.522c-.605.54-1.32.958-2.108 1.218l-.244 1.466a1 1 0 0 1-.986.836h-1.306a1 1 0 0 1-.987-.836l-.244-1.466a5.994 5.994 0 0 1-2.108-1.218l-1.394.522a1 1 0 0 1-1.216-.436l-.653-1.131a1 1 0 0 1 .23-1.272l1.148-.946a6.028 6.028 0 0 1 0-2.435l-1.147-.944a1 1 0 0 1-.23-1.273l.652-1.13a1 1 0 0 1 1.217-.437l1.393.522a5.996 5.996 0 0 1 2.108-1.218l.244-1.466zM26.928 24a3 3 0 1 1-6 0 3 3 0 0 1 6 0z" fill="#fff"/>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<h3 class="is-smaller-heading"><?php _e( 'Keep your Site Editor settings for later' ); ?></h3>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: Link to block editor preferences dev note. */
|
||||||
|
__( 'Site Editor settings are now <a href="%s">persistent for each user</a>. This means your settings will now be consistent across browsers and devices.' ),
|
||||||
|
'https://make.wordpress.org/core/2022/10/10/changes-to-block-editor-preferences-in-wordpress-6-1/'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="column">
|
||||||
|
<div class="about__image">
|
||||||
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
||||||
|
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M31 24a7 7 0 0 1-7 7V17a7 7 0 0 1 7 7zm-7-8a8 8 0 1 1 0 16 8 8 0 0 1 0-16z" fill="#fff"/>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<h3 class="is-smaller-heading"><?php _e( 'A streamlined style system' ); ?></h3>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: Link style engine dev note. */
|
||||||
|
__( 'The CSS rules for margin, padding, typography, colors, and borders within the <a href="%s">styles engine</a> are now all in one place, reducing time spent on layout-specific tasks and helps to generate semantic class names.' ),
|
||||||
|
'https://make.wordpress.org/core/2022/10/10/block-styles-generation-style-engine/'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="about__section has-2-columns">
|
||||||
|
<div class="column">
|
||||||
|
<div class="about__image">
|
||||||
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
||||||
|
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
|
||||||
|
<path d="M24 18.285a1.58 1.58 0 0 1-1.159-.484 1.58 1.58 0 0 1-.484-1.159c0-.45.162-.836.484-1.158A1.58 1.58 0 0 1 24 15c.45 0 .836.161 1.159.484.322.322.483.708.483 1.158 0 .45-.16.837-.483 1.16a1.581 1.581 0 0 1-1.16.483zM21.592 33V21.008a44.174 44.174 0 0 1-2.958-.316 28.99 28.99 0 0 1-2.734-.517l.337-1.35c1.275.3 2.543.514 3.803.641 1.26.128 2.58.191 3.96.191s2.7-.063 3.96-.19a29.603 29.603 0 0 0 3.802-.642l.338 1.35c-.87.21-1.781.383-2.734.517-.952.136-1.939.24-2.959.316V33h-1.35v-5.85h-2.115V33h-1.35z" fill="#fff"/>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<h3 class="is-smaller-heading"><?php _e( 'Improved admin and editor accessibility' ); ?></h3>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: Link to accessibility improvements dev note. */
|
||||||
|
__( 'More than 40 improvements in accessibility include resolving focus loss problems in the editor, improving form labels and audible messages, making alternative text easier to edit, and fixing the sub-menu overlap in the expanded admin side navigation at smaller screen sizes and higher zoom levels. Learn more about <a href="%s">accessibility in WordPress</a>.' ),
|
||||||
|
'https://make.wordpress.org/core/2022/10/11/wordpress-6-1-accessibility-improvements/'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="column">
|
||||||
|
<div class="about__image">
|
||||||
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
||||||
|
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.019 25.517l-4.258 4.385-.718-.697 4.212-4.337-5.752-.025.005-1 5.826.025-3.997-4.116.717-.696 3.952 4.07-.03-5.623 1-.005.03 5.567 3.894-4.01.717.697-4.007 4.126 6.046.026-.005 1-5.942-.025 4.201 4.326-.717.697-4.174-4.298.032 6.048-1 .006-.032-6.14z" fill="#fff"/>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<h3 class="is-smaller-heading"><?php _e( 'Other notes of interest' ); ?></h3>
|
||||||
|
<p><?php _e( '6.1 includes a new time-to-read feature showing content authors the approximate time-to-read values for pages, posts, and custom post types.' ); ?></p>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: "General Settings" admin page title, linked to the page if the user can edit options. */
|
||||||
|
__( 'The site tagline is empty by default in new sites but can be modified in %s.' ),
|
||||||
|
current_user_can( 'manage_options' ) ? '<a href="' . esc_url( admin_url( 'options-general.php' ) ) . '">' . __( 'General Settings' ) . '</a>' : __( 'General Settings' )
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
<p><?php _e( 'A new modal design offers a background blur effect, making it easier to focus on the task at hand.' ); ?></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="about__section has-2-columns">
|
||||||
|
<div class="column">
|
||||||
|
<div class="about__image">
|
||||||
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
||||||
|
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
|
||||||
|
<rect x="11" y="17" width="26" height="14" rx="7" fill="#fff"/>
|
||||||
|
<circle cx="18" cy="24" r="4" fill="#1E1E1E"/>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<h3 class="is-smaller-heading"><?php _e( 'Updated interface options and features' ); ?></h3>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: Link to styling elements dev note. */
|
||||||
|
__( 'Updates include <a href="%s">styling elements</a> like buttons, citations, and links globally; controlling hover, active, and focus states for links using theme.json (not available to control in the interface yet); and customizing outline support for blocks and elements, among other features.' ),
|
||||||
|
'https://make.wordpress.org/core/2022/10/10/styling-elements-in-block-themes/'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="column">
|
||||||
|
<div class="about__image">
|
||||||
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
||||||
|
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M18 16h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H18a2 2 0 0 1-2-2V18a2 2 0 0 1 2-2zm12 1.5H18a.5.5 0 0 0-.5.5v3h13v-3a.5.5 0 0 0-.5-.5zm.5 5H22v8h8a.5.5 0 0 0 .5-.5v-7.5zm-10 0h-3V30a.5.5 0 0 0 .5.5h2.5v-8z" fill="#fff"/>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<h3 class="is-smaller-heading"><?php _e( 'Continued evolution of layout options' ); ?></h3>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: Link to layout support refactor dev note. */
|
||||||
|
__( 'The default content dimensions provided by themes can now be overridden in the Styles Sidebar, giving site builders better control over full-width content. Developers have <a href="%s">fine-grained control over these controls</a>.' ),
|
||||||
|
'https://make.wordpress.org/core/2022/10/10/updated-editor-layout-support-in-6-1-after-refactor/'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="about__section has-2-columns">
|
||||||
|
<div class="column">
|
||||||
|
<div class="about__image">
|
||||||
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
||||||
|
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
|
||||||
|
<path d="M27.7 17.2l5.6 5.6c.7.6.7 1.8-.1 2.5l-5.6 5.6c-.3.3-.8.5-1.2.5-.4 0-.9-.2-1.2-.5l-5.6-5.6c-.7-.7-.7-1.8 0-2.5l5.6-5.6c.7-.7 1.8-.7 2.5 0z" fill="#fff"/>
|
||||||
|
<path d="M22 17.5l-6.3 6.3c-.1.1-.1.3.1.3l6.3 6.3-1.1 1.1-6.3-6.2c-.7-.7-.7-1.8 0-2.5l6.3-6.3 1 1z" fill="#fff"/>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<h3 class="is-smaller-heading"><?php _e( 'Block template parts in classic themes' ); ?></h3>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: 1: Link to block-based template parts in classic themes dev note, 2: Folder name. */
|
||||||
|
__( '<a href="%1$s">Block template parts can now be defined in classic themes</a> by adding the appropriate HTML files to the %2$s directory at the root of the theme.' ),
|
||||||
|
'https://make.wordpress.org/core/2022/10/04/block-based-template-parts-in-traditional-themes/',
|
||||||
|
'<code>parts</code>'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="column">
|
||||||
|
<div class="about__image">
|
||||||
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
||||||
|
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.349 23.579a3.18 3.18 0 0 1-6.262.796l-.007-.03-.01-.029-.734-2.166-.005.002a4.818 4.818 0 0 0-9.418 1.427 4.816 4.816 0 0 0 6.575 4.485l-.598-1.523a3.18 3.18 0 1 1 1.92-3.758l.012-.003.69 2.034a4.818 4.818 0 0 0 9.472-1.235 4.816 4.816 0 0 0-6.57-4.487l.596 1.524a3.18 3.18 0 0 1 4.34 2.963z" fill="#fff"/>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<h3 class="is-smaller-heading"><?php _e( 'Expanded support for Query Loop blocks' ); ?></h3>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: Link to query loop dev note. */
|
||||||
|
__( '<a href="%s">New filters</a> let Query Block variations support custom queries for more powerful variations and advanced hierarchical post types filtering options.' ),
|
||||||
|
'https://make.wordpress.org/core/2022/10/10/extending-the-query-loop-block/'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="about__section has-2-columns">
|
||||||
|
<div class="column">
|
||||||
|
<div class="about__image">
|
||||||
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
||||||
|
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
|
||||||
|
<path d="M17.25 30.25L24 17.594l6.75 12.656h-13.5z" stroke="#fff" stroke-width="1.5"/>
|
||||||
|
<path d="M24 16v15h-8l8-15z" fill="#fff"/>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<h3 class="is-smaller-heading"><?php _e( 'Filters for all your styles' ); ?></h3>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: Link to theme.json filters dev note. */
|
||||||
|
__( '<a href="%s">Leverage filters</a> in the Styles sidebar to control settings at all four levels of your site—core, theme, user, or block, from less to more specific.' ),
|
||||||
|
'https://make.wordpress.org/core/2022/10/10/filters-for-theme-json-data/'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="column">
|
||||||
|
<div class="about__image">
|
||||||
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
||||||
|
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.114 20.5H16V19h3.114a2.501 2.501 0 0 1 4.771 0H32v1.5h-8.114a2.501 2.501 0 0 1-4.771 0zM16 29h8.114a2.501 2.501 0 0 0 4.771 0H32v-1.5h-3.114a2.501 2.501 0 0 0-4.771 0H16V29z" fill="#fff"/>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<h3 class="is-smaller-heading"><?php _e( 'Spacing presets for faster, consistent design' ); ?></h3>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: Link to spacing presets dev note. */
|
||||||
|
__( 'Save time and help avoid hard-coding a values into a theme with <a href="%s">preset margin and padding values for multiple blocks</a>.' ),
|
||||||
|
'https://make.wordpress.org/core/2022/10/07/introduction-of-presets-across-padding-margin-and-block-gap/'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="about__section has-2-columns">
|
||||||
|
<div class="column">
|
||||||
|
<div class="about__image">
|
||||||
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
||||||
|
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.517 20.75A7.268 7.268 0 0 1 22 17.03a8.142 8.142 0 0 0-1.19 1.875 10.763 10.763 0 0 0-.657 1.845h-2.636zm-.554 1.5a7.266 7.266 0 0 0 0 3.5h2.9a13.453 13.453 0 0 1 0-3.5h-2.9zm4.415 0c-.084.56-.128 1.145-.128 1.75s.044 1.19.128 1.75h5.244c.084-.56.128-1.145.128-1.75s-.044-1.19-.128-1.75h-5.244zm6.759 0a13.45 13.45 0 0 1 0 3.5h2.9a7.266 7.266 0 0 0 0-3.5h-2.9zm2.346-1.5h-2.636a10.759 10.759 0 0 0-.657-1.845A8.14 8.14 0 0 0 26 17.03a7.269 7.269 0 0 1 4.483 3.721zm-4.194 0h-4.578c.13-.43.283-.836.458-1.211.495-1.063 1.139-1.847 1.831-2.306.692.46 1.335 1.243 1.83 2.306.176.375.33.78.46 1.211zm-8.772 6.5h2.636c.18.693.416 1.344.7 1.938A8.08 8.08 0 0 0 22 30.97a7.268 7.268 0 0 1-4.483-3.721zm8.772 0h-4.578c.138.46.305.892.495 1.29.491 1.024 1.12 1.78 1.794 2.227.692-.46 1.336-1.243 1.83-2.306a9.02 9.02 0 0 0 .46-1.211zm.901 1.845c.266-.57.486-1.188.657-1.845h2.636A7.268 7.268 0 0 1 26 30.97a8.145 8.145 0 0 0 1.19-1.875zM15.25 24a8.75 8.75 0 1 1 17.5 0 8.75 8.75 0 0 1-17.5 0z" fill="#fff"/>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<h3 class="is-smaller-heading"><?php _e( 'Performance highlights' ); ?></h3>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: 1: REST API performance dev note, 2: Multisite performance dev note, 3: code-formatted "WP_Query" linked to dev note, 4: Block registration performance dev note, 5: Site health checks dev note; 6: code-formatted "async", 7: Performance field guide. */
|
||||||
|
__( 'WordPress 6.1 resolved more than 25 tickets dedicated to enhancing performance. From the <a href="%1$s">REST API</a> to <a href="%2$s">multisite</a>, %3$s to <a href="%4$s">core block registration</a>, and <a href="%5$s">new Site Health checks</a> to the addition of the %6$s attribute to images, there are performance improvements for every type of site. A full breakdown can be found in the <a href="%7$s">Performance Field Guide</a>.' ),
|
||||||
|
'https://make.wordpress.org/core/2022/10/10/performance-improvements-to-the-rest-api/',
|
||||||
|
'https://make.wordpress.org/core/2022/10/10/multisite-improvements-in-wordpress-6-1/',
|
||||||
|
'<a href="https://make.wordpress.org/core/2022/10/07/improvements-to-wp_query-performance-in-6-1/"><code>WP_Query</code></a>',
|
||||||
|
'https://make.wordpress.org/core/2022/10/07/improved-php-performance-for-core-blocks-registration/',
|
||||||
|
'https://make.wordpress.org/core/2022/10/06/new-cache-site-health-checks-in-wordpress-6-1/',
|
||||||
|
'<code>async</code>',
|
||||||
|
'https://make.wordpress.org/core/2022/10/11/performance-field-guide-for-wordpress-6-1/'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: Link to install Performance Lab plugin if permitted, otherwise link to plugin on WordPress.org. */
|
||||||
|
__( 'Be among the first to get the latest improvements by adding the <a href="%s">Performance Lab plugin</a> to your WordPress test site or sandbox.' ),
|
||||||
|
current_user_can( 'install_plugins' ) ? admin_url( 'plugin-install.php?s=slug%253Aperformance-lab&tab=search&type=term' ) : esc_url( __( 'https://wordpress.org/plugins/performance-lab/' ) )
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="column">
|
||||||
|
<div class="about__image">
|
||||||
|
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false">
|
||||||
|
<rect width="48" height="48" rx="4" fill="#1E1E1E"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M32.067 17.085l-3.245-3.14-10.621 10.726-1.303 4.412 4.528-1.252 10.64-10.746zM16 32.75h8v-1.5h-8v1.5z" fill="#fff"/>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
<h3 class="is-smaller-heading"><?php _e( 'Content-only editing support for container blocks' ); ?></h3>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: Link to content locking dev note. */
|
||||||
|
__( 'Thanks to <a href="%s">content-only editing settings</a>, layouts can be locked within container blocks. In a content-only block, its children are invisible to the List View and entirely uneditable. So you control the layout while your writers can focus on the content.' ),
|
||||||
|
'https://make.wordpress.org/core/2022/10/11/content-locking-features-and-updates/'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
<p><?php _e( 'Combine it with block locking options for even more advanced control over your blocks.' ); ?></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
<div class="about__section has-2-columns is-wider-right">
|
||||||
|
<div class="column about__image is-vertically-aligned-top">
|
||||||
|
<a href="https://youtu.be/1w9oywSa6Hw">
|
||||||
|
<img src="data:image/svg+xml,%3Csvg width='269' height='163' viewBox='0 0 269 163' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Crect width='269' height='163' rx='4' fill='%23FDFF85'/%3E%3Cpath d='M238.84 130.043a1 1 0 0 0-1.524.852v8.21a1 1 0 0 0 1.524.852l6.671-4.105a1 1 0 0 0 0-1.703l-6.671-4.106Z' fill='%231E1E1E'/%3E%3Crect x='226.25' y='120.25' width='29.5' height='29.5' rx='2.75' stroke='%231E1E1E' stroke-width='1.5'/%3E%3Cpath d='M99.597 127.44c-6.16 0-11.36-1.16-15.6-3.48-4.24-2.32-7.68-5.4-10.32-9.24-2.56-3.84-4.4-8.16-5.52-12.96A64.74 64.74 0 0 1 66.477 87c0-9.28 1.28-17.4 3.84-24.36 2.64-6.96 6.4-12.36 11.28-16.2 4.88-3.92 10.8-5.88 17.76-5.88 5.521 0 10.241 1.08 14.161 3.24s6.96 5.04 9.12 8.64c2.24 3.6 3.6 7.52 4.08 11.76h-11.88c-.72-4.16-2.44-7.36-5.16-9.6-2.72-2.24-6.2-3.36-10.44-3.36-5.84 0-10.68 2.76-14.52 8.28-3.76 5.44-5.76 13.84-6 25.2 1.92-3.52 4.88-6.52 8.88-9 4.08-2.48 8.76-3.72 14.04-3.72 4.72 0 9.12 1.12 13.2 3.36 4.16 2.24 7.52 5.4 10.08 9.48 2.64 4 3.96 8.76 3.96 14.28 0 4.88-1.2 9.48-3.6 13.8-2.4 4.32-5.8 7.84-10.2 10.56-4.32 2.64-9.48 3.96-15.48 3.96Zm-.72-11.04c3.361 0 6.361-.72 9.001-2.16 2.64-1.44 4.72-3.4 6.24-5.88 1.52-2.56 2.28-5.44 2.28-8.64 0-5.12-1.68-9.2-5.04-12.24-3.28-3.04-7.48-4.56-12.6-4.56-3.36 0-6.4.76-9.12 2.28-2.64 1.52-4.72 3.56-6.24 6.12-1.52 2.48-2.28 5.24-2.28 8.28 0 3.28.76 6.2 2.28 8.76 1.6 2.48 3.72 4.44 6.36 5.88 2.72 1.44 5.76 2.16 9.12 2.16Zm45.925 10.32c-2.4 0-4.4-.76-6-2.28-1.52-1.6-2.28-3.48-2.28-5.64 0-2.24.76-4.12 2.28-5.64 1.6-1.6 3.6-2.4 6-2.4s4.36.8 5.88 2.4c1.52 1.52 2.28 3.4 2.28 5.64 0 2.16-.76 4.04-2.28 5.64-1.52 1.52-3.48 2.28-5.88 2.28Zm26.814-.72V56.4l-13.56 3.12v-9.36l18.6-8.16h8.16v84h-13.2Z' fill='%231E1E1E'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Crect width='269' height='163' rx='4' fill='%23fff'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A" alt="<?php echo esc_attr( __( 'Exploring WordPress 6.1 video' ) ); ?>" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="column">
|
||||||
|
<h3>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: Version number. */
|
||||||
|
__( 'Learn more about WordPress %s' ),
|
||||||
|
$display_version
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</h3>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: 6.1 overview video link. */
|
||||||
|
__( 'See WordPress 6.1 in action! <a href="%s">Watch a brief overview video</a> highlighting some of the major features debuting in WordPress 6.1.' ),
|
||||||
|
'https://youtu.be/1w9oywSa6Hw'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="about__section has-3-columns">
|
||||||
|
<div class="column" style="padding-top:0">
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: 1: Learn WordPress link. */
|
||||||
|
__( 'Explore <a href="%s">learn.wordpress.org</a> for tutorial videos, online workshops, courses, and lesson plans for Meetup organizers, including new features in WordPress.' ),
|
||||||
|
'https://learn.wordpress.org/'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="column" style="padding-top:0">
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: WordPress Field Guide link. */
|
||||||
|
__( 'Check out the latest version of the <a href="%s">WordPress Field Guide</a>. It is overflowing with detailed developer notes to help you build with WordPress.' ),
|
||||||
|
__( 'https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/' )
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="column" style="padding-top:0">
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: 1: WordPress Release Notes link, 2: WordPress version number. */
|
||||||
|
__( '<a href="%1$s">Read the WordPress %2$s Release Notes</a> for more information on the included enhancements and issues fixed, installation information, developer notes and resources, release contributors, and the list of file changes in this release.' ),
|
||||||
|
sprintf(
|
||||||
|
/* translators: %s: WordPress version number. */
|
||||||
|
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
|
||||||
|
'6-1'
|
||||||
|
),
|
||||||
|
'6.1'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr class="is-large" />
|
||||||
|
|
||||||
|
<div class="return-to-dashboard">
|
||||||
|
<?php if ( current_user_can( 'update_core' ) && isset( $_GET['updated'] ) ) : ?>
|
||||||
|
<a href="<?php echo esc_url( self_admin_url( 'update-core.php' ) ); ?>">
|
||||||
|
<?php is_multisite() ? _e( 'Go to Updates' ) : _e( 'Go to Dashboard → Updates' ); ?>
|
||||||
|
</a> |
|
||||||
|
<?php endif; ?>
|
||||||
|
<a href="<?php echo esc_url( self_admin_url() ); ?>"><?php is_blog_admin() ? _e( 'Go to Dashboard → Home' ) : _e( 'Go to Dashboard' ); ?></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php require_once ABSPATH . 'wp-admin/admin-footer.php'; ?>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
|
||||||
|
// These are strings we may use to describe maintenance/security releases, where we aim for no new strings.
|
||||||
|
return;
|
||||||
|
|
||||||
|
__( 'Maintenance Release' );
|
||||||
|
__( 'Maintenance Releases' );
|
||||||
|
|
||||||
|
__( 'Security Release' );
|
||||||
|
__( 'Security Releases' );
|
||||||
|
|
||||||
|
__( 'Maintenance and Security Release' );
|
||||||
|
__( 'Maintenance and Security Releases' );
|
||||||
|
|
||||||
|
/* translators: %s: WordPress version number. */
|
||||||
|
__( '<strong>Version %s</strong> addressed one security issue.' );
|
||||||
|
/* translators: %s: WordPress version number. */
|
||||||
|
__( '<strong>Version %s</strong> addressed some security issues.' );
|
||||||
|
|
||||||
|
/* translators: 1: WordPress version number, 2: Plural number of bugs. */
|
||||||
|
_n_noop(
|
||||||
|
'<strong>Version %1$s</strong> addressed %2$s bug.',
|
||||||
|
'<strong>Version %1$s</strong> addressed %2$s bugs.'
|
||||||
|
);
|
||||||
|
|
||||||
|
/* translators: 1: WordPress version number, 2: Plural number of bugs. Singular security issue. */
|
||||||
|
_n_noop(
|
||||||
|
'<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.',
|
||||||
|
'<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.'
|
||||||
|
);
|
||||||
|
|
||||||
|
/* translators: 1: WordPress version number, 2: Plural number of bugs. More than one security issue. */
|
||||||
|
_n_noop(
|
||||||
|
'<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
|
||||||
|
'<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.'
|
||||||
|
);
|
||||||
|
|
||||||
|
/* translators: %s: Documentation URL. */
|
||||||
|
__( 'For more information, see <a href="%s">the release notes</a>.' );
|
||||||
|
|
||||||
|
/* translators: 1: WordPress version number, 2: Link to update WordPress */
|
||||||
|
__( 'Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please <a href="%2$s">update to the latest version of WordPress</a>.' );
|
||||||
|
|
||||||
|
/* translators: 1: WordPress version number, 2: Link to update WordPress */
|
||||||
|
__( 'Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please <a href="%2$s">update to the latest version of WordPress</a>.' );
|
|
@ -0,0 +1,207 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* WordPress Ajax Process Execution
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Administration
|
||||||
|
*
|
||||||
|
* @link https://codex.wordpress.org/AJAX_in_Plugins
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Executing Ajax process.
|
||||||
|
*
|
||||||
|
* @since 2.1.0
|
||||||
|
*/
|
||||||
|
define( 'DOING_AJAX', true );
|
||||||
|
if ( ! defined( 'WP_ADMIN' ) ) {
|
||||||
|
define( 'WP_ADMIN', true );
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Load WordPress Bootstrap */
|
||||||
|
require_once dirname( __DIR__ ) . '/wp-load.php';
|
||||||
|
|
||||||
|
/** Allow for cross-domain requests (from the front end). */
|
||||||
|
send_origin_headers();
|
||||||
|
|
||||||
|
header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) );
|
||||||
|
header( 'X-Robots-Tag: noindex' );
|
||||||
|
|
||||||
|
// Require a valid action parameter.
|
||||||
|
if ( empty( $_REQUEST['action'] ) || ! is_scalar( $_REQUEST['action'] ) ) {
|
||||||
|
wp_die( '0', 400 );
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Load WordPress Administration APIs */
|
||||||
|
require_once ABSPATH . 'wp-admin/includes/admin.php';
|
||||||
|
|
||||||
|
/** Load Ajax Handlers for WordPress Core */
|
||||||
|
require_once ABSPATH . 'wp-admin/includes/ajax-actions.php';
|
||||||
|
|
||||||
|
send_nosniff_header();
|
||||||
|
nocache_headers();
|
||||||
|
|
||||||
|
/** This action is documented in wp-admin/admin.php */
|
||||||
|
do_action( 'admin_init' );
|
||||||
|
|
||||||
|
$core_actions_get = array(
|
||||||
|
'fetch-list',
|
||||||
|
'ajax-tag-search',
|
||||||
|
'wp-compression-test',
|
||||||
|
'imgedit-preview',
|
||||||
|
'oembed-cache',
|
||||||
|
'autocomplete-user',
|
||||||
|
'dashboard-widgets',
|
||||||
|
'logged-in',
|
||||||
|
'rest-nonce',
|
||||||
|
);
|
||||||
|
|
||||||
|
$core_actions_post = array(
|
||||||
|
'oembed-cache',
|
||||||
|
'image-editor',
|
||||||
|
'delete-comment',
|
||||||
|
'delete-tag',
|
||||||
|
'delete-link',
|
||||||
|
'delete-meta',
|
||||||
|
'delete-post',
|
||||||
|
'trash-post',
|
||||||
|
'untrash-post',
|
||||||
|
'delete-page',
|
||||||
|
'dim-comment',
|
||||||
|
'add-link-category',
|
||||||
|
'add-tag',
|
||||||
|
'get-tagcloud',
|
||||||
|
'get-comments',
|
||||||
|
'replyto-comment',
|
||||||
|
'edit-comment',
|
||||||
|
'add-menu-item',
|
||||||
|
'add-meta',
|
||||||
|
'add-user',
|
||||||
|
'closed-postboxes',
|
||||||
|
'hidden-columns',
|
||||||
|
'update-welcome-panel',
|
||||||
|
'menu-get-metabox',
|
||||||
|
'wp-link-ajax',
|
||||||
|
'menu-locations-save',
|
||||||
|
'menu-quick-search',
|
||||||
|
'meta-box-order',
|
||||||
|
'get-permalink',
|
||||||
|
'sample-permalink',
|
||||||
|
'inline-save',
|
||||||
|
'inline-save-tax',
|
||||||
|
'find_posts',
|
||||||
|
'widgets-order',
|
||||||
|
'save-widget',
|
||||||
|
'delete-inactive-widgets',
|
||||||
|
'set-post-thumbnail',
|
||||||
|
'date_format',
|
||||||
|
'time_format',
|
||||||
|
'wp-remove-post-lock',
|
||||||
|
'dismiss-wp-pointer',
|
||||||
|
'upload-attachment',
|
||||||
|
'get-attachment',
|
||||||
|
'query-attachments',
|
||||||
|
'save-attachment',
|
||||||
|
'save-attachment-compat',
|
||||||
|
'send-link-to-editor',
|
||||||
|
'send-attachment-to-editor',
|
||||||
|
'save-attachment-order',
|
||||||
|
'media-create-image-subsizes',
|
||||||
|
'heartbeat',
|
||||||
|
'get-revision-diffs',
|
||||||
|
'save-user-color-scheme',
|
||||||
|
'update-widget',
|
||||||
|
'query-themes',
|
||||||
|
'parse-embed',
|
||||||
|
'set-attachment-thumbnail',
|
||||||
|
'parse-media-shortcode',
|
||||||
|
'destroy-sessions',
|
||||||
|
'install-plugin',
|
||||||
|
'update-plugin',
|
||||||
|
'crop-image',
|
||||||
|
'generate-password',
|
||||||
|
'save-wporg-username',
|
||||||
|
'delete-plugin',
|
||||||
|
'search-plugins',
|
||||||
|
'search-install-plugins',
|
||||||
|
'activate-plugin',
|
||||||
|
'update-theme',
|
||||||
|
'delete-theme',
|
||||||
|
'install-theme',
|
||||||
|
'get-post-thumbnail-html',
|
||||||
|
'get-community-events',
|
||||||
|
'edit-theme-plugin-file',
|
||||||
|
'wp-privacy-export-personal-data',
|
||||||
|
'wp-privacy-erase-personal-data',
|
||||||
|
'health-check-site-status-result',
|
||||||
|
'health-check-dotorg-communication',
|
||||||
|
'health-check-is-in-debug-mode',
|
||||||
|
'health-check-background-updates',
|
||||||
|
'health-check-loopback-requests',
|
||||||
|
'health-check-get-sizes',
|
||||||
|
'toggle-auto-updates',
|
||||||
|
'send-password-reset',
|
||||||
|
);
|
||||||
|
|
||||||
|
// Deprecated.
|
||||||
|
$core_actions_post_deprecated = array(
|
||||||
|
'wp-fullscreen-save-post',
|
||||||
|
'press-this-save-post',
|
||||||
|
'press-this-add-category',
|
||||||
|
'health-check-dotorg-communication',
|
||||||
|
'health-check-is-in-debug-mode',
|
||||||
|
'health-check-background-updates',
|
||||||
|
'health-check-loopback-requests',
|
||||||
|
);
|
||||||
|
|
||||||
|
$core_actions_post = array_merge( $core_actions_post, $core_actions_post_deprecated );
|
||||||
|
|
||||||
|
// Register core Ajax calls.
|
||||||
|
if ( ! empty( $_GET['action'] ) && in_array( $_GET['action'], $core_actions_get, true ) ) {
|
||||||
|
add_action( 'wp_ajax_' . $_GET['action'], 'wp_ajax_' . str_replace( '-', '_', $_GET['action'] ), 1 );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( ! empty( $_POST['action'] ) && in_array( $_POST['action'], $core_actions_post, true ) ) {
|
||||||
|
add_action( 'wp_ajax_' . $_POST['action'], 'wp_ajax_' . str_replace( '-', '_', $_POST['action'] ), 1 );
|
||||||
|
}
|
||||||
|
|
||||||
|
add_action( 'wp_ajax_nopriv_generate-password', 'wp_ajax_nopriv_generate_password' );
|
||||||
|
|
||||||
|
add_action( 'wp_ajax_nopriv_heartbeat', 'wp_ajax_nopriv_heartbeat', 1 );
|
||||||
|
|
||||||
|
$action = $_REQUEST['action'];
|
||||||
|
|
||||||
|
if ( is_user_logged_in() ) {
|
||||||
|
// If no action is registered, return a Bad Request response.
|
||||||
|
if ( ! has_action( "wp_ajax_{$action}" ) ) {
|
||||||
|
wp_die( '0', 400 );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fires authenticated Ajax actions for logged-in users.
|
||||||
|
*
|
||||||
|
* The dynamic portion of the hook name, `$action`, refers
|
||||||
|
* to the name of the Ajax action callback being fired.
|
||||||
|
*
|
||||||
|
* @since 2.1.0
|
||||||
|
*/
|
||||||
|
do_action( "wp_ajax_{$action}" );
|
||||||
|
} else {
|
||||||
|
// If no action is registered, return a Bad Request response.
|
||||||
|
if ( ! has_action( "wp_ajax_nopriv_{$action}" ) ) {
|
||||||
|
wp_die( '0', 400 );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fires non-authenticated Ajax actions for logged-out users.
|
||||||
|
*
|
||||||
|
* The dynamic portion of the hook name, `$action`, refers
|
||||||
|
* to the name of the Ajax action callback being fired.
|
||||||
|
*
|
||||||
|
* @since 2.8.0
|
||||||
|
*/
|
||||||
|
do_action( "wp_ajax_nopriv_{$action}" );
|
||||||
|
}
|
||||||
|
|
||||||
|
// Default status.
|
||||||
|
wp_die( '0' );
|
|
@ -0,0 +1,119 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* WordPress Administration Template Footer
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Administration
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Don't load directly.
|
||||||
|
if ( ! defined( 'ABSPATH' ) ) {
|
||||||
|
die( '-1' );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @global string $hook_suffix
|
||||||
|
*/
|
||||||
|
global $hook_suffix;
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div class="clear"></div></div><!-- wpbody-content -->
|
||||||
|
<div class="clear"></div></div><!-- wpbody -->
|
||||||
|
<div class="clear"></div></div><!-- wpcontent -->
|
||||||
|
|
||||||
|
<div id="wpfooter" role="contentinfo">
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Fires after the opening tag for the admin footer.
|
||||||
|
*
|
||||||
|
* @since 2.5.0
|
||||||
|
*/
|
||||||
|
do_action( 'in_admin_footer' );
|
||||||
|
?>
|
||||||
|
<p id="footer-left" class="alignleft">
|
||||||
|
<?php
|
||||||
|
$text = sprintf(
|
||||||
|
/* translators: %s: https://wordpress.org/ */
|
||||||
|
__( 'Thank you for creating with <a href="%s">WordPress</a>.' ),
|
||||||
|
__( 'https://wordpress.org/' )
|
||||||
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filters the "Thank you" text displayed in the admin footer.
|
||||||
|
*
|
||||||
|
* @since 2.8.0
|
||||||
|
*
|
||||||
|
* @param string $text The content that will be printed.
|
||||||
|
*/
|
||||||
|
echo apply_filters( 'admin_footer_text', '<span id="footer-thankyou">' . $text . '</span>' );
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
<p id="footer-upgrade" class="alignright">
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Filters the version/update text displayed in the admin footer.
|
||||||
|
*
|
||||||
|
* WordPress prints the current version and update information,
|
||||||
|
* using core_update_footer() at priority 10.
|
||||||
|
*
|
||||||
|
* @since 2.3.0
|
||||||
|
*
|
||||||
|
* @see core_update_footer()
|
||||||
|
*
|
||||||
|
* @param string $content The content that will be printed.
|
||||||
|
*/
|
||||||
|
echo apply_filters( 'update_footer', '' );
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
<div class="clear"></div>
|
||||||
|
</div>
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Prints scripts or data before the default footer scripts.
|
||||||
|
*
|
||||||
|
* @since 1.2.0
|
||||||
|
*
|
||||||
|
* @param string $data The data to print.
|
||||||
|
*/
|
||||||
|
do_action( 'admin_footer', '' );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prints scripts and data queued for the footer.
|
||||||
|
*
|
||||||
|
* The dynamic portion of the hook name, `$hook_suffix`,
|
||||||
|
* refers to the global hook suffix of the current page.
|
||||||
|
*
|
||||||
|
* @since 4.6.0
|
||||||
|
*/
|
||||||
|
do_action( "admin_print_footer_scripts-{$hook_suffix}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prints any scripts and data queued for the footer.
|
||||||
|
*
|
||||||
|
* @since 2.8.0
|
||||||
|
*/
|
||||||
|
do_action( 'admin_print_footer_scripts' );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prints scripts or data after the default footer scripts.
|
||||||
|
*
|
||||||
|
* The dynamic portion of the hook name, `$hook_suffix`,
|
||||||
|
* refers to the global hook suffix of the current page.
|
||||||
|
*
|
||||||
|
* @since 2.8.0
|
||||||
|
*/
|
||||||
|
do_action( "admin_footer-{$hook_suffix}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
||||||
|
|
||||||
|
// get_site_option() won't exist when auto upgrading from <= 2.7.
|
||||||
|
if ( function_exists( 'get_site_option' )
|
||||||
|
&& false === get_site_option( 'can_compress_scripts' )
|
||||||
|
) {
|
||||||
|
compression_test();
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div class="clear"></div></div><!-- wpwrap -->
|
||||||
|
<script type="text/javascript">if(typeof wpOnload==='function')wpOnload();</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,15 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Administration Functions
|
||||||
|
*
|
||||||
|
* This file is deprecated, use 'wp-admin/includes/admin.php' instead.
|
||||||
|
*
|
||||||
|
* @deprecated 2.5.0
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Administration
|
||||||
|
*/
|
||||||
|
|
||||||
|
_deprecated_file( basename( __FILE__ ), '2.5.0', 'wp-admin/includes/admin.php' );
|
||||||
|
|
||||||
|
/** WordPress Administration API: Includes all Administration functions. */
|
||||||
|
require_once ABSPATH . 'wp-admin/includes/admin.php';
|
|
@ -0,0 +1,315 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* WordPress Administration Template Header
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Administration
|
||||||
|
*/
|
||||||
|
|
||||||
|
header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) );
|
||||||
|
if ( ! defined( 'WP_ADMIN' ) ) {
|
||||||
|
require_once __DIR__ . '/admin.php';
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* In case admin-header.php is included in a function.
|
||||||
|
*
|
||||||
|
* @global string $title
|
||||||
|
* @global string $hook_suffix
|
||||||
|
* @global WP_Screen $current_screen WordPress current screen object.
|
||||||
|
* @global WP_Locale $wp_locale WordPress date and time locale object.
|
||||||
|
* @global string $pagenow The filename of the current screen.
|
||||||
|
* @global string $update_title
|
||||||
|
* @global int $total_update_count
|
||||||
|
* @global string $parent_file
|
||||||
|
* @global string $typenow The post type of the current screen.
|
||||||
|
*/
|
||||||
|
global $title, $hook_suffix, $current_screen, $wp_locale, $pagenow,
|
||||||
|
$update_title, $total_update_count, $parent_file, $typenow;
|
||||||
|
|
||||||
|
// Catch plugins that include admin-header.php before admin.php completes.
|
||||||
|
if ( empty( $current_screen ) ) {
|
||||||
|
set_current_screen();
|
||||||
|
}
|
||||||
|
|
||||||
|
get_admin_page_title();
|
||||||
|
$title = strip_tags( $title );
|
||||||
|
|
||||||
|
if ( is_network_admin() ) {
|
||||||
|
/* translators: Network admin screen title. %s: Network title. */
|
||||||
|
$admin_title = sprintf( __( 'Network Admin: %s' ), get_network()->site_name );
|
||||||
|
} elseif ( is_user_admin() ) {
|
||||||
|
/* translators: User dashboard screen title. %s: Network title. */
|
||||||
|
$admin_title = sprintf( __( 'User Dashboard: %s' ), get_network()->site_name );
|
||||||
|
} else {
|
||||||
|
$admin_title = get_bloginfo( 'name' );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( $admin_title === $title ) {
|
||||||
|
/* translators: Admin screen title. %s: Admin screen name. */
|
||||||
|
$admin_title = sprintf( __( '%s — WordPress' ), $title );
|
||||||
|
} else {
|
||||||
|
$screen_title = $title;
|
||||||
|
|
||||||
|
if ( 'post' === $current_screen->base && 'add' !== $current_screen->action ) {
|
||||||
|
$post_title = get_the_title();
|
||||||
|
if ( ! empty( $post_title ) ) {
|
||||||
|
$post_type_obj = get_post_type_object( $typenow );
|
||||||
|
$screen_title = sprintf(
|
||||||
|
/* translators: Editor admin screen title. 1: "Edit item" text for the post type, 2: Post title. */
|
||||||
|
__( '%1$s “%2$s”' ),
|
||||||
|
$post_type_obj->labels->edit_item,
|
||||||
|
$post_title
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* translators: Admin screen title. 1: Admin screen name, 2: Network or site name. */
|
||||||
|
$admin_title = sprintf( __( '%1$s ‹ %2$s — WordPress' ), $screen_title, $admin_title );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( wp_is_recovery_mode() ) {
|
||||||
|
/* translators: %s: Admin screen title. */
|
||||||
|
$admin_title = sprintf( __( 'Recovery Mode — %s' ), $admin_title );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filters the title tag content for an admin page.
|
||||||
|
*
|
||||||
|
* @since 3.1.0
|
||||||
|
*
|
||||||
|
* @param string $admin_title The page title, with extra context added.
|
||||||
|
* @param string $title The original page title.
|
||||||
|
*/
|
||||||
|
$admin_title = apply_filters( 'admin_title', $admin_title, $title );
|
||||||
|
|
||||||
|
wp_user_settings();
|
||||||
|
|
||||||
|
_wp_admin_html_begin();
|
||||||
|
?>
|
||||||
|
<title><?php echo esc_html( $admin_title ); ?></title>
|
||||||
|
<?php
|
||||||
|
|
||||||
|
wp_enqueue_style( 'colors' );
|
||||||
|
wp_enqueue_script( 'utils' );
|
||||||
|
wp_enqueue_script( 'svg-painter' );
|
||||||
|
|
||||||
|
$admin_body_class = preg_replace( '/[^a-z0-9_-]+/i', '-', $hook_suffix );
|
||||||
|
?>
|
||||||
|
<script type="text/javascript">
|
||||||
|
addLoadEvent = function(func){if(typeof jQuery!=='undefined')jQuery(function(){func();});else if(typeof wpOnload!=='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}};
|
||||||
|
var ajaxurl = '<?php echo esc_js( admin_url( 'admin-ajax.php', 'relative' ) ); ?>',
|
||||||
|
pagenow = '<?php echo esc_js( $current_screen->id ); ?>',
|
||||||
|
typenow = '<?php echo esc_js( $current_screen->post_type ); ?>',
|
||||||
|
adminpage = '<?php echo esc_js( $admin_body_class ); ?>',
|
||||||
|
thousandsSeparator = '<?php echo esc_js( $wp_locale->number_format['thousands_sep'] ); ?>',
|
||||||
|
decimalPoint = '<?php echo esc_js( $wp_locale->number_format['decimal_point'] ); ?>',
|
||||||
|
isRtl = <?php echo (int) is_rtl(); ?>;
|
||||||
|
</script>
|
||||||
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Enqueue scripts for all admin pages.
|
||||||
|
*
|
||||||
|
* @since 2.8.0
|
||||||
|
*
|
||||||
|
* @param string $hook_suffix The current admin page.
|
||||||
|
*/
|
||||||
|
do_action( 'admin_enqueue_scripts', $hook_suffix );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fires when styles are printed for a specific admin page based on $hook_suffix.
|
||||||
|
*
|
||||||
|
* @since 2.6.0
|
||||||
|
*/
|
||||||
|
do_action( "admin_print_styles-{$hook_suffix}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fires when styles are printed for all admin pages.
|
||||||
|
*
|
||||||
|
* @since 2.6.0
|
||||||
|
*/
|
||||||
|
do_action( 'admin_print_styles' );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fires when scripts are printed for a specific admin page based on $hook_suffix.
|
||||||
|
*
|
||||||
|
* @since 2.1.0
|
||||||
|
*/
|
||||||
|
do_action( "admin_print_scripts-{$hook_suffix}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fires when scripts are printed for all admin pages.
|
||||||
|
*
|
||||||
|
* @since 2.1.0
|
||||||
|
*/
|
||||||
|
do_action( 'admin_print_scripts' );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fires in head section for a specific admin page.
|
||||||
|
*
|
||||||
|
* The dynamic portion of the hook name, `$hook_suffix`, refers to the hook suffix
|
||||||
|
* for the admin page.
|
||||||
|
*
|
||||||
|
* @since 2.1.0
|
||||||
|
*/
|
||||||
|
do_action( "admin_head-{$hook_suffix}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fires in head section for all admin pages.
|
||||||
|
*
|
||||||
|
* @since 2.1.0
|
||||||
|
*/
|
||||||
|
do_action( 'admin_head' );
|
||||||
|
|
||||||
|
if ( 'f' === get_user_setting( 'mfold' ) ) {
|
||||||
|
$admin_body_class .= ' folded';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( ! get_user_setting( 'unfold' ) ) {
|
||||||
|
$admin_body_class .= ' auto-fold';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( is_admin_bar_showing() ) {
|
||||||
|
$admin_body_class .= ' admin-bar';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( is_rtl() ) {
|
||||||
|
$admin_body_class .= ' rtl';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( $current_screen->post_type ) {
|
||||||
|
$admin_body_class .= ' post-type-' . $current_screen->post_type;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( $current_screen->taxonomy ) {
|
||||||
|
$admin_body_class .= ' taxonomy-' . $current_screen->taxonomy;
|
||||||
|
}
|
||||||
|
|
||||||
|
$admin_body_class .= ' branch-' . str_replace( array( '.', ',' ), '-', (float) get_bloginfo( 'version' ) );
|
||||||
|
$admin_body_class .= ' version-' . str_replace( '.', '-', preg_replace( '/^([.0-9]+).*/', '$1', get_bloginfo( 'version' ) ) );
|
||||||
|
$admin_body_class .= ' admin-color-' . sanitize_html_class( get_user_option( 'admin_color' ), 'fresh' );
|
||||||
|
$admin_body_class .= ' locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_user_locale() ) ) );
|
||||||
|
|
||||||
|
if ( wp_is_mobile() ) {
|
||||||
|
$admin_body_class .= ' mobile';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( is_multisite() ) {
|
||||||
|
$admin_body_class .= ' multisite';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( is_network_admin() ) {
|
||||||
|
$admin_body_class .= ' network-admin';
|
||||||
|
}
|
||||||
|
|
||||||
|
$admin_body_class .= ' no-customize-support no-svg';
|
||||||
|
|
||||||
|
if ( $current_screen->is_block_editor() ) {
|
||||||
|
$admin_body_class .= ' block-editor-page wp-embed-responsive';
|
||||||
|
}
|
||||||
|
|
||||||
|
$error_get_last = error_get_last();
|
||||||
|
|
||||||
|
// Print a CSS class to make PHP errors visible.
|
||||||
|
if ( $error_get_last && WP_DEBUG && WP_DEBUG_DISPLAY && ini_get( 'display_errors' )
|
||||||
|
// Don't print the class for PHP notices in wp-config.php, as they happen before WP_DEBUG takes effect,
|
||||||
|
// and should not be displayed with the `error_reporting` level previously set in wp-load.php.
|
||||||
|
&& ( E_NOTICE !== $error_get_last['type'] || 'wp-config.php' !== wp_basename( $error_get_last['file'] ) )
|
||||||
|
) {
|
||||||
|
$admin_body_class .= ' php-error';
|
||||||
|
}
|
||||||
|
|
||||||
|
unset( $error_get_last );
|
||||||
|
|
||||||
|
?>
|
||||||
|
</head>
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Filters the CSS classes for the body tag in the admin.
|
||||||
|
*
|
||||||
|
* This filter differs from the {@see 'post_class'} and {@see 'body_class'} filters
|
||||||
|
* in two important ways:
|
||||||
|
*
|
||||||
|
* 1. `$classes` is a space-separated string of class names instead of an array.
|
||||||
|
* 2. Not all core admin classes are filterable, notably: wp-admin, wp-core-ui,
|
||||||
|
* and no-js cannot be removed.
|
||||||
|
*
|
||||||
|
* @since 2.3.0
|
||||||
|
*
|
||||||
|
* @param string $classes Space-separated list of CSS classes.
|
||||||
|
*/
|
||||||
|
$admin_body_classes = apply_filters( 'admin_body_class', '' );
|
||||||
|
$admin_body_classes = ltrim( $admin_body_classes . ' ' . $admin_body_class );
|
||||||
|
?>
|
||||||
|
<body class="wp-admin wp-core-ui no-js <?php echo $admin_body_classes; ?>">
|
||||||
|
<script type="text/javascript">
|
||||||
|
document.body.className = document.body.className.replace('no-js','js');
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
// Make sure the customize body classes are correct as early as possible.
|
||||||
|
if ( current_user_can( 'customize' ) ) {
|
||||||
|
wp_customize_support_script();
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id="wpwrap">
|
||||||
|
<?php require ABSPATH . 'wp-admin/menu-header.php'; ?>
|
||||||
|
<div id="wpcontent">
|
||||||
|
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Fires at the beginning of the content section in an admin page.
|
||||||
|
*
|
||||||
|
* @since 3.0.0
|
||||||
|
*/
|
||||||
|
do_action( 'in_admin_header' );
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id="wpbody" role="main">
|
||||||
|
<?php
|
||||||
|
unset( $blog_name, $total_update_count, $update_title );
|
||||||
|
|
||||||
|
$current_screen->set_parentage( $parent_file );
|
||||||
|
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id="wpbody-content">
|
||||||
|
<?php
|
||||||
|
|
||||||
|
$current_screen->render_screen_meta();
|
||||||
|
|
||||||
|
if ( is_network_admin() ) {
|
||||||
|
/**
|
||||||
|
* Prints network admin screen notices.
|
||||||
|
*
|
||||||
|
* @since 3.1.0
|
||||||
|
*/
|
||||||
|
do_action( 'network_admin_notices' );
|
||||||
|
} elseif ( is_user_admin() ) {
|
||||||
|
/**
|
||||||
|
* Prints user admin screen notices.
|
||||||
|
*
|
||||||
|
* @since 3.1.0
|
||||||
|
*/
|
||||||
|
do_action( 'user_admin_notices' );
|
||||||
|
} else {
|
||||||
|
/**
|
||||||
|
* Prints admin screen notices.
|
||||||
|
*
|
||||||
|
* @since 3.1.0
|
||||||
|
*/
|
||||||
|
do_action( 'admin_notices' );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prints generic admin screen notices.
|
||||||
|
*
|
||||||
|
* @since 3.1.0
|
||||||
|
*/
|
||||||
|
do_action( 'all_admin_notices' );
|
||||||
|
|
||||||
|
if ( 'options-general.php' === $parent_file ) {
|
||||||
|
require ABSPATH . 'wp-admin/options-head.php';
|
||||||
|
}
|
|
@ -0,0 +1,87 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* WordPress Generic Request (POST/GET) Handler
|
||||||
|
*
|
||||||
|
* Intended for form submission handling in themes and plugins.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Administration
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** We are located in WordPress Administration Screens */
|
||||||
|
if ( ! defined( 'WP_ADMIN' ) ) {
|
||||||
|
define( 'WP_ADMIN', true );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( defined( 'ABSPATH' ) ) {
|
||||||
|
require_once ABSPATH . 'wp-load.php';
|
||||||
|
} else {
|
||||||
|
require_once dirname( __DIR__ ) . '/wp-load.php';
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Allow for cross-domain requests (from the front end). */
|
||||||
|
send_origin_headers();
|
||||||
|
|
||||||
|
require_once ABSPATH . 'wp-admin/includes/admin.php';
|
||||||
|
|
||||||
|
nocache_headers();
|
||||||
|
|
||||||
|
/** This action is documented in wp-admin/admin.php */
|
||||||
|
do_action( 'admin_init' );
|
||||||
|
|
||||||
|
$action = ! empty( $_REQUEST['action'] ) ? $_REQUEST['action'] : '';
|
||||||
|
|
||||||
|
// Reject invalid parameters.
|
||||||
|
if ( ! is_scalar( $action ) ) {
|
||||||
|
wp_die( '', 400 );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( ! is_user_logged_in() ) {
|
||||||
|
if ( empty( $action ) ) {
|
||||||
|
/**
|
||||||
|
* Fires on a non-authenticated admin post request where no action is supplied.
|
||||||
|
*
|
||||||
|
* @since 2.6.0
|
||||||
|
*/
|
||||||
|
do_action( 'admin_post_nopriv' );
|
||||||
|
} else {
|
||||||
|
// If no action is registered, return a Bad Request response.
|
||||||
|
if ( ! has_action( "admin_post_nopriv_{$action}" ) ) {
|
||||||
|
wp_die( '', 400 );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fires on a non-authenticated admin post request for the given action.
|
||||||
|
*
|
||||||
|
* The dynamic portion of the hook name, `$action`, refers to the given
|
||||||
|
* request action.
|
||||||
|
*
|
||||||
|
* @since 2.6.0
|
||||||
|
*/
|
||||||
|
do_action( "admin_post_nopriv_{$action}" );
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if ( empty( $action ) ) {
|
||||||
|
/**
|
||||||
|
* Fires on an authenticated admin post request where no action is supplied.
|
||||||
|
*
|
||||||
|
* @since 2.6.0
|
||||||
|
*/
|
||||||
|
do_action( 'admin_post' );
|
||||||
|
} else {
|
||||||
|
// If no action is registered, return a Bad Request response.
|
||||||
|
if ( ! has_action( "admin_post_{$action}" ) ) {
|
||||||
|
wp_die( '', 400 );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fires on an authenticated admin post request for the given action.
|
||||||
|
*
|
||||||
|
* The dynamic portion of the hook name, `$action`, refers to the given
|
||||||
|
* request action.
|
||||||
|
*
|
||||||
|
* @since 2.6.0
|
||||||
|
*/
|
||||||
|
do_action( "admin_post_{$action}" );
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,420 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* WordPress Administration Bootstrap
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Administration
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* In WordPress Administration Screens
|
||||||
|
*
|
||||||
|
* @since 2.3.2
|
||||||
|
*/
|
||||||
|
if ( ! defined( 'WP_ADMIN' ) ) {
|
||||||
|
define( 'WP_ADMIN', true );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( ! defined( 'WP_NETWORK_ADMIN' ) ) {
|
||||||
|
define( 'WP_NETWORK_ADMIN', false );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( ! defined( 'WP_USER_ADMIN' ) ) {
|
||||||
|
define( 'WP_USER_ADMIN', false );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( ! WP_NETWORK_ADMIN && ! WP_USER_ADMIN ) {
|
||||||
|
define( 'WP_BLOG_ADMIN', true );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( isset( $_GET['import'] ) && ! defined( 'WP_LOAD_IMPORTERS' ) ) {
|
||||||
|
define( 'WP_LOAD_IMPORTERS', true );
|
||||||
|
}
|
||||||
|
|
||||||
|
require_once dirname( __DIR__ ) . '/wp-load.php';
|
||||||
|
|
||||||
|
nocache_headers();
|
||||||
|
|
||||||
|
if ( get_option( 'db_upgraded' ) ) {
|
||||||
|
|
||||||
|
flush_rewrite_rules();
|
||||||
|
update_option( 'db_upgraded', false );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fires on the next page load after a successful DB upgrade.
|
||||||
|
*
|
||||||
|
* @since 2.8.0
|
||||||
|
*/
|
||||||
|
do_action( 'after_db_upgrade' );
|
||||||
|
|
||||||
|
} elseif ( ! wp_doing_ajax() && empty( $_POST )
|
||||||
|
&& (int) get_option( 'db_version' ) !== $wp_db_version
|
||||||
|
) {
|
||||||
|
|
||||||
|
if ( ! is_multisite() ) {
|
||||||
|
wp_redirect( admin_url( 'upgrade.php?_wp_http_referer=' . urlencode( wp_unslash( $_SERVER['REQUEST_URI'] ) ) ) );
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filters whether to attempt to perform the multisite DB upgrade routine.
|
||||||
|
*
|
||||||
|
* In single site, the user would be redirected to wp-admin/upgrade.php.
|
||||||
|
* In multisite, the DB upgrade routine is automatically fired, but only
|
||||||
|
* when this filter returns true.
|
||||||
|
*
|
||||||
|
* If the network is 50 sites or less, it will run every time. Otherwise,
|
||||||
|
* it will throttle itself to reduce load.
|
||||||
|
*
|
||||||
|
* @since MU (3.0.0)
|
||||||
|
*
|
||||||
|
* @param bool $do_mu_upgrade Whether to perform the Multisite upgrade routine. Default true.
|
||||||
|
*/
|
||||||
|
if ( apply_filters( 'do_mu_upgrade', true ) ) {
|
||||||
|
$c = get_blog_count();
|
||||||
|
|
||||||
|
/*
|
||||||
|
* If there are 50 or fewer sites, run every time. Otherwise, throttle to reduce load:
|
||||||
|
* attempt to do no more than threshold value, with some +/- allowed.
|
||||||
|
*/
|
||||||
|
if ( $c <= 50 || ( $c > 50 && mt_rand( 0, (int) ( $c / 50 ) ) === 1 ) ) {
|
||||||
|
require_once ABSPATH . WPINC . '/http.php';
|
||||||
|
$response = wp_remote_get(
|
||||||
|
admin_url( 'upgrade.php?step=1' ),
|
||||||
|
array(
|
||||||
|
'timeout' => 120,
|
||||||
|
'httpversion' => '1.1',
|
||||||
|
)
|
||||||
|
);
|
||||||
|
/** This action is documented in wp-admin/network/upgrade.php */
|
||||||
|
do_action( 'after_mu_upgrade', $response );
|
||||||
|
unset( $response );
|
||||||
|
}
|
||||||
|
unset( $c );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
require_once ABSPATH . 'wp-admin/includes/admin.php';
|
||||||
|
|
||||||
|
auth_redirect();
|
||||||
|
|
||||||
|
// Schedule Trash collection.
|
||||||
|
if ( ! wp_next_scheduled( 'wp_scheduled_delete' ) && ! wp_installing() ) {
|
||||||
|
wp_schedule_event( time(), 'daily', 'wp_scheduled_delete' );
|
||||||
|
}
|
||||||
|
|
||||||
|
// Schedule transient cleanup.
|
||||||
|
if ( ! wp_next_scheduled( 'delete_expired_transients' ) && ! wp_installing() ) {
|
||||||
|
wp_schedule_event( time(), 'daily', 'delete_expired_transients' );
|
||||||
|
}
|
||||||
|
|
||||||
|
set_screen_options();
|
||||||
|
|
||||||
|
$date_format = __( 'F j, Y' );
|
||||||
|
$time_format = __( 'g:i a' );
|
||||||
|
|
||||||
|
wp_enqueue_script( 'common' );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* $pagenow is set in vars.php.
|
||||||
|
* $wp_importers is sometimes set in wp-admin/includes/import.php.
|
||||||
|
* The remaining variables are imported as globals elsewhere, declared as globals here.
|
||||||
|
*
|
||||||
|
* @global string $pagenow The filename of the current screen.
|
||||||
|
* @global array $wp_importers
|
||||||
|
* @global string $hook_suffix
|
||||||
|
* @global string $plugin_page
|
||||||
|
* @global string $typenow The post type of the current screen.
|
||||||
|
* @global string $taxnow The taxonomy of the current screen.
|
||||||
|
*/
|
||||||
|
global $pagenow, $wp_importers, $hook_suffix, $plugin_page, $typenow, $taxnow;
|
||||||
|
|
||||||
|
$page_hook = null;
|
||||||
|
|
||||||
|
$editing = false;
|
||||||
|
|
||||||
|
if ( isset( $_GET['page'] ) ) {
|
||||||
|
$plugin_page = wp_unslash( $_GET['page'] );
|
||||||
|
$plugin_page = plugin_basename( $plugin_page );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( isset( $_REQUEST['post_type'] ) && post_type_exists( $_REQUEST['post_type'] ) ) {
|
||||||
|
$typenow = $_REQUEST['post_type'];
|
||||||
|
} else {
|
||||||
|
$typenow = '';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( isset( $_REQUEST['taxonomy'] ) && taxonomy_exists( $_REQUEST['taxonomy'] ) ) {
|
||||||
|
$taxnow = $_REQUEST['taxonomy'];
|
||||||
|
} else {
|
||||||
|
$taxnow = '';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( WP_NETWORK_ADMIN ) {
|
||||||
|
require ABSPATH . 'wp-admin/network/menu.php';
|
||||||
|
} elseif ( WP_USER_ADMIN ) {
|
||||||
|
require ABSPATH . 'wp-admin/user/menu.php';
|
||||||
|
} else {
|
||||||
|
require ABSPATH . 'wp-admin/menu.php';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( current_user_can( 'manage_options' ) ) {
|
||||||
|
wp_raise_memory_limit( 'admin' );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fires as an admin screen or script is being initialized.
|
||||||
|
*
|
||||||
|
* Note, this does not just run on user-facing admin screens.
|
||||||
|
* It runs on admin-ajax.php and admin-post.php as well.
|
||||||
|
*
|
||||||
|
* This is roughly analogous to the more general {@see 'init'} hook, which fires earlier.
|
||||||
|
*
|
||||||
|
* @since 2.5.0
|
||||||
|
*/
|
||||||
|
do_action( 'admin_init' );
|
||||||
|
|
||||||
|
if ( isset( $plugin_page ) ) {
|
||||||
|
if ( ! empty( $typenow ) ) {
|
||||||
|
$the_parent = $pagenow . '?post_type=' . $typenow;
|
||||||
|
} else {
|
||||||
|
$the_parent = $pagenow;
|
||||||
|
}
|
||||||
|
|
||||||
|
$page_hook = get_plugin_page_hook( $plugin_page, $the_parent );
|
||||||
|
if ( ! $page_hook ) {
|
||||||
|
$page_hook = get_plugin_page_hook( $plugin_page, $plugin_page );
|
||||||
|
|
||||||
|
// Back-compat for plugins using add_management_page().
|
||||||
|
if ( empty( $page_hook ) && 'edit.php' === $pagenow && get_plugin_page_hook( $plugin_page, 'tools.php' ) ) {
|
||||||
|
// There could be plugin specific params on the URL, so we need the whole query string.
|
||||||
|
if ( ! empty( $_SERVER['QUERY_STRING'] ) ) {
|
||||||
|
$query_string = $_SERVER['QUERY_STRING'];
|
||||||
|
} else {
|
||||||
|
$query_string = 'page=' . $plugin_page;
|
||||||
|
}
|
||||||
|
wp_redirect( admin_url( 'tools.php?' . $query_string ) );
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unset( $the_parent );
|
||||||
|
}
|
||||||
|
|
||||||
|
$hook_suffix = '';
|
||||||
|
if ( isset( $page_hook ) ) {
|
||||||
|
$hook_suffix = $page_hook;
|
||||||
|
} elseif ( isset( $plugin_page ) ) {
|
||||||
|
$hook_suffix = $plugin_page;
|
||||||
|
} elseif ( isset( $pagenow ) ) {
|
||||||
|
$hook_suffix = $pagenow;
|
||||||
|
}
|
||||||
|
|
||||||
|
set_current_screen();
|
||||||
|
|
||||||
|
// Handle plugin admin pages.
|
||||||
|
if ( isset( $plugin_page ) ) {
|
||||||
|
if ( $page_hook ) {
|
||||||
|
/**
|
||||||
|
* Fires before a particular screen is loaded.
|
||||||
|
*
|
||||||
|
* The load-* hook fires in a number of contexts. This hook is for plugin screens
|
||||||
|
* where a callback is provided when the screen is registered.
|
||||||
|
*
|
||||||
|
* The dynamic portion of the hook name, `$page_hook`, refers to a mixture of plugin
|
||||||
|
* page information including:
|
||||||
|
* 1. The page type. If the plugin page is registered as a submenu page, such as for
|
||||||
|
* Settings, the page type would be 'settings'. Otherwise the type is 'toplevel'.
|
||||||
|
* 2. A separator of '_page_'.
|
||||||
|
* 3. The plugin basename minus the file extension.
|
||||||
|
*
|
||||||
|
* Together, the three parts form the `$page_hook`. Citing the example above,
|
||||||
|
* the hook name used would be 'load-settings_page_pluginbasename'.
|
||||||
|
*
|
||||||
|
* @see get_plugin_page_hook()
|
||||||
|
*
|
||||||
|
* @since 2.1.0
|
||||||
|
*/
|
||||||
|
do_action( "load-{$page_hook}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
||||||
|
if ( ! isset( $_GET['noheader'] ) ) {
|
||||||
|
require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Used to call the registered callback for a plugin screen.
|
||||||
|
*
|
||||||
|
* This hook uses a dynamic hook name, `$page_hook`, which refers to a mixture of plugin
|
||||||
|
* page information including:
|
||||||
|
* 1. The page type. If the plugin page is registered as a submenu page, such as for
|
||||||
|
* Settings, the page type would be 'settings'. Otherwise the type is 'toplevel'.
|
||||||
|
* 2. A separator of '_page_'.
|
||||||
|
* 3. The plugin basename minus the file extension.
|
||||||
|
*
|
||||||
|
* Together, the three parts form the `$page_hook`. Citing the example above,
|
||||||
|
* the hook name used would be 'settings_page_pluginbasename'.
|
||||||
|
*
|
||||||
|
* @see get_plugin_page_hook()
|
||||||
|
*
|
||||||
|
* @since 1.5.0
|
||||||
|
*/
|
||||||
|
do_action( $page_hook );
|
||||||
|
} else {
|
||||||
|
if ( validate_file( $plugin_page ) ) {
|
||||||
|
wp_die( __( 'Invalid plugin page.' ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( ! ( file_exists( WP_PLUGIN_DIR . "/$plugin_page" ) && is_file( WP_PLUGIN_DIR . "/$plugin_page" ) )
|
||||||
|
&& ! ( file_exists( WPMU_PLUGIN_DIR . "/$plugin_page" ) && is_file( WPMU_PLUGIN_DIR . "/$plugin_page" ) )
|
||||||
|
) {
|
||||||
|
/* translators: %s: Admin page generated by a plugin. */
|
||||||
|
wp_die( sprintf( __( 'Cannot load %s.' ), htmlentities( $plugin_page ) ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fires before a particular screen is loaded.
|
||||||
|
*
|
||||||
|
* The load-* hook fires in a number of contexts. This hook is for plugin screens
|
||||||
|
* where the file to load is directly included, rather than the use of a function.
|
||||||
|
*
|
||||||
|
* The dynamic portion of the hook name, `$plugin_page`, refers to the plugin basename.
|
||||||
|
*
|
||||||
|
* @see plugin_basename()
|
||||||
|
*
|
||||||
|
* @since 1.5.0
|
||||||
|
*/
|
||||||
|
do_action( "load-{$plugin_page}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
||||||
|
|
||||||
|
if ( ! isset( $_GET['noheader'] ) ) {
|
||||||
|
require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( file_exists( WPMU_PLUGIN_DIR . "/$plugin_page" ) ) {
|
||||||
|
include WPMU_PLUGIN_DIR . "/$plugin_page";
|
||||||
|
} else {
|
||||||
|
include WP_PLUGIN_DIR . "/$plugin_page";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
require_once ABSPATH . 'wp-admin/admin-footer.php';
|
||||||
|
|
||||||
|
exit;
|
||||||
|
} elseif ( isset( $_GET['import'] ) ) {
|
||||||
|
|
||||||
|
$importer = $_GET['import'];
|
||||||
|
|
||||||
|
if ( ! current_user_can( 'import' ) ) {
|
||||||
|
wp_die( __( 'Sorry, you are not allowed to import content into this site.' ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( validate_file( $importer ) ) {
|
||||||
|
wp_redirect( admin_url( 'import.php?invalid=' . $importer ) );
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( ! isset( $wp_importers[ $importer ] ) || ! is_callable( $wp_importers[ $importer ][2] ) ) {
|
||||||
|
wp_redirect( admin_url( 'import.php?invalid=' . $importer ) );
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fires before an importer screen is loaded.
|
||||||
|
*
|
||||||
|
* The dynamic portion of the hook name, `$importer`, refers to the importer slug.
|
||||||
|
*
|
||||||
|
* Possible hook names include:
|
||||||
|
*
|
||||||
|
* - `load-importer-blogger`
|
||||||
|
* - `load-importer-wpcat2tag`
|
||||||
|
* - `load-importer-livejournal`
|
||||||
|
* - `load-importer-mt`
|
||||||
|
* - `load-importer-rss`
|
||||||
|
* - `load-importer-tumblr`
|
||||||
|
* - `load-importer-wordpress`
|
||||||
|
*
|
||||||
|
* @since 3.5.0
|
||||||
|
*/
|
||||||
|
do_action( "load-importer-{$importer}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
||||||
|
|
||||||
|
// Used in the HTML title tag.
|
||||||
|
$title = __( 'Import' );
|
||||||
|
$parent_file = 'tools.php';
|
||||||
|
$submenu_file = 'import.php';
|
||||||
|
|
||||||
|
if ( ! isset( $_GET['noheader'] ) ) {
|
||||||
|
require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||||
|
}
|
||||||
|
|
||||||
|
require_once ABSPATH . 'wp-admin/includes/upgrade.php';
|
||||||
|
|
||||||
|
define( 'WP_IMPORTING', true );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether to filter imported data through kses on import.
|
||||||
|
*
|
||||||
|
* Multisite uses this hook to filter all data through kses by default,
|
||||||
|
* as a super administrator may be assisting an untrusted user.
|
||||||
|
*
|
||||||
|
* @since 3.1.0
|
||||||
|
*
|
||||||
|
* @param bool $force Whether to force data to be filtered through kses. Default false.
|
||||||
|
*/
|
||||||
|
if ( apply_filters( 'force_filtered_html_on_import', false ) ) {
|
||||||
|
kses_init_filters(); // Always filter imported data with kses on multisite.
|
||||||
|
}
|
||||||
|
|
||||||
|
call_user_func( $wp_importers[ $importer ][2] );
|
||||||
|
|
||||||
|
require_once ABSPATH . 'wp-admin/admin-footer.php';
|
||||||
|
|
||||||
|
// Make sure rules are flushed.
|
||||||
|
flush_rewrite_rules( false );
|
||||||
|
|
||||||
|
exit;
|
||||||
|
} else {
|
||||||
|
/**
|
||||||
|
* Fires before a particular screen is loaded.
|
||||||
|
*
|
||||||
|
* The load-* hook fires in a number of contexts. This hook is for core screens.
|
||||||
|
*
|
||||||
|
* The dynamic portion of the hook name, `$pagenow`, is a global variable
|
||||||
|
* referring to the filename of the current screen, such as 'admin.php',
|
||||||
|
* 'post-new.php' etc. A complete hook for the latter would be
|
||||||
|
* 'load-post-new.php'.
|
||||||
|
*
|
||||||
|
* @since 2.1.0
|
||||||
|
*/
|
||||||
|
do_action( "load-{$pagenow}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The following hooks are fired to ensure backward compatibility.
|
||||||
|
* In all other cases, 'load-' . $pagenow should be used instead.
|
||||||
|
*/
|
||||||
|
if ( 'page' === $typenow ) {
|
||||||
|
if ( 'post-new.php' === $pagenow ) {
|
||||||
|
do_action( 'load-page-new.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
||||||
|
} elseif ( 'post.php' === $pagenow ) {
|
||||||
|
do_action( 'load-page.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
||||||
|
}
|
||||||
|
} elseif ( 'edit-tags.php' === $pagenow ) {
|
||||||
|
if ( 'category' === $taxnow ) {
|
||||||
|
do_action( 'load-categories.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
||||||
|
} elseif ( 'link_category' === $taxnow ) {
|
||||||
|
do_action( 'load-edit-link-categories.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
||||||
|
}
|
||||||
|
} elseif ( 'term.php' === $pagenow ) {
|
||||||
|
do_action( 'load-edit-tags.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( ! empty( $_REQUEST['action'] ) ) {
|
||||||
|
$action = $_REQUEST['action'];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fires when an 'action' request variable is sent.
|
||||||
|
*
|
||||||
|
* The dynamic portion of the hook name, `$action`, refers to
|
||||||
|
* the action derived from the `GET` or `POST` request.
|
||||||
|
*
|
||||||
|
* @since 2.6.0
|
||||||
|
*/
|
||||||
|
do_action( "admin_action_{$action}" );
|
||||||
|
}
|
|
@ -0,0 +1,156 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Server-side file upload handler from wp-plupload or other asynchronous upload methods.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Administration
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ( isset( $_REQUEST['action'] ) && 'upload-attachment' === $_REQUEST['action'] ) {
|
||||||
|
define( 'DOING_AJAX', true );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( ! defined( 'WP_ADMIN' ) ) {
|
||||||
|
define( 'WP_ADMIN', true );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( defined( 'ABSPATH' ) ) {
|
||||||
|
require_once ABSPATH . 'wp-load.php';
|
||||||
|
} else {
|
||||||
|
require_once dirname( __DIR__ ) . '/wp-load.php';
|
||||||
|
}
|
||||||
|
|
||||||
|
require_once ABSPATH . 'wp-admin/admin.php';
|
||||||
|
|
||||||
|
header( 'Content-Type: text/plain; charset=' . get_option( 'blog_charset' ) );
|
||||||
|
|
||||||
|
if ( isset( $_REQUEST['action'] ) && 'upload-attachment' === $_REQUEST['action'] ) {
|
||||||
|
require ABSPATH . 'wp-admin/includes/ajax-actions.php';
|
||||||
|
|
||||||
|
send_nosniff_header();
|
||||||
|
nocache_headers();
|
||||||
|
|
||||||
|
wp_ajax_upload_attachment();
|
||||||
|
die( '0' );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( ! current_user_can( 'upload_files' ) ) {
|
||||||
|
wp_die( __( 'Sorry, you are not allowed to upload files.' ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
// Just fetch the detail form for that attachment.
|
||||||
|
if ( isset( $_REQUEST['attachment_id'] ) && (int) $_REQUEST['attachment_id'] && $_REQUEST['fetch'] ) {
|
||||||
|
$id = (int) $_REQUEST['attachment_id'];
|
||||||
|
$post = get_post( $id );
|
||||||
|
if ( 'attachment' !== $post->post_type ) {
|
||||||
|
wp_die( __( 'Invalid post type.' ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
switch ( $_REQUEST['fetch'] ) {
|
||||||
|
case 3:
|
||||||
|
?>
|
||||||
|
<div class="media-item-wrapper">
|
||||||
|
<div class="attachment-details">
|
||||||
|
<?php
|
||||||
|
$thumb_url = wp_get_attachment_image_src( $id, 'thumbnail', true );
|
||||||
|
if ( $thumb_url ) {
|
||||||
|
echo '<img class="pinkynail" src="' . esc_url( $thumb_url[0] ) . '" alt="" />';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Title shouldn't ever be empty, but use filename just in case.
|
||||||
|
$file = get_attached_file( $post->ID );
|
||||||
|
$file_url = wp_get_attachment_url( $post->ID );
|
||||||
|
$title = $post->post_title ? $post->post_title : wp_basename( $file );
|
||||||
|
?>
|
||||||
|
<div class="filename new">
|
||||||
|
<span class="media-list-title"><strong><?php echo esc_html( wp_html_excerpt( $title, 60, '…' ) ); ?></strong></span>
|
||||||
|
<span class="media-list-subtitle"><?php echo wp_basename( $file ); ?></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="attachment-tools">
|
||||||
|
<span class="media-item-copy-container copy-to-clipboard-container edit-attachment">
|
||||||
|
<button type="button" class="button button-small copy-attachment-url" data-clipboard-text="<?php echo $file_url; ?>"><?php _e( 'Copy URL to clipboard' ); ?></button>
|
||||||
|
<span class="success hidden" aria-hidden="true"><?php _e( 'Copied!' ); ?></span>
|
||||||
|
</span>
|
||||||
|
<?php
|
||||||
|
if ( current_user_can( 'edit_post', $id ) ) {
|
||||||
|
echo '<a class="edit-attachment" href="' . esc_url( get_edit_post_link( $id ) ) . '">' . _x( 'Edit', 'media item' ) . '</a>';
|
||||||
|
} else {
|
||||||
|
echo '<span class="edit-attachment">' . _x( 'Success', 'media item' ) . '</span>';
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
add_filter( 'attachment_fields_to_edit', 'media_single_attachment_fields_to_edit', 10, 2 );
|
||||||
|
echo get_media_item(
|
||||||
|
$id,
|
||||||
|
array(
|
||||||
|
'send' => false,
|
||||||
|
'delete' => true,
|
||||||
|
)
|
||||||
|
);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
add_filter( 'attachment_fields_to_edit', 'media_post_single_attachment_fields_to_edit', 10, 2 );
|
||||||
|
echo get_media_item( $id );
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
check_admin_referer( 'media-form' );
|
||||||
|
|
||||||
|
$post_id = 0;
|
||||||
|
if ( isset( $_REQUEST['post_id'] ) ) {
|
||||||
|
$post_id = absint( $_REQUEST['post_id'] );
|
||||||
|
if ( ! get_post( $post_id ) || ! current_user_can( 'edit_post', $post_id ) ) {
|
||||||
|
$post_id = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$id = media_handle_upload( 'async-upload', $post_id );
|
||||||
|
if ( is_wp_error( $id ) ) {
|
||||||
|
printf(
|
||||||
|
'<div class="error-div error">%s <strong>%s</strong><br />%s</div>',
|
||||||
|
sprintf(
|
||||||
|
'<button type="button" class="dismiss button-link" onclick="jQuery(this).parents(\'div.media-item\').slideUp(200, function(){jQuery(this).remove();});">%s</button>',
|
||||||
|
__( 'Dismiss' )
|
||||||
|
),
|
||||||
|
sprintf(
|
||||||
|
/* translators: %s: Name of the file that failed to upload. */
|
||||||
|
__( '“%s” has failed to upload.' ),
|
||||||
|
esc_html( $_FILES['async-upload']['name'] )
|
||||||
|
),
|
||||||
|
esc_html( $id->get_error_message() )
|
||||||
|
);
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( $_REQUEST['short'] ) {
|
||||||
|
// Short form response - attachment ID only.
|
||||||
|
echo $id;
|
||||||
|
} else {
|
||||||
|
// Long form response - big chunk of HTML.
|
||||||
|
$type = $_REQUEST['type'];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filters the returned ID of an uploaded attachment.
|
||||||
|
*
|
||||||
|
* The dynamic portion of the hook name, `$type`, refers to the attachment type.
|
||||||
|
*
|
||||||
|
* Possible hook names include:
|
||||||
|
*
|
||||||
|
* - `async_upload_audio`
|
||||||
|
* - `async_upload_file`
|
||||||
|
* - `async_upload_image`
|
||||||
|
* - `async_upload_video`
|
||||||
|
*
|
||||||
|
* @since 2.5.0
|
||||||
|
*
|
||||||
|
* @param int $id Uploaded attachment ID.
|
||||||
|
*/
|
||||||
|
echo apply_filters( "async_upload_{$type}", $id );
|
||||||
|
}
|
|
@ -0,0 +1,325 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Authorize Application Screen
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Administration
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** WordPress Administration Bootstrap */
|
||||||
|
require_once __DIR__ . '/admin.php';
|
||||||
|
|
||||||
|
$error = null;
|
||||||
|
$new_password = '';
|
||||||
|
|
||||||
|
// This is the no-js fallback script. Generally this will all be handled by `auth-app.js`.
|
||||||
|
if ( isset( $_POST['action'] ) && 'authorize_application_password' === $_POST['action'] ) {
|
||||||
|
check_admin_referer( 'authorize_application_password' );
|
||||||
|
|
||||||
|
$success_url = $_POST['success_url'];
|
||||||
|
$reject_url = $_POST['reject_url'];
|
||||||
|
$app_name = $_POST['app_name'];
|
||||||
|
$app_id = $_POST['app_id'];
|
||||||
|
$redirect = '';
|
||||||
|
|
||||||
|
if ( isset( $_POST['reject'] ) ) {
|
||||||
|
if ( $reject_url ) {
|
||||||
|
$redirect = $reject_url;
|
||||||
|
} else {
|
||||||
|
$redirect = admin_url();
|
||||||
|
}
|
||||||
|
} elseif ( isset( $_POST['approve'] ) ) {
|
||||||
|
$created = WP_Application_Passwords::create_new_application_password(
|
||||||
|
get_current_user_id(),
|
||||||
|
array(
|
||||||
|
'name' => $app_name,
|
||||||
|
'app_id' => $app_id,
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
if ( is_wp_error( $created ) ) {
|
||||||
|
$error = $created;
|
||||||
|
} else {
|
||||||
|
list( $new_password ) = $created;
|
||||||
|
|
||||||
|
if ( $success_url ) {
|
||||||
|
$redirect = add_query_arg(
|
||||||
|
array(
|
||||||
|
'site_url' => urlencode( site_url() ),
|
||||||
|
'user_login' => urlencode( wp_get_current_user()->user_login ),
|
||||||
|
'password' => urlencode( $new_password ),
|
||||||
|
),
|
||||||
|
$success_url
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( $redirect ) {
|
||||||
|
// Explicitly not using wp_safe_redirect b/c sends to arbitrary domain.
|
||||||
|
wp_redirect( $redirect );
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Used in the HTML title tag.
|
||||||
|
$title = __( 'Authorize Application' );
|
||||||
|
|
||||||
|
$app_name = ! empty( $_REQUEST['app_name'] ) ? $_REQUEST['app_name'] : '';
|
||||||
|
$app_id = ! empty( $_REQUEST['app_id'] ) ? $_REQUEST['app_id'] : '';
|
||||||
|
$success_url = ! empty( $_REQUEST['success_url'] ) ? $_REQUEST['success_url'] : null;
|
||||||
|
|
||||||
|
if ( ! empty( $_REQUEST['reject_url'] ) ) {
|
||||||
|
$reject_url = $_REQUEST['reject_url'];
|
||||||
|
} elseif ( $success_url ) {
|
||||||
|
$reject_url = add_query_arg( 'success', 'false', $success_url );
|
||||||
|
} else {
|
||||||
|
$reject_url = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
$user = wp_get_current_user();
|
||||||
|
|
||||||
|
$request = compact( 'app_name', 'app_id', 'success_url', 'reject_url' );
|
||||||
|
$is_valid = wp_is_authorize_application_password_request_valid( $request, $user );
|
||||||
|
|
||||||
|
if ( is_wp_error( $is_valid ) ) {
|
||||||
|
wp_die(
|
||||||
|
__( 'The Authorize Application request is not allowed.' ) . ' ' . implode( ' ', $is_valid->get_error_messages() ),
|
||||||
|
__( 'Cannot Authorize Application' )
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( wp_is_site_protected_by_basic_auth( 'front' ) ) {
|
||||||
|
wp_die(
|
||||||
|
__( 'Your website appears to use Basic Authentication, which is not currently compatible with application passwords.' ),
|
||||||
|
__( 'Cannot Authorize Application' ),
|
||||||
|
array(
|
||||||
|
'response' => 501,
|
||||||
|
'link_text' => __( 'Go Back' ),
|
||||||
|
'link_url' => $reject_url ? add_query_arg( 'error', 'disabled', $reject_url ) : admin_url(),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( ! wp_is_application_passwords_available_for_user( $user ) ) {
|
||||||
|
if ( wp_is_application_passwords_available() ) {
|
||||||
|
$message = __( 'Application passwords are not available for your account. Please contact the site administrator for assistance.' );
|
||||||
|
} else {
|
||||||
|
$message = __( 'Application passwords are not available.' );
|
||||||
|
}
|
||||||
|
|
||||||
|
wp_die(
|
||||||
|
$message,
|
||||||
|
__( 'Cannot Authorize Application' ),
|
||||||
|
array(
|
||||||
|
'response' => 501,
|
||||||
|
'link_text' => __( 'Go Back' ),
|
||||||
|
'link_url' => $reject_url ? add_query_arg( 'error', 'disabled', $reject_url ) : admin_url(),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
wp_enqueue_script( 'auth-app' );
|
||||||
|
wp_localize_script(
|
||||||
|
'auth-app',
|
||||||
|
'authApp',
|
||||||
|
array(
|
||||||
|
'site_url' => site_url(),
|
||||||
|
'user_login' => $user->user_login,
|
||||||
|
'success' => $success_url,
|
||||||
|
'reject' => $reject_url ? $reject_url : admin_url(),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||||
|
|
||||||
|
?>
|
||||||
|
<div class="wrap">
|
||||||
|
<h1><?php echo esc_html( $title ); ?></h1>
|
||||||
|
|
||||||
|
<?php if ( is_wp_error( $error ) ) : ?>
|
||||||
|
<div class="notice notice-error"><p><?php echo $error->get_error_message(); ?></p></div>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<div class="card auth-app-card">
|
||||||
|
<h2 class="title"><?php _e( 'An application would like to connect to your account.' ); ?></h2>
|
||||||
|
<?php if ( $app_name ) : ?>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: Application name. */
|
||||||
|
__( 'Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the application in question.' ),
|
||||||
|
'<strong>' . esc_html( $app_name ) . '</strong>'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
<?php else : ?>
|
||||||
|
<p><?php _e( 'Would you like to give this application access to your account? You should only do this if you trust the application in question.' ); ?></p>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
if ( is_multisite() ) {
|
||||||
|
$blogs = get_blogs_of_user( $user->ID, true );
|
||||||
|
$blogs_count = count( $blogs );
|
||||||
|
|
||||||
|
if ( $blogs_count > 1 ) {
|
||||||
|
?>
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
/* translators: 1: URL to my-sites.php, 2: Number of sites the user has. */
|
||||||
|
$message = _n(
|
||||||
|
'This will grant access to <a href="%1$s">the %2$s site in this installation that you have permissions on</a>.',
|
||||||
|
'This will grant access to <a href="%1$s">all %2$s sites in this installation that you have permissions on</a>.',
|
||||||
|
$blogs_count
|
||||||
|
);
|
||||||
|
|
||||||
|
if ( is_super_admin() ) {
|
||||||
|
/* translators: 1: URL to my-sites.php, 2: Number of sites the user has. */
|
||||||
|
$message = _n(
|
||||||
|
'This will grant access to <a href="%1$s">the %2$s site on the network as you have Super Admin rights</a>.',
|
||||||
|
'This will grant access to <a href="%1$s">all %2$s sites on the network as you have Super Admin rights</a>.',
|
||||||
|
$blogs_count
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
printf(
|
||||||
|
$message,
|
||||||
|
admin_url( 'my-sites.php' ),
|
||||||
|
number_format_i18n( $blogs_count )
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
|
<?php if ( $new_password ) : ?>
|
||||||
|
<div class="notice notice-success notice-alt below-h2">
|
||||||
|
<p class="application-password-display">
|
||||||
|
<label for="new-application-password-value">
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: Application name. */
|
||||||
|
esc_html__( 'Your new password for %s is:' ),
|
||||||
|
'<strong>' . esc_html( $app_name ) . '</strong>'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</label>
|
||||||
|
<input id="new-application-password-value" type="text" class="code" readonly="readonly" value="<?php esc_attr( WP_Application_Passwords::chunk_password( $new_password ) ); ?>" />
|
||||||
|
</p>
|
||||||
|
<p><?php _e( 'Be sure to save this in a safe location. You will not be able to retrieve it.' ); ?></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Fires in the Authorize Application Password new password section in the no-JS version.
|
||||||
|
*
|
||||||
|
* In most cases, this should be used in combination with the {@see 'wp_application_passwords_approve_app_request_success'}
|
||||||
|
* action to ensure that both the JS and no-JS variants are handled.
|
||||||
|
*
|
||||||
|
* @since 5.6.0
|
||||||
|
* @since 5.6.1 Corrected action name and signature.
|
||||||
|
*
|
||||||
|
* @param string $new_password The newly generated application password.
|
||||||
|
* @param array $request The array of request data. All arguments are optional and may be empty.
|
||||||
|
* @param WP_User $user The user authorizing the application.
|
||||||
|
*/
|
||||||
|
do_action( 'wp_authorize_application_password_form_approved_no_js', $new_password, $request, $user );
|
||||||
|
?>
|
||||||
|
<?php else : ?>
|
||||||
|
<form action="<?php echo esc_url( admin_url( 'authorize-application.php' ) ); ?>" method="post" class="form-wrap">
|
||||||
|
<?php wp_nonce_field( 'authorize_application_password' ); ?>
|
||||||
|
<input type="hidden" name="action" value="authorize_application_password" />
|
||||||
|
<input type="hidden" name="app_id" value="<?php echo esc_attr( $app_id ); ?>" />
|
||||||
|
<input type="hidden" name="success_url" value="<?php echo esc_url( $success_url ); ?>" />
|
||||||
|
<input type="hidden" name="reject_url" value="<?php echo esc_url( $reject_url ); ?>" />
|
||||||
|
|
||||||
|
<div class="form-field">
|
||||||
|
<label for="app_name"><?php _e( 'New Application Password Name' ); ?></label>
|
||||||
|
<input type="text" id="app_name" name="app_name" value="<?php echo esc_attr( $app_name ); ?>" required />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Fires in the Authorize Application Password form before the submit buttons.
|
||||||
|
*
|
||||||
|
* @since 5.6.0
|
||||||
|
*
|
||||||
|
* @param array $request {
|
||||||
|
* The array of request data. All arguments are optional and may be empty.
|
||||||
|
*
|
||||||
|
* @type string $app_name The suggested name of the application.
|
||||||
|
* @type string $success_url The URL the user will be redirected to after approving the application.
|
||||||
|
* @type string $reject_url The URL the user will be redirected to after rejecting the application.
|
||||||
|
* }
|
||||||
|
* @param WP_User $user The user authorizing the application.
|
||||||
|
*/
|
||||||
|
do_action( 'wp_authorize_application_password_form', $request, $user );
|
||||||
|
?>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
submit_button(
|
||||||
|
__( 'Yes, I approve of this connection' ),
|
||||||
|
'primary',
|
||||||
|
'approve',
|
||||||
|
false,
|
||||||
|
array(
|
||||||
|
'aria-describedby' => 'description-approve',
|
||||||
|
)
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
<p class="description" id="description-approve">
|
||||||
|
<?php
|
||||||
|
if ( $success_url ) {
|
||||||
|
printf(
|
||||||
|
/* translators: %s: The URL the user is being redirected to. */
|
||||||
|
__( 'You will be sent to %s' ),
|
||||||
|
'<strong><code>' . esc_html(
|
||||||
|
add_query_arg(
|
||||||
|
array(
|
||||||
|
'site_url' => site_url(),
|
||||||
|
'user_login' => $user->user_login,
|
||||||
|
'password' => '[------]',
|
||||||
|
),
|
||||||
|
$success_url
|
||||||
|
)
|
||||||
|
) . '</code></strong>'
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
_e( 'You will be given a password to manually enter into the application in question.' );
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
submit_button(
|
||||||
|
__( 'No, I do not approve of this connection' ),
|
||||||
|
'secondary',
|
||||||
|
'reject',
|
||||||
|
false,
|
||||||
|
array(
|
||||||
|
'aria-describedby' => 'description-reject',
|
||||||
|
)
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
<p class="description" id="description-reject">
|
||||||
|
<?php
|
||||||
|
if ( $reject_url ) {
|
||||||
|
printf(
|
||||||
|
/* translators: %s: The URL the user is being redirected to. */
|
||||||
|
__( 'You will be sent to %s' ),
|
||||||
|
'<strong><code>' . esc_html( $reject_url ) . '</code></strong>'
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
_e( 'You will be returned to the WordPress Dashboard, and no changes will be made.' );
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</form>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php
|
||||||
|
|
||||||
|
require_once ABSPATH . 'wp-admin/admin-footer.php';
|
|
@ -0,0 +1,374 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Comment Management Screen
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Administration
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** Load WordPress Bootstrap */
|
||||||
|
require_once __DIR__ . '/admin.php';
|
||||||
|
|
||||||
|
$parent_file = 'edit-comments.php';
|
||||||
|
$submenu_file = 'edit-comments.php';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @global string $action
|
||||||
|
*/
|
||||||
|
global $action;
|
||||||
|
wp_reset_vars( array( 'action' ) );
|
||||||
|
|
||||||
|
if ( isset( $_POST['deletecomment'] ) ) {
|
||||||
|
$action = 'deletecomment';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( 'cdc' === $action ) {
|
||||||
|
$action = 'delete';
|
||||||
|
} elseif ( 'mac' === $action ) {
|
||||||
|
$action = 'approve';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( isset( $_GET['dt'] ) ) {
|
||||||
|
if ( 'spam' === $_GET['dt'] ) {
|
||||||
|
$action = 'spam';
|
||||||
|
} elseif ( 'trash' === $_GET['dt'] ) {
|
||||||
|
$action = 'trash';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( isset( $_REQUEST['c'] ) ) {
|
||||||
|
$comment_id = absint( $_REQUEST['c'] );
|
||||||
|
$comment = get_comment( $comment_id );
|
||||||
|
|
||||||
|
// Prevent actions on a comment associated with a trashed post.
|
||||||
|
if ( $comment && 'trash' === get_post_status( $comment->comment_post_ID ) ) {
|
||||||
|
wp_die(
|
||||||
|
__( 'You cannot edit this comment because the associated post is in the Trash. Please restore the post first, then try again.' )
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$comment = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch ( $action ) {
|
||||||
|
|
||||||
|
case 'editcomment':
|
||||||
|
// Used in the HTML title tag.
|
||||||
|
$title = __( 'Edit Comment' );
|
||||||
|
|
||||||
|
get_current_screen()->add_help_tab(
|
||||||
|
array(
|
||||||
|
'id' => 'overview',
|
||||||
|
'title' => __( 'Overview' ),
|
||||||
|
'content' =>
|
||||||
|
'<p>' . __( 'You can edit the information left in a comment if needed. This is often useful when you notice that a commenter has made a typographical error.' ) . '</p>' .
|
||||||
|
'<p>' . __( 'You can also moderate the comment from this screen using the Status box, where you can also change the timestamp of the comment.' ) . '</p>',
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
get_current_screen()->set_help_sidebar(
|
||||||
|
'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
|
||||||
|
'<p>' . __( '<a href="https://wordpress.org/support/article/comments-screen/">Documentation on Comments</a>' ) . '</p>' .
|
||||||
|
'<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>'
|
||||||
|
);
|
||||||
|
|
||||||
|
wp_enqueue_script( 'comment' );
|
||||||
|
require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||||
|
|
||||||
|
if ( ! $comment ) {
|
||||||
|
comment_footer_die( __( 'Invalid comment ID.' ) . sprintf( ' <a href="%s">' . __( 'Go back' ) . '</a>.', 'javascript:history.go(-1)' ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( ! current_user_can( 'edit_comment', $comment_id ) ) {
|
||||||
|
comment_footer_die( __( 'Sorry, you are not allowed to edit this comment.' ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( 'trash' === $comment->comment_approved ) {
|
||||||
|
comment_footer_die( __( 'This comment is in the Trash. Please move it out of the Trash if you want to edit it.' ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
$comment = get_comment_to_edit( $comment_id );
|
||||||
|
|
||||||
|
require ABSPATH . 'wp-admin/edit-form-comment.php';
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'delete':
|
||||||
|
case 'approve':
|
||||||
|
case 'trash':
|
||||||
|
case 'spam':
|
||||||
|
// Used in the HTML title tag.
|
||||||
|
$title = __( 'Moderate Comment' );
|
||||||
|
|
||||||
|
if ( ! $comment ) {
|
||||||
|
wp_redirect( admin_url( 'edit-comments.php?error=1' ) );
|
||||||
|
die();
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( ! current_user_can( 'edit_comment', $comment->comment_ID ) ) {
|
||||||
|
wp_redirect( admin_url( 'edit-comments.php?error=2' ) );
|
||||||
|
die();
|
||||||
|
}
|
||||||
|
|
||||||
|
// No need to re-approve/re-trash/re-spam a comment.
|
||||||
|
if ( str_replace( '1', 'approve', $comment->comment_approved ) === $action ) {
|
||||||
|
wp_redirect( admin_url( 'edit-comments.php?same=' . $comment_id ) );
|
||||||
|
die();
|
||||||
|
}
|
||||||
|
|
||||||
|
require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||||
|
|
||||||
|
$formaction = $action . 'comment';
|
||||||
|
$nonce_action = ( 'approve' === $action ) ? 'approve-comment_' : 'delete-comment_';
|
||||||
|
$nonce_action .= $comment_id;
|
||||||
|
|
||||||
|
?>
|
||||||
|
<div class="wrap">
|
||||||
|
|
||||||
|
<h1><?php echo esc_html( $title ); ?></h1>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
switch ( $action ) {
|
||||||
|
case 'spam':
|
||||||
|
$caution_msg = __( 'You are about to mark the following comment as spam:' );
|
||||||
|
$button = _x( 'Mark as spam', 'comment' );
|
||||||
|
break;
|
||||||
|
case 'trash':
|
||||||
|
$caution_msg = __( 'You are about to move the following comment to the Trash:' );
|
||||||
|
$button = __( 'Move to Trash' );
|
||||||
|
break;
|
||||||
|
case 'delete':
|
||||||
|
$caution_msg = __( 'You are about to delete the following comment:' );
|
||||||
|
$button = __( 'Permanently delete comment' );
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
$caution_msg = __( 'You are about to approve the following comment:' );
|
||||||
|
$button = __( 'Approve comment' );
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( '0' !== $comment->comment_approved ) { // If not unapproved.
|
||||||
|
$message = '';
|
||||||
|
switch ( $comment->comment_approved ) {
|
||||||
|
case '1':
|
||||||
|
$message = __( 'This comment is currently approved.' );
|
||||||
|
break;
|
||||||
|
case 'spam':
|
||||||
|
$message = __( 'This comment is currently marked as spam.' );
|
||||||
|
break;
|
||||||
|
case 'trash':
|
||||||
|
$message = __( 'This comment is currently in the Trash.' );
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if ( $message ) {
|
||||||
|
echo '<div id="message" class="notice notice-info"><p>' . $message . '</p></div>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
<div id="message" class="notice notice-warning"><p><strong><?php _e( 'Caution:' ); ?></strong> <?php echo $caution_msg; ?></p></div>
|
||||||
|
|
||||||
|
<table class="form-table comment-ays">
|
||||||
|
<tr>
|
||||||
|
<th scope="row"><?php _e( 'Author' ); ?></th>
|
||||||
|
<td><?php comment_author( $comment ); ?></td>
|
||||||
|
</tr>
|
||||||
|
<?php if ( get_comment_author_email( $comment ) ) { ?>
|
||||||
|
<tr>
|
||||||
|
<th scope="row"><?php _e( 'Email' ); ?></th>
|
||||||
|
<td><?php comment_author_email( $comment ); ?></td>
|
||||||
|
</tr>
|
||||||
|
<?php } ?>
|
||||||
|
<?php if ( get_comment_author_url( $comment ) ) { ?>
|
||||||
|
<tr>
|
||||||
|
<th scope="row"><?php _e( 'URL' ); ?></th>
|
||||||
|
<td><a href="<?php comment_author_url( $comment ); ?>"><?php comment_author_url( $comment ); ?></a></td>
|
||||||
|
</tr>
|
||||||
|
<?php } ?>
|
||||||
|
<tr>
|
||||||
|
<th scope="row"><?php /* translators: Column name or table row header. */ _e( 'In response to' ); ?></th>
|
||||||
|
<td>
|
||||||
|
<?php
|
||||||
|
$post_id = $comment->comment_post_ID;
|
||||||
|
if ( current_user_can( 'edit_post', $post_id ) ) {
|
||||||
|
$post_link = "<a href='" . esc_url( get_edit_post_link( $post_id ) ) . "'>";
|
||||||
|
$post_link .= esc_html( get_the_title( $post_id ) ) . '</a>';
|
||||||
|
} else {
|
||||||
|
$post_link = esc_html( get_the_title( $post_id ) );
|
||||||
|
}
|
||||||
|
echo $post_link;
|
||||||
|
|
||||||
|
if ( $comment->comment_parent ) {
|
||||||
|
$parent = get_comment( $comment->comment_parent );
|
||||||
|
$parent_link = esc_url( get_comment_link( $parent ) );
|
||||||
|
$name = get_comment_author( $parent );
|
||||||
|
printf(
|
||||||
|
/* translators: %s: Comment link. */
|
||||||
|
' | ' . __( 'In reply to %s.' ),
|
||||||
|
'<a href="' . $parent_link . '">' . $name . '</a>'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th scope="row"><?php _e( 'Submitted on' ); ?></th>
|
||||||
|
<td>
|
||||||
|
<?php
|
||||||
|
$submitted = sprintf(
|
||||||
|
/* translators: 1: Comment date, 2: Comment time. */
|
||||||
|
__( '%1$s at %2$s' ),
|
||||||
|
/* translators: Comment date format. See https://www.php.net/manual/datetime.format.php */
|
||||||
|
get_comment_date( __( 'Y/m/d' ), $comment ),
|
||||||
|
/* translators: Comment time format. See https://www.php.net/manual/datetime.format.php */
|
||||||
|
get_comment_date( __( 'g:i a' ), $comment )
|
||||||
|
);
|
||||||
|
if ( 'approved' === wp_get_comment_status( $comment ) && ! empty( $comment->comment_post_ID ) ) {
|
||||||
|
echo '<a href="' . esc_url( get_comment_link( $comment ) ) . '">' . $submitted . '</a>';
|
||||||
|
} else {
|
||||||
|
echo $submitted;
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th scope="row"><?php /* translators: Field name in comment form. */ _ex( 'Comment', 'noun' ); ?></th>
|
||||||
|
<td class="comment-content">
|
||||||
|
<?php comment_text( $comment ); ?>
|
||||||
|
<p class="edit-comment">
|
||||||
|
<a href="<?php echo esc_url( admin_url( "comment.php?action=editcomment&c={$comment->comment_ID}" ) ); ?>"><?php esc_html_e( 'Edit' ); ?></a>
|
||||||
|
</p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<form action="comment.php" method="get" class="comment-ays-submit">
|
||||||
|
<p>
|
||||||
|
<?php submit_button( $button, 'primary', 'submit', false ); ?>
|
||||||
|
<a href="<?php echo esc_url( admin_url( 'edit-comments.php' ) ); ?>" class="button-cancel"><?php esc_html_e( 'Cancel' ); ?></a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<?php wp_nonce_field( $nonce_action ); ?>
|
||||||
|
<input type="hidden" name="action" value="<?php echo esc_attr( $formaction ); ?>" />
|
||||||
|
<input type="hidden" name="c" value="<?php echo esc_attr( $comment->comment_ID ); ?>" />
|
||||||
|
<input type="hidden" name="noredir" value="1" />
|
||||||
|
</form>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<?php
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'deletecomment':
|
||||||
|
case 'trashcomment':
|
||||||
|
case 'untrashcomment':
|
||||||
|
case 'spamcomment':
|
||||||
|
case 'unspamcomment':
|
||||||
|
case 'approvecomment':
|
||||||
|
case 'unapprovecomment':
|
||||||
|
$comment_id = absint( $_REQUEST['c'] );
|
||||||
|
|
||||||
|
if ( in_array( $action, array( 'approvecomment', 'unapprovecomment' ), true ) ) {
|
||||||
|
check_admin_referer( 'approve-comment_' . $comment_id );
|
||||||
|
} else {
|
||||||
|
check_admin_referer( 'delete-comment_' . $comment_id );
|
||||||
|
}
|
||||||
|
|
||||||
|
$noredir = isset( $_REQUEST['noredir'] );
|
||||||
|
|
||||||
|
$comment = get_comment( $comment_id );
|
||||||
|
if ( ! $comment ) {
|
||||||
|
comment_footer_die( __( 'Invalid comment ID.' ) . sprintf( ' <a href="%s">' . __( 'Go back' ) . '</a>.', 'edit-comments.php' ) );
|
||||||
|
}
|
||||||
|
if ( ! current_user_can( 'edit_comment', $comment->comment_ID ) ) {
|
||||||
|
comment_footer_die( __( 'Sorry, you are not allowed to edit comments on this post.' ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( wp_get_referer() && ! $noredir && false === strpos( wp_get_referer(), 'comment.php' ) ) {
|
||||||
|
$redir = wp_get_referer();
|
||||||
|
} elseif ( wp_get_original_referer() && ! $noredir ) {
|
||||||
|
$redir = wp_get_original_referer();
|
||||||
|
} elseif ( in_array( $action, array( 'approvecomment', 'unapprovecomment' ), true ) ) {
|
||||||
|
$redir = admin_url( 'edit-comments.php?p=' . absint( $comment->comment_post_ID ) );
|
||||||
|
} else {
|
||||||
|
$redir = admin_url( 'edit-comments.php' );
|
||||||
|
}
|
||||||
|
|
||||||
|
$redir = remove_query_arg( array( 'spammed', 'unspammed', 'trashed', 'untrashed', 'deleted', 'ids', 'approved', 'unapproved' ), $redir );
|
||||||
|
|
||||||
|
switch ( $action ) {
|
||||||
|
case 'deletecomment':
|
||||||
|
wp_delete_comment( $comment );
|
||||||
|
$redir = add_query_arg( array( 'deleted' => '1' ), $redir );
|
||||||
|
break;
|
||||||
|
case 'trashcomment':
|
||||||
|
wp_trash_comment( $comment );
|
||||||
|
$redir = add_query_arg(
|
||||||
|
array(
|
||||||
|
'trashed' => '1',
|
||||||
|
'ids' => $comment_id,
|
||||||
|
),
|
||||||
|
$redir
|
||||||
|
);
|
||||||
|
break;
|
||||||
|
case 'untrashcomment':
|
||||||
|
wp_untrash_comment( $comment );
|
||||||
|
$redir = add_query_arg( array( 'untrashed' => '1' ), $redir );
|
||||||
|
break;
|
||||||
|
case 'spamcomment':
|
||||||
|
wp_spam_comment( $comment );
|
||||||
|
$redir = add_query_arg(
|
||||||
|
array(
|
||||||
|
'spammed' => '1',
|
||||||
|
'ids' => $comment_id,
|
||||||
|
),
|
||||||
|
$redir
|
||||||
|
);
|
||||||
|
break;
|
||||||
|
case 'unspamcomment':
|
||||||
|
wp_unspam_comment( $comment );
|
||||||
|
$redir = add_query_arg( array( 'unspammed' => '1' ), $redir );
|
||||||
|
break;
|
||||||
|
case 'approvecomment':
|
||||||
|
wp_set_comment_status( $comment, 'approve' );
|
||||||
|
$redir = add_query_arg( array( 'approved' => 1 ), $redir );
|
||||||
|
break;
|
||||||
|
case 'unapprovecomment':
|
||||||
|
wp_set_comment_status( $comment, 'hold' );
|
||||||
|
$redir = add_query_arg( array( 'unapproved' => 1 ), $redir );
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
wp_redirect( $redir );
|
||||||
|
die;
|
||||||
|
|
||||||
|
case 'editedcomment':
|
||||||
|
$comment_id = absint( $_POST['comment_ID'] );
|
||||||
|
$comment_post_id = absint( $_POST['comment_post_ID'] );
|
||||||
|
|
||||||
|
check_admin_referer( 'update-comment_' . $comment_id );
|
||||||
|
|
||||||
|
$updated = edit_comment();
|
||||||
|
if ( is_wp_error( $updated ) ) {
|
||||||
|
wp_die( $updated->get_error_message() );
|
||||||
|
}
|
||||||
|
|
||||||
|
$location = ( empty( $_POST['referredby'] ) ? "edit-comments.php?p=$comment_post_id" : $_POST['referredby'] ) . '#comment-' . $comment_id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filters the URI the user is redirected to after editing a comment in the admin.
|
||||||
|
*
|
||||||
|
* @since 2.1.0
|
||||||
|
*
|
||||||
|
* @param string $location The URI the user will be redirected to.
|
||||||
|
* @param int $comment_id The ID of the comment being edited.
|
||||||
|
*/
|
||||||
|
$location = apply_filters( 'comment_edit_redirect', $location, $comment_id );
|
||||||
|
|
||||||
|
wp_redirect( $location );
|
||||||
|
exit;
|
||||||
|
|
||||||
|
default:
|
||||||
|
wp_die( __( 'Unknown action.' ) );
|
||||||
|
|
||||||
|
} // End switch.
|
||||||
|
|
||||||
|
require_once ABSPATH . 'wp-admin/admin-footer.php';
|
|
@ -0,0 +1,142 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Credits administration panel.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Administration
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** WordPress Administration Bootstrap */
|
||||||
|
require_once __DIR__ . '/admin.php';
|
||||||
|
require_once __DIR__ . '/includes/credits.php';
|
||||||
|
|
||||||
|
// Used in the HTML title tag.
|
||||||
|
$title = __( 'Credits' );
|
||||||
|
|
||||||
|
list( $display_version ) = explode( '-', get_bloginfo( 'version' ) );
|
||||||
|
|
||||||
|
require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||||
|
|
||||||
|
$credits = wp_credits();
|
||||||
|
?>
|
||||||
|
<div class="wrap about__container">
|
||||||
|
|
||||||
|
<div class="about__header">
|
||||||
|
<div class="about__header-title">
|
||||||
|
<h1>
|
||||||
|
<?php _e( 'Contributors' ); ?>
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="about__header-text">
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: Version number. */
|
||||||
|
__( 'WordPress %s was created by a worldwide team of passionate individuals' ),
|
||||||
|
$display_version
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>">
|
||||||
|
<a href="about.php" class="nav-tab"><?php _e( 'What’s New' ); ?></a>
|
||||||
|
<a href="credits.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Credits' ); ?></a>
|
||||||
|
<a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a>
|
||||||
|
<a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="about__section has-1-column has-gutters">
|
||||||
|
<div class="column aligncenter">
|
||||||
|
<?php if ( ! $credits ) : ?>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: 1: https://wordpress.org/about/ */
|
||||||
|
__( 'WordPress is created by a <a href="%1$s">worldwide team</a> of passionate individuals.' ),
|
||||||
|
__( 'https://wordpress.org/about/' )
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
<br />
|
||||||
|
<a href="https://make.wordpress.org/"><?php _e( 'Get involved in WordPress.' ); ?></a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<?php else : ?>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<?php _e( 'Want to see your name in lights on this page?' ); ?>
|
||||||
|
<br />
|
||||||
|
<a href="https://make.wordpress.org/"><?php _e( 'Get involved in WordPress.' ); ?></a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
if ( ! $credits ) {
|
||||||
|
echo '</div>';
|
||||||
|
require_once ABSPATH . 'wp-admin/admin-footer.php';
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
|
<hr class="is-large" />
|
||||||
|
|
||||||
|
<div class="about__section">
|
||||||
|
<div class="column is-edge-to-edge">
|
||||||
|
<?php wp_credits_section_title( $credits['groups']['core-developers'] ); ?>
|
||||||
|
<?php wp_credits_section_list( $credits, 'core-developers' ); ?>
|
||||||
|
<?php wp_credits_section_list( $credits, 'contributing-developers' ); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
<div class="about__section">
|
||||||
|
<div class="column">
|
||||||
|
<?php wp_credits_section_title( $credits['groups']['props'] ); ?>
|
||||||
|
<?php wp_credits_section_list( $credits, 'props' ); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
<?php if ( isset( $credits['groups']['translators'] ) || isset( $credits['groups']['validators'] ) ) : ?>
|
||||||
|
<div class="about__section">
|
||||||
|
<div class="column">
|
||||||
|
<?php wp_credits_section_title( $credits['groups']['validators'] ); ?>
|
||||||
|
<?php wp_credits_section_list( $credits, 'validators' ); ?>
|
||||||
|
<?php wp_credits_section_list( $credits, 'translators' ); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<div class="about__section">
|
||||||
|
<div class="column">
|
||||||
|
<?php wp_credits_section_title( $credits['groups']['libraries'] ); ?>
|
||||||
|
<?php wp_credits_section_list( $credits, 'libraries' ); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php
|
||||||
|
|
||||||
|
require_once ABSPATH . 'wp-admin/admin-footer.php';
|
||||||
|
|
||||||
|
return;
|
||||||
|
|
||||||
|
// These are strings returned by the API that we want to be translatable.
|
||||||
|
__( 'Project Leaders' );
|
||||||
|
/* translators: %s: The current WordPress version number. */
|
||||||
|
__( 'Core Contributors to WordPress %s' );
|
||||||
|
__( 'Noteworthy Contributors' );
|
||||||
|
__( 'Cofounder, Project Lead' );
|
||||||
|
__( 'Lead Developer' );
|
||||||
|
__( 'Release Lead' );
|
||||||
|
__( 'Release Design Lead' );
|
||||||
|
__( 'Release Deputy' );
|
||||||
|
__( 'Core Developer' );
|
||||||
|
__( 'External Libraries' );
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,858 @@
|
||||||
|
/*! This file is auto-generated */
|
||||||
|
#adminmenuback,
|
||||||
|
#adminmenuwrap,
|
||||||
|
#adminmenu,
|
||||||
|
#adminmenu .wp-submenu {
|
||||||
|
width: 160px;
|
||||||
|
background-color: #1d2327;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenuback {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
bottom: -120px;
|
||||||
|
z-index: 1; /* positive z-index to avoid elastic scrolling woes in Safari */
|
||||||
|
}
|
||||||
|
|
||||||
|
.php-error #adminmenuback {
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
.php-error #adminmenuback,
|
||||||
|
.php-error #adminmenuwrap {
|
||||||
|
margin-top: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu {
|
||||||
|
clear: right;
|
||||||
|
margin: 12px 0;
|
||||||
|
padding: 0;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded #adminmenuback,
|
||||||
|
.folded #adminmenuwrap,
|
||||||
|
.folded #adminmenu,
|
||||||
|
.folded #adminmenu li.menu-top {
|
||||||
|
width: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* New Menu icons */
|
||||||
|
|
||||||
|
/* hide background-image for icons above */
|
||||||
|
.menu-icon-dashboard div.wp-menu-image,
|
||||||
|
.menu-icon-post div.wp-menu-image,
|
||||||
|
.menu-icon-media div.wp-menu-image,
|
||||||
|
.menu-icon-links div.wp-menu-image,
|
||||||
|
.menu-icon-page div.wp-menu-image,
|
||||||
|
.menu-icon-comments div.wp-menu-image,
|
||||||
|
.menu-icon-appearance div.wp-menu-image,
|
||||||
|
.menu-icon-plugins div.wp-menu-image,
|
||||||
|
.menu-icon-users div.wp-menu-image,
|
||||||
|
.menu-icon-tools div.wp-menu-image,
|
||||||
|
.menu-icon-settings div.wp-menu-image,
|
||||||
|
.menu-icon-site div.wp-menu-image,
|
||||||
|
.menu-icon-generic div.wp-menu-image {
|
||||||
|
background-image: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*------------------------------------------------------------------------------
|
||||||
|
7.0 - Main Navigation (Left Menu)
|
||||||
|
------------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#adminmenuwrap {
|
||||||
|
position: relative;
|
||||||
|
float: right;
|
||||||
|
z-index: 9990;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* side admin menu */
|
||||||
|
#adminmenu * {
|
||||||
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a {
|
||||||
|
display: block;
|
||||||
|
line-height: 1.3;
|
||||||
|
padding: 2px 5px;
|
||||||
|
color: #f0f0f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu a {
|
||||||
|
color: #c3c4c7;
|
||||||
|
color: rgba(240, 246, 252, 0.7);
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 1.4;
|
||||||
|
margin: 0;
|
||||||
|
padding: 5px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu a:hover,
|
||||||
|
#adminmenu .wp-submenu a:focus {
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a:hover,
|
||||||
|
#adminmenu li.menu-top > a:focus,
|
||||||
|
#adminmenu .wp-submenu a:hover,
|
||||||
|
#adminmenu .wp-submenu a:focus {
|
||||||
|
color: #72aee6;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a:hover,
|
||||||
|
#adminmenu a:focus,
|
||||||
|
.folded #adminmenu .wp-submenu-head:hover {
|
||||||
|
box-shadow: inset -4px 0 0 0 currentColor;
|
||||||
|
transition: box-shadow .1s linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.menu-top {
|
||||||
|
border: none;
|
||||||
|
min-height: 34px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu {
|
||||||
|
list-style: none;
|
||||||
|
position: absolute;
|
||||||
|
top: -1000em;
|
||||||
|
right: 160px;
|
||||||
|
overflow: visible;
|
||||||
|
word-wrap: break-word;
|
||||||
|
padding: 7px 0 8px;
|
||||||
|
z-index: 9999;
|
||||||
|
background-color: #2c3338;
|
||||||
|
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.js #adminmenu .sub-open,
|
||||||
|
.js #adminmenu .opensub .wp-submenu,
|
||||||
|
#adminmenu a.menu-top:focus + .wp-submenu,
|
||||||
|
.no-js li.wp-has-submenu:hover .wp-submenu {
|
||||||
|
top: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
|
.no-js li.wp-has-current-submenu:hover .wp-submenu,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu {
|
||||||
|
position: relative;
|
||||||
|
z-index: 3;
|
||||||
|
top: auto;
|
||||||
|
right: auto;
|
||||||
|
left: auto;
|
||||||
|
bottom: auto;
|
||||||
|
border: 0 none;
|
||||||
|
margin-top: 0;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||||
|
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ensure that wp-submenu's box shadow doesn't appear on top of the focused menu item's background. */
|
||||||
|
#adminmenu li.menu-top:hover,
|
||||||
|
#adminmenu li.opensub > a.menu-top,
|
||||||
|
#adminmenu li > a.menu-top:focus {
|
||||||
|
position: relative;
|
||||||
|
background-color: #1d2327;
|
||||||
|
color: #72aee6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded #adminmenu li.menu-top:hover,
|
||||||
|
.folded #adminmenu li.opensub > a.menu-top,
|
||||||
|
.folded #adminmenu li > a.menu-top:focus {
|
||||||
|
z-index: 10000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
||||||
|
#adminmenu li.current a.menu-top,
|
||||||
|
#adminmenu .wp-menu-arrow,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head,
|
||||||
|
#adminmenu .wp-menu-arrow div {
|
||||||
|
background: #2271b1;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded #adminmenu .wp-submenu.sub-open,
|
||||||
|
.folded #adminmenu .opensub .wp-submenu,
|
||||||
|
.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
|
||||||
|
.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
|
.folded #adminmenu a.menu-top:focus + .wp-submenu,
|
||||||
|
.folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu,
|
||||||
|
.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu {
|
||||||
|
top: 0;
|
||||||
|
right: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
|
||||||
|
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||||
|
position: absolute;
|
||||||
|
top: -1000em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-not-current-submenu .wp-submenu,
|
||||||
|
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||||
|
min-width: 160px;
|
||||||
|
width: auto;
|
||||||
|
border-right: 5px solid transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu li.current,
|
||||||
|
#adminmenu .wp-submenu li.current a,
|
||||||
|
#adminmenu .opensub .wp-submenu li.current a,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a,
|
||||||
|
#adminmenu .wp-submenu li.current a:hover,
|
||||||
|
#adminmenu .wp-submenu li.current a:focus {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-not-current-submenu li > a,
|
||||||
|
.folded #adminmenu .wp-has-current-submenu li > a {
|
||||||
|
padding-left: 16px;
|
||||||
|
padding-right: 14px;
|
||||||
|
/* Exclude from the transition the outline for Windows High Contrast mode */
|
||||||
|
transition: all .1s ease-in-out, outline 0s;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-has-current-submenu ul > li > a,
|
||||||
|
.folded #adminmenu li.menu-top .wp-submenu > li > a {
|
||||||
|
padding: 5px 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a.menu-top,
|
||||||
|
#adminmenu .wp-submenu-head {
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 1.3;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu-head {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded #adminmenu .wp-menu-name {
|
||||||
|
position: absolute;
|
||||||
|
right: -999px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded #adminmenu .wp-submenu-head {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu li {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-menu-image img {
|
||||||
|
padding: 9px 0 0;
|
||||||
|
opacity: 0.6;
|
||||||
|
filter: alpha(opacity=60);
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu div.wp-menu-name {
|
||||||
|
padding: 8px 36px 8px 8px;
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
word-wrap: break-word;
|
||||||
|
-ms-word-break: break-all;
|
||||||
|
word-break: break-word;
|
||||||
|
-webkit-hyphens: auto;
|
||||||
|
hyphens: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu div.wp-menu-image {
|
||||||
|
float: right;
|
||||||
|
width: 36px;
|
||||||
|
height: 34px;
|
||||||
|
margin: 0;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu div.wp-menu-image.svg {
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: center;
|
||||||
|
background-size: 20px auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.wp-menu-image:before {
|
||||||
|
color: #a7aaad;
|
||||||
|
color: rgba(240, 246, 252, 0.6);
|
||||||
|
padding: 7px 0;
|
||||||
|
transition: all .1s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu div.wp-menu-image:before {
|
||||||
|
color: #a7aaad;
|
||||||
|
color: rgba(240, 246, 252, 0.6);
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu .wp-has-current-submenu div.wp-menu-image:before,
|
||||||
|
#adminmenu .current div.wp-menu-image:before,
|
||||||
|
#adminmenu a.wp-has-current-submenu:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu a.current:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.opensub div.wp-menu-image:before {
|
||||||
|
color: #72aee6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded #adminmenu div.wp-menu-image {
|
||||||
|
width: 35px;
|
||||||
|
height: 30px;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 25;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded #adminmenu a.menu-top {
|
||||||
|
height: 34px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Sticky admin menu */
|
||||||
|
.sticky-menu #adminmenuwrap {
|
||||||
|
position: fixed;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* A new arrow */
|
||||||
|
|
||||||
|
.wp-menu-arrow {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul#adminmenu a.wp-has-current-submenu {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul#adminmenu a.wp-has-current-submenu:after,
|
||||||
|
ul#adminmenu > li.current > a.current:after {
|
||||||
|
left: 0;
|
||||||
|
border: solid 8px transparent;
|
||||||
|
content: " ";
|
||||||
|
height: 0;
|
||||||
|
width: 0;
|
||||||
|
position: absolute;
|
||||||
|
pointer-events: none;
|
||||||
|
border-left-color: #f0f0f1;
|
||||||
|
top: 50%;
|
||||||
|
margin-top: -8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded ul#adminmenu li:hover a.wp-has-current-submenu:after,
|
||||||
|
.folded ul#adminmenu li.wp-has-current-submenu:focus-within a.wp-has-current-submenu:after {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded ul#adminmenu a.wp-has-current-submenu:after,
|
||||||
|
.folded ul#adminmenu > li a.current:after {
|
||||||
|
border-width: 4px;
|
||||||
|
margin-top: -4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* flyout menu arrow */
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after,
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||||
|
left: 0;
|
||||||
|
border: 8px solid transparent;
|
||||||
|
content: " ";
|
||||||
|
height: 0;
|
||||||
|
width: 0;
|
||||||
|
position: absolute;
|
||||||
|
pointer-events: none;
|
||||||
|
top: 10px;
|
||||||
|
z-index: 10000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after,
|
||||||
|
.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||||
|
border-width: 4px;
|
||||||
|
margin-top: -4px;
|
||||||
|
top: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||||
|
border-left-color: #2c3338;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.menu-top:hover .wp-menu-image img,
|
||||||
|
#adminmenu li.wp-has-current-submenu .wp-menu-image img {
|
||||||
|
opacity: 1;
|
||||||
|
filter: alpha(opacity=100);
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-menu-separator {
|
||||||
|
height: 5px;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0 0 6px;
|
||||||
|
cursor: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* @todo: is this even needed given that it's nested beneath the above li.wp-menu-separator? */
|
||||||
|
#adminmenu div.separator {
|
||||||
|
height: 2px;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
|
color: #fff;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
padding: 5px 11px 5px 4px;
|
||||||
|
margin: -7px -5px 4px 0;
|
||||||
|
border-width: 3px 5px 3px 0;
|
||||||
|
border-style: solid;
|
||||||
|
border-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current,
|
||||||
|
.folded #adminmenu li.wp-menu-open {
|
||||||
|
border: 0 none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* @todo: consider to use a single rule for these counters and the list table comments counters. */
|
||||||
|
#adminmenu .menu-counter,
|
||||||
|
#adminmenu .awaiting-mod,
|
||||||
|
#adminmenu .update-plugins {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
box-sizing: border-box;
|
||||||
|
margin: 1px 2px -1px 0;
|
||||||
|
padding: 0 5px;
|
||||||
|
min-width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
border-radius: 9px;
|
||||||
|
background-color: #d63638;
|
||||||
|
color: #fff;
|
||||||
|
font-size: 11px;
|
||||||
|
line-height: 1.6;
|
||||||
|
text-align: center;
|
||||||
|
z-index: 26;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current a .awaiting-mod,
|
||||||
|
#adminmenu li a.wp-has-current-submenu .update-plugins {
|
||||||
|
background-color: #d63638;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li span.count-0 {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
height: 34px;
|
||||||
|
margin: 0;
|
||||||
|
border: none;
|
||||||
|
padding: 0;
|
||||||
|
position: relative;
|
||||||
|
overflow: visible;
|
||||||
|
background: none;
|
||||||
|
color: #a7aaad;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button:hover {
|
||||||
|
color: #72aee6;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button:focus {
|
||||||
|
color: #72aee6;
|
||||||
|
/* Only visible in Windows High Contrast mode */
|
||||||
|
outline: 1px solid transparent;
|
||||||
|
outline-offset: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button .collapse-button-icon,
|
||||||
|
#collapse-button .collapse-button-label {
|
||||||
|
/* absolutely positioned to avoid 1px shift in IE when button is pressed */
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button .collapse-button-label {
|
||||||
|
top: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button .collapse-button-icon {
|
||||||
|
width: 36px;
|
||||||
|
height: 34px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button .collapse-button-label {
|
||||||
|
padding: 0 36px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded #collapse-button .collapse-button-label {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button .collapse-button-icon:after {
|
||||||
|
content: "\f148";
|
||||||
|
display: block;
|
||||||
|
position: relative;
|
||||||
|
top: 7px;
|
||||||
|
text-align: center;
|
||||||
|
font: normal 20px/1 dashicons !important;
|
||||||
|
speak: never;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* rtl:ignore */
|
||||||
|
.folded #collapse-button .collapse-button-icon:after,
|
||||||
|
.rtl #collapse-button .collapse-button-icon:after {
|
||||||
|
transform: rotate(180deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.rtl.folded #collapse-button .collapse-button-icon:after {
|
||||||
|
transform: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button .collapse-button-icon:after,
|
||||||
|
#collapse-button .collapse-button-label {
|
||||||
|
transition: all .1s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Toolbar menu toggle
|
||||||
|
*/
|
||||||
|
li#wp-admin-bar-menu-toggle {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Hide-if-customize for items we can't add classes to */
|
||||||
|
.customize-support #menu-appearance a[href="themes.php?page=custom-header"],
|
||||||
|
.customize-support #menu-appearance a[href="themes.php?page=custom-background"] {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Auto-folding of the admin menu */
|
||||||
|
@media only screen and (max-width: 960px) {
|
||||||
|
.auto-fold #wpcontent,
|
||||||
|
.auto-fold #wpfooter {
|
||||||
|
margin-right: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenuback,
|
||||||
|
.auto-fold #adminmenuwrap,
|
||||||
|
.auto-fold #adminmenu,
|
||||||
|
.auto-fold #adminmenu li.menu-top {
|
||||||
|
width: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu .wp-submenu.sub-open,
|
||||||
|
.auto-fold #adminmenu .opensub .wp-submenu,
|
||||||
|
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
|
||||||
|
.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
|
.auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
|
||||||
|
.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu {
|
||||||
|
top: 0;
|
||||||
|
right: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
|
||||||
|
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||||
|
position: absolute;
|
||||||
|
top: -1000em;
|
||||||
|
margin-left: -1px;
|
||||||
|
padding: 7px 0 8px;
|
||||||
|
z-index: 9999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||||
|
min-width: 150px;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu .wp-has-current-submenu li > a {
|
||||||
|
padding-left: 16px;
|
||||||
|
padding-right: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.auto-fold #adminmenu li.menu-top .wp-submenu > li > a {
|
||||||
|
padding-right: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu .wp-menu-name {
|
||||||
|
position: absolute;
|
||||||
|
right: -999px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu .wp-submenu-head {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu div.wp-menu-image {
|
||||||
|
height: 30px;
|
||||||
|
width: 34px;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 25;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu a.menu-top {
|
||||||
|
min-height: 34px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu li.wp-menu-open {
|
||||||
|
border: 0 none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu .wp-has-current-submenu.menu-top-last {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after,
|
||||||
|
.auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after,
|
||||||
|
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||||
|
border-width: 4px;
|
||||||
|
margin-top: -4px;
|
||||||
|
top: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold ul#adminmenu a.wp-has-current-submenu:after,
|
||||||
|
.auto-fold ul#adminmenu > li a.current:after {
|
||||||
|
border-width: 4px;
|
||||||
|
margin-top: -4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu li.menu-top:hover,
|
||||||
|
.auto-fold #adminmenu li.opensub > a.menu-top,
|
||||||
|
.auto-fold #adminmenu li > a.menu-top:focus {
|
||||||
|
z-index: 10000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #collapse-menu .collapse-button-label {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* rtl:ignore */
|
||||||
|
.auto-fold #collapse-button .collapse-button-icon:after {
|
||||||
|
transform: rotate(180deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.rtl.auto-fold #collapse-button .collapse-button-icon:after {
|
||||||
|
transform: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 782px) {
|
||||||
|
.auto-fold #wpcontent {
|
||||||
|
position: relative;
|
||||||
|
margin-right: 0;
|
||||||
|
padding-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sticky-menu #adminmenuwrap {
|
||||||
|
position: relative;
|
||||||
|
z-index: auto;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Sidebar Adjustments */
|
||||||
|
.auto-fold #adminmenu,
|
||||||
|
.auto-fold #adminmenuback,
|
||||||
|
.auto-fold #adminmenuwrap {
|
||||||
|
position: absolute;
|
||||||
|
width: 190px;
|
||||||
|
z-index: 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenuback {
|
||||||
|
position: fixed;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenuback,
|
||||||
|
.auto-fold #adminmenuwrap {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold .wp-responsive-open #adminmenuback,
|
||||||
|
.auto-fold .wp-responsive-open #adminmenuwrap {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu li.menu-top {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Resize the admin menu items to a comfortable touch size */
|
||||||
|
.auto-fold #adminmenu li a {
|
||||||
|
font-size: 16px;
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu li.menu-top .wp-submenu > li > a {
|
||||||
|
padding: 10px 20px 10px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Restore the menu names */
|
||||||
|
.auto-fold #adminmenu .wp-menu-name {
|
||||||
|
position: static;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Switch the arrow side */
|
||||||
|
.auto-fold ul#adminmenu a.wp-has-current-submenu:after,
|
||||||
|
.auto-fold ul#adminmenu > li.current > a.current:after {
|
||||||
|
border-width: 8px;
|
||||||
|
margin-top: -8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after,
|
||||||
|
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Make the submenus appear correctly when tapped. */
|
||||||
|
#adminmenu .wp-submenu {
|
||||||
|
position: relative;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu .selected .wp-submenu,
|
||||||
|
.auto-fold #adminmenu .wp-menu-open .wp-submenu {
|
||||||
|
position: relative;
|
||||||
|
display: block;
|
||||||
|
top: 0;
|
||||||
|
right: -1px;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu .selected .wp-submenu:after,
|
||||||
|
.auto-fold #adminmenu .wp-menu-open .wp-submenu:after {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu .opensub .wp-submenu {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu .selected .wp-submenu {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after,
|
||||||
|
.auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
|
||||||
|
.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu {
|
||||||
|
position: relative;
|
||||||
|
right: -1px;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-not-current-submenu .wp-submenu,
|
||||||
|
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||||
|
border-right: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Remove submenu headers and adjust sub meu*/
|
||||||
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Toolbar menu toggle */
|
||||||
|
#wp-responsive-toggle {
|
||||||
|
position: fixed;
|
||||||
|
top: 5px;
|
||||||
|
right: 4px;
|
||||||
|
padding-left: 10px;
|
||||||
|
z-index: 99999;
|
||||||
|
border: none;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-menu-toggle a {
|
||||||
|
display: block;
|
||||||
|
padding: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
outline: none;
|
||||||
|
text-decoration: none;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
background: none;
|
||||||
|
height: 44px;
|
||||||
|
margin-right: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||||
|
background: #2c3338;
|
||||||
|
}
|
||||||
|
|
||||||
|
li#wp-admin-bar-menu-toggle {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-menu-toggle a:hover {
|
||||||
|
border: 1px solid transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||||
|
content: "\f228";
|
||||||
|
display: inline-block;
|
||||||
|
float: right;
|
||||||
|
font: normal 40px/45px dashicons;
|
||||||
|
vertical-align: middle;
|
||||||
|
outline: none;
|
||||||
|
margin: 0;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
height: 44px;
|
||||||
|
width: 50px;
|
||||||
|
padding: 0;
|
||||||
|
border: none;
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: none;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||||
|
color: #72aee6;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Smartphone */
|
||||||
|
@media screen and (max-width: 600px) {
|
||||||
|
#adminmenuwrap,
|
||||||
|
#adminmenuback {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #adminmenuwrap,
|
||||||
|
.wp-responsive-open #adminmenuback {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu {
|
||||||
|
top: 46px;
|
||||||
|
}
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,857 @@
|
||||||
|
#adminmenuback,
|
||||||
|
#adminmenuwrap,
|
||||||
|
#adminmenu,
|
||||||
|
#adminmenu .wp-submenu {
|
||||||
|
width: 160px;
|
||||||
|
background-color: #1d2327;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenuback {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
bottom: -120px;
|
||||||
|
z-index: 1; /* positive z-index to avoid elastic scrolling woes in Safari */
|
||||||
|
}
|
||||||
|
|
||||||
|
.php-error #adminmenuback {
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
.php-error #adminmenuback,
|
||||||
|
.php-error #adminmenuwrap {
|
||||||
|
margin-top: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu {
|
||||||
|
clear: left;
|
||||||
|
margin: 12px 0;
|
||||||
|
padding: 0;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded #adminmenuback,
|
||||||
|
.folded #adminmenuwrap,
|
||||||
|
.folded #adminmenu,
|
||||||
|
.folded #adminmenu li.menu-top {
|
||||||
|
width: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* New Menu icons */
|
||||||
|
|
||||||
|
/* hide background-image for icons above */
|
||||||
|
.menu-icon-dashboard div.wp-menu-image,
|
||||||
|
.menu-icon-post div.wp-menu-image,
|
||||||
|
.menu-icon-media div.wp-menu-image,
|
||||||
|
.menu-icon-links div.wp-menu-image,
|
||||||
|
.menu-icon-page div.wp-menu-image,
|
||||||
|
.menu-icon-comments div.wp-menu-image,
|
||||||
|
.menu-icon-appearance div.wp-menu-image,
|
||||||
|
.menu-icon-plugins div.wp-menu-image,
|
||||||
|
.menu-icon-users div.wp-menu-image,
|
||||||
|
.menu-icon-tools div.wp-menu-image,
|
||||||
|
.menu-icon-settings div.wp-menu-image,
|
||||||
|
.menu-icon-site div.wp-menu-image,
|
||||||
|
.menu-icon-generic div.wp-menu-image {
|
||||||
|
background-image: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*------------------------------------------------------------------------------
|
||||||
|
7.0 - Main Navigation (Left Menu)
|
||||||
|
------------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#adminmenuwrap {
|
||||||
|
position: relative;
|
||||||
|
float: left;
|
||||||
|
z-index: 9990;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* side admin menu */
|
||||||
|
#adminmenu * {
|
||||||
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a {
|
||||||
|
display: block;
|
||||||
|
line-height: 1.3;
|
||||||
|
padding: 2px 5px;
|
||||||
|
color: #f0f0f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu a {
|
||||||
|
color: #c3c4c7;
|
||||||
|
color: rgba(240, 246, 252, 0.7);
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 1.4;
|
||||||
|
margin: 0;
|
||||||
|
padding: 5px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu a:hover,
|
||||||
|
#adminmenu .wp-submenu a:focus {
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a:hover,
|
||||||
|
#adminmenu li.menu-top > a:focus,
|
||||||
|
#adminmenu .wp-submenu a:hover,
|
||||||
|
#adminmenu .wp-submenu a:focus {
|
||||||
|
color: #72aee6;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a:hover,
|
||||||
|
#adminmenu a:focus,
|
||||||
|
.folded #adminmenu .wp-submenu-head:hover {
|
||||||
|
box-shadow: inset 4px 0 0 0 currentColor;
|
||||||
|
transition: box-shadow .1s linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.menu-top {
|
||||||
|
border: none;
|
||||||
|
min-height: 34px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu {
|
||||||
|
list-style: none;
|
||||||
|
position: absolute;
|
||||||
|
top: -1000em;
|
||||||
|
left: 160px;
|
||||||
|
overflow: visible;
|
||||||
|
word-wrap: break-word;
|
||||||
|
padding: 7px 0 8px;
|
||||||
|
z-index: 9999;
|
||||||
|
background-color: #2c3338;
|
||||||
|
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.js #adminmenu .sub-open,
|
||||||
|
.js #adminmenu .opensub .wp-submenu,
|
||||||
|
#adminmenu a.menu-top:focus + .wp-submenu,
|
||||||
|
.no-js li.wp-has-submenu:hover .wp-submenu {
|
||||||
|
top: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
|
.no-js li.wp-has-current-submenu:hover .wp-submenu,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu {
|
||||||
|
position: relative;
|
||||||
|
z-index: 3;
|
||||||
|
top: auto;
|
||||||
|
left: auto;
|
||||||
|
right: auto;
|
||||||
|
bottom: auto;
|
||||||
|
border: 0 none;
|
||||||
|
margin-top: 0;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||||
|
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ensure that wp-submenu's box shadow doesn't appear on top of the focused menu item's background. */
|
||||||
|
#adminmenu li.menu-top:hover,
|
||||||
|
#adminmenu li.opensub > a.menu-top,
|
||||||
|
#adminmenu li > a.menu-top:focus {
|
||||||
|
position: relative;
|
||||||
|
background-color: #1d2327;
|
||||||
|
color: #72aee6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded #adminmenu li.menu-top:hover,
|
||||||
|
.folded #adminmenu li.opensub > a.menu-top,
|
||||||
|
.folded #adminmenu li > a.menu-top:focus {
|
||||||
|
z-index: 10000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
||||||
|
#adminmenu li.current a.menu-top,
|
||||||
|
#adminmenu .wp-menu-arrow,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head,
|
||||||
|
#adminmenu .wp-menu-arrow div {
|
||||||
|
background: #2271b1;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded #adminmenu .wp-submenu.sub-open,
|
||||||
|
.folded #adminmenu .opensub .wp-submenu,
|
||||||
|
.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
|
||||||
|
.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
|
.folded #adminmenu a.menu-top:focus + .wp-submenu,
|
||||||
|
.folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu,
|
||||||
|
.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu {
|
||||||
|
top: 0;
|
||||||
|
left: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
|
||||||
|
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||||
|
position: absolute;
|
||||||
|
top: -1000em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-not-current-submenu .wp-submenu,
|
||||||
|
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||||
|
min-width: 160px;
|
||||||
|
width: auto;
|
||||||
|
border-left: 5px solid transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu li.current,
|
||||||
|
#adminmenu .wp-submenu li.current a,
|
||||||
|
#adminmenu .opensub .wp-submenu li.current a,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a,
|
||||||
|
#adminmenu .wp-submenu li.current a:hover,
|
||||||
|
#adminmenu .wp-submenu li.current a:focus {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-not-current-submenu li > a,
|
||||||
|
.folded #adminmenu .wp-has-current-submenu li > a {
|
||||||
|
padding-right: 16px;
|
||||||
|
padding-left: 14px;
|
||||||
|
/* Exclude from the transition the outline for Windows High Contrast mode */
|
||||||
|
transition: all .1s ease-in-out, outline 0s;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-has-current-submenu ul > li > a,
|
||||||
|
.folded #adminmenu li.menu-top .wp-submenu > li > a {
|
||||||
|
padding: 5px 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a.menu-top,
|
||||||
|
#adminmenu .wp-submenu-head {
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 1.3;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu-head {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded #adminmenu .wp-menu-name {
|
||||||
|
position: absolute;
|
||||||
|
left: -999px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded #adminmenu .wp-submenu-head {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu li {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-menu-image img {
|
||||||
|
padding: 9px 0 0;
|
||||||
|
opacity: 0.6;
|
||||||
|
filter: alpha(opacity=60);
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu div.wp-menu-name {
|
||||||
|
padding: 8px 8px 8px 36px;
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
word-wrap: break-word;
|
||||||
|
-ms-word-break: break-all;
|
||||||
|
word-break: break-word;
|
||||||
|
-webkit-hyphens: auto;
|
||||||
|
hyphens: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu div.wp-menu-image {
|
||||||
|
float: left;
|
||||||
|
width: 36px;
|
||||||
|
height: 34px;
|
||||||
|
margin: 0;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu div.wp-menu-image.svg {
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: center;
|
||||||
|
background-size: 20px auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.wp-menu-image:before {
|
||||||
|
color: #a7aaad;
|
||||||
|
color: rgba(240, 246, 252, 0.6);
|
||||||
|
padding: 7px 0;
|
||||||
|
transition: all .1s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu div.wp-menu-image:before {
|
||||||
|
color: #a7aaad;
|
||||||
|
color: rgba(240, 246, 252, 0.6);
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu .wp-has-current-submenu div.wp-menu-image:before,
|
||||||
|
#adminmenu .current div.wp-menu-image:before,
|
||||||
|
#adminmenu a.wp-has-current-submenu:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu a.current:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.opensub div.wp-menu-image:before {
|
||||||
|
color: #72aee6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded #adminmenu div.wp-menu-image {
|
||||||
|
width: 35px;
|
||||||
|
height: 30px;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 25;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded #adminmenu a.menu-top {
|
||||||
|
height: 34px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Sticky admin menu */
|
||||||
|
.sticky-menu #adminmenuwrap {
|
||||||
|
position: fixed;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* A new arrow */
|
||||||
|
|
||||||
|
.wp-menu-arrow {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul#adminmenu a.wp-has-current-submenu {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul#adminmenu a.wp-has-current-submenu:after,
|
||||||
|
ul#adminmenu > li.current > a.current:after {
|
||||||
|
right: 0;
|
||||||
|
border: solid 8px transparent;
|
||||||
|
content: " ";
|
||||||
|
height: 0;
|
||||||
|
width: 0;
|
||||||
|
position: absolute;
|
||||||
|
pointer-events: none;
|
||||||
|
border-right-color: #f0f0f1;
|
||||||
|
top: 50%;
|
||||||
|
margin-top: -8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded ul#adminmenu li:hover a.wp-has-current-submenu:after,
|
||||||
|
.folded ul#adminmenu li.wp-has-current-submenu:focus-within a.wp-has-current-submenu:after {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded ul#adminmenu a.wp-has-current-submenu:after,
|
||||||
|
.folded ul#adminmenu > li a.current:after {
|
||||||
|
border-width: 4px;
|
||||||
|
margin-top: -4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* flyout menu arrow */
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after,
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||||
|
right: 0;
|
||||||
|
border: 8px solid transparent;
|
||||||
|
content: " ";
|
||||||
|
height: 0;
|
||||||
|
width: 0;
|
||||||
|
position: absolute;
|
||||||
|
pointer-events: none;
|
||||||
|
top: 10px;
|
||||||
|
z-index: 10000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after,
|
||||||
|
.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||||
|
border-width: 4px;
|
||||||
|
margin-top: -4px;
|
||||||
|
top: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||||
|
border-right-color: #2c3338;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.menu-top:hover .wp-menu-image img,
|
||||||
|
#adminmenu li.wp-has-current-submenu .wp-menu-image img {
|
||||||
|
opacity: 1;
|
||||||
|
filter: alpha(opacity=100);
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-menu-separator {
|
||||||
|
height: 5px;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0 0 6px;
|
||||||
|
cursor: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* @todo: is this even needed given that it's nested beneath the above li.wp-menu-separator? */
|
||||||
|
#adminmenu div.separator {
|
||||||
|
height: 2px;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
|
color: #fff;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
padding: 5px 4px 5px 11px;
|
||||||
|
margin: -7px 0 4px -5px;
|
||||||
|
border-width: 3px 0 3px 5px;
|
||||||
|
border-style: solid;
|
||||||
|
border-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current,
|
||||||
|
.folded #adminmenu li.wp-menu-open {
|
||||||
|
border: 0 none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* @todo: consider to use a single rule for these counters and the list table comments counters. */
|
||||||
|
#adminmenu .menu-counter,
|
||||||
|
#adminmenu .awaiting-mod,
|
||||||
|
#adminmenu .update-plugins {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
box-sizing: border-box;
|
||||||
|
margin: 1px 0 -1px 2px;
|
||||||
|
padding: 0 5px;
|
||||||
|
min-width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
border-radius: 9px;
|
||||||
|
background-color: #d63638;
|
||||||
|
color: #fff;
|
||||||
|
font-size: 11px;
|
||||||
|
line-height: 1.6;
|
||||||
|
text-align: center;
|
||||||
|
z-index: 26;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current a .awaiting-mod,
|
||||||
|
#adminmenu li a.wp-has-current-submenu .update-plugins {
|
||||||
|
background-color: #d63638;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li span.count-0 {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
height: 34px;
|
||||||
|
margin: 0;
|
||||||
|
border: none;
|
||||||
|
padding: 0;
|
||||||
|
position: relative;
|
||||||
|
overflow: visible;
|
||||||
|
background: none;
|
||||||
|
color: #a7aaad;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button:hover {
|
||||||
|
color: #72aee6;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button:focus {
|
||||||
|
color: #72aee6;
|
||||||
|
/* Only visible in Windows High Contrast mode */
|
||||||
|
outline: 1px solid transparent;
|
||||||
|
outline-offset: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button .collapse-button-icon,
|
||||||
|
#collapse-button .collapse-button-label {
|
||||||
|
/* absolutely positioned to avoid 1px shift in IE when button is pressed */
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button .collapse-button-label {
|
||||||
|
top: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button .collapse-button-icon {
|
||||||
|
width: 36px;
|
||||||
|
height: 34px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button .collapse-button-label {
|
||||||
|
padding: 0 0 0 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.folded #collapse-button .collapse-button-label {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button .collapse-button-icon:after {
|
||||||
|
content: "\f148";
|
||||||
|
display: block;
|
||||||
|
position: relative;
|
||||||
|
top: 7px;
|
||||||
|
text-align: center;
|
||||||
|
font: normal 20px/1 dashicons !important;
|
||||||
|
speak: never;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* rtl:ignore */
|
||||||
|
.folded #collapse-button .collapse-button-icon:after,
|
||||||
|
.rtl #collapse-button .collapse-button-icon:after {
|
||||||
|
transform: rotate(180deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.rtl.folded #collapse-button .collapse-button-icon:after {
|
||||||
|
transform: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button .collapse-button-icon:after,
|
||||||
|
#collapse-button .collapse-button-label {
|
||||||
|
transition: all .1s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Toolbar menu toggle
|
||||||
|
*/
|
||||||
|
li#wp-admin-bar-menu-toggle {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Hide-if-customize for items we can't add classes to */
|
||||||
|
.customize-support #menu-appearance a[href="themes.php?page=custom-header"],
|
||||||
|
.customize-support #menu-appearance a[href="themes.php?page=custom-background"] {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Auto-folding of the admin menu */
|
||||||
|
@media only screen and (max-width: 960px) {
|
||||||
|
.auto-fold #wpcontent,
|
||||||
|
.auto-fold #wpfooter {
|
||||||
|
margin-left: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenuback,
|
||||||
|
.auto-fold #adminmenuwrap,
|
||||||
|
.auto-fold #adminmenu,
|
||||||
|
.auto-fold #adminmenu li.menu-top {
|
||||||
|
width: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu .wp-submenu.sub-open,
|
||||||
|
.auto-fold #adminmenu .opensub .wp-submenu,
|
||||||
|
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
|
||||||
|
.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
|
.auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
|
||||||
|
.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu {
|
||||||
|
top: 0;
|
||||||
|
left: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
|
||||||
|
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||||
|
position: absolute;
|
||||||
|
top: -1000em;
|
||||||
|
margin-right: -1px;
|
||||||
|
padding: 7px 0 8px;
|
||||||
|
z-index: 9999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||||
|
min-width: 150px;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu .wp-has-current-submenu li > a {
|
||||||
|
padding-right: 16px;
|
||||||
|
padding-left: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.auto-fold #adminmenu li.menu-top .wp-submenu > li > a {
|
||||||
|
padding-left: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu .wp-menu-name {
|
||||||
|
position: absolute;
|
||||||
|
left: -999px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu .wp-submenu-head {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu div.wp-menu-image {
|
||||||
|
height: 30px;
|
||||||
|
width: 34px;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 25;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu a.menu-top {
|
||||||
|
min-height: 34px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu li.wp-menu-open {
|
||||||
|
border: 0 none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu .wp-has-current-submenu.menu-top-last {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after,
|
||||||
|
.auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after,
|
||||||
|
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||||
|
border-width: 4px;
|
||||||
|
margin-top: -4px;
|
||||||
|
top: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold ul#adminmenu a.wp-has-current-submenu:after,
|
||||||
|
.auto-fold ul#adminmenu > li a.current:after {
|
||||||
|
border-width: 4px;
|
||||||
|
margin-top: -4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu li.menu-top:hover,
|
||||||
|
.auto-fold #adminmenu li.opensub > a.menu-top,
|
||||||
|
.auto-fold #adminmenu li > a.menu-top:focus {
|
||||||
|
z-index: 10000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #collapse-menu .collapse-button-label {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* rtl:ignore */
|
||||||
|
.auto-fold #collapse-button .collapse-button-icon:after {
|
||||||
|
transform: rotate(180deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.rtl.auto-fold #collapse-button .collapse-button-icon:after {
|
||||||
|
transform: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 782px) {
|
||||||
|
.auto-fold #wpcontent {
|
||||||
|
position: relative;
|
||||||
|
margin-left: 0;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sticky-menu #adminmenuwrap {
|
||||||
|
position: relative;
|
||||||
|
z-index: auto;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Sidebar Adjustments */
|
||||||
|
.auto-fold #adminmenu,
|
||||||
|
.auto-fold #adminmenuback,
|
||||||
|
.auto-fold #adminmenuwrap {
|
||||||
|
position: absolute;
|
||||||
|
width: 190px;
|
||||||
|
z-index: 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenuback {
|
||||||
|
position: fixed;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenuback,
|
||||||
|
.auto-fold #adminmenuwrap {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold .wp-responsive-open #adminmenuback,
|
||||||
|
.auto-fold .wp-responsive-open #adminmenuwrap {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu li.menu-top {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Resize the admin menu items to a comfortable touch size */
|
||||||
|
.auto-fold #adminmenu li a {
|
||||||
|
font-size: 16px;
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu li.menu-top .wp-submenu > li > a {
|
||||||
|
padding: 10px 10px 10px 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Restore the menu names */
|
||||||
|
.auto-fold #adminmenu .wp-menu-name {
|
||||||
|
position: static;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Switch the arrow side */
|
||||||
|
.auto-fold ul#adminmenu a.wp-has-current-submenu:after,
|
||||||
|
.auto-fold ul#adminmenu > li.current > a.current:after {
|
||||||
|
border-width: 8px;
|
||||||
|
margin-top: -8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after,
|
||||||
|
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Make the submenus appear correctly when tapped. */
|
||||||
|
#adminmenu .wp-submenu {
|
||||||
|
position: relative;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu .selected .wp-submenu,
|
||||||
|
.auto-fold #adminmenu .wp-menu-open .wp-submenu {
|
||||||
|
position: relative;
|
||||||
|
display: block;
|
||||||
|
top: 0;
|
||||||
|
left: -1px;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu .selected .wp-submenu:after,
|
||||||
|
.auto-fold #adminmenu .wp-menu-open .wp-submenu:after {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu .opensub .wp-submenu {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu .selected .wp-submenu {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after,
|
||||||
|
.auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
|
||||||
|
.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu {
|
||||||
|
position: relative;
|
||||||
|
left: -1px;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-not-current-submenu .wp-submenu,
|
||||||
|
.folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||||
|
border-left: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Remove submenu headers and adjust sub meu*/
|
||||||
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Toolbar menu toggle */
|
||||||
|
#wp-responsive-toggle {
|
||||||
|
position: fixed;
|
||||||
|
top: 5px;
|
||||||
|
left: 4px;
|
||||||
|
padding-right: 10px;
|
||||||
|
z-index: 99999;
|
||||||
|
border: none;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-menu-toggle a {
|
||||||
|
display: block;
|
||||||
|
padding: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
outline: none;
|
||||||
|
text-decoration: none;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
background: none;
|
||||||
|
height: 44px;
|
||||||
|
margin-left: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||||
|
background: #2c3338;
|
||||||
|
}
|
||||||
|
|
||||||
|
li#wp-admin-bar-menu-toggle {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-menu-toggle a:hover {
|
||||||
|
border: 1px solid transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||||
|
content: "\f228";
|
||||||
|
display: inline-block;
|
||||||
|
float: left;
|
||||||
|
font: normal 40px/45px dashicons;
|
||||||
|
vertical-align: middle;
|
||||||
|
outline: none;
|
||||||
|
margin: 0;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
height: 44px;
|
||||||
|
width: 50px;
|
||||||
|
padding: 0;
|
||||||
|
border: none;
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: none;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||||
|
color: #72aee6;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Smartphone */
|
||||||
|
@media screen and (max-width: 600px) {
|
||||||
|
#adminmenuwrap,
|
||||||
|
#adminmenuback {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #adminmenuwrap,
|
||||||
|
.wp-responsive-open #adminmenuback {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.auto-fold #adminmenu {
|
||||||
|
top: 46px;
|
||||||
|
}
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,77 @@
|
||||||
|
/*! This file is auto-generated */
|
||||||
|
.wrap [class*="CodeMirror-lint-marker"],
|
||||||
|
.wp-core-ui [class*="CodeMirror-lint-message"],
|
||||||
|
.wrap .CodeMirror-lint-marker-multiple {
|
||||||
|
background-image: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui .CodeMirror-lint-marker-error,
|
||||||
|
.wp-core-ui .CodeMirror-lint-marker-warning {
|
||||||
|
cursor: help;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .CodeMirror-lint-marker-multiple {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap [class*="CodeMirror-lint-marker"]:before {
|
||||||
|
font: normal 18px/1 dashicons;
|
||||||
|
position: relative;
|
||||||
|
top: -2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui [class*="CodeMirror-lint-message"]:before {
|
||||||
|
font: normal 16px/1 dashicons;
|
||||||
|
right: 16px;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui .CodeMirror-lint-message-error,
|
||||||
|
.wp-core-ui .CodeMirror-lint-message-warning {
|
||||||
|
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
|
||||||
|
margin: 5px 0 2px;
|
||||||
|
padding: 3px 28px 3px 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui .CodeMirror-lint-message-warning {
|
||||||
|
background-color: #fcf9e8;
|
||||||
|
border-right: 4px solid #dba617;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .CodeMirror-lint-marker-warning:before,
|
||||||
|
.wp-core-ui .CodeMirror-lint-message-warning:before {
|
||||||
|
content: "\f534";
|
||||||
|
color: #dba617;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui .CodeMirror-lint-message-error {
|
||||||
|
background-color: #fcf0f1;
|
||||||
|
border-right: 4px solid #d63638;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .CodeMirror-lint-marker-error:before,
|
||||||
|
.wp-core-ui .CodeMirror-lint-message-error:before {
|
||||||
|
content: "\f153";
|
||||||
|
color: #d63638;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui .CodeMirror-lint-tooltip {
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
border-radius: 0;
|
||||||
|
direction: rtl;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .CodeMirror .CodeMirror-matchingbracket {
|
||||||
|
background: rgba(219, 166, 23, 0.3);
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.CodeMirror {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .CodeMirror .CodeMirror-linenumber {
|
||||||
|
color: #646970;
|
||||||
|
}
|
|
@ -0,0 +1,2 @@
|
||||||
|
/*! This file is auto-generated */
|
||||||
|
.wp-core-ui [class*=CodeMirror-lint-message],.wrap .CodeMirror-lint-marker-multiple,.wrap [class*=CodeMirror-lint-marker]{background-image:none}.wp-core-ui .CodeMirror-lint-marker-error,.wp-core-ui .CodeMirror-lint-marker-warning{cursor:help}.wrap .CodeMirror-lint-marker-multiple{position:absolute;top:0}.wrap [class*=CodeMirror-lint-marker]:before{font:normal 18px/1 dashicons;position:relative;top:-2px}.wp-core-ui [class*=CodeMirror-lint-message]:before{font:normal 16px/1 dashicons;right:16px;position:absolute}.wp-core-ui .CodeMirror-lint-message-error,.wp-core-ui .CodeMirror-lint-message-warning{box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 0 2px;padding:3px 28px 3px 12px}.wp-core-ui .CodeMirror-lint-message-warning{background-color:#fcf9e8;border-right:4px solid #dba617}.wp-core-ui .CodeMirror-lint-message-warning:before,.wrap .CodeMirror-lint-marker-warning:before{content:"\f534";color:#dba617}.wp-core-ui .CodeMirror-lint-message-error{background-color:#fcf0f1;border-right:4px solid #d63638}.wp-core-ui .CodeMirror-lint-message-error:before,.wrap .CodeMirror-lint-marker-error:before{content:"\f153";color:#d63638}.wp-core-ui .CodeMirror-lint-tooltip{background:0 0;border:none;border-radius:0;direction:rtl}.wrap .CodeMirror .CodeMirror-matchingbracket{background:rgba(219,166,23,.3);color:inherit}.CodeMirror{text-align:right}.wrap .CodeMirror .CodeMirror-linenumber{color:#646970}
|
|
@ -0,0 +1,76 @@
|
||||||
|
.wrap [class*="CodeMirror-lint-marker"],
|
||||||
|
.wp-core-ui [class*="CodeMirror-lint-message"],
|
||||||
|
.wrap .CodeMirror-lint-marker-multiple {
|
||||||
|
background-image: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui .CodeMirror-lint-marker-error,
|
||||||
|
.wp-core-ui .CodeMirror-lint-marker-warning {
|
||||||
|
cursor: help;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .CodeMirror-lint-marker-multiple {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap [class*="CodeMirror-lint-marker"]:before {
|
||||||
|
font: normal 18px/1 dashicons;
|
||||||
|
position: relative;
|
||||||
|
top: -2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui [class*="CodeMirror-lint-message"]:before {
|
||||||
|
font: normal 16px/1 dashicons;
|
||||||
|
left: 16px;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui .CodeMirror-lint-message-error,
|
||||||
|
.wp-core-ui .CodeMirror-lint-message-warning {
|
||||||
|
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
|
||||||
|
margin: 5px 0 2px;
|
||||||
|
padding: 3px 12px 3px 28px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui .CodeMirror-lint-message-warning {
|
||||||
|
background-color: #fcf9e8;
|
||||||
|
border-left: 4px solid #dba617;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .CodeMirror-lint-marker-warning:before,
|
||||||
|
.wp-core-ui .CodeMirror-lint-message-warning:before {
|
||||||
|
content: "\f534";
|
||||||
|
color: #dba617;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui .CodeMirror-lint-message-error {
|
||||||
|
background-color: #fcf0f1;
|
||||||
|
border-left: 4px solid #d63638;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .CodeMirror-lint-marker-error:before,
|
||||||
|
.wp-core-ui .CodeMirror-lint-message-error:before {
|
||||||
|
content: "\f153";
|
||||||
|
color: #d63638;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui .CodeMirror-lint-tooltip {
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
border-radius: 0;
|
||||||
|
direction: ltr;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .CodeMirror .CodeMirror-matchingbracket {
|
||||||
|
background: rgba(219, 166, 23, 0.3);
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.CodeMirror {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .CodeMirror .CodeMirror-linenumber {
|
||||||
|
color: #646970;
|
||||||
|
}
|
|
@ -0,0 +1,2 @@
|
||||||
|
/*! This file is auto-generated */
|
||||||
|
.wp-core-ui [class*=CodeMirror-lint-message],.wrap .CodeMirror-lint-marker-multiple,.wrap [class*=CodeMirror-lint-marker]{background-image:none}.wp-core-ui .CodeMirror-lint-marker-error,.wp-core-ui .CodeMirror-lint-marker-warning{cursor:help}.wrap .CodeMirror-lint-marker-multiple{position:absolute;top:0}.wrap [class*=CodeMirror-lint-marker]:before{font:normal 18px/1 dashicons;position:relative;top:-2px}.wp-core-ui [class*=CodeMirror-lint-message]:before{font:normal 16px/1 dashicons;left:16px;position:absolute}.wp-core-ui .CodeMirror-lint-message-error,.wp-core-ui .CodeMirror-lint-message-warning{box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 0 2px;padding:3px 12px 3px 28px}.wp-core-ui .CodeMirror-lint-message-warning{background-color:#fcf9e8;border-left:4px solid #dba617}.wp-core-ui .CodeMirror-lint-message-warning:before,.wrap .CodeMirror-lint-marker-warning:before{content:"\f534";color:#dba617}.wp-core-ui .CodeMirror-lint-message-error{background-color:#fcf0f1;border-left:4px solid #d63638}.wp-core-ui .CodeMirror-lint-message-error:before,.wrap .CodeMirror-lint-marker-error:before{content:"\f153";color:#d63638}.wp-core-ui .CodeMirror-lint-tooltip{background:0 0;border:none;border-radius:0;direction:ltr}.wrap .CodeMirror .CodeMirror-matchingbracket{background:rgba(219,166,23,.3);color:inherit}.CodeMirror{text-align:left}.wrap .CodeMirror .CodeMirror-linenumber{color:#646970}
|
|
@ -0,0 +1,183 @@
|
||||||
|
/*! This file is auto-generated */
|
||||||
|
/* rtl:ignore */
|
||||||
|
.wp-color-picker {
|
||||||
|
width: 80px;
|
||||||
|
direction: ltr;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-container .hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Needs higher specificiity. */
|
||||||
|
.wp-picker-container .wp-color-result.button {
|
||||||
|
min-height: 30px;
|
||||||
|
margin: 0 0 6px 6px;
|
||||||
|
padding: 0 30px 0 0;
|
||||||
|
font-size: 11px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-color-result-text {
|
||||||
|
background: #f6f7f7;
|
||||||
|
border-radius: 2px 0 0 2px;
|
||||||
|
border-right: 1px solid #c3c4c7;
|
||||||
|
color: #50575e;
|
||||||
|
display: block;
|
||||||
|
line-height: 2.54545455; /* 28px */
|
||||||
|
padding: 0 6px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-color-result:hover,
|
||||||
|
.wp-color-result:focus {
|
||||||
|
background: #f6f7f7;
|
||||||
|
border-color: #8c8f94;
|
||||||
|
color: #1d2327;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-color-result:hover:after,
|
||||||
|
.wp-color-result:focus:after {
|
||||||
|
color: #1d2327;
|
||||||
|
border-color: #a7aaad;
|
||||||
|
border-right: 1px solid #8c8f94;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-container {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-color-result:focus {
|
||||||
|
border-color: #4f94d4;
|
||||||
|
box-shadow: 0 0 3px rgba(34, 113, 177, 0.8);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-color-result:active {
|
||||||
|
/* See Trac ticket #39662 */
|
||||||
|
transform: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-open + .wp-picker-input-wrap {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-input-wrap label {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* For the old `custom-background` page, to override the inline-block and margins from `.form-table td fieldset label`. */
|
||||||
|
.form-table .wp-picker-input-wrap label {
|
||||||
|
margin: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-input-wrap .button.wp-picker-default,
|
||||||
|
.wp-picker-input-wrap .button.wp-picker-clear,
|
||||||
|
.wp-customizer .wp-picker-input-wrap .button.wp-picker-default,
|
||||||
|
.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear {
|
||||||
|
margin-right: 6px;
|
||||||
|
padding: 0 8px;
|
||||||
|
line-height: 2.54545455; /* 28px */
|
||||||
|
min-height: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-container .iris-square-slider .ui-slider-handle:focus {
|
||||||
|
background-color: #50575e
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-container .iris-picker {
|
||||||
|
border-radius: 0;
|
||||||
|
border-color: #dcdcde;
|
||||||
|
margin-top: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-container input[type="text"].wp-color-picker {
|
||||||
|
width: 4rem;
|
||||||
|
font-size: 12px;
|
||||||
|
font-family: monospace;
|
||||||
|
line-height: 2.33333333; /* 28px */
|
||||||
|
margin: 0;
|
||||||
|
padding: 0 5px;
|
||||||
|
vertical-align: top;
|
||||||
|
min-height: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-color-picker::-webkit-input-placeholder {
|
||||||
|
color: #646970;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-color-picker::-moz-placeholder {
|
||||||
|
color: #646970;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-color-picker:-ms-input-placeholder {
|
||||||
|
color: #646970;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-container input[type="text"].iris-error {
|
||||||
|
background-color: #fcf0f1;
|
||||||
|
border-color: #d63638;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.iris-picker .ui-square-handle:focus,
|
||||||
|
.iris-picker .iris-strip .ui-slider-handle:focus {
|
||||||
|
border-color: #3582c4;
|
||||||
|
border-style: solid;
|
||||||
|
box-shadow: 0 0 0 1px #3582c4;
|
||||||
|
outline: 2px solid transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.iris-picker .iris-palette:focus {
|
||||||
|
box-shadow: 0 0 0 2px #3582c4;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 782px) {
|
||||||
|
.wp-picker-container input[type="text"].wp-color-picker {
|
||||||
|
width: 5rem;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 1.875; /* 30px */
|
||||||
|
min-height: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-customizer .wp-picker-container input[type="text"].wp-color-picker {
|
||||||
|
padding: 0 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-input-wrap .button.wp-picker-default,
|
||||||
|
.wp-picker-input-wrap .button.wp-picker-clear {
|
||||||
|
padding: 0 8px;
|
||||||
|
line-height: 2.14285714; /* 30px */
|
||||||
|
min-height: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-customizer .wp-picker-input-wrap .button.wp-picker-default,
|
||||||
|
.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear {
|
||||||
|
padding: 0 8px;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 2.14285714; /* 30px */
|
||||||
|
min-height: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-container .wp-color-result.button {
|
||||||
|
padding: 0 40px 0 0;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 2.14285714; /* 30px */
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-customizer .wp-picker-container .wp-color-result.button {
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 2.14285714; /* 30px */
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-container .wp-color-result-text {
|
||||||
|
padding: 0 14px;
|
||||||
|
font-size: inherit;
|
||||||
|
line-height: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-customizer .wp-picker-container .wp-color-result-text {
|
||||||
|
padding: 0 10px;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,2 @@
|
||||||
|
/*! This file is auto-generated */
|
||||||
|
.wp-color-picker{width:80px;direction:ltr}.wp-picker-container .hidden{display:none}.wp-picker-container .wp-color-result.button{min-height:30px;margin:0 0 6px 6px;padding:0 30px 0 0;font-size:11px}.wp-color-result-text{background:#f6f7f7;border-radius:2px 0 0 2px;border-right:1px solid #c3c4c7;color:#50575e;display:block;line-height:2.54545455;padding:0 6px;text-align:center}.wp-color-result:focus,.wp-color-result:hover{background:#f6f7f7;border-color:#8c8f94;color:#1d2327}.wp-color-result:focus:after,.wp-color-result:hover:after{color:#1d2327;border-color:#a7aaad;border-right:1px solid #8c8f94}.wp-picker-container{display:inline-block}.wp-color-result:focus{border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.wp-color-result:active{transform:none!important}.wp-picker-open+.wp-picker-input-wrap{display:inline-block;vertical-align:top}.wp-picker-input-wrap label{display:inline-block;vertical-align:top}.form-table .wp-picker-input-wrap label{margin:0!important}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default,.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{margin-right:6px;padding:0 8px;line-height:2.54545455;min-height:30px}.wp-picker-container .iris-square-slider .ui-slider-handle:focus{background-color:#50575e}.wp-picker-container .iris-picker{border-radius:0;border-color:#dcdcde;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:4rem;font-size:12px;font-family:monospace;line-height:2.33333333;margin:0;padding:0 5px;vertical-align:top;min-height:30px}.wp-color-picker::-webkit-input-placeholder{color:#646970}.wp-color-picker::-moz-placeholder{color:#646970;opacity:1}.wp-color-picker:-ms-input-placeholder{color:#646970}.wp-picker-container input[type=text].iris-error{background-color:#fcf0f1;border-color:#d63638;color:#000}.iris-picker .iris-strip .ui-slider-handle:focus,.iris-picker .ui-square-handle:focus{border-color:#3582c4;border-style:solid;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent}.iris-picker .iris-palette:focus{box-shadow:0 0 0 2px #3582c4}@media screen and (max-width:782px){.wp-picker-container input[type=text].wp-color-picker{width:5rem;font-size:16px;line-height:1.875;min-height:32px}.wp-customizer .wp-picker-container input[type=text].wp-color-picker{padding:0 5px}.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;line-height:2.14285714;min-height:32px}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;font-size:14px;line-height:2.14285714;min-height:32px}.wp-picker-container .wp-color-result.button{padding:0 40px 0 0;font-size:14px;line-height:2.14285714}.wp-customizer .wp-picker-container .wp-color-result.button{font-size:14px;line-height:2.14285714}.wp-picker-container .wp-color-result-text{padding:0 14px;font-size:inherit;line-height:inherit}.wp-customizer .wp-picker-container .wp-color-result-text{padding:0 10px}}
|
|
@ -0,0 +1,182 @@
|
||||||
|
/* rtl:ignore */
|
||||||
|
.wp-color-picker {
|
||||||
|
width: 80px;
|
||||||
|
direction: ltr;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-container .hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Needs higher specificiity. */
|
||||||
|
.wp-picker-container .wp-color-result.button {
|
||||||
|
min-height: 30px;
|
||||||
|
margin: 0 6px 6px 0;
|
||||||
|
padding: 0 0 0 30px;
|
||||||
|
font-size: 11px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-color-result-text {
|
||||||
|
background: #f6f7f7;
|
||||||
|
border-radius: 0 2px 2px 0;
|
||||||
|
border-left: 1px solid #c3c4c7;
|
||||||
|
color: #50575e;
|
||||||
|
display: block;
|
||||||
|
line-height: 2.54545455; /* 28px */
|
||||||
|
padding: 0 6px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-color-result:hover,
|
||||||
|
.wp-color-result:focus {
|
||||||
|
background: #f6f7f7;
|
||||||
|
border-color: #8c8f94;
|
||||||
|
color: #1d2327;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-color-result:hover:after,
|
||||||
|
.wp-color-result:focus:after {
|
||||||
|
color: #1d2327;
|
||||||
|
border-color: #a7aaad;
|
||||||
|
border-left: 1px solid #8c8f94;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-container {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-color-result:focus {
|
||||||
|
border-color: #4f94d4;
|
||||||
|
box-shadow: 0 0 3px rgba(34, 113, 177, 0.8);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-color-result:active {
|
||||||
|
/* See Trac ticket #39662 */
|
||||||
|
transform: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-open + .wp-picker-input-wrap {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-input-wrap label {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* For the old `custom-background` page, to override the inline-block and margins from `.form-table td fieldset label`. */
|
||||||
|
.form-table .wp-picker-input-wrap label {
|
||||||
|
margin: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-input-wrap .button.wp-picker-default,
|
||||||
|
.wp-picker-input-wrap .button.wp-picker-clear,
|
||||||
|
.wp-customizer .wp-picker-input-wrap .button.wp-picker-default,
|
||||||
|
.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear {
|
||||||
|
margin-left: 6px;
|
||||||
|
padding: 0 8px;
|
||||||
|
line-height: 2.54545455; /* 28px */
|
||||||
|
min-height: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-container .iris-square-slider .ui-slider-handle:focus {
|
||||||
|
background-color: #50575e
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-container .iris-picker {
|
||||||
|
border-radius: 0;
|
||||||
|
border-color: #dcdcde;
|
||||||
|
margin-top: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-container input[type="text"].wp-color-picker {
|
||||||
|
width: 4rem;
|
||||||
|
font-size: 12px;
|
||||||
|
font-family: monospace;
|
||||||
|
line-height: 2.33333333; /* 28px */
|
||||||
|
margin: 0;
|
||||||
|
padding: 0 5px;
|
||||||
|
vertical-align: top;
|
||||||
|
min-height: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-color-picker::-webkit-input-placeholder {
|
||||||
|
color: #646970;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-color-picker::-moz-placeholder {
|
||||||
|
color: #646970;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-color-picker:-ms-input-placeholder {
|
||||||
|
color: #646970;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-container input[type="text"].iris-error {
|
||||||
|
background-color: #fcf0f1;
|
||||||
|
border-color: #d63638;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.iris-picker .ui-square-handle:focus,
|
||||||
|
.iris-picker .iris-strip .ui-slider-handle:focus {
|
||||||
|
border-color: #3582c4;
|
||||||
|
border-style: solid;
|
||||||
|
box-shadow: 0 0 0 1px #3582c4;
|
||||||
|
outline: 2px solid transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.iris-picker .iris-palette:focus {
|
||||||
|
box-shadow: 0 0 0 2px #3582c4;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 782px) {
|
||||||
|
.wp-picker-container input[type="text"].wp-color-picker {
|
||||||
|
width: 5rem;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 1.875; /* 30px */
|
||||||
|
min-height: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-customizer .wp-picker-container input[type="text"].wp-color-picker {
|
||||||
|
padding: 0 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-input-wrap .button.wp-picker-default,
|
||||||
|
.wp-picker-input-wrap .button.wp-picker-clear {
|
||||||
|
padding: 0 8px;
|
||||||
|
line-height: 2.14285714; /* 30px */
|
||||||
|
min-height: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-customizer .wp-picker-input-wrap .button.wp-picker-default,
|
||||||
|
.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear {
|
||||||
|
padding: 0 8px;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 2.14285714; /* 30px */
|
||||||
|
min-height: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-container .wp-color-result.button {
|
||||||
|
padding: 0 0 0 40px;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 2.14285714; /* 30px */
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-customizer .wp-picker-container .wp-color-result.button {
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 2.14285714; /* 30px */
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-picker-container .wp-color-result-text {
|
||||||
|
padding: 0 14px;
|
||||||
|
font-size: inherit;
|
||||||
|
line-height: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-customizer .wp-picker-container .wp-color-result-text {
|
||||||
|
padding: 0 10px;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,2 @@
|
||||||
|
/*! This file is auto-generated */
|
||||||
|
.wp-color-picker{width:80px;direction:ltr}.wp-picker-container .hidden{display:none}.wp-picker-container .wp-color-result.button{min-height:30px;margin:0 6px 6px 0;padding:0 0 0 30px;font-size:11px}.wp-color-result-text{background:#f6f7f7;border-radius:0 2px 2px 0;border-left:1px solid #c3c4c7;color:#50575e;display:block;line-height:2.54545455;padding:0 6px;text-align:center}.wp-color-result:focus,.wp-color-result:hover{background:#f6f7f7;border-color:#8c8f94;color:#1d2327}.wp-color-result:focus:after,.wp-color-result:hover:after{color:#1d2327;border-color:#a7aaad;border-left:1px solid #8c8f94}.wp-picker-container{display:inline-block}.wp-color-result:focus{border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.wp-color-result:active{transform:none!important}.wp-picker-open+.wp-picker-input-wrap{display:inline-block;vertical-align:top}.wp-picker-input-wrap label{display:inline-block;vertical-align:top}.form-table .wp-picker-input-wrap label{margin:0!important}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default,.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{margin-left:6px;padding:0 8px;line-height:2.54545455;min-height:30px}.wp-picker-container .iris-square-slider .ui-slider-handle:focus{background-color:#50575e}.wp-picker-container .iris-picker{border-radius:0;border-color:#dcdcde;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:4rem;font-size:12px;font-family:monospace;line-height:2.33333333;margin:0;padding:0 5px;vertical-align:top;min-height:30px}.wp-color-picker::-webkit-input-placeholder{color:#646970}.wp-color-picker::-moz-placeholder{color:#646970;opacity:1}.wp-color-picker:-ms-input-placeholder{color:#646970}.wp-picker-container input[type=text].iris-error{background-color:#fcf0f1;border-color:#d63638;color:#000}.iris-picker .iris-strip .ui-slider-handle:focus,.iris-picker .ui-square-handle:focus{border-color:#3582c4;border-style:solid;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent}.iris-picker .iris-palette:focus{box-shadow:0 0 0 2px #3582c4}@media screen and (max-width:782px){.wp-picker-container input[type=text].wp-color-picker{width:5rem;font-size:16px;line-height:1.875;min-height:32px}.wp-customizer .wp-picker-container input[type=text].wp-color-picker{padding:0 5px}.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;line-height:2.14285714;min-height:32px}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;font-size:14px;line-height:2.14285714;min-height:32px}.wp-picker-container .wp-color-result.button{padding:0 0 0 40px;font-size:14px;line-height:2.14285714}.wp-customizer .wp-picker-container .wp-color-result.button{font-size:14px;line-height:2.14285714}.wp-picker-container .wp-color-result-text{padding:0 14px;font-size:inherit;line-height:inherit}.wp-customizer .wp-picker-container .wp-color-result-text{padding:0 10px}}
|
|
@ -0,0 +1,798 @@
|
||||||
|
|
||||||
|
@import 'variables';
|
||||||
|
@import 'mixins';
|
||||||
|
|
||||||
|
@function url-friendly-colour( $color ) {
|
||||||
|
@return '%23' + str-slice( '#{ $color }', 2, -1 );
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background: $body-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Links */
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: $link;
|
||||||
|
|
||||||
|
&:hover,
|
||||||
|
&:active,
|
||||||
|
&:focus {
|
||||||
|
color: $link-focus;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#post-body .misc-pub-post-status:before,
|
||||||
|
#post-body #visibility:before,
|
||||||
|
.curtime #timestamp:before,
|
||||||
|
#post-body .misc-pub-revisions:before,
|
||||||
|
span.wp-media-buttons-icon:before {
|
||||||
|
color: currentColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui .button-link {
|
||||||
|
color: $link;
|
||||||
|
|
||||||
|
&:hover,
|
||||||
|
&:active,
|
||||||
|
&:focus {
|
||||||
|
color: $link-focus;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-modal .delete-attachment,
|
||||||
|
.media-modal .trash-attachment,
|
||||||
|
.media-modal .untrash-attachment,
|
||||||
|
.wp-core-ui .button-link-delete {
|
||||||
|
color: #a00;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-modal .delete-attachment:hover,
|
||||||
|
.media-modal .trash-attachment:hover,
|
||||||
|
.media-modal .untrash-attachment:hover,
|
||||||
|
.media-modal .delete-attachment:focus,
|
||||||
|
.media-modal .trash-attachment:focus,
|
||||||
|
.media-modal .untrash-attachment:focus,
|
||||||
|
.wp-core-ui .button-link-delete:hover,
|
||||||
|
.wp-core-ui .button-link-delete:focus {
|
||||||
|
color: #dc3232;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Forms */
|
||||||
|
|
||||||
|
input[type=checkbox]:checked::before {
|
||||||
|
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27#{url-friendly-colour($form-checked)}%27%2F%3E%3C%2Fsvg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=radio]:checked::before {
|
||||||
|
background: $form-checked;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui input[type="reset"]:hover,
|
||||||
|
.wp-core-ui input[type="reset"]:active {
|
||||||
|
color: $link-focus;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type="text"]:focus,
|
||||||
|
input[type="password"]:focus,
|
||||||
|
input[type="color"]:focus,
|
||||||
|
input[type="date"]:focus,
|
||||||
|
input[type="datetime"]:focus,
|
||||||
|
input[type="datetime-local"]:focus,
|
||||||
|
input[type="email"]:focus,
|
||||||
|
input[type="month"]:focus,
|
||||||
|
input[type="number"]:focus,
|
||||||
|
input[type="search"]:focus,
|
||||||
|
input[type="tel"]:focus,
|
||||||
|
input[type="text"]:focus,
|
||||||
|
input[type="time"]:focus,
|
||||||
|
input[type="url"]:focus,
|
||||||
|
input[type="week"]:focus,
|
||||||
|
input[type="checkbox"]:focus,
|
||||||
|
input[type="radio"]:focus,
|
||||||
|
select:focus,
|
||||||
|
textarea:focus {
|
||||||
|
border-color: $highlight-color;
|
||||||
|
box-shadow: 0 0 0 1px $highlight-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Core UI */
|
||||||
|
|
||||||
|
.wp-core-ui {
|
||||||
|
|
||||||
|
.button {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #32373c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button.hover,
|
||||||
|
.button:hover,
|
||||||
|
.button.focus,
|
||||||
|
.button:focus {
|
||||||
|
border-color: darken( #7e8993, 5% );
|
||||||
|
color: darken( #32373c, 5% );
|
||||||
|
}
|
||||||
|
|
||||||
|
.button.focus,
|
||||||
|
.button:focus {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: darken( #32373c, 5% );
|
||||||
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button:active {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: darken( #32373c, 5% );
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button.active,
|
||||||
|
.button.active:focus,
|
||||||
|
.button.active:hover {
|
||||||
|
border-color: $button-color;
|
||||||
|
color: darken( #32373c, 5% );
|
||||||
|
box-shadow: inset 0 2px 5px -3px $button-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button.active:focus {
|
||||||
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
|
}
|
||||||
|
|
||||||
|
@if ( $low-contrast-theme != "true" ) {
|
||||||
|
.button,
|
||||||
|
.button-secondary {
|
||||||
|
color: $highlight-color;
|
||||||
|
border-color: $highlight-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button.hover,
|
||||||
|
.button:hover,
|
||||||
|
.button-secondary:hover{
|
||||||
|
border-color: darken($highlight-color, 10);
|
||||||
|
color: darken($highlight-color, 10);
|
||||||
|
}
|
||||||
|
|
||||||
|
.button.focus,
|
||||||
|
.button:focus,
|
||||||
|
.button-secondary:focus {
|
||||||
|
border-color: lighten($highlight-color, 10);
|
||||||
|
color: darken($highlight-color, 20);;
|
||||||
|
box-shadow: 0 0 0 1px lighten($highlight-color, 10);
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-primary {
|
||||||
|
&:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-primary {
|
||||||
|
@include button( $button-color );
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-group > .button.active {
|
||||||
|
border-color: $button-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-ui-primary {
|
||||||
|
color: $text-color;
|
||||||
|
background-color: $base-color;
|
||||||
|
}
|
||||||
|
.wp-ui-text-primary {
|
||||||
|
color: $base-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-ui-highlight {
|
||||||
|
color: $menu-highlight-text;
|
||||||
|
background-color: $menu-highlight-background;
|
||||||
|
}
|
||||||
|
.wp-ui-text-highlight {
|
||||||
|
color: $menu-highlight-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-ui-notification {
|
||||||
|
color: $menu-bubble-text;
|
||||||
|
background-color: $menu-bubble-background;
|
||||||
|
}
|
||||||
|
.wp-ui-text-notification {
|
||||||
|
color: $menu-bubble-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-ui-text-icon {
|
||||||
|
color: $menu-icon;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* List tables */
|
||||||
|
@if $low-contrast-theme == "true" {
|
||||||
|
.wrap .page-title-action:hover {
|
||||||
|
color: $menu-text;
|
||||||
|
background-color: $menu-background;
|
||||||
|
}
|
||||||
|
} @else {
|
||||||
|
.wrap .page-title-action,
|
||||||
|
.wrap .page-title-action:active {
|
||||||
|
border: 1px solid $highlight-color;
|
||||||
|
color: $highlight-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .page-title-action:hover {
|
||||||
|
color: darken($highlight-color, 10);
|
||||||
|
border-color: darken($highlight-color, 10);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .page-title-action:focus {
|
||||||
|
border-color: lighten($highlight-color, 10);
|
||||||
|
color: darken($highlight-color, 20);;
|
||||||
|
box-shadow: 0 0 0 1px lighten($highlight-color, 10);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-switch a.current:before {
|
||||||
|
color: $menu-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-switch a:hover:before {
|
||||||
|
color: $menu-bubble-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Admin Menu */
|
||||||
|
|
||||||
|
#adminmenuback,
|
||||||
|
#adminmenuwrap,
|
||||||
|
#adminmenu {
|
||||||
|
background: $menu-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a {
|
||||||
|
color: $menu-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu div.wp-menu-image:before {
|
||||||
|
color: $menu-icon;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a:hover,
|
||||||
|
#adminmenu li.menu-top:hover,
|
||||||
|
#adminmenu li.opensub > a.menu-top,
|
||||||
|
#adminmenu li > a.menu-top:focus {
|
||||||
|
color: $menu-highlight-text;
|
||||||
|
background-color: $menu-highlight-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.menu-top:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
|
||||||
|
color: $menu-highlight-icon;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Active tabs use a bottom border color that matches the page background color. */
|
||||||
|
|
||||||
|
.about-wrap .nav-tab-active,
|
||||||
|
.nav-tab-active,
|
||||||
|
.nav-tab-active:hover {
|
||||||
|
background-color: $body-background;
|
||||||
|
border-bottom-color: $body-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Admin Menu: submenu */
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||||
|
background: $menu-submenu-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||||
|
border-right-color: $menu-submenu-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
|
color: $menu-submenu-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu a,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||||
|
color: $menu-submenu-text;
|
||||||
|
|
||||||
|
&:focus, &:hover {
|
||||||
|
color: $menu-submenu-focus-text;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Admin Menu: current */
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu li.current a,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
|
||||||
|
color: $menu-submenu-current-text;
|
||||||
|
|
||||||
|
&:hover, &:focus {
|
||||||
|
color: $menu-submenu-focus-text;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ul#adminmenu a.wp-has-current-submenu:after,
|
||||||
|
ul#adminmenu > li.current > a.current:after {
|
||||||
|
border-right-color: $body-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current a.menu-top,
|
||||||
|
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
||||||
|
#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,
|
||||||
|
.folded #adminmenu li.current.menu-top {
|
||||||
|
color: $menu-current-text;
|
||||||
|
background: $menu-current-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,
|
||||||
|
#adminmenu a.current:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li.current div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,
|
||||||
|
#adminmenu li:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.opensub div.wp-menu-image:before {
|
||||||
|
color: $menu-current-icon;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Admin Menu: bubble */
|
||||||
|
|
||||||
|
#adminmenu .menu-counter,
|
||||||
|
#adminmenu .awaiting-mod,
|
||||||
|
#adminmenu .update-plugins {
|
||||||
|
color: $menu-bubble-text;
|
||||||
|
background: $menu-bubble-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current a .awaiting-mod,
|
||||||
|
#adminmenu li a.wp-has-current-submenu .update-plugins,
|
||||||
|
#adminmenu li:hover a .awaiting-mod,
|
||||||
|
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||||
|
color: $menu-bubble-current-text;
|
||||||
|
background: $menu-bubble-current-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Admin Menu: collapse button */
|
||||||
|
|
||||||
|
#collapse-button {
|
||||||
|
color: $menu-collapse-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button:hover,
|
||||||
|
#collapse-button:focus {
|
||||||
|
color: $menu-submenu-focus-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar */
|
||||||
|
|
||||||
|
#wpadminbar {
|
||||||
|
color: $menu-text;
|
||||||
|
background: $menu-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-item,
|
||||||
|
#wpadminbar a.ab-item,
|
||||||
|
#wpadminbar > #wp-toolbar span.ab-label,
|
||||||
|
#wpadminbar > #wp-toolbar span.noticon {
|
||||||
|
color: $menu-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-icon,
|
||||||
|
#wpadminbar .ab-icon:before,
|
||||||
|
#wpadminbar .ab-item:before,
|
||||||
|
#wpadminbar .ab-item:after {
|
||||||
|
color: $menu-icon;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus,
|
||||||
|
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
|
||||||
|
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||||
|
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||||
|
color: $menu-submenu-focus-text;
|
||||||
|
background: $menu-submenu-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label,
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label {
|
||||||
|
color: $menu-submenu-focus-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-icon:before,
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-item:before,
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-item:after,
|
||||||
|
#wpadminbar:not(.mobile) li:hover #adminbarsearch:before {
|
||||||
|
color: $menu-submenu-focus-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Admin Bar: submenu */
|
||||||
|
|
||||||
|
#wpadminbar .menupop .ab-sub-wrapper {
|
||||||
|
background: $menu-submenu-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||||
|
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||||
|
background: $menu-submenu-background-alt;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-submenu .ab-item,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||||
|
color: $menu-submenu-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks li .blavatar,
|
||||||
|
#wpadminbar .menupop .menupop > .ab-item:before {
|
||||||
|
color: $menu-icon;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:hover,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:focus,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:hover strong,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:focus strong,
|
||||||
|
#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a:hover,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a:focus,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,
|
||||||
|
#wpadminbar li:hover .ab-icon:before,
|
||||||
|
#wpadminbar li:hover .ab-item:before,
|
||||||
|
#wpadminbar li a:focus .ab-icon:before,
|
||||||
|
#wpadminbar li .ab-item:focus:before,
|
||||||
|
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||||
|
#wpadminbar li.hover .ab-icon:before,
|
||||||
|
#wpadminbar li.hover .ab-item:before,
|
||||||
|
#wpadminbar li:hover #adminbarsearch:before,
|
||||||
|
#wpadminbar li #adminbarsearch.adminbar-focused:before {
|
||||||
|
color: $menu-submenu-focus-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks li a:hover .blavatar,
|
||||||
|
#wpadminbar .quicklinks li a:focus .blavatar,
|
||||||
|
#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar,
|
||||||
|
#wpadminbar .menupop .menupop > .ab-item:hover:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .ab-icon:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .ab-item:before {
|
||||||
|
color: $menu-submenu-focus-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .hover .ab-item:before {
|
||||||
|
color: $menu-icon;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Admin Bar: search */
|
||||||
|
|
||||||
|
#wpadminbar #adminbarsearch:before {
|
||||||
|
color: $menu-icon;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
|
color: $menu-text;
|
||||||
|
background: $adminbar-input-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: recovery mode */
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode {
|
||||||
|
color: $adminbar-recovery-exit-text;
|
||||||
|
background-color: $adminbar-recovery-exit-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
|
||||||
|
color: $adminbar-recovery-exit-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover >.ab-item,
|
||||||
|
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
|
color: $adminbar-recovery-exit-text;
|
||||||
|
background-color: $adminbar-recovery-exit-background-alt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: my account */
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
|
border-color: $adminbar-avatar-frame;
|
||||||
|
background-color: $adminbar-avatar-frame;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||||
|
color: $menu-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
|
||||||
|
color: $menu-submenu-focus-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
|
color: $menu-submenu-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Pointers */
|
||||||
|
|
||||||
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
|
background-color: $highlight-color;
|
||||||
|
border-color: darken( $highlight-color, 5% );
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
color: $highlight-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-pointer.wp-pointer-top .wp-pointer-arrow,
|
||||||
|
.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,
|
||||||
|
.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,
|
||||||
|
.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner {
|
||||||
|
border-bottom-color: $highlight-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Media */
|
||||||
|
|
||||||
|
.media-item .bar,
|
||||||
|
.media-progress-bar div {
|
||||||
|
background-color: $highlight-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.details.attachment {
|
||||||
|
box-shadow:
|
||||||
|
inset 0 0 0 3px #fff,
|
||||||
|
inset 0 0 0 7px $highlight-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.attachment.details .check {
|
||||||
|
background-color: $highlight-color;
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 2px $highlight-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-selection .attachment.selection.details .thumbnail {
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px $highlight-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Themes */
|
||||||
|
|
||||||
|
.theme-browser .theme.active .theme-name,
|
||||||
|
.theme-browser .theme.add-new-theme a:hover:after,
|
||||||
|
.theme-browser .theme.add-new-theme a:focus:after {
|
||||||
|
background: $highlight-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-browser .theme.add-new-theme a:hover span:after,
|
||||||
|
.theme-browser .theme.add-new-theme a:focus span:after {
|
||||||
|
color: $highlight-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-section.current,
|
||||||
|
.theme-filter.current {
|
||||||
|
border-bottom-color: $menu-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters {
|
||||||
|
color: $menu-text;
|
||||||
|
background-color: $menu-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:before {
|
||||||
|
color: $menu-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:hover,
|
||||||
|
body.more-filters-opened .more-filters:focus {
|
||||||
|
background-color: $menu-highlight-background;
|
||||||
|
color: $menu-highlight-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:hover:before,
|
||||||
|
body.more-filters-opened .more-filters:focus:before {
|
||||||
|
color: $menu-highlight-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Widgets */
|
||||||
|
|
||||||
|
.widgets-chooser li.widgets-chooser-selected {
|
||||||
|
background-color: $menu-highlight-background;
|
||||||
|
color: $menu-highlight-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widgets-chooser li.widgets-chooser-selected:before,
|
||||||
|
.widgets-chooser li.widgets-chooser-selected:focus:before {
|
||||||
|
color: $menu-highlight-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Nav Menus */
|
||||||
|
|
||||||
|
.nav-menus-php .item-edit:focus:before {
|
||||||
|
box-shadow:
|
||||||
|
0 0 0 1px lighten($button-color, 10),
|
||||||
|
0 0 2px 1px $button-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Responsive Component */
|
||||||
|
|
||||||
|
div#wp-responsive-toggle a:before {
|
||||||
|
color: $menu-icon;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open div#wp-responsive-toggle a {
|
||||||
|
// ToDo: make inset border
|
||||||
|
border-color: transparent;
|
||||||
|
background: $menu-highlight-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||||
|
background: $menu-submenu-background;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||||
|
color: $menu-icon;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* TinyMCE */
|
||||||
|
|
||||||
|
.mce-container.mce-menu .mce-menu-item:hover,
|
||||||
|
.mce-container.mce-menu .mce-menu-item.mce-selected,
|
||||||
|
.mce-container.mce-menu .mce-menu-item:focus,
|
||||||
|
.mce-container.mce-menu .mce-menu-item-normal.mce-active,
|
||||||
|
.mce-container.mce-menu .mce-menu-item-preview.mce-active {
|
||||||
|
background: $highlight-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Customizer */
|
||||||
|
.wp-core-ui {
|
||||||
|
#customize-controls .control-section:hover > .accordion-section-title,
|
||||||
|
#customize-controls .control-section .accordion-section-title:hover,
|
||||||
|
#customize-controls .control-section.open .accordion-section-title,
|
||||||
|
#customize-controls .control-section .accordion-section-title:focus {
|
||||||
|
color: $link;
|
||||||
|
border-left-color: $button-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-controls-close:focus,
|
||||||
|
.customize-controls-close:hover,
|
||||||
|
.customize-controls-preview-toggle:focus,
|
||||||
|
.customize-controls-preview-toggle:hover {
|
||||||
|
color: $link;
|
||||||
|
border-top-color: $button-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-panel-back:hover,
|
||||||
|
.customize-panel-back:focus,
|
||||||
|
.customize-section-back:hover,
|
||||||
|
.customize-section-back:focus {
|
||||||
|
color: $link;
|
||||||
|
border-left-color: $button-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-screen-options-toggle:hover,
|
||||||
|
.customize-screen-options-toggle:active,
|
||||||
|
.customize-screen-options-toggle:focus,
|
||||||
|
.active-menu-screen-options .customize-screen-options-toggle,
|
||||||
|
#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,
|
||||||
|
#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,
|
||||||
|
#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus {
|
||||||
|
color: $link;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-screen-options-toggle:focus:before,
|
||||||
|
#customize-controls .customize-info .customize-help-toggle:focus:before,
|
||||||
|
&.wp-customizer button:focus .toggle-indicator:before,
|
||||||
|
.menu-item-bar .item-delete:focus:before,
|
||||||
|
#available-menu-items .item-add:focus:before,
|
||||||
|
#customize-save-button-wrapper .save:focus,
|
||||||
|
#publish-settings:focus {
|
||||||
|
box-shadow:
|
||||||
|
0 0 0 1px lighten($button-color, 10),
|
||||||
|
0 0 2px 1px $button-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
#customize-controls .customize-info.open .customize-help-toggle,
|
||||||
|
#customize-controls .customize-info .customize-help-toggle:focus,
|
||||||
|
#customize-controls .customize-info .customize-help-toggle:hover {
|
||||||
|
color: $link;
|
||||||
|
}
|
||||||
|
|
||||||
|
.control-panel-themes .customize-themes-section-title:focus,
|
||||||
|
.control-panel-themes .customize-themes-section-title:hover {
|
||||||
|
border-left-color: $button-color;
|
||||||
|
color: $link;
|
||||||
|
}
|
||||||
|
|
||||||
|
.control-panel-themes .theme-section .customize-themes-section-title.selected:after {
|
||||||
|
background: $button-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.control-panel-themes .customize-themes-section-title.selected {
|
||||||
|
color: $link;
|
||||||
|
}
|
||||||
|
|
||||||
|
#customize-theme-controls .control-section:hover > .accordion-section-title:after,
|
||||||
|
#customize-theme-controls .control-section .accordion-section-title:hover:after,
|
||||||
|
#customize-theme-controls .control-section.open .accordion-section-title:after,
|
||||||
|
#customize-theme-controls .control-section .accordion-section-title:focus:after,
|
||||||
|
#customize-outer-theme-controls .control-section:hover > .accordion-section-title:after,
|
||||||
|
#customize-outer-theme-controls .control-section .accordion-section-title:hover:after,
|
||||||
|
#customize-outer-theme-controls .control-section.open .accordion-section-title:after,
|
||||||
|
#customize-outer-theme-controls .control-section .accordion-section-title:focus:after {
|
||||||
|
color: $link;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-control .attachment-media-view .button-add-media:focus {
|
||||||
|
background-color: #fbfbfc;
|
||||||
|
border-color: $button-color;
|
||||||
|
border-style: solid;
|
||||||
|
box-shadow: 0 0 0 1px $button-color;
|
||||||
|
outline: 2px solid transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-full-overlay-footer .devices button:focus,
|
||||||
|
.wp-full-overlay-footer .devices button.active:hover {
|
||||||
|
border-bottom-color: $button-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-full-overlay-footer .devices button:hover:before,
|
||||||
|
.wp-full-overlay-footer .devices button:focus:before {
|
||||||
|
color: $button-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-full-overlay .collapse-sidebar:hover,
|
||||||
|
.wp-full-overlay .collapse-sidebar:focus {
|
||||||
|
color: $button-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||||
|
.wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||||
|
box-shadow:
|
||||||
|
0 0 0 1px lighten($button-color, 10),
|
||||||
|
0 0 2px 1px $button-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.wp-customizer .theme-overlay .theme-header .close:focus,
|
||||||
|
&.wp-customizer .theme-overlay .theme-header .close:hover,
|
||||||
|
&.wp-customizer .theme-overlay .theme-header .right:focus,
|
||||||
|
&.wp-customizer .theme-overlay .theme-header .right:hover,
|
||||||
|
&.wp-customizer .theme-overlay .theme-header .left:focus,
|
||||||
|
&.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||||
|
border-bottom-color: $button-color;
|
||||||
|
color: $link;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Welcome Panel */
|
||||||
|
.welcome-panel {
|
||||||
|
background-color: $dashboard-accent-1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.welcome-panel-header-image circle {
|
||||||
|
stroke: $dashboard-accent-2;
|
||||||
|
fill: $dashboard-accent-1;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*="welcome-panel-icon"] {
|
||||||
|
background-color: $dashboard-icon-background;
|
||||||
|
}
|
|
@ -0,0 +1,37 @@
|
||||||
|
/*
|
||||||
|
* Button mixin- creates a button effect with correct
|
||||||
|
* highlights/shadows, based on a base color.
|
||||||
|
*/
|
||||||
|
@mixin button( $button-color, $button-text-color: #fff ) {
|
||||||
|
background: $button-color;
|
||||||
|
border-color: $button-color;
|
||||||
|
color: $button-text-color;
|
||||||
|
|
||||||
|
&:hover,
|
||||||
|
&:focus {
|
||||||
|
background: lighten( $button-color, 3% );
|
||||||
|
border-color: darken( $button-color, 3% );
|
||||||
|
color: $button-text-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
box-shadow:
|
||||||
|
0 0 0 1px #fff,
|
||||||
|
0 0 0 3px $button-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
background: darken( $button-color, 5% );
|
||||||
|
border-color: darken( $button-color, 5% );
|
||||||
|
color: $button-text-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.active,
|
||||||
|
&.active:focus,
|
||||||
|
&.active:hover {
|
||||||
|
background: $button-color;
|
||||||
|
color: $button-text-color;
|
||||||
|
border-color: darken( $button-color, 15% );
|
||||||
|
box-shadow: inset 0 2px 5px -3px darken( $button-color, 50% );
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,72 @@
|
||||||
|
// assign default value to all undefined variables
|
||||||
|
|
||||||
|
$scheme-name: "default" !default;
|
||||||
|
|
||||||
|
// core variables
|
||||||
|
|
||||||
|
$text-color: #fff !default;
|
||||||
|
$base-color: #23282d !default;
|
||||||
|
$icon-color: hsl( hue( $base-color ), 7%, 95% ) !default;
|
||||||
|
$highlight-color: #0073aa !default;
|
||||||
|
$notification-color: #d54e21 !default;
|
||||||
|
|
||||||
|
|
||||||
|
// global
|
||||||
|
|
||||||
|
$body-background: #f1f1f1 !default;
|
||||||
|
|
||||||
|
$link: #0073aa !default;
|
||||||
|
$link-focus: lighten( $link, 10% ) !default;
|
||||||
|
|
||||||
|
$button-color: $highlight-color !default;
|
||||||
|
$button-text-color: $text-color !default;
|
||||||
|
|
||||||
|
$form-checked: #7e8993 !default;
|
||||||
|
|
||||||
|
// admin menu & admin-bar
|
||||||
|
|
||||||
|
$menu-text: $text-color !default;
|
||||||
|
$menu-icon: $icon-color !default;
|
||||||
|
$menu-background: $base-color !default;
|
||||||
|
|
||||||
|
$menu-highlight-text: $text-color !default;
|
||||||
|
$menu-highlight-icon: $text-color !default;
|
||||||
|
$menu-highlight-background: $highlight-color !default;
|
||||||
|
|
||||||
|
$menu-current-text: $menu-highlight-text !default;
|
||||||
|
$menu-current-icon: $menu-highlight-icon !default;
|
||||||
|
$menu-current-background: $menu-highlight-background !default;
|
||||||
|
|
||||||
|
$menu-submenu-text: mix( $base-color, $text-color, 30% ) !default;
|
||||||
|
$menu-submenu-background: darken( $base-color, 7% ) !default;
|
||||||
|
$menu-submenu-background-alt: desaturate( lighten( $menu-background, 7% ), 7% ) !default;
|
||||||
|
|
||||||
|
$menu-submenu-focus-text: $highlight-color !default;
|
||||||
|
$menu-submenu-current-text: $text-color !default;
|
||||||
|
|
||||||
|
$menu-bubble-text: $text-color !default;
|
||||||
|
$menu-bubble-background: $notification-color !default;
|
||||||
|
$menu-bubble-current-text: $text-color !default;
|
||||||
|
$menu-bubble-current-background: $menu-submenu-background !default;
|
||||||
|
|
||||||
|
$menu-collapse-text: $menu-icon !default;
|
||||||
|
$menu-collapse-icon: $menu-icon !default;
|
||||||
|
$menu-collapse-focus-text: $text-color !default;
|
||||||
|
$menu-collapse-focus-icon: $menu-highlight-icon !default;
|
||||||
|
|
||||||
|
$adminbar-avatar-frame: lighten( $menu-background, 7% ) !default;
|
||||||
|
$adminbar-input-background: lighten( $menu-background, 7% ) !default;
|
||||||
|
|
||||||
|
$adminbar-recovery-exit-text: $menu-bubble-text !default;
|
||||||
|
$adminbar-recovery-exit-background: $menu-bubble-background !default;
|
||||||
|
$adminbar-recovery-exit-background-alt: mix(black, $adminbar-recovery-exit-background, 10%) !default;
|
||||||
|
|
||||||
|
$menu-customizer-text: mix( $base-color, $text-color, 40% ) !default;
|
||||||
|
|
||||||
|
// Dashboard Colors
|
||||||
|
|
||||||
|
$dashboard-accent-1: $highlight-color !default;
|
||||||
|
$dashboard-accent-2: rgba(255, 255, 255, 0.5) !default;
|
||||||
|
$dashboard-icon-background: $dashboard-accent-2 !default;
|
||||||
|
|
||||||
|
$low-contrast-theme: "false" !default;
|
|
@ -0,0 +1,720 @@
|
||||||
|
/*! This file is auto-generated */
|
||||||
|
/*
|
||||||
|
* Button mixin- creates a button effect with correct
|
||||||
|
* highlights/shadows, based on a base color.
|
||||||
|
*/
|
||||||
|
body {
|
||||||
|
background: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Links */
|
||||||
|
a {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
a:hover, a:active, a:focus {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
#post-body .misc-pub-post-status:before,
|
||||||
|
#post-body #visibility:before,
|
||||||
|
.curtime #timestamp:before,
|
||||||
|
#post-body .misc-pub-revisions:before,
|
||||||
|
span.wp-media-buttons-icon:before {
|
||||||
|
color: currentColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui .button-link {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-modal .delete-attachment,
|
||||||
|
.media-modal .trash-attachment,
|
||||||
|
.media-modal .untrash-attachment,
|
||||||
|
.wp-core-ui .button-link-delete {
|
||||||
|
color: #a00;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-modal .delete-attachment:hover,
|
||||||
|
.media-modal .trash-attachment:hover,
|
||||||
|
.media-modal .untrash-attachment:hover,
|
||||||
|
.media-modal .delete-attachment:focus,
|
||||||
|
.media-modal .trash-attachment:focus,
|
||||||
|
.media-modal .untrash-attachment:focus,
|
||||||
|
.wp-core-ui .button-link-delete:hover,
|
||||||
|
.wp-core-ui .button-link-delete:focus {
|
||||||
|
color: #dc3232;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Forms */
|
||||||
|
input[type=checkbox]:checked::before {
|
||||||
|
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=radio]:checked::before {
|
||||||
|
background: #7e8993;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui input[type=reset]:hover,
|
||||||
|
.wp-core-ui input[type=reset]:active {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=text]:focus,
|
||||||
|
input[type=password]:focus,
|
||||||
|
input[type=color]:focus,
|
||||||
|
input[type=date]:focus,
|
||||||
|
input[type=datetime]:focus,
|
||||||
|
input[type=datetime-local]:focus,
|
||||||
|
input[type=email]:focus,
|
||||||
|
input[type=month]:focus,
|
||||||
|
input[type=number]:focus,
|
||||||
|
input[type=search]:focus,
|
||||||
|
input[type=tel]:focus,
|
||||||
|
input[type=text]:focus,
|
||||||
|
input[type=time]:focus,
|
||||||
|
input[type=url]:focus,
|
||||||
|
input[type=week]:focus,
|
||||||
|
input[type=checkbox]:focus,
|
||||||
|
input[type=radio]:focus,
|
||||||
|
select:focus,
|
||||||
|
textarea:focus {
|
||||||
|
border-color: #096484;
|
||||||
|
box-shadow: 0 0 0 1px #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Core UI */
|
||||||
|
.wp-core-ui .button {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.hover,
|
||||||
|
.wp-core-ui .button:hover,
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus {
|
||||||
|
border-color: #717c87;
|
||||||
|
color: #262a2e;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button:active {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.active,
|
||||||
|
.wp-core-ui .button.active:focus,
|
||||||
|
.wp-core-ui .button.active:hover {
|
||||||
|
border-color: #e1a948;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: inset 0 2px 5px -3px #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.active:focus {
|
||||||
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button,
|
||||||
|
.wp-core-ui .button-secondary {
|
||||||
|
color: #096484;
|
||||||
|
border-color: #096484;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.hover,
|
||||||
|
.wp-core-ui .button:hover,
|
||||||
|
.wp-core-ui .button-secondary:hover {
|
||||||
|
border-color: #064054;
|
||||||
|
color: #064054;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus,
|
||||||
|
.wp-core-ui .button-secondary:focus {
|
||||||
|
border-color: #0c88b4;
|
||||||
|
color: #021c25;
|
||||||
|
box-shadow: 0 0 0 1px #0c88b4;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary {
|
||||||
|
background: #e1a948;
|
||||||
|
border-color: #e1a948;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
|
background: #e3af55;
|
||||||
|
border-color: #dfa33b;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:focus {
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:active {
|
||||||
|
background: #dd9f32;
|
||||||
|
border-color: #dd9f32;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
|
background: #e1a948;
|
||||||
|
color: #fff;
|
||||||
|
border-color: #bd831f;
|
||||||
|
box-shadow: inset 0 2px 5px -3px #241906;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-group > .button.active {
|
||||||
|
border-color: #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-primary {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #52accc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-primary {
|
||||||
|
color: #52accc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-highlight {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #096484;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-highlight {
|
||||||
|
color: #096484;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-notification {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-notification {
|
||||||
|
color: #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-icon {
|
||||||
|
color: #e5f8ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* List tables */
|
||||||
|
.wrap .page-title-action,
|
||||||
|
.wrap .page-title-action:active {
|
||||||
|
border: 1px solid #096484;
|
||||||
|
color: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .page-title-action:hover {
|
||||||
|
color: #064054;
|
||||||
|
border-color: #064054;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .page-title-action:focus {
|
||||||
|
border-color: #0c88b4;
|
||||||
|
color: #021c25;
|
||||||
|
box-shadow: 0 0 0 1px #0c88b4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-switch a.current:before {
|
||||||
|
color: #52accc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-switch a:hover:before {
|
||||||
|
color: #e1a948;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu */
|
||||||
|
#adminmenuback,
|
||||||
|
#adminmenuwrap,
|
||||||
|
#adminmenu {
|
||||||
|
background: #52accc;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu div.wp-menu-image:before {
|
||||||
|
color: #e5f8ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a:hover,
|
||||||
|
#adminmenu li.menu-top:hover,
|
||||||
|
#adminmenu li.opensub > a.menu-top,
|
||||||
|
#adminmenu li > a.menu-top:focus {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.menu-top:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Active tabs use a bottom border color that matches the page background color. */
|
||||||
|
.about-wrap .nav-tab-active,
|
||||||
|
.nav-tab-active,
|
||||||
|
.nav-tab-active:hover {
|
||||||
|
background-color: #f1f1f1;
|
||||||
|
border-bottom-color: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: submenu */
|
||||||
|
#adminmenu .wp-submenu,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||||
|
background: #4796b3;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||||
|
border-left-color: #4796b3;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
|
color: #e2ecf1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu a,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||||
|
color: #e2ecf1;
|
||||||
|
}
|
||||||
|
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: current */
|
||||||
|
#adminmenu .wp-submenu li.current a,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
#adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul#adminmenu a.wp-has-current-submenu:after,
|
||||||
|
ul#adminmenu > li.current > a.current:after {
|
||||||
|
border-left-color: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current a.menu-top,
|
||||||
|
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
||||||
|
#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,
|
||||||
|
.folded #adminmenu li.current.menu-top {
|
||||||
|
color: #fff;
|
||||||
|
background: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,
|
||||||
|
#adminmenu a.current:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li.current div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,
|
||||||
|
#adminmenu li:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.opensub div.wp-menu-image:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: bubble */
|
||||||
|
#adminmenu .menu-counter,
|
||||||
|
#adminmenu .awaiting-mod,
|
||||||
|
#adminmenu .update-plugins {
|
||||||
|
color: #fff;
|
||||||
|
background: #e1a948;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current a .awaiting-mod,
|
||||||
|
#adminmenu li a.wp-has-current-submenu .update-plugins,
|
||||||
|
#adminmenu li:hover a .awaiting-mod,
|
||||||
|
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||||
|
color: #fff;
|
||||||
|
background: #4796b3;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: collapse button */
|
||||||
|
#collapse-button {
|
||||||
|
color: #e5f8ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button:hover,
|
||||||
|
#collapse-button:focus {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar */
|
||||||
|
#wpadminbar {
|
||||||
|
color: #fff;
|
||||||
|
background: #52accc;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-item,
|
||||||
|
#wpadminbar a.ab-item,
|
||||||
|
#wpadminbar > #wp-toolbar span.ab-label,
|
||||||
|
#wpadminbar > #wp-toolbar span.noticon {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-icon,
|
||||||
|
#wpadminbar .ab-icon:before,
|
||||||
|
#wpadminbar .ab-item:before,
|
||||||
|
#wpadminbar .ab-item:after {
|
||||||
|
color: #e5f8ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus,
|
||||||
|
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
|
||||||
|
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||||
|
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||||
|
color: #fff;
|
||||||
|
background: #4796b3;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label,
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-icon:before,
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-item:before,
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-item:after,
|
||||||
|
#wpadminbar:not(.mobile) li:hover #adminbarsearch:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: submenu */
|
||||||
|
#wpadminbar .menupop .ab-sub-wrapper {
|
||||||
|
background: #4796b3;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||||
|
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||||
|
background: #74b6ce;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-submenu .ab-item,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||||
|
color: #e2ecf1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks li .blavatar,
|
||||||
|
#wpadminbar .menupop .menupop > .ab-item:before {
|
||||||
|
color: #e5f8ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:hover,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:focus,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:hover strong,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:focus strong,
|
||||||
|
#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a:hover,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a:focus,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,
|
||||||
|
#wpadminbar li:hover .ab-icon:before,
|
||||||
|
#wpadminbar li:hover .ab-item:before,
|
||||||
|
#wpadminbar li a:focus .ab-icon:before,
|
||||||
|
#wpadminbar li .ab-item:focus:before,
|
||||||
|
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||||
|
#wpadminbar li.hover .ab-icon:before,
|
||||||
|
#wpadminbar li.hover .ab-item:before,
|
||||||
|
#wpadminbar li:hover #adminbarsearch:before,
|
||||||
|
#wpadminbar li #adminbarsearch.adminbar-focused:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks li a:hover .blavatar,
|
||||||
|
#wpadminbar .quicklinks li a:focus .blavatar,
|
||||||
|
#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar,
|
||||||
|
#wpadminbar .menupop .menupop > .ab-item:hover:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .ab-icon:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .ab-item:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .hover .ab-item:before {
|
||||||
|
color: #e5f8ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: search */
|
||||||
|
#wpadminbar #adminbarsearch:before {
|
||||||
|
color: #e5f8ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
|
color: #fff;
|
||||||
|
background: #6eb9d4;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: recovery mode */
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #e1a948;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
|
||||||
|
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #cb9841;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: my account */
|
||||||
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
|
border-color: #6eb9d4;
|
||||||
|
background-color: #6eb9d4;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
|
color: #e2ecf1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Pointers */
|
||||||
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
|
background-color: #096484;
|
||||||
|
border-color: #07526c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
color: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-pointer.wp-pointer-top .wp-pointer-arrow,
|
||||||
|
.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,
|
||||||
|
.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,
|
||||||
|
.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner {
|
||||||
|
border-bottom-color: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Media */
|
||||||
|
.media-item .bar,
|
||||||
|
.media-progress-bar div {
|
||||||
|
background-color: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
.details.attachment {
|
||||||
|
box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
.attachment.details .check {
|
||||||
|
background-color: #096484;
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 2px #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-selection .attachment.selection.details .thumbnail {
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Themes */
|
||||||
|
.theme-browser .theme.active .theme-name,
|
||||||
|
.theme-browser .theme.add-new-theme a:hover:after,
|
||||||
|
.theme-browser .theme.add-new-theme a:focus:after {
|
||||||
|
background: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-browser .theme.add-new-theme a:hover span:after,
|
||||||
|
.theme-browser .theme.add-new-theme a:focus span:after {
|
||||||
|
color: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-section.current,
|
||||||
|
.theme-filter.current {
|
||||||
|
border-bottom-color: #52accc;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #52accc;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:hover,
|
||||||
|
body.more-filters-opened .more-filters:focus {
|
||||||
|
background-color: #096484;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:hover:before,
|
||||||
|
body.more-filters-opened .more-filters:focus:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Widgets */
|
||||||
|
.widgets-chooser li.widgets-chooser-selected {
|
||||||
|
background-color: #096484;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widgets-chooser li.widgets-chooser-selected:before,
|
||||||
|
.widgets-chooser li.widgets-chooser-selected:focus:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Nav Menus */
|
||||||
|
.nav-menus-php .item-edit:focus:before {
|
||||||
|
box-shadow: 0 0 0 1px #e8be74, 0 0 2px 1px #e1a948;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Responsive Component */
|
||||||
|
div#wp-responsive-toggle a:before {
|
||||||
|
color: #e5f8ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open div#wp-responsive-toggle a {
|
||||||
|
border-color: transparent;
|
||||||
|
background: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||||
|
background: #4796b3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||||
|
color: #e5f8ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* TinyMCE */
|
||||||
|
.mce-container.mce-menu .mce-menu-item:hover,
|
||||||
|
.mce-container.mce-menu .mce-menu-item.mce-selected,
|
||||||
|
.mce-container.mce-menu .mce-menu-item:focus,
|
||||||
|
.mce-container.mce-menu .mce-menu-item-normal.mce-active,
|
||||||
|
.mce-container.mce-menu .mce-menu-item-preview.mce-active {
|
||||||
|
background: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Customizer */
|
||||||
|
.wp-core-ui #customize-controls .control-section:hover > .accordion-section-title,
|
||||||
|
.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,
|
||||||
|
.wp-core-ui #customize-controls .control-section.open .accordion-section-title,
|
||||||
|
.wp-core-ui #customize-controls .control-section .accordion-section-title:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
border-right-color: #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-controls-close:focus,
|
||||||
|
.wp-core-ui .customize-controls-close:hover,
|
||||||
|
.wp-core-ui .customize-controls-preview-toggle:focus,
|
||||||
|
.wp-core-ui .customize-controls-preview-toggle:hover {
|
||||||
|
color: #0073aa;
|
||||||
|
border-top-color: #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-panel-back:hover,
|
||||||
|
.wp-core-ui .customize-panel-back:focus,
|
||||||
|
.wp-core-ui .customize-section-back:hover,
|
||||||
|
.wp-core-ui .customize-section-back:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
border-right-color: #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:hover,
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:active,
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:focus,
|
||||||
|
.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:focus:before,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before,
|
||||||
|
.wp-core-ui .menu-item-bar .item-delete:focus:before,
|
||||||
|
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||||
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
|
.wp-core-ui #publish-settings:focus {
|
||||||
|
box-shadow: 0 0 0 1px #e8be74, 0 0 2px 1px #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title:hover {
|
||||||
|
border-right-color: #e1a948;
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after {
|
||||||
|
background: #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title.selected {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus {
|
||||||
|
background-color: #fbfbfc;
|
||||||
|
border-color: #e1a948;
|
||||||
|
border-style: solid;
|
||||||
|
box-shadow: 0 0 0 1px #e1a948;
|
||||||
|
outline: 2px solid transparent;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:focus,
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button.active:hover {
|
||||||
|
border-bottom-color: #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:hover:before,
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:focus:before {
|
||||||
|
color: #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover,
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus {
|
||||||
|
color: #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||||
|
box-shadow: 0 0 0 1px #e8be74, 0 0 2px 1px #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||||
|
border-bottom-color: #e1a948;
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Welcome Panel */
|
||||||
|
.welcome-panel {
|
||||||
|
background-color: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
.welcome-panel-header-image circle {
|
||||||
|
stroke: rgba(255, 255, 255, 0.5);
|
||||||
|
fill: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*=welcome-panel-icon] {
|
||||||
|
background-color: #096484;
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,720 @@
|
||||||
|
/*! This file is auto-generated */
|
||||||
|
/*
|
||||||
|
* Button mixin- creates a button effect with correct
|
||||||
|
* highlights/shadows, based on a base color.
|
||||||
|
*/
|
||||||
|
body {
|
||||||
|
background: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Links */
|
||||||
|
a {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
a:hover, a:active, a:focus {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
#post-body .misc-pub-post-status:before,
|
||||||
|
#post-body #visibility:before,
|
||||||
|
.curtime #timestamp:before,
|
||||||
|
#post-body .misc-pub-revisions:before,
|
||||||
|
span.wp-media-buttons-icon:before {
|
||||||
|
color: currentColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui .button-link {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-modal .delete-attachment,
|
||||||
|
.media-modal .trash-attachment,
|
||||||
|
.media-modal .untrash-attachment,
|
||||||
|
.wp-core-ui .button-link-delete {
|
||||||
|
color: #a00;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-modal .delete-attachment:hover,
|
||||||
|
.media-modal .trash-attachment:hover,
|
||||||
|
.media-modal .untrash-attachment:hover,
|
||||||
|
.media-modal .delete-attachment:focus,
|
||||||
|
.media-modal .trash-attachment:focus,
|
||||||
|
.media-modal .untrash-attachment:focus,
|
||||||
|
.wp-core-ui .button-link-delete:hover,
|
||||||
|
.wp-core-ui .button-link-delete:focus {
|
||||||
|
color: #dc3232;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Forms */
|
||||||
|
input[type=checkbox]:checked::before {
|
||||||
|
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=radio]:checked::before {
|
||||||
|
background: #7e8993;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui input[type=reset]:hover,
|
||||||
|
.wp-core-ui input[type=reset]:active {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=text]:focus,
|
||||||
|
input[type=password]:focus,
|
||||||
|
input[type=color]:focus,
|
||||||
|
input[type=date]:focus,
|
||||||
|
input[type=datetime]:focus,
|
||||||
|
input[type=datetime-local]:focus,
|
||||||
|
input[type=email]:focus,
|
||||||
|
input[type=month]:focus,
|
||||||
|
input[type=number]:focus,
|
||||||
|
input[type=search]:focus,
|
||||||
|
input[type=tel]:focus,
|
||||||
|
input[type=text]:focus,
|
||||||
|
input[type=time]:focus,
|
||||||
|
input[type=url]:focus,
|
||||||
|
input[type=week]:focus,
|
||||||
|
input[type=checkbox]:focus,
|
||||||
|
input[type=radio]:focus,
|
||||||
|
select:focus,
|
||||||
|
textarea:focus {
|
||||||
|
border-color: #096484;
|
||||||
|
box-shadow: 0 0 0 1px #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Core UI */
|
||||||
|
.wp-core-ui .button {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.hover,
|
||||||
|
.wp-core-ui .button:hover,
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus {
|
||||||
|
border-color: #717c87;
|
||||||
|
color: #262a2e;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button:active {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.active,
|
||||||
|
.wp-core-ui .button.active:focus,
|
||||||
|
.wp-core-ui .button.active:hover {
|
||||||
|
border-color: #e1a948;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: inset 0 2px 5px -3px #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.active:focus {
|
||||||
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button,
|
||||||
|
.wp-core-ui .button-secondary {
|
||||||
|
color: #096484;
|
||||||
|
border-color: #096484;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.hover,
|
||||||
|
.wp-core-ui .button:hover,
|
||||||
|
.wp-core-ui .button-secondary:hover {
|
||||||
|
border-color: #064054;
|
||||||
|
color: #064054;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus,
|
||||||
|
.wp-core-ui .button-secondary:focus {
|
||||||
|
border-color: #0c88b4;
|
||||||
|
color: #021c25;
|
||||||
|
box-shadow: 0 0 0 1px #0c88b4;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary {
|
||||||
|
background: #e1a948;
|
||||||
|
border-color: #e1a948;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
|
background: #e3af55;
|
||||||
|
border-color: #dfa33b;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:focus {
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:active {
|
||||||
|
background: #dd9f32;
|
||||||
|
border-color: #dd9f32;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
|
background: #e1a948;
|
||||||
|
color: #fff;
|
||||||
|
border-color: #bd831f;
|
||||||
|
box-shadow: inset 0 2px 5px -3px #241906;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-group > .button.active {
|
||||||
|
border-color: #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-primary {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #52accc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-primary {
|
||||||
|
color: #52accc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-highlight {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #096484;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-highlight {
|
||||||
|
color: #096484;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-notification {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-notification {
|
||||||
|
color: #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-icon {
|
||||||
|
color: #e5f8ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* List tables */
|
||||||
|
.wrap .page-title-action,
|
||||||
|
.wrap .page-title-action:active {
|
||||||
|
border: 1px solid #096484;
|
||||||
|
color: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .page-title-action:hover {
|
||||||
|
color: #064054;
|
||||||
|
border-color: #064054;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .page-title-action:focus {
|
||||||
|
border-color: #0c88b4;
|
||||||
|
color: #021c25;
|
||||||
|
box-shadow: 0 0 0 1px #0c88b4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-switch a.current:before {
|
||||||
|
color: #52accc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-switch a:hover:before {
|
||||||
|
color: #e1a948;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu */
|
||||||
|
#adminmenuback,
|
||||||
|
#adminmenuwrap,
|
||||||
|
#adminmenu {
|
||||||
|
background: #52accc;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu div.wp-menu-image:before {
|
||||||
|
color: #e5f8ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a:hover,
|
||||||
|
#adminmenu li.menu-top:hover,
|
||||||
|
#adminmenu li.opensub > a.menu-top,
|
||||||
|
#adminmenu li > a.menu-top:focus {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.menu-top:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Active tabs use a bottom border color that matches the page background color. */
|
||||||
|
.about-wrap .nav-tab-active,
|
||||||
|
.nav-tab-active,
|
||||||
|
.nav-tab-active:hover {
|
||||||
|
background-color: #f1f1f1;
|
||||||
|
border-bottom-color: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: submenu */
|
||||||
|
#adminmenu .wp-submenu,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||||
|
background: #4796b3;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||||
|
border-right-color: #4796b3;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
|
color: #e2ecf1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu a,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||||
|
color: #e2ecf1;
|
||||||
|
}
|
||||||
|
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: current */
|
||||||
|
#adminmenu .wp-submenu li.current a,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
#adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul#adminmenu a.wp-has-current-submenu:after,
|
||||||
|
ul#adminmenu > li.current > a.current:after {
|
||||||
|
border-right-color: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current a.menu-top,
|
||||||
|
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
||||||
|
#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,
|
||||||
|
.folded #adminmenu li.current.menu-top {
|
||||||
|
color: #fff;
|
||||||
|
background: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,
|
||||||
|
#adminmenu a.current:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li.current div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,
|
||||||
|
#adminmenu li:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.opensub div.wp-menu-image:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: bubble */
|
||||||
|
#adminmenu .menu-counter,
|
||||||
|
#adminmenu .awaiting-mod,
|
||||||
|
#adminmenu .update-plugins {
|
||||||
|
color: #fff;
|
||||||
|
background: #e1a948;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current a .awaiting-mod,
|
||||||
|
#adminmenu li a.wp-has-current-submenu .update-plugins,
|
||||||
|
#adminmenu li:hover a .awaiting-mod,
|
||||||
|
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||||
|
color: #fff;
|
||||||
|
background: #4796b3;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: collapse button */
|
||||||
|
#collapse-button {
|
||||||
|
color: #e5f8ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button:hover,
|
||||||
|
#collapse-button:focus {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar */
|
||||||
|
#wpadminbar {
|
||||||
|
color: #fff;
|
||||||
|
background: #52accc;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-item,
|
||||||
|
#wpadminbar a.ab-item,
|
||||||
|
#wpadminbar > #wp-toolbar span.ab-label,
|
||||||
|
#wpadminbar > #wp-toolbar span.noticon {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-icon,
|
||||||
|
#wpadminbar .ab-icon:before,
|
||||||
|
#wpadminbar .ab-item:before,
|
||||||
|
#wpadminbar .ab-item:after {
|
||||||
|
color: #e5f8ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus,
|
||||||
|
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
|
||||||
|
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||||
|
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||||
|
color: #fff;
|
||||||
|
background: #4796b3;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label,
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-icon:before,
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-item:before,
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-item:after,
|
||||||
|
#wpadminbar:not(.mobile) li:hover #adminbarsearch:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: submenu */
|
||||||
|
#wpadminbar .menupop .ab-sub-wrapper {
|
||||||
|
background: #4796b3;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||||
|
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||||
|
background: #74b6ce;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-submenu .ab-item,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||||
|
color: #e2ecf1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks li .blavatar,
|
||||||
|
#wpadminbar .menupop .menupop > .ab-item:before {
|
||||||
|
color: #e5f8ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:hover,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:focus,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:hover strong,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:focus strong,
|
||||||
|
#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a:hover,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a:focus,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,
|
||||||
|
#wpadminbar li:hover .ab-icon:before,
|
||||||
|
#wpadminbar li:hover .ab-item:before,
|
||||||
|
#wpadminbar li a:focus .ab-icon:before,
|
||||||
|
#wpadminbar li .ab-item:focus:before,
|
||||||
|
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||||
|
#wpadminbar li.hover .ab-icon:before,
|
||||||
|
#wpadminbar li.hover .ab-item:before,
|
||||||
|
#wpadminbar li:hover #adminbarsearch:before,
|
||||||
|
#wpadminbar li #adminbarsearch.adminbar-focused:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks li a:hover .blavatar,
|
||||||
|
#wpadminbar .quicklinks li a:focus .blavatar,
|
||||||
|
#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar,
|
||||||
|
#wpadminbar .menupop .menupop > .ab-item:hover:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .ab-icon:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .ab-item:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .hover .ab-item:before {
|
||||||
|
color: #e5f8ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: search */
|
||||||
|
#wpadminbar #adminbarsearch:before {
|
||||||
|
color: #e5f8ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
|
color: #fff;
|
||||||
|
background: #6eb9d4;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: recovery mode */
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #e1a948;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
|
||||||
|
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #cb9841;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: my account */
|
||||||
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
|
border-color: #6eb9d4;
|
||||||
|
background-color: #6eb9d4;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
|
color: #e2ecf1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Pointers */
|
||||||
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
|
background-color: #096484;
|
||||||
|
border-color: #07526c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
color: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-pointer.wp-pointer-top .wp-pointer-arrow,
|
||||||
|
.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,
|
||||||
|
.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,
|
||||||
|
.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner {
|
||||||
|
border-bottom-color: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Media */
|
||||||
|
.media-item .bar,
|
||||||
|
.media-progress-bar div {
|
||||||
|
background-color: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
.details.attachment {
|
||||||
|
box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
.attachment.details .check {
|
||||||
|
background-color: #096484;
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 2px #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-selection .attachment.selection.details .thumbnail {
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Themes */
|
||||||
|
.theme-browser .theme.active .theme-name,
|
||||||
|
.theme-browser .theme.add-new-theme a:hover:after,
|
||||||
|
.theme-browser .theme.add-new-theme a:focus:after {
|
||||||
|
background: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-browser .theme.add-new-theme a:hover span:after,
|
||||||
|
.theme-browser .theme.add-new-theme a:focus span:after {
|
||||||
|
color: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-section.current,
|
||||||
|
.theme-filter.current {
|
||||||
|
border-bottom-color: #52accc;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #52accc;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:hover,
|
||||||
|
body.more-filters-opened .more-filters:focus {
|
||||||
|
background-color: #096484;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:hover:before,
|
||||||
|
body.more-filters-opened .more-filters:focus:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Widgets */
|
||||||
|
.widgets-chooser li.widgets-chooser-selected {
|
||||||
|
background-color: #096484;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widgets-chooser li.widgets-chooser-selected:before,
|
||||||
|
.widgets-chooser li.widgets-chooser-selected:focus:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Nav Menus */
|
||||||
|
.nav-menus-php .item-edit:focus:before {
|
||||||
|
box-shadow: 0 0 0 1px #e8be74, 0 0 2px 1px #e1a948;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Responsive Component */
|
||||||
|
div#wp-responsive-toggle a:before {
|
||||||
|
color: #e5f8ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open div#wp-responsive-toggle a {
|
||||||
|
border-color: transparent;
|
||||||
|
background: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||||
|
background: #4796b3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||||
|
color: #e5f8ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* TinyMCE */
|
||||||
|
.mce-container.mce-menu .mce-menu-item:hover,
|
||||||
|
.mce-container.mce-menu .mce-menu-item.mce-selected,
|
||||||
|
.mce-container.mce-menu .mce-menu-item:focus,
|
||||||
|
.mce-container.mce-menu .mce-menu-item-normal.mce-active,
|
||||||
|
.mce-container.mce-menu .mce-menu-item-preview.mce-active {
|
||||||
|
background: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Customizer */
|
||||||
|
.wp-core-ui #customize-controls .control-section:hover > .accordion-section-title,
|
||||||
|
.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,
|
||||||
|
.wp-core-ui #customize-controls .control-section.open .accordion-section-title,
|
||||||
|
.wp-core-ui #customize-controls .control-section .accordion-section-title:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
border-left-color: #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-controls-close:focus,
|
||||||
|
.wp-core-ui .customize-controls-close:hover,
|
||||||
|
.wp-core-ui .customize-controls-preview-toggle:focus,
|
||||||
|
.wp-core-ui .customize-controls-preview-toggle:hover {
|
||||||
|
color: #0073aa;
|
||||||
|
border-top-color: #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-panel-back:hover,
|
||||||
|
.wp-core-ui .customize-panel-back:focus,
|
||||||
|
.wp-core-ui .customize-section-back:hover,
|
||||||
|
.wp-core-ui .customize-section-back:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
border-left-color: #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:hover,
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:active,
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:focus,
|
||||||
|
.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:focus:before,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before,
|
||||||
|
.wp-core-ui .menu-item-bar .item-delete:focus:before,
|
||||||
|
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||||
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
|
.wp-core-ui #publish-settings:focus {
|
||||||
|
box-shadow: 0 0 0 1px #e8be74, 0 0 2px 1px #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title:hover {
|
||||||
|
border-left-color: #e1a948;
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after {
|
||||||
|
background: #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title.selected {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus {
|
||||||
|
background-color: #fbfbfc;
|
||||||
|
border-color: #e1a948;
|
||||||
|
border-style: solid;
|
||||||
|
box-shadow: 0 0 0 1px #e1a948;
|
||||||
|
outline: 2px solid transparent;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:focus,
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button.active:hover {
|
||||||
|
border-bottom-color: #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:hover:before,
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:focus:before {
|
||||||
|
color: #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover,
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus {
|
||||||
|
color: #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||||
|
box-shadow: 0 0 0 1px #e8be74, 0 0 2px 1px #e1a948;
|
||||||
|
}
|
||||||
|
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||||
|
border-bottom-color: #e1a948;
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Welcome Panel */
|
||||||
|
.welcome-panel {
|
||||||
|
background-color: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
.welcome-panel-header-image circle {
|
||||||
|
stroke: rgba(255, 255, 255, 0.5);
|
||||||
|
fill: #096484;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*=welcome-panel-icon] {
|
||||||
|
background-color: #096484;
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,14 @@
|
||||||
|
$scheme-name: "blue";
|
||||||
|
$base-color: #52accc;
|
||||||
|
$icon-color: #e5f8ff;
|
||||||
|
$highlight-color: #096484;
|
||||||
|
$notification-color: #e1a948;
|
||||||
|
$button-color: #e1a948;
|
||||||
|
|
||||||
|
$menu-submenu-text: #e2ecf1;
|
||||||
|
$menu-submenu-focus-text: #fff;
|
||||||
|
$menu-submenu-background: #4796b3;
|
||||||
|
|
||||||
|
$dashboard-icon-background: $highlight-color;
|
||||||
|
|
||||||
|
@import "../_admin.scss";
|
|
@ -0,0 +1,687 @@
|
||||||
|
/*! This file is auto-generated */
|
||||||
|
/*
|
||||||
|
* Button mixin- creates a button effect with correct
|
||||||
|
* highlights/shadows, based on a base color.
|
||||||
|
*/
|
||||||
|
body {
|
||||||
|
background: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Links */
|
||||||
|
a {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
a:hover, a:active, a:focus {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
#post-body .misc-pub-post-status:before,
|
||||||
|
#post-body #visibility:before,
|
||||||
|
.curtime #timestamp:before,
|
||||||
|
#post-body .misc-pub-revisions:before,
|
||||||
|
span.wp-media-buttons-icon:before {
|
||||||
|
color: currentColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui .button-link {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-modal .delete-attachment,
|
||||||
|
.media-modal .trash-attachment,
|
||||||
|
.media-modal .untrash-attachment,
|
||||||
|
.wp-core-ui .button-link-delete {
|
||||||
|
color: #a00;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-modal .delete-attachment:hover,
|
||||||
|
.media-modal .trash-attachment:hover,
|
||||||
|
.media-modal .untrash-attachment:hover,
|
||||||
|
.media-modal .delete-attachment:focus,
|
||||||
|
.media-modal .trash-attachment:focus,
|
||||||
|
.media-modal .untrash-attachment:focus,
|
||||||
|
.wp-core-ui .button-link-delete:hover,
|
||||||
|
.wp-core-ui .button-link-delete:focus {
|
||||||
|
color: #dc3232;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Forms */
|
||||||
|
input[type=checkbox]:checked::before {
|
||||||
|
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%2359524c%27%2F%3E%3C%2Fsvg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=radio]:checked::before {
|
||||||
|
background: #59524c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui input[type=reset]:hover,
|
||||||
|
.wp-core-ui input[type=reset]:active {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=text]:focus,
|
||||||
|
input[type=password]:focus,
|
||||||
|
input[type=color]:focus,
|
||||||
|
input[type=date]:focus,
|
||||||
|
input[type=datetime]:focus,
|
||||||
|
input[type=datetime-local]:focus,
|
||||||
|
input[type=email]:focus,
|
||||||
|
input[type=month]:focus,
|
||||||
|
input[type=number]:focus,
|
||||||
|
input[type=search]:focus,
|
||||||
|
input[type=tel]:focus,
|
||||||
|
input[type=text]:focus,
|
||||||
|
input[type=time]:focus,
|
||||||
|
input[type=url]:focus,
|
||||||
|
input[type=week]:focus,
|
||||||
|
input[type=checkbox]:focus,
|
||||||
|
input[type=radio]:focus,
|
||||||
|
select:focus,
|
||||||
|
textarea:focus {
|
||||||
|
border-color: #c7a589;
|
||||||
|
box-shadow: 0 0 0 1px #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Core UI */
|
||||||
|
.wp-core-ui .button {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.hover,
|
||||||
|
.wp-core-ui .button:hover,
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus {
|
||||||
|
border-color: #717c87;
|
||||||
|
color: #262a2e;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button:active {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.active,
|
||||||
|
.wp-core-ui .button.active:focus,
|
||||||
|
.wp-core-ui .button.active:hover {
|
||||||
|
border-color: #c7a589;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: inset 0 2px 5px -3px #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.active:focus {
|
||||||
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary {
|
||||||
|
background: #c7a589;
|
||||||
|
border-color: #c7a589;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
|
background: #ccad93;
|
||||||
|
border-color: #c29d7f;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:focus {
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:active {
|
||||||
|
background: #bf9878;
|
||||||
|
border-color: #bf9878;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
|
background: #c7a589;
|
||||||
|
color: #fff;
|
||||||
|
border-color: #ae7d55;
|
||||||
|
box-shadow: inset 0 2px 5px -3px #37271a;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-group > .button.active {
|
||||||
|
border-color: #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-primary {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #59524c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-primary {
|
||||||
|
color: #59524c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-highlight {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-highlight {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-notification {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #9ea476;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-notification {
|
||||||
|
color: #9ea476;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-icon {
|
||||||
|
color: hsl(27.6923076923deg, 7%, 95%);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* List tables */
|
||||||
|
.wrap .page-title-action:hover {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #59524c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-switch a.current:before {
|
||||||
|
color: #59524c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-switch a:hover:before {
|
||||||
|
color: #9ea476;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu */
|
||||||
|
#adminmenuback,
|
||||||
|
#adminmenuwrap,
|
||||||
|
#adminmenu {
|
||||||
|
background: #59524c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu div.wp-menu-image:before {
|
||||||
|
color: hsl(27.6923076923deg, 7%, 95%);
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a:hover,
|
||||||
|
#adminmenu li.menu-top:hover,
|
||||||
|
#adminmenu li.opensub > a.menu-top,
|
||||||
|
#adminmenu li > a.menu-top:focus {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.menu-top:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Active tabs use a bottom border color that matches the page background color. */
|
||||||
|
.about-wrap .nav-tab-active,
|
||||||
|
.nav-tab-active,
|
||||||
|
.nav-tab-active:hover {
|
||||||
|
background-color: #f1f1f1;
|
||||||
|
border-bottom-color: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: submenu */
|
||||||
|
#adminmenu .wp-submenu,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||||
|
background: #46403c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||||
|
border-left-color: #46403c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
|
color: #cdcbc9;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu a,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||||
|
color: #cdcbc9;
|
||||||
|
}
|
||||||
|
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: current */
|
||||||
|
#adminmenu .wp-submenu li.current a,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
#adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul#adminmenu a.wp-has-current-submenu:after,
|
||||||
|
ul#adminmenu > li.current > a.current:after {
|
||||||
|
border-left-color: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current a.menu-top,
|
||||||
|
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
||||||
|
#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,
|
||||||
|
.folded #adminmenu li.current.menu-top {
|
||||||
|
color: #fff;
|
||||||
|
background: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,
|
||||||
|
#adminmenu a.current:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li.current div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,
|
||||||
|
#adminmenu li:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.opensub div.wp-menu-image:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: bubble */
|
||||||
|
#adminmenu .menu-counter,
|
||||||
|
#adminmenu .awaiting-mod,
|
||||||
|
#adminmenu .update-plugins {
|
||||||
|
color: #fff;
|
||||||
|
background: #9ea476;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current a .awaiting-mod,
|
||||||
|
#adminmenu li a.wp-has-current-submenu .update-plugins,
|
||||||
|
#adminmenu li:hover a .awaiting-mod,
|
||||||
|
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||||
|
color: #fff;
|
||||||
|
background: #46403c;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: collapse button */
|
||||||
|
#collapse-button {
|
||||||
|
color: hsl(27.6923076923deg, 7%, 95%);
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button:hover,
|
||||||
|
#collapse-button:focus {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar */
|
||||||
|
#wpadminbar {
|
||||||
|
color: #fff;
|
||||||
|
background: #59524c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-item,
|
||||||
|
#wpadminbar a.ab-item,
|
||||||
|
#wpadminbar > #wp-toolbar span.ab-label,
|
||||||
|
#wpadminbar > #wp-toolbar span.noticon {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-icon,
|
||||||
|
#wpadminbar .ab-icon:before,
|
||||||
|
#wpadminbar .ab-item:before,
|
||||||
|
#wpadminbar .ab-item:after {
|
||||||
|
color: hsl(27.6923076923deg, 7%, 95%);
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus,
|
||||||
|
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
|
||||||
|
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||||
|
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||||
|
color: #c7a589;
|
||||||
|
background: #46403c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label,
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-icon:before,
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-item:before,
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-item:after,
|
||||||
|
#wpadminbar:not(.mobile) li:hover #adminbarsearch:before {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: submenu */
|
||||||
|
#wpadminbar .menupop .ab-sub-wrapper {
|
||||||
|
background: #46403c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||||
|
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||||
|
background: #656463;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-submenu .ab-item,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||||
|
color: #cdcbc9;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks li .blavatar,
|
||||||
|
#wpadminbar .menupop .menupop > .ab-item:before {
|
||||||
|
color: hsl(27.6923076923deg, 7%, 95%);
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:hover,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:focus,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:hover strong,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:focus strong,
|
||||||
|
#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a:hover,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a:focus,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,
|
||||||
|
#wpadminbar li:hover .ab-icon:before,
|
||||||
|
#wpadminbar li:hover .ab-item:before,
|
||||||
|
#wpadminbar li a:focus .ab-icon:before,
|
||||||
|
#wpadminbar li .ab-item:focus:before,
|
||||||
|
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||||
|
#wpadminbar li.hover .ab-icon:before,
|
||||||
|
#wpadminbar li.hover .ab-item:before,
|
||||||
|
#wpadminbar li:hover #adminbarsearch:before,
|
||||||
|
#wpadminbar li #adminbarsearch.adminbar-focused:before {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks li a:hover .blavatar,
|
||||||
|
#wpadminbar .quicklinks li a:focus .blavatar,
|
||||||
|
#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar,
|
||||||
|
#wpadminbar .menupop .menupop > .ab-item:hover:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .ab-icon:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .ab-item:before {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .hover .ab-item:before {
|
||||||
|
color: hsl(27.6923076923deg, 7%, 95%);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: search */
|
||||||
|
#wpadminbar #adminbarsearch:before {
|
||||||
|
color: hsl(27.6923076923deg, 7%, 95%);
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
|
color: #fff;
|
||||||
|
background: #6c645c;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: recovery mode */
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #9ea476;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
|
||||||
|
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #8e946a;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: my account */
|
||||||
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
|
border-color: #6c645c;
|
||||||
|
background-color: #6c645c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
|
color: #cdcbc9;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Pointers */
|
||||||
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
|
background-color: #c7a589;
|
||||||
|
border-color: #bf9878;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-pointer.wp-pointer-top .wp-pointer-arrow,
|
||||||
|
.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,
|
||||||
|
.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,
|
||||||
|
.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner {
|
||||||
|
border-bottom-color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Media */
|
||||||
|
.media-item .bar,
|
||||||
|
.media-progress-bar div {
|
||||||
|
background-color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
.details.attachment {
|
||||||
|
box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
.attachment.details .check {
|
||||||
|
background-color: #c7a589;
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 2px #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-selection .attachment.selection.details .thumbnail {
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Themes */
|
||||||
|
.theme-browser .theme.active .theme-name,
|
||||||
|
.theme-browser .theme.add-new-theme a:hover:after,
|
||||||
|
.theme-browser .theme.add-new-theme a:focus:after {
|
||||||
|
background: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-browser .theme.add-new-theme a:hover span:after,
|
||||||
|
.theme-browser .theme.add-new-theme a:focus span:after {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-section.current,
|
||||||
|
.theme-filter.current {
|
||||||
|
border-bottom-color: #59524c;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #59524c;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:hover,
|
||||||
|
body.more-filters-opened .more-filters:focus {
|
||||||
|
background-color: #c7a589;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:hover:before,
|
||||||
|
body.more-filters-opened .more-filters:focus:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Widgets */
|
||||||
|
.widgets-chooser li.widgets-chooser-selected {
|
||||||
|
background-color: #c7a589;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widgets-chooser li.widgets-chooser-selected:before,
|
||||||
|
.widgets-chooser li.widgets-chooser-selected:focus:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Nav Menus */
|
||||||
|
.nav-menus-php .item-edit:focus:before {
|
||||||
|
box-shadow: 0 0 0 1px #d7bfac, 0 0 2px 1px #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Responsive Component */
|
||||||
|
div#wp-responsive-toggle a:before {
|
||||||
|
color: hsl(27.6923076923deg, 7%, 95%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open div#wp-responsive-toggle a {
|
||||||
|
border-color: transparent;
|
||||||
|
background: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||||
|
background: #46403c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||||
|
color: hsl(27.6923076923deg, 7%, 95%);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* TinyMCE */
|
||||||
|
.mce-container.mce-menu .mce-menu-item:hover,
|
||||||
|
.mce-container.mce-menu .mce-menu-item.mce-selected,
|
||||||
|
.mce-container.mce-menu .mce-menu-item:focus,
|
||||||
|
.mce-container.mce-menu .mce-menu-item-normal.mce-active,
|
||||||
|
.mce-container.mce-menu .mce-menu-item-preview.mce-active {
|
||||||
|
background: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Customizer */
|
||||||
|
.wp-core-ui #customize-controls .control-section:hover > .accordion-section-title,
|
||||||
|
.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,
|
||||||
|
.wp-core-ui #customize-controls .control-section.open .accordion-section-title,
|
||||||
|
.wp-core-ui #customize-controls .control-section .accordion-section-title:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
border-right-color: #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-controls-close:focus,
|
||||||
|
.wp-core-ui .customize-controls-close:hover,
|
||||||
|
.wp-core-ui .customize-controls-preview-toggle:focus,
|
||||||
|
.wp-core-ui .customize-controls-preview-toggle:hover {
|
||||||
|
color: #0073aa;
|
||||||
|
border-top-color: #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-panel-back:hover,
|
||||||
|
.wp-core-ui .customize-panel-back:focus,
|
||||||
|
.wp-core-ui .customize-section-back:hover,
|
||||||
|
.wp-core-ui .customize-section-back:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
border-right-color: #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:hover,
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:active,
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:focus,
|
||||||
|
.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:focus:before,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before,
|
||||||
|
.wp-core-ui .menu-item-bar .item-delete:focus:before,
|
||||||
|
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||||
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
|
.wp-core-ui #publish-settings:focus {
|
||||||
|
box-shadow: 0 0 0 1px #d7bfac, 0 0 2px 1px #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title:hover {
|
||||||
|
border-right-color: #c7a589;
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after {
|
||||||
|
background: #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title.selected {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus {
|
||||||
|
background-color: #fbfbfc;
|
||||||
|
border-color: #c7a589;
|
||||||
|
border-style: solid;
|
||||||
|
box-shadow: 0 0 0 1px #c7a589;
|
||||||
|
outline: 2px solid transparent;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:focus,
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button.active:hover {
|
||||||
|
border-bottom-color: #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:hover:before,
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:focus:before {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover,
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||||
|
box-shadow: 0 0 0 1px #d7bfac, 0 0 2px 1px #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||||
|
border-bottom-color: #c7a589;
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Welcome Panel */
|
||||||
|
.welcome-panel {
|
||||||
|
background-color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
.welcome-panel-header-image circle {
|
||||||
|
stroke: rgba(255, 255, 255, 0.5);
|
||||||
|
fill: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*=welcome-panel-icon] {
|
||||||
|
background-color: rgba(255, 255, 255, 0.5);
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,687 @@
|
||||||
|
/*! This file is auto-generated */
|
||||||
|
/*
|
||||||
|
* Button mixin- creates a button effect with correct
|
||||||
|
* highlights/shadows, based on a base color.
|
||||||
|
*/
|
||||||
|
body {
|
||||||
|
background: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Links */
|
||||||
|
a {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
a:hover, a:active, a:focus {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
#post-body .misc-pub-post-status:before,
|
||||||
|
#post-body #visibility:before,
|
||||||
|
.curtime #timestamp:before,
|
||||||
|
#post-body .misc-pub-revisions:before,
|
||||||
|
span.wp-media-buttons-icon:before {
|
||||||
|
color: currentColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui .button-link {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-modal .delete-attachment,
|
||||||
|
.media-modal .trash-attachment,
|
||||||
|
.media-modal .untrash-attachment,
|
||||||
|
.wp-core-ui .button-link-delete {
|
||||||
|
color: #a00;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-modal .delete-attachment:hover,
|
||||||
|
.media-modal .trash-attachment:hover,
|
||||||
|
.media-modal .untrash-attachment:hover,
|
||||||
|
.media-modal .delete-attachment:focus,
|
||||||
|
.media-modal .trash-attachment:focus,
|
||||||
|
.media-modal .untrash-attachment:focus,
|
||||||
|
.wp-core-ui .button-link-delete:hover,
|
||||||
|
.wp-core-ui .button-link-delete:focus {
|
||||||
|
color: #dc3232;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Forms */
|
||||||
|
input[type=checkbox]:checked::before {
|
||||||
|
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%2359524c%27%2F%3E%3C%2Fsvg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=radio]:checked::before {
|
||||||
|
background: #59524c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui input[type=reset]:hover,
|
||||||
|
.wp-core-ui input[type=reset]:active {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=text]:focus,
|
||||||
|
input[type=password]:focus,
|
||||||
|
input[type=color]:focus,
|
||||||
|
input[type=date]:focus,
|
||||||
|
input[type=datetime]:focus,
|
||||||
|
input[type=datetime-local]:focus,
|
||||||
|
input[type=email]:focus,
|
||||||
|
input[type=month]:focus,
|
||||||
|
input[type=number]:focus,
|
||||||
|
input[type=search]:focus,
|
||||||
|
input[type=tel]:focus,
|
||||||
|
input[type=text]:focus,
|
||||||
|
input[type=time]:focus,
|
||||||
|
input[type=url]:focus,
|
||||||
|
input[type=week]:focus,
|
||||||
|
input[type=checkbox]:focus,
|
||||||
|
input[type=radio]:focus,
|
||||||
|
select:focus,
|
||||||
|
textarea:focus {
|
||||||
|
border-color: #c7a589;
|
||||||
|
box-shadow: 0 0 0 1px #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Core UI */
|
||||||
|
.wp-core-ui .button {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.hover,
|
||||||
|
.wp-core-ui .button:hover,
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus {
|
||||||
|
border-color: #717c87;
|
||||||
|
color: #262a2e;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button:active {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.active,
|
||||||
|
.wp-core-ui .button.active:focus,
|
||||||
|
.wp-core-ui .button.active:hover {
|
||||||
|
border-color: #c7a589;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: inset 0 2px 5px -3px #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.active:focus {
|
||||||
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary {
|
||||||
|
background: #c7a589;
|
||||||
|
border-color: #c7a589;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
|
background: #ccad93;
|
||||||
|
border-color: #c29d7f;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:focus {
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:active {
|
||||||
|
background: #bf9878;
|
||||||
|
border-color: #bf9878;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
|
background: #c7a589;
|
||||||
|
color: #fff;
|
||||||
|
border-color: #ae7d55;
|
||||||
|
box-shadow: inset 0 2px 5px -3px #37271a;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-group > .button.active {
|
||||||
|
border-color: #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-primary {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #59524c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-primary {
|
||||||
|
color: #59524c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-highlight {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-highlight {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-notification {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #9ea476;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-notification {
|
||||||
|
color: #9ea476;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-icon {
|
||||||
|
color: hsl(27.6923076923deg, 7%, 95%);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* List tables */
|
||||||
|
.wrap .page-title-action:hover {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #59524c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-switch a.current:before {
|
||||||
|
color: #59524c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-switch a:hover:before {
|
||||||
|
color: #9ea476;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu */
|
||||||
|
#adminmenuback,
|
||||||
|
#adminmenuwrap,
|
||||||
|
#adminmenu {
|
||||||
|
background: #59524c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu div.wp-menu-image:before {
|
||||||
|
color: hsl(27.6923076923deg, 7%, 95%);
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a:hover,
|
||||||
|
#adminmenu li.menu-top:hover,
|
||||||
|
#adminmenu li.opensub > a.menu-top,
|
||||||
|
#adminmenu li > a.menu-top:focus {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.menu-top:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Active tabs use a bottom border color that matches the page background color. */
|
||||||
|
.about-wrap .nav-tab-active,
|
||||||
|
.nav-tab-active,
|
||||||
|
.nav-tab-active:hover {
|
||||||
|
background-color: #f1f1f1;
|
||||||
|
border-bottom-color: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: submenu */
|
||||||
|
#adminmenu .wp-submenu,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||||
|
background: #46403c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||||
|
border-right-color: #46403c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
|
color: #cdcbc9;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu a,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||||
|
color: #cdcbc9;
|
||||||
|
}
|
||||||
|
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: current */
|
||||||
|
#adminmenu .wp-submenu li.current a,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
#adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul#adminmenu a.wp-has-current-submenu:after,
|
||||||
|
ul#adminmenu > li.current > a.current:after {
|
||||||
|
border-right-color: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current a.menu-top,
|
||||||
|
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
||||||
|
#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,
|
||||||
|
.folded #adminmenu li.current.menu-top {
|
||||||
|
color: #fff;
|
||||||
|
background: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,
|
||||||
|
#adminmenu a.current:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li.current div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,
|
||||||
|
#adminmenu li:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.opensub div.wp-menu-image:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: bubble */
|
||||||
|
#adminmenu .menu-counter,
|
||||||
|
#adminmenu .awaiting-mod,
|
||||||
|
#adminmenu .update-plugins {
|
||||||
|
color: #fff;
|
||||||
|
background: #9ea476;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current a .awaiting-mod,
|
||||||
|
#adminmenu li a.wp-has-current-submenu .update-plugins,
|
||||||
|
#adminmenu li:hover a .awaiting-mod,
|
||||||
|
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||||
|
color: #fff;
|
||||||
|
background: #46403c;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: collapse button */
|
||||||
|
#collapse-button {
|
||||||
|
color: hsl(27.6923076923deg, 7%, 95%);
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button:hover,
|
||||||
|
#collapse-button:focus {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar */
|
||||||
|
#wpadminbar {
|
||||||
|
color: #fff;
|
||||||
|
background: #59524c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-item,
|
||||||
|
#wpadminbar a.ab-item,
|
||||||
|
#wpadminbar > #wp-toolbar span.ab-label,
|
||||||
|
#wpadminbar > #wp-toolbar span.noticon {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-icon,
|
||||||
|
#wpadminbar .ab-icon:before,
|
||||||
|
#wpadminbar .ab-item:before,
|
||||||
|
#wpadminbar .ab-item:after {
|
||||||
|
color: hsl(27.6923076923deg, 7%, 95%);
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus,
|
||||||
|
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
|
||||||
|
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||||
|
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||||
|
color: #c7a589;
|
||||||
|
background: #46403c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label,
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-icon:before,
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-item:before,
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-item:after,
|
||||||
|
#wpadminbar:not(.mobile) li:hover #adminbarsearch:before {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: submenu */
|
||||||
|
#wpadminbar .menupop .ab-sub-wrapper {
|
||||||
|
background: #46403c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||||
|
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||||
|
background: #656463;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-submenu .ab-item,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||||
|
color: #cdcbc9;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks li .blavatar,
|
||||||
|
#wpadminbar .menupop .menupop > .ab-item:before {
|
||||||
|
color: hsl(27.6923076923deg, 7%, 95%);
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:hover,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:focus,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:hover strong,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:focus strong,
|
||||||
|
#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a:hover,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a:focus,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,
|
||||||
|
#wpadminbar li:hover .ab-icon:before,
|
||||||
|
#wpadminbar li:hover .ab-item:before,
|
||||||
|
#wpadminbar li a:focus .ab-icon:before,
|
||||||
|
#wpadminbar li .ab-item:focus:before,
|
||||||
|
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||||
|
#wpadminbar li.hover .ab-icon:before,
|
||||||
|
#wpadminbar li.hover .ab-item:before,
|
||||||
|
#wpadminbar li:hover #adminbarsearch:before,
|
||||||
|
#wpadminbar li #adminbarsearch.adminbar-focused:before {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks li a:hover .blavatar,
|
||||||
|
#wpadminbar .quicklinks li a:focus .blavatar,
|
||||||
|
#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar,
|
||||||
|
#wpadminbar .menupop .menupop > .ab-item:hover:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .ab-icon:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .ab-item:before {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .hover .ab-item:before {
|
||||||
|
color: hsl(27.6923076923deg, 7%, 95%);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: search */
|
||||||
|
#wpadminbar #adminbarsearch:before {
|
||||||
|
color: hsl(27.6923076923deg, 7%, 95%);
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
|
color: #fff;
|
||||||
|
background: #6c645c;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: recovery mode */
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #9ea476;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
|
||||||
|
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #8e946a;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: my account */
|
||||||
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
|
border-color: #6c645c;
|
||||||
|
background-color: #6c645c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
|
color: #cdcbc9;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Pointers */
|
||||||
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
|
background-color: #c7a589;
|
||||||
|
border-color: #bf9878;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-pointer.wp-pointer-top .wp-pointer-arrow,
|
||||||
|
.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,
|
||||||
|
.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,
|
||||||
|
.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner {
|
||||||
|
border-bottom-color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Media */
|
||||||
|
.media-item .bar,
|
||||||
|
.media-progress-bar div {
|
||||||
|
background-color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
.details.attachment {
|
||||||
|
box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
.attachment.details .check {
|
||||||
|
background-color: #c7a589;
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 2px #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-selection .attachment.selection.details .thumbnail {
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Themes */
|
||||||
|
.theme-browser .theme.active .theme-name,
|
||||||
|
.theme-browser .theme.add-new-theme a:hover:after,
|
||||||
|
.theme-browser .theme.add-new-theme a:focus:after {
|
||||||
|
background: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-browser .theme.add-new-theme a:hover span:after,
|
||||||
|
.theme-browser .theme.add-new-theme a:focus span:after {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-section.current,
|
||||||
|
.theme-filter.current {
|
||||||
|
border-bottom-color: #59524c;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #59524c;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:hover,
|
||||||
|
body.more-filters-opened .more-filters:focus {
|
||||||
|
background-color: #c7a589;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:hover:before,
|
||||||
|
body.more-filters-opened .more-filters:focus:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Widgets */
|
||||||
|
.widgets-chooser li.widgets-chooser-selected {
|
||||||
|
background-color: #c7a589;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widgets-chooser li.widgets-chooser-selected:before,
|
||||||
|
.widgets-chooser li.widgets-chooser-selected:focus:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Nav Menus */
|
||||||
|
.nav-menus-php .item-edit:focus:before {
|
||||||
|
box-shadow: 0 0 0 1px #d7bfac, 0 0 2px 1px #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Responsive Component */
|
||||||
|
div#wp-responsive-toggle a:before {
|
||||||
|
color: hsl(27.6923076923deg, 7%, 95%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open div#wp-responsive-toggle a {
|
||||||
|
border-color: transparent;
|
||||||
|
background: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||||
|
background: #46403c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||||
|
color: hsl(27.6923076923deg, 7%, 95%);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* TinyMCE */
|
||||||
|
.mce-container.mce-menu .mce-menu-item:hover,
|
||||||
|
.mce-container.mce-menu .mce-menu-item.mce-selected,
|
||||||
|
.mce-container.mce-menu .mce-menu-item:focus,
|
||||||
|
.mce-container.mce-menu .mce-menu-item-normal.mce-active,
|
||||||
|
.mce-container.mce-menu .mce-menu-item-preview.mce-active {
|
||||||
|
background: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Customizer */
|
||||||
|
.wp-core-ui #customize-controls .control-section:hover > .accordion-section-title,
|
||||||
|
.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,
|
||||||
|
.wp-core-ui #customize-controls .control-section.open .accordion-section-title,
|
||||||
|
.wp-core-ui #customize-controls .control-section .accordion-section-title:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
border-left-color: #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-controls-close:focus,
|
||||||
|
.wp-core-ui .customize-controls-close:hover,
|
||||||
|
.wp-core-ui .customize-controls-preview-toggle:focus,
|
||||||
|
.wp-core-ui .customize-controls-preview-toggle:hover {
|
||||||
|
color: #0073aa;
|
||||||
|
border-top-color: #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-panel-back:hover,
|
||||||
|
.wp-core-ui .customize-panel-back:focus,
|
||||||
|
.wp-core-ui .customize-section-back:hover,
|
||||||
|
.wp-core-ui .customize-section-back:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
border-left-color: #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:hover,
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:active,
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:focus,
|
||||||
|
.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:focus:before,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before,
|
||||||
|
.wp-core-ui .menu-item-bar .item-delete:focus:before,
|
||||||
|
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||||
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
|
.wp-core-ui #publish-settings:focus {
|
||||||
|
box-shadow: 0 0 0 1px #d7bfac, 0 0 2px 1px #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title:hover {
|
||||||
|
border-left-color: #c7a589;
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after {
|
||||||
|
background: #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title.selected {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus {
|
||||||
|
background-color: #fbfbfc;
|
||||||
|
border-color: #c7a589;
|
||||||
|
border-style: solid;
|
||||||
|
box-shadow: 0 0 0 1px #c7a589;
|
||||||
|
outline: 2px solid transparent;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:focus,
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button.active:hover {
|
||||||
|
border-bottom-color: #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:hover:before,
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:focus:before {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover,
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus {
|
||||||
|
color: #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||||
|
box-shadow: 0 0 0 1px #d7bfac, 0 0 2px 1px #c7a589;
|
||||||
|
}
|
||||||
|
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||||
|
border-bottom-color: #c7a589;
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Welcome Panel */
|
||||||
|
.welcome-panel {
|
||||||
|
background-color: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
.welcome-panel-header-image circle {
|
||||||
|
stroke: rgba(255, 255, 255, 0.5);
|
||||||
|
fill: #c7a589;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*=welcome-panel-icon] {
|
||||||
|
background-color: rgba(255, 255, 255, 0.5);
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,9 @@
|
||||||
|
$scheme-name: "coffee";
|
||||||
|
$base-color: #59524c;
|
||||||
|
$highlight-color: #c7a589;
|
||||||
|
$notification-color: #9ea476;
|
||||||
|
$low-contrast-theme: "true";
|
||||||
|
|
||||||
|
$form-checked: $base-color;
|
||||||
|
|
||||||
|
@import "../_admin.scss";
|
|
@ -0,0 +1,720 @@
|
||||||
|
/*! This file is auto-generated */
|
||||||
|
/*
|
||||||
|
* Button mixin- creates a button effect with correct
|
||||||
|
* highlights/shadows, based on a base color.
|
||||||
|
*/
|
||||||
|
body {
|
||||||
|
background: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Links */
|
||||||
|
a {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
a:hover, a:active, a:focus {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
#post-body .misc-pub-post-status:before,
|
||||||
|
#post-body #visibility:before,
|
||||||
|
.curtime #timestamp:before,
|
||||||
|
#post-body .misc-pub-revisions:before,
|
||||||
|
span.wp-media-buttons-icon:before {
|
||||||
|
color: currentColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui .button-link {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-modal .delete-attachment,
|
||||||
|
.media-modal .trash-attachment,
|
||||||
|
.media-modal .untrash-attachment,
|
||||||
|
.wp-core-ui .button-link-delete {
|
||||||
|
color: #a00;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-modal .delete-attachment:hover,
|
||||||
|
.media-modal .trash-attachment:hover,
|
||||||
|
.media-modal .untrash-attachment:hover,
|
||||||
|
.media-modal .delete-attachment:focus,
|
||||||
|
.media-modal .trash-attachment:focus,
|
||||||
|
.media-modal .untrash-attachment:focus,
|
||||||
|
.wp-core-ui .button-link-delete:hover,
|
||||||
|
.wp-core-ui .button-link-delete:focus {
|
||||||
|
color: #dc3232;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Forms */
|
||||||
|
input[type=checkbox]:checked::before {
|
||||||
|
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23523f6d%27%2F%3E%3C%2Fsvg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=radio]:checked::before {
|
||||||
|
background: #523f6d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui input[type=reset]:hover,
|
||||||
|
.wp-core-ui input[type=reset]:active {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=text]:focus,
|
||||||
|
input[type=password]:focus,
|
||||||
|
input[type=color]:focus,
|
||||||
|
input[type=date]:focus,
|
||||||
|
input[type=datetime]:focus,
|
||||||
|
input[type=datetime-local]:focus,
|
||||||
|
input[type=email]:focus,
|
||||||
|
input[type=month]:focus,
|
||||||
|
input[type=number]:focus,
|
||||||
|
input[type=search]:focus,
|
||||||
|
input[type=tel]:focus,
|
||||||
|
input[type=text]:focus,
|
||||||
|
input[type=time]:focus,
|
||||||
|
input[type=url]:focus,
|
||||||
|
input[type=week]:focus,
|
||||||
|
input[type=checkbox]:focus,
|
||||||
|
input[type=radio]:focus,
|
||||||
|
select:focus,
|
||||||
|
textarea:focus {
|
||||||
|
border-color: #a3b745;
|
||||||
|
box-shadow: 0 0 0 1px #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Core UI */
|
||||||
|
.wp-core-ui .button {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.hover,
|
||||||
|
.wp-core-ui .button:hover,
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus {
|
||||||
|
border-color: #717c87;
|
||||||
|
color: #262a2e;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button:active {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.active,
|
||||||
|
.wp-core-ui .button.active:focus,
|
||||||
|
.wp-core-ui .button.active:hover {
|
||||||
|
border-color: #a3b745;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: inset 0 2px 5px -3px #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.active:focus {
|
||||||
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button,
|
||||||
|
.wp-core-ui .button-secondary {
|
||||||
|
color: #a3b745;
|
||||||
|
border-color: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.hover,
|
||||||
|
.wp-core-ui .button:hover,
|
||||||
|
.wp-core-ui .button-secondary:hover {
|
||||||
|
border-color: #829237;
|
||||||
|
color: #829237;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus,
|
||||||
|
.wp-core-ui .button-secondary:focus {
|
||||||
|
border-color: #b6c669;
|
||||||
|
color: #616d29;
|
||||||
|
box-shadow: 0 0 0 1px #b6c669;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary {
|
||||||
|
background: #a3b745;
|
||||||
|
border-color: #a3b745;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
|
background: #a9bd4f;
|
||||||
|
border-color: #99ac41;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:focus {
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:active {
|
||||||
|
background: #93a43e;
|
||||||
|
border-color: #93a43e;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
|
background: #a3b745;
|
||||||
|
color: #fff;
|
||||||
|
border-color: #727f30;
|
||||||
|
box-shadow: inset 0 2px 5px -3px black;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-group > .button.active {
|
||||||
|
border-color: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-primary {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #523f6d;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-primary {
|
||||||
|
color: #523f6d;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-highlight {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-highlight {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-notification {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #d46f15;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-notification {
|
||||||
|
color: #d46f15;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-icon {
|
||||||
|
color: #ece6f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* List tables */
|
||||||
|
.wrap .page-title-action,
|
||||||
|
.wrap .page-title-action:active {
|
||||||
|
border: 1px solid #a3b745;
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .page-title-action:hover {
|
||||||
|
color: #829237;
|
||||||
|
border-color: #829237;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .page-title-action:focus {
|
||||||
|
border-color: #b6c669;
|
||||||
|
color: #616d29;
|
||||||
|
box-shadow: 0 0 0 1px #b6c669;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-switch a.current:before {
|
||||||
|
color: #523f6d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-switch a:hover:before {
|
||||||
|
color: #d46f15;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu */
|
||||||
|
#adminmenuback,
|
||||||
|
#adminmenuwrap,
|
||||||
|
#adminmenu {
|
||||||
|
background: #523f6d;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu div.wp-menu-image:before {
|
||||||
|
color: #ece6f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a:hover,
|
||||||
|
#adminmenu li.menu-top:hover,
|
||||||
|
#adminmenu li.opensub > a.menu-top,
|
||||||
|
#adminmenu li > a.menu-top:focus {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.menu-top:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Active tabs use a bottom border color that matches the page background color. */
|
||||||
|
.about-wrap .nav-tab-active,
|
||||||
|
.nav-tab-active,
|
||||||
|
.nav-tab-active:hover {
|
||||||
|
background-color: #f1f1f1;
|
||||||
|
border-bottom-color: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: submenu */
|
||||||
|
#adminmenu .wp-submenu,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||||
|
background: #413256;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||||
|
border-left-color: #413256;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
|
color: #cbc5d3;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu a,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||||
|
color: #cbc5d3;
|
||||||
|
}
|
||||||
|
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: current */
|
||||||
|
#adminmenu .wp-submenu li.current a,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
#adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul#adminmenu a.wp-has-current-submenu:after,
|
||||||
|
ul#adminmenu > li.current > a.current:after {
|
||||||
|
border-left-color: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current a.menu-top,
|
||||||
|
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
||||||
|
#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,
|
||||||
|
.folded #adminmenu li.current.menu-top {
|
||||||
|
color: #fff;
|
||||||
|
background: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,
|
||||||
|
#adminmenu a.current:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li.current div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,
|
||||||
|
#adminmenu li:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.opensub div.wp-menu-image:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: bubble */
|
||||||
|
#adminmenu .menu-counter,
|
||||||
|
#adminmenu .awaiting-mod,
|
||||||
|
#adminmenu .update-plugins {
|
||||||
|
color: #fff;
|
||||||
|
background: #d46f15;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current a .awaiting-mod,
|
||||||
|
#adminmenu li a.wp-has-current-submenu .update-plugins,
|
||||||
|
#adminmenu li:hover a .awaiting-mod,
|
||||||
|
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||||
|
color: #fff;
|
||||||
|
background: #413256;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: collapse button */
|
||||||
|
#collapse-button {
|
||||||
|
color: #ece6f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button:hover,
|
||||||
|
#collapse-button:focus {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar */
|
||||||
|
#wpadminbar {
|
||||||
|
color: #fff;
|
||||||
|
background: #523f6d;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-item,
|
||||||
|
#wpadminbar a.ab-item,
|
||||||
|
#wpadminbar > #wp-toolbar span.ab-label,
|
||||||
|
#wpadminbar > #wp-toolbar span.noticon {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-icon,
|
||||||
|
#wpadminbar .ab-icon:before,
|
||||||
|
#wpadminbar .ab-item:before,
|
||||||
|
#wpadminbar .ab-item:after {
|
||||||
|
color: #ece6f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus,
|
||||||
|
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
|
||||||
|
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||||
|
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||||
|
color: #a3b745;
|
||||||
|
background: #413256;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label,
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-icon:before,
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-item:before,
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-item:after,
|
||||||
|
#wpadminbar:not(.mobile) li:hover #adminbarsearch:before {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: submenu */
|
||||||
|
#wpadminbar .menupop .ab-sub-wrapper {
|
||||||
|
background: #413256;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||||
|
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||||
|
background: #64537c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-submenu .ab-item,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||||
|
color: #cbc5d3;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks li .blavatar,
|
||||||
|
#wpadminbar .menupop .menupop > .ab-item:before {
|
||||||
|
color: #ece6f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:hover,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:focus,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:hover strong,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:focus strong,
|
||||||
|
#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a:hover,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a:focus,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,
|
||||||
|
#wpadminbar li:hover .ab-icon:before,
|
||||||
|
#wpadminbar li:hover .ab-item:before,
|
||||||
|
#wpadminbar li a:focus .ab-icon:before,
|
||||||
|
#wpadminbar li .ab-item:focus:before,
|
||||||
|
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||||
|
#wpadminbar li.hover .ab-icon:before,
|
||||||
|
#wpadminbar li.hover .ab-item:before,
|
||||||
|
#wpadminbar li:hover #adminbarsearch:before,
|
||||||
|
#wpadminbar li #adminbarsearch.adminbar-focused:before {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks li a:hover .blavatar,
|
||||||
|
#wpadminbar .quicklinks li a:focus .blavatar,
|
||||||
|
#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar,
|
||||||
|
#wpadminbar .menupop .menupop > .ab-item:hover:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .ab-icon:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .ab-item:before {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .hover .ab-item:before {
|
||||||
|
color: #ece6f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: search */
|
||||||
|
#wpadminbar #adminbarsearch:before {
|
||||||
|
color: #ece6f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
|
color: #fff;
|
||||||
|
background: #634c84;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: recovery mode */
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #d46f15;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
|
||||||
|
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #bf6413;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: my account */
|
||||||
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
|
border-color: #634c84;
|
||||||
|
background-color: #634c84;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
|
color: #cbc5d3;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Pointers */
|
||||||
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
|
background-color: #a3b745;
|
||||||
|
border-color: #93a43e;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-pointer.wp-pointer-top .wp-pointer-arrow,
|
||||||
|
.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,
|
||||||
|
.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,
|
||||||
|
.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner {
|
||||||
|
border-bottom-color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Media */
|
||||||
|
.media-item .bar,
|
||||||
|
.media-progress-bar div {
|
||||||
|
background-color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
.details.attachment {
|
||||||
|
box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
.attachment.details .check {
|
||||||
|
background-color: #a3b745;
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 2px #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-selection .attachment.selection.details .thumbnail {
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Themes */
|
||||||
|
.theme-browser .theme.active .theme-name,
|
||||||
|
.theme-browser .theme.add-new-theme a:hover:after,
|
||||||
|
.theme-browser .theme.add-new-theme a:focus:after {
|
||||||
|
background: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-browser .theme.add-new-theme a:hover span:after,
|
||||||
|
.theme-browser .theme.add-new-theme a:focus span:after {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-section.current,
|
||||||
|
.theme-filter.current {
|
||||||
|
border-bottom-color: #523f6d;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #523f6d;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:hover,
|
||||||
|
body.more-filters-opened .more-filters:focus {
|
||||||
|
background-color: #a3b745;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:hover:before,
|
||||||
|
body.more-filters-opened .more-filters:focus:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Widgets */
|
||||||
|
.widgets-chooser li.widgets-chooser-selected {
|
||||||
|
background-color: #a3b745;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widgets-chooser li.widgets-chooser-selected:before,
|
||||||
|
.widgets-chooser li.widgets-chooser-selected:focus:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Nav Menus */
|
||||||
|
.nav-menus-php .item-edit:focus:before {
|
||||||
|
box-shadow: 0 0 0 1px #b6c669, 0 0 2px 1px #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Responsive Component */
|
||||||
|
div#wp-responsive-toggle a:before {
|
||||||
|
color: #ece6f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open div#wp-responsive-toggle a {
|
||||||
|
border-color: transparent;
|
||||||
|
background: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||||
|
background: #413256;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||||
|
color: #ece6f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* TinyMCE */
|
||||||
|
.mce-container.mce-menu .mce-menu-item:hover,
|
||||||
|
.mce-container.mce-menu .mce-menu-item.mce-selected,
|
||||||
|
.mce-container.mce-menu .mce-menu-item:focus,
|
||||||
|
.mce-container.mce-menu .mce-menu-item-normal.mce-active,
|
||||||
|
.mce-container.mce-menu .mce-menu-item-preview.mce-active {
|
||||||
|
background: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Customizer */
|
||||||
|
.wp-core-ui #customize-controls .control-section:hover > .accordion-section-title,
|
||||||
|
.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,
|
||||||
|
.wp-core-ui #customize-controls .control-section.open .accordion-section-title,
|
||||||
|
.wp-core-ui #customize-controls .control-section .accordion-section-title:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
border-right-color: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-controls-close:focus,
|
||||||
|
.wp-core-ui .customize-controls-close:hover,
|
||||||
|
.wp-core-ui .customize-controls-preview-toggle:focus,
|
||||||
|
.wp-core-ui .customize-controls-preview-toggle:hover {
|
||||||
|
color: #0073aa;
|
||||||
|
border-top-color: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-panel-back:hover,
|
||||||
|
.wp-core-ui .customize-panel-back:focus,
|
||||||
|
.wp-core-ui .customize-section-back:hover,
|
||||||
|
.wp-core-ui .customize-section-back:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
border-right-color: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:hover,
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:active,
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:focus,
|
||||||
|
.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:focus:before,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before,
|
||||||
|
.wp-core-ui .menu-item-bar .item-delete:focus:before,
|
||||||
|
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||||
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
|
.wp-core-ui #publish-settings:focus {
|
||||||
|
box-shadow: 0 0 0 1px #b6c669, 0 0 2px 1px #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title:hover {
|
||||||
|
border-right-color: #a3b745;
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after {
|
||||||
|
background: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title.selected {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus {
|
||||||
|
background-color: #fbfbfc;
|
||||||
|
border-color: #a3b745;
|
||||||
|
border-style: solid;
|
||||||
|
box-shadow: 0 0 0 1px #a3b745;
|
||||||
|
outline: 2px solid transparent;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:focus,
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button.active:hover {
|
||||||
|
border-bottom-color: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:hover:before,
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:focus:before {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover,
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||||
|
box-shadow: 0 0 0 1px #b6c669, 0 0 2px 1px #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||||
|
border-bottom-color: #a3b745;
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Welcome Panel */
|
||||||
|
.welcome-panel {
|
||||||
|
background-color: #523f6d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.welcome-panel-header-image circle {
|
||||||
|
stroke: rgba(255, 255, 255, 0.5);
|
||||||
|
fill: #523f6d;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*=welcome-panel-icon] {
|
||||||
|
background-color: rgba(255, 255, 255, 0.5);
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,720 @@
|
||||||
|
/*! This file is auto-generated */
|
||||||
|
/*
|
||||||
|
* Button mixin- creates a button effect with correct
|
||||||
|
* highlights/shadows, based on a base color.
|
||||||
|
*/
|
||||||
|
body {
|
||||||
|
background: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Links */
|
||||||
|
a {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
a:hover, a:active, a:focus {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
#post-body .misc-pub-post-status:before,
|
||||||
|
#post-body #visibility:before,
|
||||||
|
.curtime #timestamp:before,
|
||||||
|
#post-body .misc-pub-revisions:before,
|
||||||
|
span.wp-media-buttons-icon:before {
|
||||||
|
color: currentColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui .button-link {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-modal .delete-attachment,
|
||||||
|
.media-modal .trash-attachment,
|
||||||
|
.media-modal .untrash-attachment,
|
||||||
|
.wp-core-ui .button-link-delete {
|
||||||
|
color: #a00;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-modal .delete-attachment:hover,
|
||||||
|
.media-modal .trash-attachment:hover,
|
||||||
|
.media-modal .untrash-attachment:hover,
|
||||||
|
.media-modal .delete-attachment:focus,
|
||||||
|
.media-modal .trash-attachment:focus,
|
||||||
|
.media-modal .untrash-attachment:focus,
|
||||||
|
.wp-core-ui .button-link-delete:hover,
|
||||||
|
.wp-core-ui .button-link-delete:focus {
|
||||||
|
color: #dc3232;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Forms */
|
||||||
|
input[type=checkbox]:checked::before {
|
||||||
|
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23523f6d%27%2F%3E%3C%2Fsvg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=radio]:checked::before {
|
||||||
|
background: #523f6d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui input[type=reset]:hover,
|
||||||
|
.wp-core-ui input[type=reset]:active {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=text]:focus,
|
||||||
|
input[type=password]:focus,
|
||||||
|
input[type=color]:focus,
|
||||||
|
input[type=date]:focus,
|
||||||
|
input[type=datetime]:focus,
|
||||||
|
input[type=datetime-local]:focus,
|
||||||
|
input[type=email]:focus,
|
||||||
|
input[type=month]:focus,
|
||||||
|
input[type=number]:focus,
|
||||||
|
input[type=search]:focus,
|
||||||
|
input[type=tel]:focus,
|
||||||
|
input[type=text]:focus,
|
||||||
|
input[type=time]:focus,
|
||||||
|
input[type=url]:focus,
|
||||||
|
input[type=week]:focus,
|
||||||
|
input[type=checkbox]:focus,
|
||||||
|
input[type=radio]:focus,
|
||||||
|
select:focus,
|
||||||
|
textarea:focus {
|
||||||
|
border-color: #a3b745;
|
||||||
|
box-shadow: 0 0 0 1px #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Core UI */
|
||||||
|
.wp-core-ui .button {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.hover,
|
||||||
|
.wp-core-ui .button:hover,
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus {
|
||||||
|
border-color: #717c87;
|
||||||
|
color: #262a2e;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button:active {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.active,
|
||||||
|
.wp-core-ui .button.active:focus,
|
||||||
|
.wp-core-ui .button.active:hover {
|
||||||
|
border-color: #a3b745;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: inset 0 2px 5px -3px #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.active:focus {
|
||||||
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button,
|
||||||
|
.wp-core-ui .button-secondary {
|
||||||
|
color: #a3b745;
|
||||||
|
border-color: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.hover,
|
||||||
|
.wp-core-ui .button:hover,
|
||||||
|
.wp-core-ui .button-secondary:hover {
|
||||||
|
border-color: #829237;
|
||||||
|
color: #829237;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus,
|
||||||
|
.wp-core-ui .button-secondary:focus {
|
||||||
|
border-color: #b6c669;
|
||||||
|
color: #616d29;
|
||||||
|
box-shadow: 0 0 0 1px #b6c669;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary {
|
||||||
|
background: #a3b745;
|
||||||
|
border-color: #a3b745;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
|
background: #a9bd4f;
|
||||||
|
border-color: #99ac41;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:focus {
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:active {
|
||||||
|
background: #93a43e;
|
||||||
|
border-color: #93a43e;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
|
background: #a3b745;
|
||||||
|
color: #fff;
|
||||||
|
border-color: #727f30;
|
||||||
|
box-shadow: inset 0 2px 5px -3px black;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-group > .button.active {
|
||||||
|
border-color: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-primary {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #523f6d;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-primary {
|
||||||
|
color: #523f6d;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-highlight {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-highlight {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-notification {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #d46f15;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-notification {
|
||||||
|
color: #d46f15;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-icon {
|
||||||
|
color: #ece6f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* List tables */
|
||||||
|
.wrap .page-title-action,
|
||||||
|
.wrap .page-title-action:active {
|
||||||
|
border: 1px solid #a3b745;
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .page-title-action:hover {
|
||||||
|
color: #829237;
|
||||||
|
border-color: #829237;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .page-title-action:focus {
|
||||||
|
border-color: #b6c669;
|
||||||
|
color: #616d29;
|
||||||
|
box-shadow: 0 0 0 1px #b6c669;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-switch a.current:before {
|
||||||
|
color: #523f6d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-switch a:hover:before {
|
||||||
|
color: #d46f15;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu */
|
||||||
|
#adminmenuback,
|
||||||
|
#adminmenuwrap,
|
||||||
|
#adminmenu {
|
||||||
|
background: #523f6d;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu div.wp-menu-image:before {
|
||||||
|
color: #ece6f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a:hover,
|
||||||
|
#adminmenu li.menu-top:hover,
|
||||||
|
#adminmenu li.opensub > a.menu-top,
|
||||||
|
#adminmenu li > a.menu-top:focus {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.menu-top:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Active tabs use a bottom border color that matches the page background color. */
|
||||||
|
.about-wrap .nav-tab-active,
|
||||||
|
.nav-tab-active,
|
||||||
|
.nav-tab-active:hover {
|
||||||
|
background-color: #f1f1f1;
|
||||||
|
border-bottom-color: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: submenu */
|
||||||
|
#adminmenu .wp-submenu,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||||
|
background: #413256;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||||
|
border-right-color: #413256;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
|
color: #cbc5d3;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu a,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||||
|
color: #cbc5d3;
|
||||||
|
}
|
||||||
|
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: current */
|
||||||
|
#adminmenu .wp-submenu li.current a,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
#adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul#adminmenu a.wp-has-current-submenu:after,
|
||||||
|
ul#adminmenu > li.current > a.current:after {
|
||||||
|
border-right-color: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current a.menu-top,
|
||||||
|
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
||||||
|
#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,
|
||||||
|
.folded #adminmenu li.current.menu-top {
|
||||||
|
color: #fff;
|
||||||
|
background: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,
|
||||||
|
#adminmenu a.current:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li.current div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,
|
||||||
|
#adminmenu li:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.opensub div.wp-menu-image:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: bubble */
|
||||||
|
#adminmenu .menu-counter,
|
||||||
|
#adminmenu .awaiting-mod,
|
||||||
|
#adminmenu .update-plugins {
|
||||||
|
color: #fff;
|
||||||
|
background: #d46f15;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current a .awaiting-mod,
|
||||||
|
#adminmenu li a.wp-has-current-submenu .update-plugins,
|
||||||
|
#adminmenu li:hover a .awaiting-mod,
|
||||||
|
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||||
|
color: #fff;
|
||||||
|
background: #413256;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: collapse button */
|
||||||
|
#collapse-button {
|
||||||
|
color: #ece6f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button:hover,
|
||||||
|
#collapse-button:focus {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar */
|
||||||
|
#wpadminbar {
|
||||||
|
color: #fff;
|
||||||
|
background: #523f6d;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-item,
|
||||||
|
#wpadminbar a.ab-item,
|
||||||
|
#wpadminbar > #wp-toolbar span.ab-label,
|
||||||
|
#wpadminbar > #wp-toolbar span.noticon {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-icon,
|
||||||
|
#wpadminbar .ab-icon:before,
|
||||||
|
#wpadminbar .ab-item:before,
|
||||||
|
#wpadminbar .ab-item:after {
|
||||||
|
color: #ece6f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus,
|
||||||
|
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
|
||||||
|
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||||
|
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||||
|
color: #a3b745;
|
||||||
|
background: #413256;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label,
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-icon:before,
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-item:before,
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-item:after,
|
||||||
|
#wpadminbar:not(.mobile) li:hover #adminbarsearch:before {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: submenu */
|
||||||
|
#wpadminbar .menupop .ab-sub-wrapper {
|
||||||
|
background: #413256;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||||
|
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||||
|
background: #64537c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-submenu .ab-item,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||||
|
color: #cbc5d3;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks li .blavatar,
|
||||||
|
#wpadminbar .menupop .menupop > .ab-item:before {
|
||||||
|
color: #ece6f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:hover,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:focus,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:hover strong,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:focus strong,
|
||||||
|
#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a:hover,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a:focus,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,
|
||||||
|
#wpadminbar li:hover .ab-icon:before,
|
||||||
|
#wpadminbar li:hover .ab-item:before,
|
||||||
|
#wpadminbar li a:focus .ab-icon:before,
|
||||||
|
#wpadminbar li .ab-item:focus:before,
|
||||||
|
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||||
|
#wpadminbar li.hover .ab-icon:before,
|
||||||
|
#wpadminbar li.hover .ab-item:before,
|
||||||
|
#wpadminbar li:hover #adminbarsearch:before,
|
||||||
|
#wpadminbar li #adminbarsearch.adminbar-focused:before {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks li a:hover .blavatar,
|
||||||
|
#wpadminbar .quicklinks li a:focus .blavatar,
|
||||||
|
#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar,
|
||||||
|
#wpadminbar .menupop .menupop > .ab-item:hover:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .ab-icon:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .ab-item:before {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .hover .ab-item:before {
|
||||||
|
color: #ece6f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: search */
|
||||||
|
#wpadminbar #adminbarsearch:before {
|
||||||
|
color: #ece6f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
|
color: #fff;
|
||||||
|
background: #634c84;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: recovery mode */
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #d46f15;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
|
||||||
|
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #bf6413;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: my account */
|
||||||
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
|
border-color: #634c84;
|
||||||
|
background-color: #634c84;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
|
color: #cbc5d3;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Pointers */
|
||||||
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
|
background-color: #a3b745;
|
||||||
|
border-color: #93a43e;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-pointer.wp-pointer-top .wp-pointer-arrow,
|
||||||
|
.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,
|
||||||
|
.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,
|
||||||
|
.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner {
|
||||||
|
border-bottom-color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Media */
|
||||||
|
.media-item .bar,
|
||||||
|
.media-progress-bar div {
|
||||||
|
background-color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
.details.attachment {
|
||||||
|
box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
.attachment.details .check {
|
||||||
|
background-color: #a3b745;
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 2px #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-selection .attachment.selection.details .thumbnail {
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Themes */
|
||||||
|
.theme-browser .theme.active .theme-name,
|
||||||
|
.theme-browser .theme.add-new-theme a:hover:after,
|
||||||
|
.theme-browser .theme.add-new-theme a:focus:after {
|
||||||
|
background: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-browser .theme.add-new-theme a:hover span:after,
|
||||||
|
.theme-browser .theme.add-new-theme a:focus span:after {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-section.current,
|
||||||
|
.theme-filter.current {
|
||||||
|
border-bottom-color: #523f6d;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #523f6d;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:hover,
|
||||||
|
body.more-filters-opened .more-filters:focus {
|
||||||
|
background-color: #a3b745;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:hover:before,
|
||||||
|
body.more-filters-opened .more-filters:focus:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Widgets */
|
||||||
|
.widgets-chooser li.widgets-chooser-selected {
|
||||||
|
background-color: #a3b745;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widgets-chooser li.widgets-chooser-selected:before,
|
||||||
|
.widgets-chooser li.widgets-chooser-selected:focus:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Nav Menus */
|
||||||
|
.nav-menus-php .item-edit:focus:before {
|
||||||
|
box-shadow: 0 0 0 1px #b6c669, 0 0 2px 1px #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Responsive Component */
|
||||||
|
div#wp-responsive-toggle a:before {
|
||||||
|
color: #ece6f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open div#wp-responsive-toggle a {
|
||||||
|
border-color: transparent;
|
||||||
|
background: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||||
|
background: #413256;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||||
|
color: #ece6f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* TinyMCE */
|
||||||
|
.mce-container.mce-menu .mce-menu-item:hover,
|
||||||
|
.mce-container.mce-menu .mce-menu-item.mce-selected,
|
||||||
|
.mce-container.mce-menu .mce-menu-item:focus,
|
||||||
|
.mce-container.mce-menu .mce-menu-item-normal.mce-active,
|
||||||
|
.mce-container.mce-menu .mce-menu-item-preview.mce-active {
|
||||||
|
background: #a3b745;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Customizer */
|
||||||
|
.wp-core-ui #customize-controls .control-section:hover > .accordion-section-title,
|
||||||
|
.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,
|
||||||
|
.wp-core-ui #customize-controls .control-section.open .accordion-section-title,
|
||||||
|
.wp-core-ui #customize-controls .control-section .accordion-section-title:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
border-left-color: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-controls-close:focus,
|
||||||
|
.wp-core-ui .customize-controls-close:hover,
|
||||||
|
.wp-core-ui .customize-controls-preview-toggle:focus,
|
||||||
|
.wp-core-ui .customize-controls-preview-toggle:hover {
|
||||||
|
color: #0073aa;
|
||||||
|
border-top-color: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-panel-back:hover,
|
||||||
|
.wp-core-ui .customize-panel-back:focus,
|
||||||
|
.wp-core-ui .customize-section-back:hover,
|
||||||
|
.wp-core-ui .customize-section-back:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
border-left-color: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:hover,
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:active,
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:focus,
|
||||||
|
.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:focus:before,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before,
|
||||||
|
.wp-core-ui .menu-item-bar .item-delete:focus:before,
|
||||||
|
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||||
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
|
.wp-core-ui #publish-settings:focus {
|
||||||
|
box-shadow: 0 0 0 1px #b6c669, 0 0 2px 1px #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title:hover {
|
||||||
|
border-left-color: #a3b745;
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after {
|
||||||
|
background: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title.selected {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus {
|
||||||
|
background-color: #fbfbfc;
|
||||||
|
border-color: #a3b745;
|
||||||
|
border-style: solid;
|
||||||
|
box-shadow: 0 0 0 1px #a3b745;
|
||||||
|
outline: 2px solid transparent;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:focus,
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button.active:hover {
|
||||||
|
border-bottom-color: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:hover:before,
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:focus:before {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover,
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus {
|
||||||
|
color: #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||||
|
box-shadow: 0 0 0 1px #b6c669, 0 0 2px 1px #a3b745;
|
||||||
|
}
|
||||||
|
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||||
|
border-bottom-color: #a3b745;
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Welcome Panel */
|
||||||
|
.welcome-panel {
|
||||||
|
background-color: #523f6d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.welcome-panel-header-image circle {
|
||||||
|
stroke: rgba(255, 255, 255, 0.5);
|
||||||
|
fill: #523f6d;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*=welcome-panel-icon] {
|
||||||
|
background-color: rgba(255, 255, 255, 0.5);
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,11 @@
|
||||||
|
$scheme-name: "ectoplasm";
|
||||||
|
$base-color: #523f6d;
|
||||||
|
$icon-color: #ece6f6;
|
||||||
|
$highlight-color: #a3b745;
|
||||||
|
$notification-color: #d46f15;
|
||||||
|
|
||||||
|
$form-checked: $base-color;
|
||||||
|
|
||||||
|
$dashboard-accent-1: $base-color;
|
||||||
|
|
||||||
|
@import "../_admin.scss";
|
|
@ -0,0 +1,726 @@
|
||||||
|
/*! This file is auto-generated */
|
||||||
|
/*
|
||||||
|
* Button mixin- creates a button effect with correct
|
||||||
|
* highlights/shadows, based on a base color.
|
||||||
|
*/
|
||||||
|
body {
|
||||||
|
background: #f5f5f5;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Links */
|
||||||
|
a {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
a:hover, a:active, a:focus {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
#post-body .misc-pub-post-status:before,
|
||||||
|
#post-body #visibility:before,
|
||||||
|
.curtime #timestamp:before,
|
||||||
|
#post-body .misc-pub-revisions:before,
|
||||||
|
span.wp-media-buttons-icon:before {
|
||||||
|
color: currentColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui .button-link {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-modal .delete-attachment,
|
||||||
|
.media-modal .trash-attachment,
|
||||||
|
.media-modal .untrash-attachment,
|
||||||
|
.wp-core-ui .button-link-delete {
|
||||||
|
color: #a00;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-modal .delete-attachment:hover,
|
||||||
|
.media-modal .trash-attachment:hover,
|
||||||
|
.media-modal .untrash-attachment:hover,
|
||||||
|
.media-modal .delete-attachment:focus,
|
||||||
|
.media-modal .trash-attachment:focus,
|
||||||
|
.media-modal .untrash-attachment:focus,
|
||||||
|
.wp-core-ui .button-link-delete:hover,
|
||||||
|
.wp-core-ui .button-link-delete:focus {
|
||||||
|
color: #dc3232;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Forms */
|
||||||
|
input[type=checkbox]:checked::before {
|
||||||
|
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=radio]:checked::before {
|
||||||
|
background: #7e8993;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui input[type=reset]:hover,
|
||||||
|
.wp-core-ui input[type=reset]:active {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=text]:focus,
|
||||||
|
input[type=password]:focus,
|
||||||
|
input[type=color]:focus,
|
||||||
|
input[type=date]:focus,
|
||||||
|
input[type=datetime]:focus,
|
||||||
|
input[type=datetime-local]:focus,
|
||||||
|
input[type=email]:focus,
|
||||||
|
input[type=month]:focus,
|
||||||
|
input[type=number]:focus,
|
||||||
|
input[type=search]:focus,
|
||||||
|
input[type=tel]:focus,
|
||||||
|
input[type=text]:focus,
|
||||||
|
input[type=time]:focus,
|
||||||
|
input[type=url]:focus,
|
||||||
|
input[type=week]:focus,
|
||||||
|
input[type=checkbox]:focus,
|
||||||
|
input[type=radio]:focus,
|
||||||
|
select:focus,
|
||||||
|
textarea:focus {
|
||||||
|
border-color: #04a4cc;
|
||||||
|
box-shadow: 0 0 0 1px #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Core UI */
|
||||||
|
.wp-core-ui .button {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.hover,
|
||||||
|
.wp-core-ui .button:hover,
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus {
|
||||||
|
border-color: #717c87;
|
||||||
|
color: #262a2e;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button:active {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.active,
|
||||||
|
.wp-core-ui .button.active:focus,
|
||||||
|
.wp-core-ui .button.active:hover {
|
||||||
|
border-color: #04a4cc;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: inset 0 2px 5px -3px #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.active:focus {
|
||||||
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button,
|
||||||
|
.wp-core-ui .button-secondary {
|
||||||
|
color: #04a4cc;
|
||||||
|
border-color: #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.hover,
|
||||||
|
.wp-core-ui .button:hover,
|
||||||
|
.wp-core-ui .button-secondary:hover {
|
||||||
|
border-color: #037c9a;
|
||||||
|
color: #037c9a;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus,
|
||||||
|
.wp-core-ui .button-secondary:focus {
|
||||||
|
border-color: #09cafa;
|
||||||
|
color: #025468;
|
||||||
|
box-shadow: 0 0 0 1px #09cafa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary {
|
||||||
|
background: #04a4cc;
|
||||||
|
border-color: #04a4cc;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
|
background: #04b0db;
|
||||||
|
border-color: #0498bd;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:focus {
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:active {
|
||||||
|
background: #0490b3;
|
||||||
|
border-color: #0490b3;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
|
background: #04a4cc;
|
||||||
|
color: #fff;
|
||||||
|
border-color: #036881;
|
||||||
|
box-shadow: inset 0 2px 5px -3px black;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-group > .button.active {
|
||||||
|
border-color: #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-primary {
|
||||||
|
color: #333;
|
||||||
|
background-color: #e5e5e5;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-primary {
|
||||||
|
color: #e5e5e5;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-highlight {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #888;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-highlight {
|
||||||
|
color: #888;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-notification {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #d64e07;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-notification {
|
||||||
|
color: #d64e07;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-icon {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* List tables */
|
||||||
|
.wrap .page-title-action,
|
||||||
|
.wrap .page-title-action:active {
|
||||||
|
border: 1px solid #04a4cc;
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .page-title-action:hover {
|
||||||
|
color: #037c9a;
|
||||||
|
border-color: #037c9a;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .page-title-action:focus {
|
||||||
|
border-color: #09cafa;
|
||||||
|
color: #025468;
|
||||||
|
box-shadow: 0 0 0 1px #09cafa;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-switch a.current:before {
|
||||||
|
color: #e5e5e5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-switch a:hover:before {
|
||||||
|
color: #d64e07;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu */
|
||||||
|
#adminmenuback,
|
||||||
|
#adminmenuwrap,
|
||||||
|
#adminmenu {
|
||||||
|
background: #e5e5e5;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a {
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu div.wp-menu-image:before {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a:hover,
|
||||||
|
#adminmenu li.menu-top:hover,
|
||||||
|
#adminmenu li.opensub > a.menu-top,
|
||||||
|
#adminmenu li > a.menu-top:focus {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #888;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.menu-top:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Active tabs use a bottom border color that matches the page background color. */
|
||||||
|
.about-wrap .nav-tab-active,
|
||||||
|
.nav-tab-active,
|
||||||
|
.nav-tab-active:hover {
|
||||||
|
background-color: #f5f5f5;
|
||||||
|
border-bottom-color: #f5f5f5;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: submenu */
|
||||||
|
#adminmenu .wp-submenu,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||||
|
border-left-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
|
color: #686868;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu a,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||||
|
color: #686868;
|
||||||
|
}
|
||||||
|
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: current */
|
||||||
|
#adminmenu .wp-submenu li.current a,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
#adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul#adminmenu a.wp-has-current-submenu:after,
|
||||||
|
ul#adminmenu > li.current > a.current:after {
|
||||||
|
border-left-color: #f5f5f5;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current a.menu-top,
|
||||||
|
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
||||||
|
#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,
|
||||||
|
.folded #adminmenu li.current.menu-top {
|
||||||
|
color: #fff;
|
||||||
|
background: #888;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,
|
||||||
|
#adminmenu a.current:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li.current div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,
|
||||||
|
#adminmenu li:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.opensub div.wp-menu-image:before {
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: bubble */
|
||||||
|
#adminmenu .menu-counter,
|
||||||
|
#adminmenu .awaiting-mod,
|
||||||
|
#adminmenu .update-plugins {
|
||||||
|
color: #fff;
|
||||||
|
background: #d64e07;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current a .awaiting-mod,
|
||||||
|
#adminmenu li a.wp-has-current-submenu .update-plugins,
|
||||||
|
#adminmenu li:hover a .awaiting-mod,
|
||||||
|
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||||
|
color: #333;
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: collapse button */
|
||||||
|
#collapse-button {
|
||||||
|
color: #777;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button:hover,
|
||||||
|
#collapse-button:focus {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar */
|
||||||
|
#wpadminbar {
|
||||||
|
color: #333;
|
||||||
|
background: #e5e5e5;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-item,
|
||||||
|
#wpadminbar a.ab-item,
|
||||||
|
#wpadminbar > #wp-toolbar span.ab-label,
|
||||||
|
#wpadminbar > #wp-toolbar span.noticon {
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-icon,
|
||||||
|
#wpadminbar .ab-icon:before,
|
||||||
|
#wpadminbar .ab-item:before,
|
||||||
|
#wpadminbar .ab-item:after {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus,
|
||||||
|
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
|
||||||
|
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||||
|
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||||
|
color: #04a4cc;
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label,
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-icon:before,
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-item:before,
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-item:after,
|
||||||
|
#wpadminbar:not(.mobile) li:hover #adminbarsearch:before {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: submenu */
|
||||||
|
#wpadminbar .menupop .ab-sub-wrapper {
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||||
|
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||||
|
background: #f7f7f7;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-submenu .ab-item,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||||
|
color: #686868;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks li .blavatar,
|
||||||
|
#wpadminbar .menupop .menupop > .ab-item:before {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:hover,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:focus,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:hover strong,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:focus strong,
|
||||||
|
#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a:hover,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a:focus,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,
|
||||||
|
#wpadminbar li:hover .ab-icon:before,
|
||||||
|
#wpadminbar li:hover .ab-item:before,
|
||||||
|
#wpadminbar li a:focus .ab-icon:before,
|
||||||
|
#wpadminbar li .ab-item:focus:before,
|
||||||
|
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||||
|
#wpadminbar li.hover .ab-icon:before,
|
||||||
|
#wpadminbar li.hover .ab-item:before,
|
||||||
|
#wpadminbar li:hover #adminbarsearch:before,
|
||||||
|
#wpadminbar li #adminbarsearch.adminbar-focused:before {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks li a:hover .blavatar,
|
||||||
|
#wpadminbar .quicklinks li a:focus .blavatar,
|
||||||
|
#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar,
|
||||||
|
#wpadminbar .menupop .menupop > .ab-item:hover:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .ab-icon:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .ab-item:before {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .hover .ab-item:before {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: search */
|
||||||
|
#wpadminbar #adminbarsearch:before {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
|
color: #333;
|
||||||
|
background: #f7f7f7;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: recovery mode */
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #d64e07;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
|
||||||
|
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #c14606;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: my account */
|
||||||
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
|
border-color: #f7f7f7;
|
||||||
|
background-color: #f7f7f7;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
|
color: #686868;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Pointers */
|
||||||
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
|
background-color: #04a4cc;
|
||||||
|
border-color: #0490b3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-pointer.wp-pointer-top .wp-pointer-arrow,
|
||||||
|
.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,
|
||||||
|
.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,
|
||||||
|
.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner {
|
||||||
|
border-bottom-color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Media */
|
||||||
|
.media-item .bar,
|
||||||
|
.media-progress-bar div {
|
||||||
|
background-color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.details.attachment {
|
||||||
|
box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.attachment.details .check {
|
||||||
|
background-color: #04a4cc;
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 2px #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-selection .attachment.selection.details .thumbnail {
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Themes */
|
||||||
|
.theme-browser .theme.active .theme-name,
|
||||||
|
.theme-browser .theme.add-new-theme a:hover:after,
|
||||||
|
.theme-browser .theme.add-new-theme a:focus:after {
|
||||||
|
background: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-browser .theme.add-new-theme a:hover span:after,
|
||||||
|
.theme-browser .theme.add-new-theme a:focus span:after {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-section.current,
|
||||||
|
.theme-filter.current {
|
||||||
|
border-bottom-color: #e5e5e5;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters {
|
||||||
|
color: #333;
|
||||||
|
background-color: #e5e5e5;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:before {
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:hover,
|
||||||
|
body.more-filters-opened .more-filters:focus {
|
||||||
|
background-color: #888;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:hover:before,
|
||||||
|
body.more-filters-opened .more-filters:focus:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Widgets */
|
||||||
|
.widgets-chooser li.widgets-chooser-selected {
|
||||||
|
background-color: #888;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widgets-chooser li.widgets-chooser-selected:before,
|
||||||
|
.widgets-chooser li.widgets-chooser-selected:focus:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Nav Menus */
|
||||||
|
.nav-menus-php .item-edit:focus:before {
|
||||||
|
box-shadow: 0 0 0 1px #09cafa, 0 0 2px 1px #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Responsive Component */
|
||||||
|
div#wp-responsive-toggle a:before {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open div#wp-responsive-toggle a {
|
||||||
|
border-color: transparent;
|
||||||
|
background: #888;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* TinyMCE */
|
||||||
|
.mce-container.mce-menu .mce-menu-item:hover,
|
||||||
|
.mce-container.mce-menu .mce-menu-item.mce-selected,
|
||||||
|
.mce-container.mce-menu .mce-menu-item:focus,
|
||||||
|
.mce-container.mce-menu .mce-menu-item-normal.mce-active,
|
||||||
|
.mce-container.mce-menu .mce-menu-item-preview.mce-active {
|
||||||
|
background: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Customizer */
|
||||||
|
.wp-core-ui #customize-controls .control-section:hover > .accordion-section-title,
|
||||||
|
.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,
|
||||||
|
.wp-core-ui #customize-controls .control-section.open .accordion-section-title,
|
||||||
|
.wp-core-ui #customize-controls .control-section .accordion-section-title:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
border-right-color: #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-controls-close:focus,
|
||||||
|
.wp-core-ui .customize-controls-close:hover,
|
||||||
|
.wp-core-ui .customize-controls-preview-toggle:focus,
|
||||||
|
.wp-core-ui .customize-controls-preview-toggle:hover {
|
||||||
|
color: #0073aa;
|
||||||
|
border-top-color: #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-panel-back:hover,
|
||||||
|
.wp-core-ui .customize-panel-back:focus,
|
||||||
|
.wp-core-ui .customize-section-back:hover,
|
||||||
|
.wp-core-ui .customize-section-back:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
border-right-color: #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:hover,
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:active,
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:focus,
|
||||||
|
.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:focus:before,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before,
|
||||||
|
.wp-core-ui .menu-item-bar .item-delete:focus:before,
|
||||||
|
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||||
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
|
.wp-core-ui #publish-settings:focus {
|
||||||
|
box-shadow: 0 0 0 1px #09cafa, 0 0 2px 1px #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title:hover {
|
||||||
|
border-right-color: #04a4cc;
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after {
|
||||||
|
background: #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title.selected {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus {
|
||||||
|
background-color: #fbfbfc;
|
||||||
|
border-color: #04a4cc;
|
||||||
|
border-style: solid;
|
||||||
|
box-shadow: 0 0 0 1px #04a4cc;
|
||||||
|
outline: 2px solid transparent;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:focus,
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button.active:hover {
|
||||||
|
border-bottom-color: #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:hover:before,
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:focus:before {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover,
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||||
|
box-shadow: 0 0 0 1px #09cafa, 0 0 2px 1px #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||||
|
border-bottom-color: #04a4cc;
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Welcome Panel */
|
||||||
|
.welcome-panel {
|
||||||
|
background-color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.welcome-panel-header-image circle {
|
||||||
|
stroke: rgba(255, 255, 255, 0.5);
|
||||||
|
fill: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*=welcome-panel-icon] {
|
||||||
|
background-color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Override the theme filter highlight color for this scheme */
|
||||||
|
.theme-section.current,
|
||||||
|
.theme-filter.current {
|
||||||
|
border-bottom-color: #04a4cc;
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,726 @@
|
||||||
|
/*! This file is auto-generated */
|
||||||
|
/*
|
||||||
|
* Button mixin- creates a button effect with correct
|
||||||
|
* highlights/shadows, based on a base color.
|
||||||
|
*/
|
||||||
|
body {
|
||||||
|
background: #f5f5f5;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Links */
|
||||||
|
a {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
a:hover, a:active, a:focus {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
#post-body .misc-pub-post-status:before,
|
||||||
|
#post-body #visibility:before,
|
||||||
|
.curtime #timestamp:before,
|
||||||
|
#post-body .misc-pub-revisions:before,
|
||||||
|
span.wp-media-buttons-icon:before {
|
||||||
|
color: currentColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui .button-link {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button-link:focus {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-modal .delete-attachment,
|
||||||
|
.media-modal .trash-attachment,
|
||||||
|
.media-modal .untrash-attachment,
|
||||||
|
.wp-core-ui .button-link-delete {
|
||||||
|
color: #a00;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-modal .delete-attachment:hover,
|
||||||
|
.media-modal .trash-attachment:hover,
|
||||||
|
.media-modal .untrash-attachment:hover,
|
||||||
|
.media-modal .delete-attachment:focus,
|
||||||
|
.media-modal .trash-attachment:focus,
|
||||||
|
.media-modal .untrash-attachment:focus,
|
||||||
|
.wp-core-ui .button-link-delete:hover,
|
||||||
|
.wp-core-ui .button-link-delete:focus {
|
||||||
|
color: #dc3232;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Forms */
|
||||||
|
input[type=checkbox]:checked::before {
|
||||||
|
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%237e8993%27%2F%3E%3C%2Fsvg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=radio]:checked::before {
|
||||||
|
background: #7e8993;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-core-ui input[type=reset]:hover,
|
||||||
|
.wp-core-ui input[type=reset]:active {
|
||||||
|
color: #0096dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=text]:focus,
|
||||||
|
input[type=password]:focus,
|
||||||
|
input[type=color]:focus,
|
||||||
|
input[type=date]:focus,
|
||||||
|
input[type=datetime]:focus,
|
||||||
|
input[type=datetime-local]:focus,
|
||||||
|
input[type=email]:focus,
|
||||||
|
input[type=month]:focus,
|
||||||
|
input[type=number]:focus,
|
||||||
|
input[type=search]:focus,
|
||||||
|
input[type=tel]:focus,
|
||||||
|
input[type=text]:focus,
|
||||||
|
input[type=time]:focus,
|
||||||
|
input[type=url]:focus,
|
||||||
|
input[type=week]:focus,
|
||||||
|
input[type=checkbox]:focus,
|
||||||
|
input[type=radio]:focus,
|
||||||
|
select:focus,
|
||||||
|
textarea:focus {
|
||||||
|
border-color: #04a4cc;
|
||||||
|
box-shadow: 0 0 0 1px #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Core UI */
|
||||||
|
.wp-core-ui .button {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.hover,
|
||||||
|
.wp-core-ui .button:hover,
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus {
|
||||||
|
border-color: #717c87;
|
||||||
|
color: #262a2e;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button:active {
|
||||||
|
border-color: #7e8993;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.active,
|
||||||
|
.wp-core-ui .button.active:focus,
|
||||||
|
.wp-core-ui .button.active:hover {
|
||||||
|
border-color: #04a4cc;
|
||||||
|
color: #262a2e;
|
||||||
|
box-shadow: inset 0 2px 5px -3px #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.active:focus {
|
||||||
|
box-shadow: 0 0 0 1px #32373c;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button,
|
||||||
|
.wp-core-ui .button-secondary {
|
||||||
|
color: #04a4cc;
|
||||||
|
border-color: #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.hover,
|
||||||
|
.wp-core-ui .button:hover,
|
||||||
|
.wp-core-ui .button-secondary:hover {
|
||||||
|
border-color: #037c9a;
|
||||||
|
color: #037c9a;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button.focus,
|
||||||
|
.wp-core-ui .button:focus,
|
||||||
|
.wp-core-ui .button-secondary:focus {
|
||||||
|
border-color: #09cafa;
|
||||||
|
color: #025468;
|
||||||
|
box-shadow: 0 0 0 1px #09cafa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary {
|
||||||
|
background: #04a4cc;
|
||||||
|
border-color: #04a4cc;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
|
||||||
|
background: #04b0db;
|
||||||
|
border-color: #0498bd;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:focus {
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary:active {
|
||||||
|
background: #0490b3;
|
||||||
|
border-color: #0490b3;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover {
|
||||||
|
background: #04a4cc;
|
||||||
|
color: #fff;
|
||||||
|
border-color: #036881;
|
||||||
|
box-shadow: inset 0 2px 5px -3px black;
|
||||||
|
}
|
||||||
|
.wp-core-ui .button-group > .button.active {
|
||||||
|
border-color: #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-primary {
|
||||||
|
color: #333;
|
||||||
|
background-color: #e5e5e5;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-primary {
|
||||||
|
color: #e5e5e5;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-highlight {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #888;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-highlight {
|
||||||
|
color: #888;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-notification {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #d64e07;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-notification {
|
||||||
|
color: #d64e07;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-ui-text-icon {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* List tables */
|
||||||
|
.wrap .page-title-action,
|
||||||
|
.wrap .page-title-action:active {
|
||||||
|
border: 1px solid #04a4cc;
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .page-title-action:hover {
|
||||||
|
color: #037c9a;
|
||||||
|
border-color: #037c9a;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap .page-title-action:focus {
|
||||||
|
border-color: #09cafa;
|
||||||
|
color: #025468;
|
||||||
|
box-shadow: 0 0 0 1px #09cafa;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-switch a.current:before {
|
||||||
|
color: #e5e5e5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-switch a:hover:before {
|
||||||
|
color: #d64e07;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu */
|
||||||
|
#adminmenuback,
|
||||||
|
#adminmenuwrap,
|
||||||
|
#adminmenu {
|
||||||
|
background: #e5e5e5;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a {
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu div.wp-menu-image:before {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu a:hover,
|
||||||
|
#adminmenu li.menu-top:hover,
|
||||||
|
#adminmenu li.opensub > a.menu-top,
|
||||||
|
#adminmenu li > a.menu-top:focus {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #888;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.menu-top:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Active tabs use a bottom border color that matches the page background color. */
|
||||||
|
.about-wrap .nav-tab-active,
|
||||||
|
.nav-tab-active,
|
||||||
|
.nav-tab-active:hover {
|
||||||
|
background-color: #f5f5f5;
|
||||||
|
border-bottom-color: #f5f5f5;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: submenu */
|
||||||
|
#adminmenu .wp-submenu,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,
|
||||||
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after {
|
||||||
|
border-right-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu .wp-submenu-head {
|
||||||
|
color: #686868;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu .wp-submenu a,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
|
||||||
|
color: #686868;
|
||||||
|
}
|
||||||
|
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu .wp-submenu a:hover,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: current */
|
||||||
|
#adminmenu .wp-submenu li.current a,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
#adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover,
|
||||||
|
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,
|
||||||
|
#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul#adminmenu a.wp-has-current-submenu:after,
|
||||||
|
ul#adminmenu > li.current > a.current:after {
|
||||||
|
border-right-color: #f5f5f5;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current a.menu-top,
|
||||||
|
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
||||||
|
#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,
|
||||||
|
.folded #adminmenu li.current.menu-top {
|
||||||
|
color: #fff;
|
||||||
|
background: #888;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,
|
||||||
|
#adminmenu a.current:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li.current div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,
|
||||||
|
#adminmenu li:hover div.wp-menu-image:before,
|
||||||
|
#adminmenu li a:focus div.wp-menu-image:before,
|
||||||
|
#adminmenu li.opensub div.wp-menu-image:before {
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: bubble */
|
||||||
|
#adminmenu .menu-counter,
|
||||||
|
#adminmenu .awaiting-mod,
|
||||||
|
#adminmenu .update-plugins {
|
||||||
|
color: #fff;
|
||||||
|
background: #d64e07;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenu li.current a .awaiting-mod,
|
||||||
|
#adminmenu li a.wp-has-current-submenu .update-plugins,
|
||||||
|
#adminmenu li:hover a .awaiting-mod,
|
||||||
|
#adminmenu li.menu-top:hover > a .update-plugins {
|
||||||
|
color: #333;
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Menu: collapse button */
|
||||||
|
#collapse-button {
|
||||||
|
color: #777;
|
||||||
|
}
|
||||||
|
|
||||||
|
#collapse-button:hover,
|
||||||
|
#collapse-button:focus {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar */
|
||||||
|
#wpadminbar {
|
||||||
|
color: #333;
|
||||||
|
background: #e5e5e5;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-item,
|
||||||
|
#wpadminbar a.ab-item,
|
||||||
|
#wpadminbar > #wp-toolbar span.ab-label,
|
||||||
|
#wpadminbar > #wp-toolbar span.noticon {
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-icon,
|
||||||
|
#wpadminbar .ab-icon:before,
|
||||||
|
#wpadminbar .ab-item:before,
|
||||||
|
#wpadminbar .ab-item:after {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus,
|
||||||
|
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
|
||||||
|
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||||
|
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||||
|
color: #04a4cc;
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label,
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label,
|
||||||
|
#wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-icon:before,
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-item:before,
|
||||||
|
#wpadminbar:not(.mobile) li:hover .ab-item:after,
|
||||||
|
#wpadminbar:not(.mobile) li:hover #adminbarsearch:before {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: submenu */
|
||||||
|
#wpadminbar .menupop .ab-sub-wrapper {
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
|
||||||
|
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
|
||||||
|
background: #f7f7f7;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-submenu .ab-item,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||||
|
color: #686868;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks li .blavatar,
|
||||||
|
#wpadminbar .menupop .menupop > .ab-item:before {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:hover,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:focus,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:hover strong,
|
||||||
|
#wpadminbar .quicklinks .menupop ul li a:focus strong,
|
||||||
|
#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a:hover,
|
||||||
|
#wpadminbar .quicklinks .menupop.hover ul li a:focus,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover,
|
||||||
|
#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,
|
||||||
|
#wpadminbar li:hover .ab-icon:before,
|
||||||
|
#wpadminbar li:hover .ab-item:before,
|
||||||
|
#wpadminbar li a:focus .ab-icon:before,
|
||||||
|
#wpadminbar li .ab-item:focus:before,
|
||||||
|
#wpadminbar li .ab-item:focus .ab-icon:before,
|
||||||
|
#wpadminbar li.hover .ab-icon:before,
|
||||||
|
#wpadminbar li.hover .ab-item:before,
|
||||||
|
#wpadminbar li:hover #adminbarsearch:before,
|
||||||
|
#wpadminbar li #adminbarsearch.adminbar-focused:before {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .quicklinks li a:hover .blavatar,
|
||||||
|
#wpadminbar .quicklinks li a:focus .blavatar,
|
||||||
|
#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar,
|
||||||
|
#wpadminbar .menupop .menupop > .ab-item:hover:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .ab-icon:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .ab-item:before {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar.mobile .quicklinks .hover .ab-icon:before,
|
||||||
|
#wpadminbar.mobile .quicklinks .hover .ab-item:before {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: search */
|
||||||
|
#wpadminbar #adminbarsearch:before {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||||
|
color: #333;
|
||||||
|
background: #f7f7f7;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: recovery mode */
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #d64e07;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode .ab-item,
|
||||||
|
#wpadminbar #wp-admin-bar-recovery-mode a.ab-item {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item,
|
||||||
|
#wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item,
|
||||||
|
#wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #c14606;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Admin Bar: my account */
|
||||||
|
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||||
|
border-color: #f7f7f7;
|
||||||
|
background-color: #f7f7f7;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wpadminbar #wp-admin-bar-user-info .username {
|
||||||
|
color: #686868;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Pointers */
|
||||||
|
.wp-pointer .wp-pointer-content h3 {
|
||||||
|
background-color: #04a4cc;
|
||||||
|
border-color: #0490b3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-pointer .wp-pointer-content h3:before {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-pointer.wp-pointer-top .wp-pointer-arrow,
|
||||||
|
.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,
|
||||||
|
.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,
|
||||||
|
.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner {
|
||||||
|
border-bottom-color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Media */
|
||||||
|
.media-item .bar,
|
||||||
|
.media-progress-bar div {
|
||||||
|
background-color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.details.attachment {
|
||||||
|
box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.attachment.details .check {
|
||||||
|
background-color: #04a4cc;
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 2px #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-selection .attachment.selection.details .thumbnail {
|
||||||
|
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Themes */
|
||||||
|
.theme-browser .theme.active .theme-name,
|
||||||
|
.theme-browser .theme.add-new-theme a:hover:after,
|
||||||
|
.theme-browser .theme.add-new-theme a:focus:after {
|
||||||
|
background: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-browser .theme.add-new-theme a:hover span:after,
|
||||||
|
.theme-browser .theme.add-new-theme a:focus span:after {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-section.current,
|
||||||
|
.theme-filter.current {
|
||||||
|
border-bottom-color: #e5e5e5;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters {
|
||||||
|
color: #333;
|
||||||
|
background-color: #e5e5e5;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:before {
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:hover,
|
||||||
|
body.more-filters-opened .more-filters:focus {
|
||||||
|
background-color: #888;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.more-filters-opened .more-filters:hover:before,
|
||||||
|
body.more-filters-opened .more-filters:focus:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Widgets */
|
||||||
|
.widgets-chooser li.widgets-chooser-selected {
|
||||||
|
background-color: #888;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widgets-chooser li.widgets-chooser-selected:before,
|
||||||
|
.widgets-chooser li.widgets-chooser-selected:focus:before {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Nav Menus */
|
||||||
|
.nav-menus-php .item-edit:focus:before {
|
||||||
|
box-shadow: 0 0 0 1px #09cafa, 0 0 2px 1px #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Responsive Component */
|
||||||
|
div#wp-responsive-toggle a:before {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open div#wp-responsive-toggle a {
|
||||||
|
border-color: transparent;
|
||||||
|
background: #888;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* TinyMCE */
|
||||||
|
.mce-container.mce-menu .mce-menu-item:hover,
|
||||||
|
.mce-container.mce-menu .mce-menu-item.mce-selected,
|
||||||
|
.mce-container.mce-menu .mce-menu-item:focus,
|
||||||
|
.mce-container.mce-menu .mce-menu-item-normal.mce-active,
|
||||||
|
.mce-container.mce-menu .mce-menu-item-preview.mce-active {
|
||||||
|
background: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Customizer */
|
||||||
|
.wp-core-ui #customize-controls .control-section:hover > .accordion-section-title,
|
||||||
|
.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,
|
||||||
|
.wp-core-ui #customize-controls .control-section.open .accordion-section-title,
|
||||||
|
.wp-core-ui #customize-controls .control-section .accordion-section-title:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
border-left-color: #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-controls-close:focus,
|
||||||
|
.wp-core-ui .customize-controls-close:hover,
|
||||||
|
.wp-core-ui .customize-controls-preview-toggle:focus,
|
||||||
|
.wp-core-ui .customize-controls-preview-toggle:hover {
|
||||||
|
color: #0073aa;
|
||||||
|
border-top-color: #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-panel-back:hover,
|
||||||
|
.wp-core-ui .customize-panel-back:focus,
|
||||||
|
.wp-core-ui .customize-section-back:hover,
|
||||||
|
.wp-core-ui .customize-section-back:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
border-left-color: #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:hover,
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:active,
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:focus,
|
||||||
|
.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-screen-options-toggle:focus:before,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before,
|
||||||
|
.wp-core-ui .menu-item-bar .item-delete:focus:before,
|
||||||
|
.wp-core-ui #available-menu-items .item-add:focus:before,
|
||||||
|
.wp-core-ui #customize-save-button-wrapper .save:focus,
|
||||||
|
.wp-core-ui #publish-settings:focus {
|
||||||
|
box-shadow: 0 0 0 1px #09cafa, 0 0 2px 1px #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,
|
||||||
|
.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title:hover {
|
||||||
|
border-left-color: #04a4cc;
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after {
|
||||||
|
background: #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .control-panel-themes .customize-themes-section-title.selected {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,
|
||||||
|
.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after {
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus {
|
||||||
|
background-color: #fbfbfc;
|
||||||
|
border-color: #04a4cc;
|
||||||
|
border-style: solid;
|
||||||
|
box-shadow: 0 0 0 1px #04a4cc;
|
||||||
|
outline: 2px solid transparent;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:focus,
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button.active:hover {
|
||||||
|
border-bottom-color: #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:hover:before,
|
||||||
|
.wp-core-ui .wp-full-overlay-footer .devices button:focus:before {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover,
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus {
|
||||||
|
color: #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
|
||||||
|
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
|
||||||
|
box-shadow: 0 0 0 1px #09cafa, 0 0 2px 1px #04a4cc;
|
||||||
|
}
|
||||||
|
.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover {
|
||||||
|
border-bottom-color: #04a4cc;
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Welcome Panel */
|
||||||
|
.welcome-panel {
|
||||||
|
background-color: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.welcome-panel-header-image circle {
|
||||||
|
stroke: rgba(255, 255, 255, 0.5);
|
||||||
|
fill: #04a4cc;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*=welcome-panel-icon] {
|
||||||
|
background-color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Override the theme filter highlight color for this scheme */
|
||||||
|
.theme-section.current,
|
||||||
|
.theme-filter.current {
|
||||||
|
border-bottom-color: #04a4cc;
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue