From 263e4d9828421dae510c7af5ab9f5fd17b348fe4 Mon Sep 17 00:00:00 2001 From: Krinkle Date: Fri, 10 Jun 2011 17:09:15 +0000 Subject: [PATCH] [Installer] .mw-help-hint and #config-live-log * Merged padding rules into one * Fixed the width issues of the textarea (see also r87975) --- skins/common/config.css | 2 +- skins/common/config.js | 2 +- skins/common/shared.css | 7 +++---- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/skins/common/config.css b/skins/common/config.css index 6000fd4e9d..434f27d56f 100644 --- a/skins/common/config.css +++ b/skins/common/config.css @@ -142,5 +142,5 @@ } #config-live-log { - width: 70%; + margin-right: 18em; } diff --git a/skins/common/config.js b/skins/common/config.js index 076005f747..e5af7d145b 100644 --- a/skins/common/config.js +++ b/skins/common/config.js @@ -29,7 +29,7 @@ } ); // Scroll to the bottom of upgrade log - $( "#config-live-log" ).each( function() { this.scrollTop = this.scrollHeight; } ); + $( '#config-live-log' ).find( '> textarea' ).each( function() { this.scrollTop = this.scrollHeight; } ); // Show/hide Creative Commons thingy $( '.licenseRadio' ).click( function() { diff --git a/skins/common/shared.css b/skins/common/shared.css index c60688b293..004b3dce22 100644 --- a/skins/common/shared.css +++ b/skins/common/shared.css @@ -643,18 +643,17 @@ ol:lang(or) li { /* tooltip styles */ .mw-help-field-hint { display: none; - padding: 0px; - padding-left: 15px; margin-left: 2px; margin-bottom: -8px; + padding: 0px 0px 0px 15px; /* @embed */ background-image: url('images/help-question.gif'); background-position: left center; background-repeat: no-repeat; - color: #0645ad; - text-decoration: underline; cursor: pointer; font-size: .8em; + text-decoration: underline; + color: #0645ad; } .mw-help-field-hint:hover { /* @embed */ -- 2.20.1