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

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: Removed errant /* */ 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 #handlers-column-headers {
Evan Stade 2011/05/19 17:08:42 I'm not sure why so many css files are missing the
koz (OOO until 15th September) 2011/05/19 21:07:52 Done.
2 display: -webkit-box;
3 }
4
5 .handlers-type-column {
6 width: 100px;
7 -webkit-margin-end: 10px;
8 -webkit-margin-start: 14px;
9 }
10
11 .handlers-site-column {
12 max-width: 180px;
13 color: #555;
14 }
15
16 .handlers-site-column select {
17 max-width: 170px;
18 }
19
20 .handlers-remove-column {
21 -webkit-box-flex: 1;
22 }
23
24 .handlers-remove-link {
25 -webkit-transition: 0.15s opacity;
26 text-decoration: underline;
27 opacity: 0;
28 cursor: pointer;
29 padding-left: 14px;
30 color: #555;
Evan Stade 2011/05/19 17:08:42 alphabetize attributes (hyphens at the end)
koz (OOO until 15th September) 2011/05/19 21:07:52 Done.
31 }
32
33 div > .handlers-remove-column {
34 opacity: 0;
35 }
36
37 div:hover > .handlers-remove-column {
38 opacity: 1;
39 }
40
41 #handlers {
42 min-height: 250px;
43 }
44
45 #handlers-list {
46 margin-bottom: 10px;
47 margin-top: 4px;
48 border: solid 1px #D9D9D9;
49 border-radius: 2px;
50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698