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

Unified Diff: resources/bookmark_manager/css/list.css

Issue 853002: Updating the Chromium reference build for Windows. The continuous... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/reference_builds/chrome/
Patch Set: Added the symbol files back. 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
« no previous file with comments | « resources/bookmark_manager/css/bmm.css.js ('k') | resources/bookmark_manager/css/menu.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: resources/bookmark_manager/css/list.css
===================================================================
--- resources/bookmark_manager/css/list.css (revision 0)
+++ 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%);
+}
« no previous file with comments | « resources/bookmark_manager/css/bmm.css.js ('k') | resources/bookmark_manager/css/menu.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698