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

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

Issue 13375003: Fixing iframe jank in the local omnibox popup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: virtual 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
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/local_ntp/local_ntp.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/local_ntp/local_ntp.css
diff --git a/chrome/browser/resources/local_ntp/local_ntp.css b/chrome/browser/resources/local_ntp/local_ntp.css
index 14d7ba4f39526ba1a15882cbb08b7e5a2ff35375..418ee0fc1067820639cbad8ad6d5bdb86da1cf75 100644
--- a/chrome/browser/resources/local_ntp/local_ntp.css
+++ b/chrome/browser/resources/local_ntp/local_ntp.css
@@ -303,18 +303,12 @@ body.fakebox-focused #cursor {
display: block;
}
-#suggestions-box {
+.suggestions-box {
border-bottom: 1px #d9d9d9 solid;
padding-bottom: 6px;
padding-top: 6px;
}
-#suggestions-box-container {
- position: absolute;
- top: 0;
- width: 100%;
-}
-
.suggestion {
background: -webkit-image-set(
url(images/page_icon.png) 1x,
@@ -322,6 +316,7 @@ body.fakebox-focused #cursor {
border-radius: 2px;
padding-bottom: 2px;
padding-top: 3px;
+ height: 22px;
white-space: nowrap;
}
@@ -331,28 +326,23 @@ body.fakebox-focused #cursor {
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 {
+.suggestion-contents {
-webkit-padding-start: 26px;
-webkit-user-select: none;
border: none;
height: 22px;
overflow: hidden;
+ position: absolute;
}
-/* Styling for native suggestions, hidden by the shadow DOM. */
-.chrome_url {
- color: rgb(0, 153, 51);
-}
-
-.chrome_title {
- color: #666;
+.pending-suggestions-container {
+ display: none;
}
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/local_ntp/local_ntp.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698