Add event editing to admin interface

This commit is contained in:
2017-10-12 00:38:28 +02:00
parent efb0e3d711
commit 1abb7813a8
7 changed files with 251 additions and 8 deletions

View File

@@ -56,6 +56,11 @@ header.admin {
grid-template-columns: 75% 25%;
}
.gridsplit5050 {
display: grid;
grid-template-columns: 50% 50%;
}
.gridl {
height: 100%;
grid-column: 1;
@@ -69,6 +74,14 @@ header.admin {
grid-column: 2;
}
.allgrids {
grid-column: 1 / -1;
}
.noborder {
border: none;
}
.subnote {
margin-top: 0;
color: gray;
@@ -82,4 +95,25 @@ header.admin {
.float-left {
float: left;
}
.btn {
text-decoration: none;
border: 1px solid #048;
color: #048;
padding: .2em 1em;
border-radius: .2em;
white-space: nowrap;
display: inline-block;
margin-bottom: .25em;
}
.btn:hover {
border-color: #084;
background: #eee;
color: #084;
}
.btn:active {
border-color: #084;
background: #084;
color: white;
}