|
From: <var...@us...> - 2011-01-21 14:18:49
|
Revision: 7854
http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7854&view=rev
Author: vargenau
Date: 2011-01-21 14:18:43 +0000 (Fri, 21 Jan 2011)
Log Message:
-----------
No rounding for <span>
Modified Paths:
--------------
trunk/themes/fusionforge/fusionforge.css
Modified: trunk/themes/fusionforge/fusionforge.css
===================================================================
--- trunk/themes/fusionforge/fusionforge.css 2011-01-21 13:28:47 UTC (rev 7853)
+++ trunk/themes/fusionforge/fusionforge.css 2011-01-21 14:18:43 UTC (rev 7854)
@@ -610,67 +610,49 @@
/* Banners ============================================================ */
-.error {
+.error, .warning, .debug, .hint {
font-weight: bold;
font-size: 11px;
text-align: left;
border-width: 2px;
border-style: solid;
+ padding: 0.5em;
+}
+
+.error {
background-color: #ffc0cb; /* pink */
border-color: red;
- padding: 0.5em;
- border-radius: 1em;
- -moz-border-radius: 1em;
- -webkit-border-radius: 1em;
}
.warning {
- font-weight: bold;
- font-size: 11px;
- text-align: left;
- border-width: 2px;
- border-style: solid;
background-color: #ffd297; /* orange */
border-color: #FFA500; /* orange */
- padding: 0.5em;
- border-radius: 1em;
- -moz-border-radius: 1em;
- -webkit-border-radius: 1em;
}
-/* Debug */
.debug {
- color: black;
- background: white;
- font-family: monospace;
- font-size: smaller;
- margin: 1ex 0;
- padding: 0.5ex 0.5em;
- border: medium solid #fff8dc; /* darker ivory */
+ background-color: white;
+ border-color: #fff8dc; /* darker ivory */
}
-/* Hints */
.hint {
- font-weight: bold;
- font-size: 11px;
- text-align: left;
- border-width: 2px;
- border-style: solid;
background-color: #eeeeee;
border-color: black;
- padding: 0.5em;
+}
+
+p.error, p.warning, p.debug, p.hint,
+div.error div.warning, div.debug, div.hint {
border-radius: 1em;
-moz-border-radius: 1em;
-webkit-border-radius: 1em;
}
-span.warning, span.error, span.hint {
+span.error, span.warning, span.debug, span.hint {
padding: 0;
}
-/* Disabled Plugins */
-.disabled-plugin
-{
+/* Disabled Plugins ================================================== */
+
+.disabled-plugin {
clear: both;
margin: 1ex 0;
padding: 0;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|