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

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

Issue 10825182: Making file names (with icons) clickable in File Manager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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/file_manager/css/file_manager.css
diff --git a/chrome/browser/resources/file_manager/css/file_manager.css b/chrome/browser/resources/file_manager/css/file_manager.css
index b702d4f59761dc4e39b288b53311cbc8d0c3f7bc..6616a40318e21cf8821d6af8ae3e1cfe5027cad1 100755
--- a/chrome/browser/resources/file_manager/css/file_manager.css
+++ b/chrome/browser/resources/file_manager/css/file_manager.css
@@ -620,6 +620,18 @@ button#detail-view:not([disabled]) {
position: relative;
}
+.thumbnail-frame > .img-container,
+.detail-name .detail-icon,
+.filename-label > * {
+ cursor: pointer;
+}
+
+.filename-label > :hover,
+.breadcrumb-path:not(.breadcrumb-last):hover {
+ color: rgb(17, 85, 204);
+ text-decoration: underline;
+}
+
.img-container > img {
-webkit-user-drag: none;
position: absolute;
@@ -630,6 +642,7 @@ button#detail-view:not([disabled]) {
-webkit-box-orient: horizontal;
-webkit-box-pack: center;
bottom: 0;
+ cursor: auto;
display: -webkit-box;
left: 0;
padding: 0 5px;
@@ -722,7 +735,6 @@ body[type='full-page'] .thumbnail-grid .thumbnail-bottom {
#default-actions-list > * {
background-image: none;
border-radius: 0;
- line-height: 30px;
}
#list-container list > [selected],
@@ -966,6 +978,10 @@ input.rename {
display: -webkit-box;
}
+.table-row-cell {
+ -webkit-box-align: center;
+}
+
.file-checkbox {
-webkit-margin-end: 0;
-webkit-margin-start: 0;
@@ -1007,7 +1023,7 @@ input.rename {
#default-actions-list li {
border: none;
border-top: 1px solid transparent;
- line-height: 39px;
+ height: 39px;
padding-bottom: 1px;
padding-top: 1px;
}

Powered by Google App Engine
This is Rietveld 408576698