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

Unified Diff: chrome/browser/resources/options/search_page.css

Issue 6141002: dom-ui settings: display bubbles for sub-page search results.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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/options/search_page.css
===================================================================
--- chrome/browser/resources/options/search_page.css (revision 71996)
+++ chrome/browser/resources/options/search_page.css (working copy)
@@ -3,5 +3,30 @@
}
.search-highlighted {
- background-color: #fff29f;
+ background-color: rgba(255, 240, 120, 0.9);
}
+
+.search-bubble {
+ position: absolute;
arv (Not doing code reviews) 2011/01/21 23:19:31 Alphabetical order please
csilv 2011/01/24 19:17:34 Done.
+ top: 0;
+ left: -1000px; /* minor hack: position off-screen by default */
arv (Not doing code reviews) 2011/01/21 23:19:31 Use top instead since left is not good when using
csilv 2011/01/24 19:17:34 You asked me to change this from top to left previ
+ width: 100px;
+ margin: 12px 0 0;
+ padding: 4px 10px;
+ background-color: rgba(255, 240, 120, 0.8);
+ border-radius: 6px;
+ box-shadow: 0 2px 2px #888;
+ -webkit-box-shadow: 0 2px 2px #888;
+ text-align: center;
+ pointer-events: none;
+}
+
+.search-bubble:after {
+ content: "";
+ position: absolute;
+ top: -10px;
+ left: 50px;
arv (Not doing code reviews) 2011/01/21 23:19:31 rtl?
csilv 2011/01/24 19:17:34 The pointer is centered in the bubble, so this sho
+ border-width: 0 10px 10px;
+ border-style: solid;
+ border-color: rgba(255, 240, 120, 0.9) transparent;
+}
« no previous file with comments | « no previous file | chrome/browser/resources/options/search_page.js » ('j') | chrome/browser/resources/options/search_page.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698