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

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

Issue 6352004: DOMUI Prefs: Add inline buttons for setting the default search engine (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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 #searchEngineList { 1 #searchEngineList {
2 -webkit-border-radius: 2px; 2 -webkit-border-radius: 2px;
3 border-bottom: 1px solid #d9d9d9; 3 border-bottom: 1px solid #d9d9d9;
4 height: auto; 4 height: auto;
5 } 5 }
6 6
7 #searchEngineManagerPage .left-side-table {
8 margin-top: 12px;
9 }
10
11 #searchEngineList .heading { 7 #searchEngineList .heading {
12 -webkit-border-radius: 2px; 8 -webkit-border-radius: 2px;
13 color: black; 9 color: black;
14 border-bottom: 1px solid #d9d9d9; 10 border-bottom: 1px solid #d9d9d9;
15 } 11 }
16 12
17 #searchEngineList .heading:not(:nth-child(2)) { 13 #searchEngineList .heading:not(:nth-child(2)) {
18 border-top: 1px solid #d9d9d9; 14 border-top: 1px solid #d9d9d9;
19 } 15 }
20 16
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 70
75 #searchEngineList .name-column :last-child { 71 #searchEngineList .name-column :last-child {
76 -webkit-box-flex: 1; 72 -webkit-box-flex: 1;
77 } 73 }
78 74
79 #searchEngineList input { 75 #searchEngineList input {
80 box-sizing: border-box; 76 box-sizing: border-box;
81 margin: 0; 77 margin: 0;
82 width: 100%; 78 width: 100%;
83 } 79 }
80
81 /* For temporary Make Default button */
82 #searchEngineList .url-column {
83 display: -webkit-box;
84 -webkit-box-align: center;
85 }
86
87 #searchEngineList .url-column :first-child {
88 -webkit-box-flex: 1;
89 }
90
91 #searchEngineList .url-column button {
92 background-color: #aab6e1;
93 border: none;
94 border-radius: 3px;
95 color: white;
96 -webkit-margin-start: 3px;
97 }
98
99 #searchEngineList .url-column button:hover {
100 background-color: #9aa6d1;
101 }
102
103 #searchEngineList .url-column button:active {
104 background-color: #8a96c1;
105 }
106
107 #searchEngineList > :not(:hover):not([editing]) .url-column button {
108 display: none;
109 }
110 /* End temporary Make Default button styling */
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/options_page.css ('k') | chrome/browser/resources/options/search_engine_manager.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698