Refine gr-button hover styles

The hover styles for gr-button would erroneously apply to links.
Restrict those styles to non-link buttons.

Change-Id: Ic5afd7795544a6d3e1af95d924cac0acc763c8e5
This commit is contained in:
Wyatt Allen
2017-01-23 12:08:04 -08:00
parent c1f6f192cc
commit da7931b9c4

View File

@@ -80,8 +80,8 @@ limitations under the License.
:host([loading][disabled]) {
cursor: wait;
}
:host(:focus:not([primary]):not([secondary]):not([disabled])),
:host(:hover:not([primary]):not([secondary]):not([disabled])) {
:host:focus:not([primary]):not([secondary]):not([disabled]):not([link]),
:host:hover:not([primary]):not([secondary]):not([disabled]):not([link]) {
background-color: #f8f8f8;
border-color: #aaa;
}