changeset 2339:42f4d06fa98a

allow arbitrary line-breaks in popup
author Giulio Moro <giuliomoro@yahoo.it>
date Tue, 10 May 2016 18:30:23 +0100
parents d347dbab980d
children 9978360ade43
files css/core.css
diffstat 1 files changed, 8 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/css/core.css	Tue May 10 17:44:21 2016 +0100
+++ b/css/core.css	Tue May 10 18:30:23 2016 +0100
@@ -42,12 +42,13 @@
 	border-radius: 10px;
 	box-shadow: 0px 0px 50px #000;
 	z-index: 10;
-    position: fixed;
+	position: fixed;
 }
 
 div#popupContent {
     margin-top: 20px;
     margin-bottom: 35px;
+    overflow: auto;
 }
 
 div#popupTitleHolder {
@@ -56,7 +57,11 @@
     max-height: 250px;
     overflow: auto;
     margin-bottom: 5px;
-    text-align: center;
+    padding: 8px;
+}
+
+#popupTitle {
+    white-space: pre-line;
 }
 
 div#popupResponse {
@@ -203,4 +208,4 @@
     width: 8px;
     padding: 0 5px;
     height: 290px;
-}
\ No newline at end of file
+}