sql delete replaced by delete flag
log list (simple), log categories
minor bug fixes in css
This commit is contained in:
Ricsi
2016-12-30 18:00:05 +01:00
parent 664097a976
commit 5a78b09a38
39 changed files with 557 additions and 92 deletions

View File

@@ -162,6 +162,52 @@ td.create a {
width: 70%;
}
table.log {
width: 100%;
border-collapse: collapse;
}
table.log td {
padding: 4px;
}
table.log img {
width: 15px;
height: 15px;
}
table.log tr.login {
background-color: #e4d7d7;
}
table.log tr.lock, table.log tr.edit {
background-color: #fbff68;
}
table.log tr.tick {
background-color: #91ff68;
}
table.log tr.delete {
background-color: #ff9797;
}
table.log tr.login:hover {
background-color: #aaa;
}
table.log tr.lock:hover, table.log tr.edit:hover {
background-color: #ff0;
}
table.log tr.tick:hover {
background-color: #36ae09;
}
table.log tr.delete:hover {
background-color: #f02a2a;
}
@media (min-width: 680px) {
@@ -171,10 +217,14 @@ main #main_content {
margin: 0px auto;
}
.list .list_item, .list .name_tag, .list .name_tag_checked {
.list {
width: 40%;
}
.list .list_item, .list .name_tag, .list .name_tag_checked {
width: 100%;
}
.list_item label {
float: left;
padding-right: 5px;
@@ -182,7 +232,7 @@ main #main_content {
}
.list .date_separator {
width: 40%;
width: 100%;
}