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

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

Issue 10826082: Replace yellow outline from focused searchbox with blue border. Replace yellow outlines with blue o… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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 | « no previous file | chrome/browser/resources/file_manager/images/files/ui/2x/search_clear.png » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 25cb64b4958473d96c6894bc0a6923d6ed3febd3..873d8ef181fa40b799e8bcb602db270fe0695883 100644
--- a/chrome/browser/resources/file_manager/css/file_manager.css
+++ b/chrome/browser/resources/file_manager/css/file_manager.css
@@ -465,6 +465,8 @@ div.root-eject:hover {
}
#search-box:focus {
+ border-color: rgb(77, 144, 254);
+ outline: none;
width: 240px;
}
@@ -474,6 +476,27 @@ div.root-eject:hover {
border-radius: 2px;
}
+#search-box::-webkit-search-cancel-button {
+ -webkit-appearance: none;
+ background-image: -webkit-image-set(
+ url('../images/files/ui/search_clear.png') 1x,
+ url('../images/files/ui/2x/search_clear.png') 2x);
+ height: 16px;
Vladislav Kaznacheev 2012/07/31 13:55:57 it might be cleaner to set background-position: ce
Oleg Eterevsky 2012/07/31 14:10:46 When I remove width/height this element disappears
+ width: 16px;
+}
+
+#search-box::-webkit-search-cancel-button:hover {
+ background-image: -webkit-image-set(
+ url('../images/files/ui/search_clear_hover.png') 1x,
+ url('../images/files/ui/2x/search_clear_hover.png') 2x);
+}
+
+#search-box::-webkit-search-cancel-button:active {
+ background-image: -webkit-image-set(
+ url('../images/files/ui/search_clear_pressed.png') 1x,
+ url('../images/files/ui/2x/search_clear_pressed.png') 2x);
+}
+
button#detail-view {
background-image: -webkit-image-set(
url('../images/files/ui/view_list_black.png') 1x,
@@ -725,6 +748,10 @@ body[type='full-page'] .thumbnail-grid .thumbnail-bottom {
line-height: 20px;
}
+input.rename:focus {
+ outline-color: rgb(77, 144, 254);
+}
+
/* Elements that need to be LTR even in an RTL context, but should align
* left. Display size in Hebrew is such a case.
*/
@@ -1414,3 +1441,7 @@ body:not([type='saveas-file']):not([type='full-page'])
#list-container .table-header-cell:hover {
background-color: #f2f2f2;
}
+
+button:focus {
+ outline-color: rgb(77, 144, 254);
+}
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/images/files/ui/2x/search_clear.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698