submit as an input
This commit is contained in:
parent
8dbd40dccf
commit
73b8db37c2
4 changed files with 13 additions and 4 deletions
|
@ -1806,6 +1806,7 @@ label {
|
|||
[type="number"],
|
||||
[type="password"],
|
||||
[type="search"],
|
||||
[type="submit"],
|
||||
[type="tel"],
|
||||
[type="text"],
|
||||
[type="time"],
|
||||
|
@ -1830,6 +1831,11 @@ textarea {
|
|||
appearance: none;
|
||||
}
|
||||
|
||||
[type="submit"] {
|
||||
background-color: #777;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
input[disabled] {
|
||||
opacity: .5;
|
||||
cursor: not-allowed;
|
||||
|
@ -1882,7 +1888,6 @@ progress {
|
|||
.btn,
|
||||
.button,
|
||||
[type="button"],
|
||||
[type="submit"],
|
||||
button, .btn--primary,
|
||||
.button--primary, .btn--success,
|
||||
.button--success, .btn--info,
|
||||
|
@ -1918,7 +1923,6 @@ button, .btn--primary,
|
|||
.btn:focus,
|
||||
.button:focus,
|
||||
[type="button"]:focus,
|
||||
[type="submit"]:focus,
|
||||
button:focus {
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -30,7 +30,6 @@
|
|||
.btn,
|
||||
.button,
|
||||
[type="button"],
|
||||
[type="submit"],
|
||||
button {
|
||||
@extend %btn;
|
||||
|
||||
|
|
|
@ -33,6 +33,7 @@ label {
|
|||
[type="number"],
|
||||
[type="password"],
|
||||
[type="search"],
|
||||
[type="submit"],
|
||||
[type="tel"],
|
||||
[type="text"],
|
||||
[type="time"],
|
||||
|
@ -56,6 +57,11 @@ textarea {
|
|||
appearance: none;
|
||||
}
|
||||
|
||||
[type="submit"] {
|
||||
background-color: $color-border;
|
||||
color: $color-light;
|
||||
}
|
||||
|
||||
input[disabled] {
|
||||
opacity: .5;
|
||||
cursor: not-allowed;
|
||||
|
|
Loading…
Reference in a new issue