default.css: material for form input fields

This commit is contained in:
Milan
2021-03-13 18:22:32 +01:00
parent ac8b9ba661
commit 63da21247f

View File

@@ -543,33 +543,39 @@ table.tablesorter tr {
#content input { #content input {
border: none; border: none;
border-bottom: 1px solid #03a9f4; border-bottom: 1px solid #ccc;
color: #000; color: #000;
background: #fefefe; background: #fefefe;
padding: 8px; box-sizing:border-box;
margin-left: 0.5rem;
text-decoration: none;
} }
#content input.error { #content input.error {
border-bottom: 2px solid #d30000; border-bottom: 2px solid #d30000;
} }
#content input[type="text"]:focus { #content input:hover,
border-bottom: 2px solid #03a9f4; #content input:focus {
border-bottom: 1px solid #03a9f4;
} }
#content textarea {
font-weight: normal;
border-bottom:1px solid #ccc;
}
#content textarea:hover,
#content textarea:focus { #content textarea:focus {
border: 1px solid #03a9f4; border-bottom: 1px solid #03a9f4;
background:#fff;
} }
#content select { #content select {
color: #000; color: #000;
padding: 6px; background:#fff;
padding-left: 0; padding-left: 0;
padding-right: 0; padding-right: 0;
border: none; border: none;
border-bottom: solid 1px #9e9e9e; border-bottom: solid 1px #03a9f4;
cursor: pointer; cursor: pointer;
} }