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

Side by Side Diff: chrome/browser/resources/downloads/downloads.css

Issue 9958101: [WebUI] Fix rest of CSS style nits in misc. dirs so I can turn on CSS checker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removing .py files Created 8 years, 8 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 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
Dan Beam 2012/04/03 04:15:06 Done.
5 5
6 #downloads-summary { 6 #downloads-summary {
7 background-color: rgb(235, 239, 249); 7 background-color: rgb(235, 239, 249);
8 border-top: 1px solid rgb(156, 194, 239); 8 border-top: 1px solid rgb(156, 194, 239);
9 margin-bottom: 6px; 9 margin-bottom: 6px;
10 margin-top: 12px; 10 margin-top: 12px;
11 padding: 3px; 11 padding: 3px;
12 } 12 }
13 13
14 #downloads-summary-text { 14 #downloads-summary-text {
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 72
73 html[dir=rtl] .icon { 73 html[dir=rtl] .icon {
74 left: auto; 74 left: auto;
75 right: 9px; 75 right: 9px;
76 } 76 }
77 77
78 .download.otr > .safe, 78 .download.otr > .safe,
79 .download.otr > .show-dangerous { 79 .download.otr > .show-dangerous {
80 -webkit-transition: opacity 150ms; 80 -webkit-transition: opacity 150ms;
81 background: url('../shared/images/otr_icon_standalone.png') 81 background: url('../shared/images/otr_icon_standalone.png')
82 no-repeat 100% 100%; 82 no-repeat 100% 100%;
Evan Stade 2012/04/03 02:59:48 right bottom
Dan Beam 2012/04/03 04:15:06 Done.
83 opacity: .66; 83 opacity: .66;
84 } 84 }
85 85
86 html[dir=rtl] .download.otr > .safe, 86 html[dir=rtl] .download.otr > .safe,
87 html[dir=rtl] .download.otr > .show-dangerous { 87 html[dir=rtl] .download.otr > .show-dangerous {
88 background-position: 0% 100%; 88 background-position: 0 100%;
Evan Stade 2012/04/03 02:59:48 left bottom
Dan Beam 2012/04/03 04:15:06 Done.
89 } 89 }
90 90
91 .download.otr > .safe:hover, 91 .download.otr > .safe:hover,
92 .download.otr > .show-dangerous:hover { 92 .download.otr > .show-dangerous:hover {
93 opacity: 1; 93 opacity: 1;
94 } 94 }
95 95
96 .progress { 96 .progress {
97 height: 48px; 97 height: 48px;
98 left: 0; 98 left: 0;
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 140
141 .controls a { 141 .controls a {
142 -webkit-margin-end: 16px; 142 -webkit-margin-end: 16px;
143 color: #777; 143 color: #777;
144 } 144 }
145 145
146 #downloads-pagination { 146 #downloads-pagination {
147 -webkit-margin-start: 18px; 147 -webkit-margin-start: 18px;
148 padding-top: 24px; 148 padding-top: 24px;
149 } 149 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698