diff options
-rw-r--r-- | WebContent/themes/default/theme.css | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/WebContent/themes/default/theme.css b/WebContent/themes/default/theme.css index c5f152a42d..73e5adf038 100644 --- a/WebContent/themes/default/theme.css +++ b/WebContent/themes/default/theme.css @@ -119,12 +119,14 @@ IMG.overlay { text-align: left;
}
.popup * {
- white-space: nowrap;
+ /*white-space: nowrap;*/ /* Really, there's no point doing it like this. If we need nowrap, we define it in the content that needs it, not on all. */
color: InfoText;
background-color: InfoBackground;
}
.popup .error {
font-size: 0.9em;
+ overflow: auto;
+ border: solid 1px red;
}
/* COMPONENTS */
|