From: Carsten K. <car...@us...> - 2002-01-05 16:12:22
|
Update of /cvsroot/phpwiki/phpwiki/themes/MacOSX In directory usw-pr-cvs1:/tmp/cvs-serv17899 Modified Files: themeinfo.php MacOSX.css MacOSX-heavy.css Log Message: eliminated mystery grey marks under button images (was a grey background in css) Index: themeinfo.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/themes/MacOSX/themeinfo.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** themeinfo.php 2002/01/05 11:44:55 1.8 --- themeinfo.php 2002/01/05 16:12:19 1.9 *************** *** 22,28 **** * for now). * - * In Mozilla, there is a grey line under each of the images. I - * haven't been able to determine the cause of this yet. - * * Only English buttons are available. Full localization is still a * ways off. Work is in progress to modularize & tokenize the normal --- 22,25 ---- *************** *** 76,79 **** --- 73,81 ---- // Logo image appears on every page and links to the HomePage. $logo = "themes/$theme/PhpWiki.png"; + + // RSS logo icon (path relative to index.php) + // If this is left blank (or unset), the default "images/rss.png" + // will be used. + //$rssicon = "images/rss.png"; $rssicon = "themes/$theme/RSS.png"; Index: MacOSX.css =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/themes/MacOSX/MacOSX.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** MacOSX.css 2002/01/05 11:44:21 1.3 --- MacOSX.css 2002/01/05 16:12:19 1.4 *************** *** 29,33 **** * break NS4 in another file. As of OmniWeb 4.1, OW now @imports :-( */ ! @import url(MacOSX-heavy.css); BODY { background: #fafafa url("bgpaper8.png"); } --- 29,33 ---- * break NS4 in another file. As of OmniWeb 4.1, OW now @imports :-( */ ! @import url(phpwiki-heavy.css); BODY { background: #fafafa url("bgpaper8.png"); } *************** *** 163,169 **** */ A.wikiaction, A.wikiadmin { text-decoration: none; } - A.wikiaction, .wikiaction TABLE, SPAN.wikiaction { background-color: #ddd; } - A.wikiadmin, .wikiadmin TABLE { background-color: #fdd; } - .wikiunsafe { background-color: #ccc; } /* --- 163,166 ---- *************** *** 177,192 **** .wikiaction { border: 0; } - /* - * Put a border around wikiaction forms: - * This doesn't work for NS4. - */ - .wikiaction TABLE, .wikiadmin TABLE - { - border-style: ridge; - border-width: medium; - } - .wikiaction TABLE { border-color: #9cf; } - .wikiadmin TABLE { border-color: #f99; } - /* Backlinks */ A.backlinks { color: #006; } --- 174,177 ---- Index: MacOSX-heavy.css =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/themes/MacOSX/MacOSX-heavy.css,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** MacOSX-heavy.css 2002/01/05 06:17:02 1.2 --- MacOSX-heavy.css 2002/01/05 16:12:19 1.3 *************** *** 2,8 **** * $Id$ * ! * MacOSX-heavy.css * ! * This is stuff which should be in MacOSX.css, but which breaks NS4. */ --- 2,8 ---- * $Id$ * ! * phpwiki-heavy.css * ! * This is stuff which should be in phpwiki.css, but which breaks NS4. */ *************** *** 21,42 **** { font-size: larger; } - /* This renders the ? invisible in OW4 */ - .wikiunknown A, .named-wikiunknown - { color: white; background-color: #600; } - - /* Make wikiaction links look like buttons */ - A.wikiaction, A.wikiadmin, INPUT.button - { - border-style: outset; - border-width: thin; - color: #006; - padding-top: 0ex; - padding-bottom: 0ex; - padding-left: 0.2em; - padding-right: 0.2em; - } - /* Link icons */ ! img.linkicon { vertical-align: middle; } /**************************************************************** --- 21,26 ---- { font-size: larger; } /* Link icons */ ! img.linkicon { vertical-align: middle; } /**************************************************************** *************** *** 46,50 **** *****************************************************************/ .diff .block div { position: relative; padding-left: 1.5em; } ! .diff .prefix { position: absolute; left: 0.5em; top: 0; } --- 30,34 ---- *****************************************************************/ .diff .block div { position: relative; padding-left: 1.5em; } ! .diff .prefix { position: absolute; left: 0.5em; top: 0; } |