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

Side by Side Diff: chrome/browser/resources/cloud_print/cloud_print_setup_done.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 /* 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 * 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
4 * found in the LICENSE file. 3 * found in the LICENSE file.
5 */ 4 */
Evan Stade 2012/04/03 02:59:48 poop
Dan Beam 2012/04/03 04:15:06 Done.
6 5
7 body { 6 body {
8 background: #FFFFFF; 7 -webkit-user-select: none;
8 background: #fff;
Evan Stade 2012/04/03 02:59:48 white
Dan Beam 2012/04/03 04:15:06 Done.
9 margin: 10px 15px; 9 margin: 10px 15px;
10 -webkit-user-select: none;
11 } 10 }
12 11
13 .cloudprint-success-header { 12 .cloudprint-success-header {
14 font-size: 1.4em; 13 font-size: 1.4em;
15 font-weight: bold; 14 font-weight: bold;
16 } 15 }
17 16
18 .cloudprint-success-image { 17 .cloudprint-success-image {
18 margin: 20px;
19 text-align: center; 19 text-align: center;
20 margin: 20px;
21 } 20 }
22 21
23 #message { 22 #message {
24 font-weight: bold; 23 font-weight: bold;
25 } 24 }
26 25
27 .cloudprint-success-footer { 26 .cloudprint-success-footer {
27 bottom: 0;
28 font-size: 1.2em;
29 margin-bottom: 10px;
30 margin-right: 10px;
28 position: fixed; 31 position: fixed;
29 font-size: 1.2em; 32 right: 0;
30 right: 0px;
31 bottom: 0px;
32 margin-right: 10px;
33 margin-bottom: 10px;
34 } 33 }
35 34
36 html[dir='rtl'] .cloudprint-success-footer { 35 html[dir='rtl'] .cloudprint-success-footer {
36 bottom: 0;
37 left: 0;
38 margin-left: 20px;
37 text-align: left; 39 text-align: left;
38 left: 0px;
39 bottom: 0px;
40 margin-left: 20px;
41 } 40 }
42 41
43 .button { 42 .button {
44 <if expr="is_macosx"> 43 <if expr="is_macosx">
45 font-size: 12pt; 44 font-size: 12pt;
46 </if> 45 </if>
46 min-height: 26px;
47 min-width: 87px; 47 min-width: 87px;
48 min-height: 26px;
49 } 48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698