add user password reset, add series image switch, add image licences, redesign exclude filters

This commit is contained in:
Milan
2018-03-17 13:14:13 +01:00
parent b3f743dee9
commit aadf3fd06e
48 changed files with 1329 additions and 667 deletions

View File

@@ -17,6 +17,10 @@ body #content{
text-align:left;
}
#selectImage #content{
max-width:none;
}
body,
#content input,
#content textarea,
@@ -27,7 +31,7 @@ body,
#content li{
font-size:14px;
font-size:0.75rem;
font-family:sans-serif;
font-family:Roboto,sans-serif;
}
#content textarea{
@@ -390,6 +394,10 @@ tr.tablesorter-filter-row input{
text-decoration: none;
}
#content input.error{
border-bottom:2px solid #d30000;
}
#content input[type="text"]:focus{
border-bottom:2px solid #03a9f4;
}

View File

@@ -2,7 +2,7 @@
#content{
margin-top:3em;
padding:1em;
max-width:1000px;
/*max-width:1000px;*/
min-height:100%;
}

View File

@@ -0,0 +1,58 @@
#content table,
#content tr,
#content td,
#content div.ok,
#content div.warn,
#content div.error{
margin:0;
padding:0;
border:0;
}
table{
margin:1em;
border-collapse:collapse;
empty-cells:show;
}
#content tr,
#content td{
vertical-align:top;
}
#content tr{
border-top:1px solid #666;
}
#content td{
padding:3px;
font-size:-2;
text-align:center;
}
#content img{
width:100%;
height:100%;
}
#content div.ok,
#content div.warn,
#content div.error{
padding-top:3px;
padding-bottom:3px;
margin:1px;
}
#content div.ok{
background:#4caf50;
}
#content div.warn{
background:#ffeb3b;
}
#content div.error{
background:#f44336;
}