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:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user