summaryrefslogtreecommitdiffstats
path: root/polygerrit-ui/app/elements/shared/gr-autocomplete/gr-autocomplete.html
diff options
context:
space:
mode:
Diffstat (limited to 'polygerrit-ui/app/elements/shared/gr-autocomplete/gr-autocomplete.html')
-rw-r--r--polygerrit-ui/app/elements/shared/gr-autocomplete/gr-autocomplete.html11
1 files changed, 6 insertions, 5 deletions
diff --git a/polygerrit-ui/app/elements/shared/gr-autocomplete/gr-autocomplete.html b/polygerrit-ui/app/elements/shared/gr-autocomplete/gr-autocomplete.html
index 02fab8f4ec..4b447d18d0 100644
--- a/polygerrit-ui/app/elements/shared/gr-autocomplete/gr-autocomplete.html
+++ b/polygerrit-ui/app/elements/shared/gr-autocomplete/gr-autocomplete.html
@@ -1,4 +1,5 @@
<!--
+@license
Copyright (C) 2016 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
@@ -14,8 +15,8 @@ See the License for the specific language governing permissions and
limitations under the License.
-->
<link rel="import" href="../../../bower_components/polymer/polymer.html">
-<link rel="import" href="../../../bower_components/iron-a11y-keys-behavior/iron-a11y-keys-behavior.html">
<link rel="import" href="../../../bower_components/paper-input/paper-input.html">
+<link rel="import" href="../../../behaviors/keyboard-shortcut-behavior/keyboard-shortcut-behavior.html">
<link rel="import" href="../../shared/gr-autocomplete-dropdown/gr-autocomplete-dropdown.html">
<link rel="import" href="../../shared/gr-cursor-manager/gr-cursor-manager.html">
<link rel="import" href="../../shared/gr-icons/gr-icons.html">
@@ -34,7 +35,7 @@ limitations under the License.
margin: 0 .25em;
}
paper-input:not(.borderless) {
- border: 1px solid #ddd;
+ border: 1px solid var(--border-color);
}
paper-input {
height: 100%;
@@ -44,7 +45,7 @@ limitations under the License.
padding: 0;
}
--paper-input-container-input: {
- font-size: 1em;
+ font-size: var(--font-size-normal);
}
--paper-input-container-underline: {
display: none;
@@ -58,8 +59,8 @@ limitations under the License.
}
paper-input.warnUncommitted {
--paper-input-container-input: {
- color: #ff0000;
- font-size: 1em;
+ color: var(--error-text-color);
+ font-size: var(--font-size-normal);
}
}
</style>