diff --git a/htdocs/.htaccess b/htdocs/.htaccess index 8569bd9..4cd4741 100644 --- a/htdocs/.htaccess +++ b/htdocs/.htaccess @@ -4,6 +4,6 @@ php_flag display_errors on ExpiresActive On ExpiresByType image/png "access plus 1 year" ExpiresByType image/gif "access plus 1 year" - ExpiresByType text/css "access plus 1 hour" +# ExpiresByType text/css "access plus 1 hour" diff --git a/htdocs/account.php b/htdocs/account.php index 81ca00e..98b5a65 100644 --- a/htdocs/account.php +++ b/htdocs/account.php @@ -25,10 +25,11 @@ Layout::header();
- +
- + diff --git a/htdocs/css/singularity/singularity.css b/htdocs/css/singularity/singularity.css index cd784f1..81fc35b 100644 --- a/htdocs/css/singularity/singularity.css +++ b/htdocs/css/singularity/singularity.css @@ -27,6 +27,7 @@ div { margin: 0; } +/* input { color: #a0a0a0; background-color: #2C3737; @@ -38,6 +39,22 @@ input { input:hover { background-color: #445A5E; } +*/ + +input, select, textarea { + box-sizing: border-box; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; +} + +textarea, +select, +input[type="text"] { + padding: 0.25em 0.3em; + margin: 0.1em 0; + vertical-align: middle; + border-radius: 4px; +} a, a:link, a:hover, a:visited, a:active { text-decoration: none; diff --git a/htdocs/lib/SearchFilter.php b/htdocs/lib/SearchFilter.php index 9fc3cae..296f7b9 100644 --- a/htdocs/lib/SearchFilter.php +++ b/htdocs/lib/SearchFilter.php @@ -171,7 +171,7 @@ class SearchFilter
Version
- Grid
- Stacktrace contains
- - + +
diff --git a/htdocs/users.php b/htdocs/users.php index 7281e58..b09541d 100644 --- a/htdocs/users.php +++ b/htdocs/users.php @@ -43,7 +43,7 @@ Layout::header(); - + @@ -51,14 +51,19 @@ Layout::header(); -
Name   +
Email Name Email AccessActionsActions
name); ?> email); ?> isAdmin() ? "Admin" : ($users[$i]->isAllowed() ? "Granted" : "No"); ?> isAdmin()) + if ($users[$i]->isAdmin()) { + print ''; + } + else + { + print ""; $action = $users[$i]->isAllowed() ? "revoke" : "grant"; $url = URL_ROOT . "/users.php?action=$action&id=" . (int)$users[$i]->user_id; $delete = URL_ROOT . "/users.php?action=remove&id=" . (int)$users[$i]->user_id; - print "{$action}  "; + print "{$action}"; + print ""; print "delete account"; } ?>