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

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

Issue 10809005: Options: Rename chrome/browser/resources/options2 -> chrome/browser/resources/options. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix. 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5 #search-engine-manager-page {
6 width: 700px;
7 }
8
9 .search-engine-list input {
10 -webkit-box-flex: 1;
11 display: -webkit-box;
12 }
13
14 .search-engine-list > div {
15 display: -webkit-box;
16 }
17
18 .search-engine-list .favicon {
19 height: 16px;
20 line-height: 16px;
21 padding: 0 7px;
22 width: 16px;
23 }
24
25 .search-engine-list .name-column {
26 -webkit-box-align: center;
27 -webkit-padding-end: 1ex;
28 box-sizing: border-box;
29 display: -webkit-box;
30 width: 30%;
31 }
32
33 .search-engine-list .name-column :last-child {
34 -webkit-box-flex: 1;
35 }
36
37 .search-engine-list .keyword-column {
38 -webkit-padding-end: 1ex;
39 box-sizing: border-box;
40 width: 26%;
41 }
42
43 .search-engine-list .url-column {
44 box-sizing: border-box;
45 width: 44%;
46 }
47
48 .search-engine-list .keyword-column,
49 .search-engine-list .url-column {
50 color: #666;
51 }
52
53 .search-engine-list .default .name-column,
54 .search-engine-list .default .keyword-column {
55 font-weight: bold;
56 }
57
58 /* For temporary Make Default button */
59 .search-engine-list .url-column {
60 -webkit-box-align: center;
61 display: -webkit-box;
62 }
63
64 .search-engine-list .url-column :first-child {
65 -webkit-box-flex: 1;
66 }
67
68 .search-engine-list .url-column .list-inline-button {
69 margin-top: 0;
70 padding: 1px 6px 2px 6px;
71 }
72
73 .search-engine-list > :not(:hover):not([editing]) .url-column
74 .list-inline-button {
75 display: none;
76 }
77
78 /* End temporary Make Default button styling */
OLDNEW
« no previous file with comments | « chrome/browser/resources/options2/search_box.html ('k') | chrome/browser/resources/options2/search_engine_manager.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698