diff options
author | Callum Macrae <callum@lynxphp.com> | 2011-08-24 11:34:41 +0100 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2012-03-31 02:09:14 +0200 |
commit | 6efb9dd0b6e0119009d5b10d198722ba2b19f0e2 (patch) | |
tree | 2edeaa276fd0ef351ef4aa56db565908f2683f78 /phpBB | |
parent | fa2c06e2ca0b4010c6f6bc85110987c3a6e8a017 (diff) | |
download | forums-6efb9dd0b6e0119009d5b10d198722ba2b19f0e2.tar forums-6efb9dd0b6e0119009d5b10d198722ba2b19f0e2.tar.gz forums-6efb9dd0b6e0119009d5b10d198722ba2b19f0e2.tar.bz2 forums-6efb9dd0b6e0119009d5b10d198722ba2b19f0e2.tar.xz forums-6efb9dd0b6e0119009d5b10d198722ba2b19f0e2.zip |
[ticket/10270] Added jQuery popup CSS to the ACP.
It was missing previously, meaning that it displayed wrong and in the
footer.
PHPBB3-10270
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/adm/style/admin.css | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index ceda824e5a..70c06f2d62 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -1070,6 +1070,40 @@ input.disabled { color: #666666; } +/* jQuery popups +---------------------------------------- */ +.jalert { + background-color: #FFFFFF; + border: 1px solid #999999; + position: fixed; + display: none; + top: 100px; + left: 35%; + width: 30%; + z-index: 50; + padding: 25px; + padding: 0 25px 20px 25px; +} + +.jalert p { + margin: 8px 0; + padding-bottom: 8px; +} + +#darkenwrapper { + display: none; +} + +#darken { + position: fixed; + left: 0; + top: 0; + width: 100%; + height: 100%; + background-color: #000000; + opacity: 0.5; +} + /* Pagination ---------------------------------------- */ .pagination { |