mirror of
https://github.com/moparisthebest/kaiwa
synced 2025-02-16 15:10:11 -05:00
[ux] focus: none to buttons, fix input heights
This commit is contained in:
parent
e9a9aaf910
commit
97d79304a6
@ -21,6 +21,9 @@ button
|
||||
vertical-align: middle
|
||||
user-select()
|
||||
|
||||
&:focus
|
||||
outline: none
|
||||
|
||||
&:hover:not(:disabled)
|
||||
color: $gray
|
||||
background: darken($gray-lighter, 10%)
|
||||
|
@ -58,8 +58,8 @@ input[type=text], input[type=email], input[type=password], input[type=search], i
|
||||
background: lighten($gray-lighter, 60%)
|
||||
|
||||
input[type=text], input[type=email], input[type=password], input[type=search], input[type=date], input[type=url], .main .status
|
||||
height: 30px
|
||||
padding: 5px 10px
|
||||
height: 35px
|
||||
padding: 7px 10px
|
||||
|
||||
textarea
|
||||
padding: 10px
|
||||
|
@ -1038,8 +1038,8 @@ input[type=search],
|
||||
input[type=date],
|
||||
input[type=url],
|
||||
.main .status {
|
||||
height: 30px;
|
||||
padding: 5px 10px;
|
||||
height: 35px;
|
||||
padding: 7px 10px;
|
||||
}
|
||||
textarea {
|
||||
padding: 10px;
|
||||
@ -1101,6 +1101,10 @@ button {
|
||||
text-overflow: ellipsis;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.button:focus,
|
||||
button:focus {
|
||||
outline: none;
|
||||
}
|
||||
.button:hover:not(:disabled),
|
||||
button:hover:not(:disabled) {
|
||||
color: #565656;
|
||||
|
Loading…
Reference in New Issue
Block a user