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

Unified Diff: chrome/tools/test/reference_build/chrome_linux/resources/bookmark_manager/css/list.css

Issue 877003: Updating the Chromium reference build on Linux. The continuous build... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 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/tools/test/reference_build/chrome_linux/resources/bookmark_manager/css/list.css
===================================================================
--- chrome/tools/test/reference_build/chrome_linux/resources/bookmark_manager/css/list.css (revision 0)
+++ chrome/tools/test/reference_build/chrome_linux/resources/bookmark_manager/css/list.css (revision 0)
@@ -0,0 +1,60 @@
+
+list {
+ overflow: auto;
+ outline: none;
+}
+
+list > * {
+ -webkit-user-select: none;
+ border: 1px solid rgba(255,255,255,0); /* transparent white */
+ background-color: rgba(255,255,255,0);
+ -webkit-border-radius: 2px;
+ padding: 0px 3px;
+ line-height: 20px;
+ white-space: nowrap;
+ cursor: default;
+ -webkit-transition: all .12s;
+ position: relative; /* to allow overlap */
+ display: block;
+}
+
+list > [lead] {
+ border-color: transparent;
+}
+
+list:focus > [lead] {
+ border-color: hsl(214, 91%, 65%);
+ z-index: 2;
+}
+
+list > [anchor] {
+
+}
+
+list > :hover {
+ border-color: hsl(214, 91%, 85%);
+ z-index: 1;
+ background-color: hsl(214,91%,97%);
+}
+
+list > :hover,
+list > [selected] {
+ background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0.8)), to(rgba(255,255,255,0)));
+}
+
+list > [selected] {
+ border-color: hsl(0,0%,85%);
+ background-color: hsl(0,0%,90%);
+ z-index: 2;
+}
+
+list:focus > [selected] {
+ background-color: hsl(214,91%,89%);
+ border-color: hsl(214, 91%, 65%);
+}
+
+list:focus > [lead][selected],
+list > [selected]:hover {
+ background-color: hsl(214,91%,87%);
+ border-color: hsl(214, 91%, 65%);
+}

Powered by Google App Engine
This is Rietveld 408576698