From c973c666be984695b8f47a04246d75475a937bab Mon Sep 17 00:00:00 2001 From: hahn <axel.hahn@iml.unibe.ch> Date: Tue, 28 May 2019 07:59:54 +0200 Subject: [PATCH] - update appmonitor client class - simplify filter on top in the project overview --- public_html/deployment/.htusers | 2 -- public_html/deployment/index.php | 5 +++++ public_html/deployment/main.css | 21 +++++++++++++++++++-- 3 files changed, 24 insertions(+), 4 deletions(-) delete mode 100644 public_html/deployment/.htusers diff --git a/public_html/deployment/.htusers b/public_html/deployment/.htusers deleted file mode 100644 index ab74093d..00000000 --- a/public_html/deployment/.htusers +++ /dev/null @@ -1,2 +0,0 @@ - -iml:$apr1$AUcEY.ns$FqqznbqFI.tPNno07nyCI0 diff --git a/public_html/deployment/index.php b/public_html/deployment/index.php index 3f6bd204..f7348a56 100644 --- a/public_html/deployment/index.php +++ b/public_html/deployment/index.php @@ -17,6 +17,11 @@ ###################################################################### */ session_start(); + +ini_set('display_errors', 1); +ini_set('display_startup_errors', 1); +error_reporting(E_ALL); + require_once("./classes/page.class.php"); require_once("../../config/inc_projects_config.php"); require_once("./classes/logger.class.php"); diff --git a/public_html/deployment/main.css b/public_html/deployment/main.css index ea60e8bb..0e50be5d 100644 --- a/public_html/deployment/main.css +++ b/public_html/deployment/main.css @@ -16,7 +16,7 @@ body{padding-top: 0;} border-top: 0px solid #ddd; margin-top: 5em; } -.navbar {position: fixed; top: 0px; width: 100%; left: 0; z-index: 100;} +.navbar {background:#023; border-radius: 0; position: fixed; top: 0px; width: 100%; left: 0; z-index: 100;} .navbar-inner {padding: 0 6em;box-shadow: 0 0 3em #888;} #header2{ background: none; @@ -44,7 +44,7 @@ body{padding-top: 0;} box-shadow: 0 0 15px #eee; padding: 0.5em; - box-shadow: 0 0 7em #ddd; + box-shadow: 0 0 1em #ddd; } div#navtop, div#navbuttom{background: #dde; padding: 0.5em;} @@ -137,6 +137,23 @@ div.progressinprogress{color: #6a9;} tr.progresshasqueue{border-left:0.5em solid #f81;} div.progresshasqueue{color: #d61;} +.filterbar{border-bottom: 0px dotted #ccc; ;} +button.prjprogress>span{font-size: 130%;} +button.prjprogress.selected{background:#f4f4f4; box-shadow: 0 0 1em #ddd inset; border: 1px solid #aaa;} + +/* +.trproject-textfilter {border-right: 3px solid #f00;} +.trproject-projectfilter {border-top: 3px solid #00f;} +.trproject-progressfilter {border-bottom: 3px solid #0f0;} +*/ + +.trproject-textfilter, +.trproject-projectfilter, +.trproject-progressfilter +{ + display: none; +} + td.preview{} td.stage{} td.live{} -- GitLab