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/web_intents_defaults.css

Issue 10808092: Add settings UI for managing defaults (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
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 unified diff | Download patch
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 #services-list > div.deletable-item {
6 /* override the fixed 32px height of standard row. */
7 height: auto;
8 }
9
10 .intents-column-headers {
11 display: -webkit-box;
12 font-size: 13px;
13 font-weight: bold;
14 }
15
16 .intents-row {
17 margin: 5px;
18 }
19
20 .intents-preferred-service {
21 font-weight: bold;
22 }
23
24 .intents-service-matching-criteria {
25 color: #555;
26 font-size: .85em;
27 }
28
29 .intents-remove-column {
30 -webkit-box-flex: 1;
31 }
32
33 div > .intents-remove-column {
34 opacity: 0;
35 }
36
37 div:not(.none):hover > .intents-remove-column {
38 opacity: 1;
39 }
40
41 #intents {
42 min-height: 250px;
43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698