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 {
border: none;
border-bottom: 1px solid #03a9f4;
border-bottom: 1px solid #ccc;
color: #000;
background: #fefefe;
padding: 8px;
margin-left: 0.5rem;
text-decoration: none;
box-sizing:border-box;
}
#content input.error {
border-bottom: 2px solid #d30000;
}
#content input[type="text"]:focus {
border-bottom: 2px solid #03a9f4;
#content input:hover,
#content input:focus {
border-bottom: 1px solid #03a9f4;
}
#content textarea {
font-weight: normal;
border-bottom:1px solid #ccc;
}
#content textarea:hover,
#content textarea:focus {
border: 1px solid #03a9f4;
border-bottom: 1px solid #03a9f4;
background:#fff;
}
#content select {
color: #000;
padding: 6px;
background:#fff;
padding-left: 0;
padding-right: 0;
border: none;
border-bottom: solid 1px #9e9e9e;
border-bottom: solid 1px #03a9f4;
cursor: pointer;
}