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

Unified Diff: chrome/browser/resources/local_omnibox_popup/local_omnibox_popup.css

Issue 13375003: Fixing iframe jank in the local omnibox popup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Changing JS style. Created 7 years, 8 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: chrome/browser/resources/local_omnibox_popup/local_omnibox_popup.css
diff --git a/chrome/browser/resources/local_omnibox_popup/local_omnibox_popup.css b/chrome/browser/resources/local_omnibox_popup/local_omnibox_popup.css
index 75ec3b6b291624c524dd8008a4f8fc0a408375a1..97015761a4e467066296f7701148bf4da39806e9 100644
--- a/chrome/browser/resources/local_omnibox_popup/local_omnibox_popup.css
+++ b/chrome/browser/resources/local_omnibox_popup/local_omnibox_popup.css
@@ -9,7 +9,7 @@ body {
overflow: hidden;
}
-#suggestionsBox {
+.suggestions-box {
border-bottom: 1px #d9d9d9 solid;
padding-bottom: 6px;
padding-top: 6px;
@@ -22,6 +22,7 @@ body {
url('images/2x/page_icon.png') 2x) no-repeat;
padding-bottom: 2px;
padding-top: 3px;
+ height: 22px;
white-space: nowrap;
}
@@ -31,29 +32,23 @@ body {
url('images/2x/search_icon.png') 2x) no-repeat;
}
-.suggestion:hover {
+.hovered {
background-color: #eee;
}
-.selected,
-.selected:hover {
+.selected {
background-color: rgba(181, 213, 255, 0.5);
}
.contents {
+ position: absolute;
-webkit-padding-start: 26px;
-webkit-user-select: none;
border: 0;
height: 22px;
overflow: hidden;
- width: 100%;
-}
-
-/* Styling for native suggestions, hidden by the shadow DOM. */
-.chrome_url {
- color: rgb(0, 153, 51);
}
-.chrome_title {
- color: #666;
+.pending-container {
+ display: none;
}

Powered by Google App Engine
This is Rietveld 408576698