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

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: rebase 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
« no previous file with comments | « chrome/browser/resources/dialog.css ('k') | chrome/browser/resources/extensions_infobar.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 */
5 4
6 #downloads-summary { 5 #downloads-summary {
7 background-color: rgb(235, 239, 249); 6 background-color: rgb(235, 239, 249);
8 border-top: 1px solid rgb(156, 194, 239); 7 border-top: 1px solid rgb(156, 194, 239);
9 margin-bottom: 6px; 8 margin-bottom: 6px;
10 margin-top: 12px; 9 margin-top: 12px;
11 padding: 3px; 10 padding: 3px;
12 } 11 }
13 12
14 #downloads-summary-text { 13 #downloads-summary-text {
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 71
73 html[dir=rtl] .icon { 72 html[dir=rtl] .icon {
74 left: auto; 73 left: auto;
75 right: 9px; 74 right: 9px;
76 } 75 }
77 76
78 .download.otr > .safe, 77 .download.otr > .safe,
79 .download.otr > .show-dangerous { 78 .download.otr > .show-dangerous {
80 -webkit-transition: opacity 150ms; 79 -webkit-transition: opacity 150ms;
81 background: url('../shared/images/otr_icon_standalone.png') 80 background: url('../shared/images/otr_icon_standalone.png')
82 no-repeat 100% 100%; 81 no-repeat right bottom;
83 opacity: .66; 82 opacity: .66;
84 } 83 }
85 84
86 html[dir=rtl] .download.otr > .safe, 85 html[dir=rtl] .download.otr > .safe,
87 html[dir=rtl] .download.otr > .show-dangerous { 86 html[dir=rtl] .download.otr > .show-dangerous {
88 background-position: 0% 100%; 87 background-position: left bottom;
89 } 88 }
90 89
91 .download.otr > .safe:hover, 90 .download.otr > .safe:hover,
92 .download.otr > .show-dangerous:hover { 91 .download.otr > .show-dangerous:hover {
93 opacity: 1; 92 opacity: 1;
94 } 93 }
95 94
96 .progress { 95 .progress {
97 height: 48px; 96 height: 48px;
98 left: 0; 97 left: 0;
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 143
145 .controls a { 144 .controls a {
146 -webkit-margin-end: 16px; 145 -webkit-margin-end: 16px;
147 color: #777; 146 color: #777;
148 } 147 }
149 148
150 #downloads-pagination { 149 #downloads-pagination {
151 -webkit-margin-start: 18px; 150 -webkit-margin-start: 18px;
152 padding-top: 24px; 151 padding-top: 24px;
153 } 152 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/dialog.css ('k') | chrome/browser/resources/extensions_infobar.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698