Index: trunk/phase3/skins/monobook/main.css |
— | — | @@ -1584,20 +1584,4 @@ |
1585 | 1585 | text-align: center; |
1586 | 1586 | vertical-align: middle; |
1587 | 1587 | font-size: 90%; |
1588 | | -} |
1589 | | - |
1590 | | -/** |
1591 | | - * File histories |
1592 | | - */ |
1593 | | -table.filehistory { |
1594 | | - border-collapse: collapse; |
1595 | | -} |
1596 | | -table.filehistory, |
1597 | | -table.filehistory th, |
1598 | | -table.filehistory td { |
1599 | | - border: 1px solid #AAAAAA; |
1600 | | -} |
1601 | | -table.filehistory th, |
1602 | | -table.filehistory tr:hover td { |
1603 | | - background-color: #EEEEFF; |
1604 | 1588 | } |
\ No newline at end of file |
Index: trunk/phase3/skins/common/shared.css |
— | — | @@ -33,7 +33,7 @@ |
34 | 34 | */ |
35 | 35 | table.filehistory th, |
36 | 36 | table.filehistory td { |
37 | | - padding: 0 0.15em 0 0.15em; |
| 37 | + padding: 0 0.2em 0 0.2em; |
38 | 38 | } |
39 | 39 | table.filehistory th { |
40 | 40 | text-align: left; |
Index: trunk/phase3/includes/ImagePage.php |
— | — | @@ -668,8 +668,8 @@ |
669 | 669 | return Xml::element( 'h2', array( 'id' => 'filehistory' ), wfMsg( 'filehist' ) ) |
670 | 670 | . $wgOut->parse( wfMsgNoTrans( 'filehist-help' ) ) |
671 | 671 | . Xml::openElement( 'table', array( 'class' => 'filehistory' ) ) . "\n" |
672 | | - . '<tr><th></th>' |
673 | | - . ( $this->img->isLocal() && $wgUser->isAllowed( 'delete' ) ? '<th></th>' : '' ) |
| 672 | + . '<tr><td></td>' |
| 673 | + . ( $this->img->isLocal() && $wgUser->isAllowed( 'delete' ) ? '<td></td>' : '' ) |
674 | 674 | . '<th>' . wfMsgHtml( 'filehist-datetime' ) . '</th>' |
675 | 675 | . '<th>' . wfMsgHtml( 'filehist-user' ) . '</th>' |
676 | 676 | . '<th>' . wfMsgHtml( 'filehist-dimensions' ) . '</th>' |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1195,7 +1195,7 @@ |
1196 | 1196 | * to ensure that client-side caches don't keep obsolete copies of global |
1197 | 1197 | * styles. |
1198 | 1198 | */ |
1199 | | -$wgStyleVersion = '92'; |
| 1199 | +$wgStyleVersion = '93'; |
1200 | 1200 | |
1201 | 1201 | |
1202 | 1202 | # Server-side caching: |