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

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

Issue 7033018: Handler settings page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove in_unit_test_ Created 9 years, 7 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 /*
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7 #handlers-column-headers {
8 display: -webkit-box;
9 }
10
11 .handlers-type-column {
12 width: 100px;
13 -webkit-margin-end: 10px;
14 -webkit-margin-start: 14px;
15 }
16
17 .handlers-site-column {
18 color: #555;
19 max-width: 180px;
20 }
21
22 .handlers-site-column select {
23 max-width: 170px;
24 }
25
26 .handlers-remove-column {
27 -webkit-box-flex: 1;
28 }
29
30 .handlers-remove-link {
31 color: #555;
32 cursor: pointer;
33 opacity: 0;
34 padding-left: 14px;
35 text-decoration: underline;
36 -webkit-transition: 0.15s opacity;
37 }
38
39 div > .handlers-remove-column {
40 opacity: 0;
41 }
42
43 div:hover > .handlers-remove-column {
44 opacity: 1;
45 }
46
47 #handlers {
48 min-height: 250px;
49 }
50
51 #handlers-list {
52 border-radius: 2px;
53 border: solid 1px #D9D9D9;
54 margin-bottom: 10px;
55 margin-top: 4px;
56 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/content_settings_ui.js ('k') | chrome/browser/resources/options/handler_options.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698