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

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: Addressing cc comments. Created 7 years, 9 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..c51a0d98da7bbc200ab3fd4e59a93b4dcc378b4f 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 {
+.suggestionsBox {
Dan Beam 2013/04/05 01:07:37 suggesions-box
Jered 2013/04/05 15:30:23 Done.
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,22 +32,25 @@ 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%;
+}
+
+.pending-container {
+ display: none;
}
/* Styling for native suggestions, hidden by the shadow DOM. */

Powered by Google App Engine
This is Rietveld 408576698