From: <var...@us...> - 2009-04-24 16:34:53
|
Revision: 6804 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6804&view=rev Author: vargenau Date: 2009-04-24 16:34:40 +0000 (Fri, 24 Apr 2009) Log Message: ----------- Error banner Modified Paths: -------------- trunk/themes/MonoBook/main.css Modified: trunk/themes/MonoBook/main.css =================================================================== --- trunk/themes/MonoBook/main.css 2009-04-22 14:17:27 UTC (rev 6803) +++ trunk/themes/MonoBook/main.css 2009-04-24 16:34:40 UTC (rev 6804) @@ -267,10 +267,6 @@ margin: 0; padding: 0; } -.error { - color: red; - font-size: larger; -} .errorbox, .successbox { font-size: larger; border: 2px solid; @@ -1687,8 +1683,6 @@ border: thin solid blue; clear: both; } -.error { font-family: monospace; font-size: 120%; } -.error ul { font-family: monospace; } /* Debug */ .debug { @@ -1910,6 +1904,19 @@ padding: 0.5em; } +/* style for error messages + Use this style if you need to display an error, e.g: + User does not exist +*/ +.error { + font-weight: bold; + border-width: 2px; + border-style: solid; + background-color: #ffc0cb; /* pink */ + border-color: red; + padding: 0.5em; +} + #edit-public, h1.firstHeading-public, h1.firstHeading-rating-public { background-color: #ffce7b; border: 1px solid #ffa500; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |