changeset 2341:9b4d7c57a78c

Merge branch 'master' of https://github.com/BrechtDeMan/WebAudioEvaluationTool
author www-data <www-data@sucuk.dcs.qmul.ac.uk>
date Tue, 10 May 2016 19:20:54 +0100
parents cb01bc04ab2c (current diff) 9978360ade43 (diff)
children dc05aa1411f3
files
diffstat 1 files changed, 19 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/css/core.css	Tue May 10 18:21:07 2016 +0100
+++ b/css/core.css	Tue May 10 19:20:54 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,15 @@
     width: 8px;
     padding: 0 5px;
     height: 290px;
-}
\ No newline at end of file
+}
+
+::-webkit-scrollbar {
+    -webkit-appearance: none;
+    width: 7px;
+}
+
+::-webkit-scrollbar-thumb {
+    border-radius: 4px;
+    background-color: rgba(0,0,0,.5);
+    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
+}