diff options
author | Erik Moeller <erik@users.mediawiki.org> | 2003-07-21 07:36:52 +0000 |
---|---|---|
committer | Erik Moeller <erik@users.mediawiki.org> | 2003-07-21 07:36:52 +0000 |
commit | 98c8698ddb5eba93143f0c74b35591cbd476ee0c (patch) | |
tree | 819ddc5bdc9e0fd9ef6fc31ceeff7fbdac7704d2 /includes/SkinStandard.php | |
parent | 4e98711e3c5c00c426e4a52ac2bdaf51e10c04b6 (diff) | |
download | mediawikicore-98c8698ddb5eba93143f0c74b35591cbd476ee0c.tar.gz mediawikicore-98c8698ddb5eba93143f0c74b35591cbd476ee0c.zip |
1) Stylesheet changes:
- smaller headlines in standard skin
- slightly smaller font for menu links
- headlines have thin gray underline
- thinner borders
- footer in blue box
2) Skin changes:
- changed default color for non-article pages
- removed "Special pages" dropdown -- takes space,
causes display bugs and is hardly used
3) Preferences:
- put all checkbox prefs in a table so they are
properly aligned
4) Section editing:
- new option for editing sections by right clicking
titles (onContextMenu); works in Mozilla & IE
- new functionality for appending text to pages, currently
displayed only for Talk pages as "Post a comment"
(summary field becomes comment subject)
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/1498
Diffstat (limited to 'includes/SkinStandard.php')
-rw-r--r-- | includes/SkinStandard.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/SkinStandard.php b/includes/SkinStandard.php index ee309d4e6515..6f788b8308eb 100644 --- a/includes/SkinStandard.php +++ b/includes/SkinStandard.php @@ -40,7 +40,7 @@ class SkinStandard extends Skin { "#article { margin-left: 4px; margin-right: 152px; }\n"; } else if ( 1 == $qb || 3 == $qb ) { $s .= "#quickbar { position: absolute; top: 4px; left: 4px; " . - "border-right: 2px solid #000000; }\n" . + "border-right: 1px solid gray; }\n" . "#article { margin-left: 152px; margin-right: 4px; }\n"; } return $s; |