diff --git a/CHANGELOG.md b/CHANGELOG.md index f824701..25e43cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## Version 2.1.1 + +* [CSS] Improvements correcting Issues #72 and #69 +* [CSS] Further improvements found similar to Search Input alignment on other form type pages + ## Version 2.1.0 * [bug fix, compatibility] Replace wfRunHooks with Hooks::run PR #74 issue #75 diff --git a/assets/stylesheets/pivot.css b/assets/stylesheets/pivot.css index 8b07547..1dd0f8b 100644 --- a/assets/stylesheets/pivot.css +++ b/assets/stylesheets/pivot.css @@ -658,10 +658,8 @@ span.smwttactiveinline span.smwbuiltin { font-style: normal; } - /* MW still generates a label column for checkboxes, this minimizes is */ -div.mw-htmlform-field-HTMLCheckField div.mw-label { height:0; } - +.mw-htmlform-field-HTMLCheckField .mw-label { height:0; } /* UNTIL I CAN DETERMINE WHY toolboxend GENERATES AN EMPTY
  • IN THE MENU, I'M HIDING IT */ #p-toolboxend { display:none;} @@ -1103,4 +1101,64 @@ ul[class*="block-grid"] { } .mw-indicator { display: inline-block; +} + +/* Images the MediaWiki way */ + +/* Thumbs and Captions */ +.thumbinner { + border: 1px solid #c8ccd1; + padding: 3px; + background-color: #f8f9fa; + font-size: 94%; + text-align: center; + overflow: hidden; + margin: auto; +} +.thumbcaption { + border: 0; + line-height: 1.4em; + padding: 3px; + font-size: 94%; + text-align: left; +} +.magnify a { + display: block; + text-indent: 15px; + white-space: nowrap; + overflow: hidden; + width: 15px; + height: 11px; +} +.mw-content-ltr .magnify a { + background-image: url(/w/resources/src/mediawiki.skinning/images/magnify-clip-ltr.png); +} + +/* Float right and left styles - Make all MW images responsive for mobile when floated */ + +.floatright, .tright, +table.floatright { + margin: 0 0 .5em .5em; + border: 0; +} + +.floatleft,.tleft +table.floatleft { + margin: 0 .5em .5em 0; + border: 0; +} + +/* Kill the float for smaller screens and make them align center. */ + +@media only screen and (max-width: 640px) { + .floatright, + table.floatright, + .floatleft, + table.floatleft, + .thumb.tleft, + .thumb.tright { + text-align: center; + float: none; + margin: .5em auto; + } } \ No newline at end of file diff --git a/skin.json b/skin.json index b8e62b9..a0d43ab 100644 --- a/skin.json +++ b/skin.json @@ -1,6 +1,6 @@ { "name": "Pivot", - "version": "2.1.0", + "version": "2.1.1-dev", "author": [ "Tom Hutchison", "..."