From: Luzifr Date: Wed, 8 Feb 2012 17:56:00 +0000 (+0100) Subject: That was missing in the previous commit! X-Git-Tag: 2.0.0_Beta_1~1358^2~29^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=e148916ed494743c0a0f8d7a450948d29d771694;p=GitHub%2FWoltLab%2FWCF.git That was missing in the previous commit! ;-) --- diff --git a/wcfsetup/install/files/acp/style/wcf.css b/wcfsetup/install/files/acp/style/wcf.css index c74b34d644..7f00529f5b 100644 --- a/wcfsetup/install/files/acp/style/wcf.css +++ b/wcfsetup/install/files/acp/style/wcf.css @@ -918,6 +918,7 @@ section.wcf-content:after { } .wcf-main > div section:only-child { + border-width: 0 !important; margin: 0 !important; } @@ -3557,6 +3558,7 @@ tr .columnIcon img { /* Content */ .wcf-dialogContent { + color: rgba(238, 238, 238, 1); background-color: #333; overflow: auto; } diff --git a/wcfsetup/install/files/js/WCF.js b/wcfsetup/install/files/js/WCF.js index c9261179d5..5fe20247c3 100644 --- a/wcfsetup/install/files/js/WCF.js +++ b/wcfsetup/install/files/js/WCF.js @@ -3608,7 +3608,7 @@ WCF.System.Confirmation = { * Creates the confirmation dialog on first use. */ _createDialog: function() { - this._dialog = $('

').hide().appendTo(document.body); + this._dialog = $('

').hide().appendTo(document.body); var $formButtons = $('
').appendTo(this._dialog); $('').data('action', 'cancel').click($.proxy(this._click, this)).appendTo($formButtons);