select input component

This commit is contained in:
2018-09-17 10:18:53 +02:00
parent 20e87b30f3
commit 56773fdfad
14 changed files with 287 additions and 127 deletions

View File

@@ -252,14 +252,14 @@ form .form-row input[type="checkbox"] {
background: transparent;
border: none;
color: #eeeeee;
border-bottom: solid 1px #097479;
}
.sui input[type="text"]:focus,
.sui input[type="password"]:focus,
.sui input[type="text"]:hover,
.sui input[type="password"]:hover {
outline: none;
border-bottom: solid 1px #097479;
box-shadow: 3px #097479;
border-bottom: 1px solid #0eb8c0;
}
.sui input[type="checkbox"] {
transform: scale(2);
@@ -268,6 +268,22 @@ form .form-row input[type="checkbox"] {
flex: none !important;
background-color: transparent;
border: 0;
height: 50px;
width: 75px;
height: 42px;
width: 42px;
}
.sui select {
padding: .5em;
color: #eeeeee;
background: none;
border: none;
border-bottom: solid 1px #097479;
}
.sui select:focus,
.sui select:hover {
outline: none;
border: none;
border-bottom: solid 1px #0eb8c0 !important;
}
.sui select option {
background: #333333;
}