Skip to content
Snippets Groups Projects
Commit 1c39c606 authored by Axel Hahn's avatar Axel Hahn
Browse files

overview: lighter buttons; fix detection of processing user

parent 183c93e5
Branches
No related tags found
No related merge requests found
...@@ -49,7 +49,8 @@ class Actionlog { ...@@ -49,7 +49,8 @@ class Actionlog {
$this->_sUser = $_SERVER["PHP_AUTH_USER"] . " (web)"; $this->_sUser = $_SERVER["PHP_AUTH_USER"] . " (web)";
} else { } else {
$this->_sIP = 'local'; $this->_sIP = 'local';
$this->_sUser = posix_getpwuid(posix_geteuid()) . " (system)"; $aUser=posix_getpwuid(posix_geteuid());
$this->_sUser = $aUser['name'] . " (system)";
} }
} }
......
...@@ -75,6 +75,7 @@ h2.deploy{background-image: url("/deployment/images/nuvola64x64/apps/iconthemes. ...@@ -75,6 +75,7 @@ h2.deploy{background-image: url("/deployment/images/nuvola64x64/apps/iconthemes.
h2.prjhome{background-image: url("/deployment/images/nuvola64x64/apps/kdict.png");} h2.prjhome{background-image: url("/deployment/images/nuvola64x64/apps/kdict.png");}
h2.phase{background-image: url("/deployment/images/nuvola64x64/apps/kreversi.png");} h2.phase{background-image: url("/deployment/images/nuvola64x64/apps/kreversi.png");}
h2.setup{background-image: url("/deployment/images/nuvola64x64/apps/kcmsystem.png");} h2.setup{background-image: url("/deployment/images/nuvola64x64/apps/kcmsystem.png");}
h2.login{background-image: url("/deployment/images/nuvola64x64/apps/kgpg.png");}
h3{color:#444; margin-top: 3em;} h3{color:#444; margin-top: 3em;}
h3:first-child{margin-top: 0;} h3:first-child{margin-top: 0;}
...@@ -108,7 +109,7 @@ thead{font-size: 130%;} ...@@ -108,7 +109,7 @@ thead{font-size: 130%;}
#tbloverview th{} #tbloverview th{}
#tbloverview td{} #tbloverview td{}
th{border-radius: 0.7em 0.7em 0 0; text-align: center;} th{/*border-radius: 0.7em 0.7em 0 0; */ text-align: center; border-right: 1px solid #fff;}
th.prj{background:#f8f8f8;} th.prj{background:#f8f8f8;}
th.versioncontrol{background: #eee; } th.versioncontrol{background: #eee; }
th.preview{color:#eee; } th.preview{color:#eee; }
...@@ -117,6 +118,10 @@ th.live{color:#eee; } ...@@ -117,6 +118,10 @@ th.live{color:#eee; }
tr{/* background: linear-gradient(#fff,#fff,#fff,#fff,#eee); */} tr{/* background: linear-gradient(#fff,#fff,#fff,#fff,#eee); */}
tr:hover{background:#ddd; background: linear-gradient(#f0f0f0,#fff,#f0f0f0);} tr:hover{background:#ddd; background: linear-gradient(#f0f0f0,#fff,#f0f0f0);}
.trproject a.btn{opacity: 0.2;}
.trproject:hover a.btn{opacity: 1;}
td.preview{} td.preview{}
td.stage{} td.stage{}
td.live{} td.live{}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment