Include input[type=image] in input.css
There's no real reason this shouldn't be in here, lets include it.
This commit is contained in:
parent
52178e9381
commit
c43e499357
|
@ -389,6 +389,7 @@ html {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
border:1px solid rgba(255, 255, 255, 0.2);
|
border:1px solid rgba(255, 255, 255, 0.2);
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
|
background: transparent;
|
||||||
}
|
}
|
||||||
#noVNC_control_bar .noVNC_button.noVNC_selected {
|
#noVNC_control_bar .noVNC_button.noVNC_selected {
|
||||||
border-color: rgba(0, 0, 0, 0.8);
|
border-color: rgba(0, 0, 0, 0.8);
|
||||||
|
@ -402,6 +403,7 @@ html {
|
||||||
}
|
}
|
||||||
#noVNC_control_bar .noVNC_button:focus {
|
#noVNC_control_bar .noVNC_button:focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
#noVNC_control_bar .noVNC_button:not(:disabled):active {
|
#noVNC_control_bar .noVNC_button:not(:disabled):active {
|
||||||
padding-top: 5px;
|
padding-top: 5px;
|
||||||
|
|
|
@ -37,6 +37,7 @@ textarea {
|
||||||
|
|
||||||
input[type=button],
|
input[type=button],
|
||||||
input[type=color],
|
input[type=color],
|
||||||
|
input[type=image],
|
||||||
input[type=reset],
|
input[type=reset],
|
||||||
input[type=submit],
|
input[type=submit],
|
||||||
button,
|
button,
|
||||||
|
@ -91,6 +92,7 @@ option {
|
||||||
input:not([type]):focus,
|
input:not([type]):focus,
|
||||||
input[type=button]:focus,
|
input[type=button]:focus,
|
||||||
input[type=color]:focus,
|
input[type=color]:focus,
|
||||||
|
input[type=image]:focus,
|
||||||
input[type=date]:focus,
|
input[type=date]:focus,
|
||||||
input[type=datetime-local]:focus,
|
input[type=datetime-local]:focus,
|
||||||
input[type=email]:focus,
|
input[type=email]:focus,
|
||||||
|
@ -116,6 +118,7 @@ textarea:focus {
|
||||||
input:not([type]):disabled,
|
input:not([type]):disabled,
|
||||||
input[type=button]:disabled,
|
input[type=button]:disabled,
|
||||||
input[type=color]:disabled,
|
input[type=color]:disabled,
|
||||||
|
input[type=image]:disabled,
|
||||||
input[type=date]:disabled,
|
input[type=date]:disabled,
|
||||||
input[type=datetime-local]:disabled,
|
input[type=datetime-local]:disabled,
|
||||||
input[type=email]:disabled,
|
input[type=email]:disabled,
|
||||||
|
@ -139,6 +142,7 @@ textarea:disabled {
|
||||||
|
|
||||||
input[type=button]:active,
|
input[type=button]:active,
|
||||||
input[type=color]:active,
|
input[type=color]:active,
|
||||||
|
input[type=image]:active,
|
||||||
input[type=reset]:active,
|
input[type=reset]:active,
|
||||||
input[type=submit]:active,
|
input[type=submit]:active,
|
||||||
button:active,
|
button:active,
|
||||||
|
@ -149,6 +153,7 @@ select:active {
|
||||||
|
|
||||||
:root:not(.noVNC_touch) input[type=button]:hover:not(:disabled),
|
:root:not(.noVNC_touch) input[type=button]:hover:not(:disabled),
|
||||||
:root:not(.noVNC_touch) input[type=color]:hover:not(:disabled),
|
:root:not(.noVNC_touch) input[type=color]:hover:not(:disabled),
|
||||||
|
:root:not(.noVNC_touch) input[type=image]:hover:not(:disabled),
|
||||||
:root:not(.noVNC_touch) input[type=reset]:hover:not(:disabled),
|
:root:not(.noVNC_touch) input[type=reset]:hover:not(:disabled),
|
||||||
:root:not(.noVNC_touch) input[type=submit]:hover:not(:disabled),
|
:root:not(.noVNC_touch) input[type=submit]:hover:not(:disabled),
|
||||||
:root:not(.noVNC_touch) button:hover:not(:disabled) {
|
:root:not(.noVNC_touch) button:hover:not(:disabled) {
|
||||||
|
|
Loading…
Reference in New Issue