Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cfg/apache.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function apache_get_config( $type , $file , $software , $counter ) {
if ( $test === 1 ) {
return<<<EOF
"$software$counter": {
"display" : "Apache Error #$counter",
"display" : $file_json_encoded,
"path" : $file_json_encoded,
"refresh" : 5,
"max" : 10,
Expand Down Expand Up @@ -104,7 +104,7 @@ function apache_get_config( $type , $file , $software , $counter ) {

return<<<EOF
"$software$counter": {
"display" : "Apache Error #$counter",
"display" : $file_json_encoded,
"path" : $file_json_encoded,
"refresh" : 5,
"max" : 10,
Expand Down Expand Up @@ -144,7 +144,7 @@ function apache_get_config( $type , $file , $software , $counter ) {

return<<<EOF
"$software$counter": {
"display" : "Apache Access #$counter",
"display" : $file_json_encoded,
"path" : $file_json_encoded,
"refresh" : 0,
"max" : 10,
Expand Down
6 changes: 6 additions & 0 deletions css/config.inc.css
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,9 @@ tr:nth-child(even) td.marker { background-color : #ffff00!important; }
tr:nth-child(odd):hover td.marker { background-color : #e8e800!important; }
tr:nth-child(even):hover td.marker { background-color : #f8f800!important; }

/* Make sure dropdown menu isn't too skinny for longer menu items */
.navbar-nav>li>.dropdown-menu {
width: auto !important;
max-width: none !important;
}