From ae6d914aae490fb025e91c5eb72abb3d80d5e91a Mon Sep 17 00:00:00 2001
From: mcramer <m.cramer@pixcept.de>
Date: Wed, 15 Aug 2012 10:04:32 -0400
Subject: [PATCH] Fixed bug that added Listen directive to apps vhost even on port 80 and 443
---
interface/web/themes/default/css/screen/basemod.css | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/interface/web/themes/default/css/screen/basemod.css b/interface/web/themes/default/css/screen/basemod.css
index 13b006a..31e7bd1 100644
--- a/interface/web/themes/default/css/screen/basemod.css
+++ b/interface/web/themes/default/css/screen/basemod.css
@@ -37,7 +37,13 @@
/* (de) Layout: Breite, Hintergrund, Rahmen */
/*#page_margins { min-width: 980px; max-width: 80%; background: #fff;}*/
/* #page_margins { min-width: 980px; max-width: 80%; background: #fff; display: inline-block;}*/
- #page_margins { min-width: 980px; max-width: 80%; background: #fff; display: table;}
+
+ /*WARNING: ADded a overrode for this setting in main.tpl with javascript to target non chrome browsers,
+ This has to be changed too in case that page_margins get changed. Reason: Chrome does not support the
+ display: table; attribute correctly*/
+ #page_margins { min-width: 980px; max-width: 80%; background: #fff;}
+ /*#page_margins { min-width: 980px; max-width: 80%; background: #fff; display: table;}*/
+
#page{ padding: 10px; }
/* (en) Designing main layout elements */
@@ -45,7 +51,7 @@
#header {
color: #faf0e6;
padding: 15px 2em 5px 20px;
- background: #9a9a9a url(../../images/header_bg.png) repeat-x top left;
+ background: #9a9a9a url("../../images/header_bg.png") repeat-x top left;
}
/* (en) Text Alignment for #topnav content */
--
Gitblit v1.9.1