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

Side by Side Diff: chrome/browser/resources/options/search_engine_manager.css

Issue 7104121: Add (uneditable) display of extension keywords to the search engine manager. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Swap out for iterator Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 .search-engine-list > div { 1 .search-engine-list > div {
2 display: -webkit-box; 2 display: -webkit-box;
3 } 3 }
4 4
5 .search-engine-list .favicon { 5 .search-engine-list .favicon {
6 padding: 1px 7px 0px 7px; 6 padding: 1px 7px 0px 7px;
7 height: 16px; 7 height: 16px;
8 } 8 }
9 9
10 .search-engine-list .name-column { 10 .search-engine-list .name-column {
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 .search-engine-list .url-column button { 53 .search-engine-list .url-column button {
54 -webkit-margin-start: 3px; 54 -webkit-margin-start: 3px;
55 background: #8aaaed; 55 background: #8aaaed;
56 color: #fff; 56 color: #fff;
57 margin-top: 0; 57 margin-top: 0;
58 } 58 }
59 59
60 .search-engine-list > :not(:hover):not([editing]) .url-column button { 60 .search-engine-list > :not(:hover):not([editing]) .url-column button {
61 display: none; 61 display: none;
62 } 62 }
63
64 #extensionKeywordListTitle {
65 visibility: hidden;
James Hawkins 2011/07/11 04:04:33 Use the hidden attribute in the HTML.
Greg Billock 2011/07/11 21:24:25 Done.
66 }
67
68 #extensionKeywordList {
69 visibility: hidden;
70 }
71
72 #manageExtensionLink {
73 visibility: hidden;
74 }
75
63 /* End temporary Make Default button styling */ 76 /* End temporary Make Default button styling */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698