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

@@ -2,6 +2,6 @@
flex: none !important;
background-color: transparent;
border: 0;
height: 50px;
width: 75px;
height: 42px;
width: 42px;
}

View File

@@ -9,10 +9,10 @@
background: transparent;
border: none;
color: @color-white;
border-bottom: solid 1px @color-main;
&:focus, &:hover {
outline: none;
border-bottom: solid 1px @color-main;
box-shadow: 3px @color-main;
border-bottom: 1px solid @color-main-light;
}
}
input[type="checkbox"] {

View File

@@ -0,0 +1,17 @@
.sui {
select {
padding: .5em;
color: @color-white;
background: none;
border: none;
border-bottom: solid 1px @color-main;
&:focus, &:hover {
outline: none;
border: none;
border-bottom: solid 1px @color-main-light !important;
}
option {
background: @color-container;
}
}
}

View File

@@ -9,3 +9,4 @@
@import "form/layout.less";
@import "form/input.less";
@import "form/color.less";
@import "form/select.less";