From: <var...@us...> - 2011-03-10 12:40:15
|
Revision: 7985 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7985&view=rev Author: vargenau Date: 2011-03-10 12:40:08 +0000 (Thu, 10 Mar 2011) Log Message: ----------- explode background attributes Modified Paths: -------------- trunk/themes/Sidebar/sidebar.css Modified: trunk/themes/Sidebar/sidebar.css =================================================================== --- trunk/themes/Sidebar/sidebar.css 2011-03-10 11:03:28 UTC (rev 7984) +++ trunk/themes/Sidebar/sidebar.css 2011-03-10 12:40:08 UTC (rev 7985) @@ -21,7 +21,7 @@ #content { margin: 61px 0 0 12.2em; padding: 1em 1em 1.5em 1em; - background: White; + background-color: white; border: 1px solid #aaaaaa; border-right: none; line-height: 1.5em; @@ -39,7 +39,7 @@ body { font: small sans-serif; - background: #ffffff; + background-color: #ffffff; color: black; margin: 0; padding: 0; @@ -63,7 +63,7 @@ a { text-decoration: none; color: #004ba6; - background: none; + background-image: none; } a:visited { color: #5a3696; } a:active { color: #faa700; } @@ -88,7 +88,7 @@ } img.inlineimage { border: none; - display: inline; + display: inline; } hr { @@ -101,7 +101,7 @@ h1, h2, h3, h4, h5, h6 { color: black; - background: none; + background-image: none; font-weight: bold; font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif; margin: 0; @@ -162,7 +162,6 @@ line-height: 1.5em; } legend { - /*background: white;*/ padding: 0.5em; font-size: 95%; } @@ -189,7 +188,7 @@ abbr, acronym, .explain { border-bottom: 1px dotted black; color: black; - background: none; + background-image: none; cursor: help; } q { @@ -455,12 +454,12 @@ div.magnify { float: right; border: none !important; - background: none !important; + background-image: none !important; } div.magnify a, div.magnify img { display: block; border: none !important; - background: none !important; + background-image: none !important; } div.tright { clear: right; @@ -509,7 +508,7 @@ div.townBox { position: relative; float: right; - background: white; + background-color: white; margin-left: 1em; border: 1px solid gray; padding: .3em; @@ -523,7 +522,7 @@ font-size: 96%; } div.townBox dl dt { - background: none; + background-image: none; margin: .4em 0 0; } div.townBox dl dd { @@ -567,15 +566,15 @@ background-color: white; } td.diff-addedline { - background: #cfc; + background-color: #cfc; font-size: smaller; } td.diff-deletedline { - background: #ffa; + background-color: #ffa; font-size: smaller; } td.diff-context { - background: #eee; + background-color: #eee; font-size: smaller; } span.diffchange { @@ -590,7 +589,7 @@ .diff { margin-top: 1ex; margin-bottom: 0.5ex; - background: white; + background-color: white; color: black; border-top: 1px solid #494f5d; border-left: 1px solid #494f5d; @@ -604,20 +603,20 @@ clear: both; } .diff .block { - background: #ddd; + background-color: #ddd; padding-left: 1em; } /* individual blocks */ .diff .context { - background: white; + background-color: white; border: none; } /* entire difftextblock */ .difftext { margin-top: 0; margin-bottom: 0; - background: white; + background-color: white; /* "paper" borders */ border-top: 1px #e8e6df solid; border-left: 1px #e8e6df solid; @@ -646,23 +645,23 @@ /* blocks containing deleted or added words */ .diff .original, .diff .deleted, .diff .final, .diff .added { - background: white; + background-color: white; } /* blocks containing deleted words */ .diff .original, .diff .deleted { - background: #fcc; + background-color: #fcc; border: none; } /* blocks containing added words */ .diff .final, .diff .added { - background: #cfc; + background-color: #cfc; border: none; } /* deleted words */ -.diff del { background: #f99; } +.diff del { background-color: #f99; } /* added words */ -.diff ins { background: #9f9; } +.diff ins { background-color: #9f9; } /** * PageHistory, Info @@ -678,7 +677,7 @@ */ table.cal { border: 1px outset gray; - background: white; + background-color: white; margin: 0.5ex 0.5em; padding: 1px; /* For Mozilla */ @@ -687,7 +686,7 @@ /* cells */ table.cal td { - background: white; + background-color: white; text-align: right; } @@ -725,38 +724,50 @@ */ #bodyContent a.external, #bodyContent a[href ^="gopher://"] { - background: url("images/url.png") center right no-repeat; + background-image: url("images/url.png"); + background-position: center right; + background-repeat: no-repeat; padding-right: 13px; } #bodyContent a[href ^="https://"], .link-https { - background: url("images/lock_icon.png") center right no-repeat; + background-image: url("images/lock_icon.png"); + background-position: center right; + background-repeat: no-repeat; padding-right: 16px; } #bodyContent a[href ^="mailto:"], .link-mailto { - background: url("images/mail_icon.png") center right no-repeat; + background-image: url("images/mail_icon.png"); + background-position: center right; + background-repeat: no-repeat; padding-right: 18px; } #bodyContent a[href ^="news://"] { - background: url("images/news_icon.png") center right no-repeat; + background-image: url("images/news_icon.png"); + background-position: center right; + background-repeat: no-repeat; padding-right: 18px; } #bodyContent a[href ^="ftp://"], .link-ftp { - background: url("images/file_icon.png") center right no-repeat; + background-image: url("images/file_icon.png"); + background-position: center right; + background-repeat: no-repeat; padding-right: 18px; } #bodyContent a[href ^="irc://"], .link-irc { - background: url("images/discussionitem_icon.png") center right no-repeat; + background-image: url("images/discussionitem_icon.png"); + background-position: center right; + background-repeat: no-repeat; padding-right: 18px; } /* disable interwiki styling */ #bodyContent a.extiw, #bodyContent a.extiw:active { color: #36b; - background: none; + background-image: none; padding: 0; } #bodyContent a.external { @@ -765,7 +776,7 @@ /* this can be used in the content area to switch off special external link styling */ #bodyContent .plainlinks a { - background: none !important; + background-image: none !important; padding: 0 !important; } /* @@ -789,7 +800,7 @@ white-space: nowrap; } .portlet h5 { - background: transparent; + background-color: transparent; padding: 0em 1em 0em 0.5em; /*text-transform: lowercase;*/ display: inline; @@ -809,7 +820,7 @@ border: 0; } .portlet h6 { - background: #ffae2e; + background-color: #ffae2e; border: 1px solid #2f6fab; border-style: solid solid none solid; padding: 0em 1em 0em 1em; @@ -858,10 +869,8 @@ left: 0; height: 42px; width: 100%; - /*width: 340px;*/ overflow: visible; - background: #005A99; - /*background: #000099;*/ + background-color: #005A99; } #p-logo h5 { display: none; } #p-logo a, @@ -1000,12 +1009,10 @@ padding: 0 0 0 0; margin: 0; position: absolute; - /*left: 300px;*/ right: 140px; top: 15px; z-index: 4; border: none; - /* background: white; */ overflow: visible; color: black; line-height: 1.2em; @@ -1021,7 +1028,7 @@ border: none; z-index:0; overflow: visible; - background: none; + background-image: none; } /* this is the ul contained in the portlet */ #p-personal ul { @@ -1033,7 +1040,7 @@ text-align: right; list-style: none; z-index:0; - background: none; + background-image: none; cursor: default; } #p-personal li { @@ -1044,7 +1051,7 @@ color: #2f6fab; margin-left: 0.8em; line-height: 1.2em; - background: none; + background-image: none; } #p-personal li a { text-decoration: none; @@ -1054,7 +1061,7 @@ } #p-personal li a:hover { color: white; - background: #005A99; + background-color: #005A99; padding-bottom: 0.2em; font-weight: bold; text-decoration: none; @@ -1067,7 +1074,8 @@ li#pt-userpage, li#pt-anonuserpage, li#pt-login { - background: url('images/wikiuser.png') top left no-repeat; + background-image: url('images/wikiuser.png'); + background-position: top left; background-repeat: no-repeat; padding-left: 10px; text-transform: none; @@ -1086,7 +1094,7 @@ width: 76%; line-height: 1.1em; overflow: visible; - background: none; + background-image: none; border-collapse: collapse; padding-left: 1em; list-style: none; @@ -1103,7 +1111,7 @@ padding: 0 0 .1em 0; margin: 0 .3em 0 0; overflow: visible; - background: white; + background-color: white; } #p-cactions li.selected { border-color: #fabd23; @@ -1135,7 +1143,8 @@ } /* http://universaleditbutton.org */ #p-cactions li a#btn-edit { - background: url('images/UEB16.png') top left no-repeat; + background-image: url('images/UEB16.png'); + background-position: top left; background-repeat: no-repeat; padding-left: 20px !important; text-transform: none; @@ -1505,7 +1514,7 @@ /* noarticletext */ div.noarticletext { border: 1px solid #ccc; - background: #fff; + background-color: #fff; padding: .2em 1em; color: #000; } @@ -1514,13 +1523,13 @@ left: 10px; top: 10px; width: 90%; - background: white; + background-color: white; } div#searchTarget { padding: 3px; margin: 5px; - background: #F0F0F0; + background-color: #F0F0F0; border: solid 1px blue; } @@ -1538,7 +1547,7 @@ padding: 4px; margin: 1em; -moz-border-radius: 6px; - background: #f0f0f0; + background-color: #f0f0f0; } div.multipageimagenavbox div.thumb { @@ -1583,14 +1592,14 @@ */ .pagelist { } .pagelist thead td { - background: #e8e8e8; + background-color: #e8e8e8; text-decoration: none; font-weight: bold; font-size: smaller; } .pagelist thead td u { text-decoration: none; } -.pagelist tr.evenrow { background: #eee; } -.pagelist tr.oddrow { background: white; } +.pagelist tr.evenrow { background-color: #eee; } +.pagelist tr.oddrow { background-color: white; } th.gridbutton { background-color: ThreeDLightShadow; color: black; @@ -1663,7 +1672,7 @@ /* Debug */ .debug { color: black; - background: white; + background-color: white; font-size: smaller; margin: 1ex 0; padding: 0.5ex 0.5em; @@ -1672,8 +1681,7 @@ /* Hints */ .hint { color: black; - background: #eeeeee; - /* font-size: smaller; */ + background-color: #eeeeee; font-style: italic; margin-left: 3em; padding: 0.5ex 0.5em; @@ -1698,7 +1706,7 @@ } .disabled-plugin pre { color: black; - background: #ddd; + background-color: #ddd; margin: 0; padding: 0.3ex 0.5em; } @@ -1710,15 +1718,15 @@ font-weight: normal; padding-left: 1em; } -.search-context { background: white; font-style: oblique; } +.search-context { background-color: white; font-style: oblique; } .search-term { - background: yellow; + background-color: yellow; font-weight: normal; } a.spell-wrong { color:#ba0000; - background: yellow; + background-color: yellow; } span.spell-wrong { color:#ba0000; @@ -1858,7 +1866,7 @@ margin-bottom: 0.1ex; } .wiki-edithelp { - background: white; + background-color: white; border: medium solid #fff8dc; /* darker ivory */ padding-left: 0.5em; padding-right: 0.5em; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |