Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(356)

Unified Diff: third_party/polymer/components/paper-dropdown-menu/paper-dropdown-menu-light.html

Issue 2113853002: Run bower update (Closed) Base URL: https://github.com/catapult-project/catapult@polymer10-migration
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/polymer/components/paper-dropdown-menu/paper-dropdown-menu-light.html
diff --git a/third_party/polymer/components/paper-dropdown-menu/paper-dropdown-menu-light.html b/third_party/polymer/components/paper-dropdown-menu/paper-dropdown-menu-light.html
index b704fd52bdc626e9f64168852670d1ab3d845144..383550952ddbdf4908e749b7443f1ef3743a8687 100644
--- a/third_party/polymer/components/paper-dropdown-menu/paper-dropdown-menu-light.html
+++ b/third_party/polymer/components/paper-dropdown-menu/paper-dropdown-menu-light.html
@@ -98,6 +98,10 @@ To style it:
<dom-module id="paper-dropdown-menu-light">
<template>
<style include="paper-dropdown-menu-shared-styles">
+ :host(:focus) {
+ outline: none;
+ }
+
/**
* All of these styles below are for styling the fake-input display
*/
@@ -202,7 +206,7 @@ To style it:
*/
label:after {
background-color: var(--paper-dropdown-menu-focus-color, --primary-color);
- bottom: 8px; /* The container has an 8px bottom padding */
+ bottom: 7px; /* The container has an 8px bottom padding */
content: '';
height: 2px;
left: 45%;
@@ -219,7 +223,7 @@ To style it:
}
:host([no-label-float]) label:after {
- bottom: 8px; /* The container has a 8px bottom padding */
+ bottom: 7px; /* The container has a 8px bottom padding */
}
:host([focused]:not([disabled])) label:after {
@@ -424,6 +428,7 @@ To style it:
},
hostAttributes: {
+ tabindex: 0,
role: 'combobox',
'aria-autocomplete': 'none',
'aria-haspopup': 'true'

Powered by Google App Engine
This is Rietveld 408576698