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

Side by Side Diff: chrome/browser/resources/chromeos/wrench_menu.css

Issue 9864032: [WebUI] Fix all CSS nits in chrome/browser/resources/chromeos. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removing screen_account_picker.css 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/chromeos/sim_unlock.css ('k') | no next file » | 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.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5
1 .fullscreen { 6 .fullscreen {
7 -webkit-margin-start: 4px;
2 background-image: url('../../../app/theme/fullscreen_menu_button.png'); 8 background-image: url('../../../app/theme/fullscreen_menu_button.png');
3 background-position: center center; 9 background-position: center center;
4 background-repeat: no-repeat; 10 background-repeat: no-repeat;
5 border: solid 1px rgba(0, 0, 0, 0.3); 11 border: solid 1px rgba(0, 0, 0, 0.3);
6 border-radius: 3px; 12 border-radius: 3px;
13 height: 23px;
7 width: 23px; 14 width: 23px;
8 height: 23px;
9 -webkit-margin-start: 4px;
10 } 15 }
11 16
12 .edit-button { 17 .edit-button {
18 min-width: 35px;
13 padding: 2px; 19 padding: 2px;
14 text-align: center; 20 text-align: center;
15 min-width: 35px;
16 } 21 }
17 22
18 .left-button { 23 .left-button {
19 border: solid 1px rgba(0, 0, 0, 0.3); 24 border: solid 1px rgba(0, 0, 0, 0.3);
25 border-bottom-left-radius: 3px;
20 border-top-left-radius: 3px; 26 border-top-left-radius: 3px;
21 border-bottom-left-radius: 3px;
22 } 27 }
23 28
24 .right-button { 29 .right-button {
25 border: solid 1px rgba(0, 0, 0, 0.3); 30 border: solid 1px rgba(0, 0, 0, 0.3);
31 border-bottom-right-radius: 3px;
26 border-top-right-radius: 3px; 32 border-top-right-radius: 3px;
27 border-bottom-right-radius: 3px;
28 } 33 }
29 34
30 .center-button { 35 .center-button {
36 border-bottom: solid 1px rgba(0, 0, 0, 0.3);
31 border-top: solid 1px rgba(0, 0, 0, 0.3); 37 border-top: solid 1px rgba(0, 0, 0, 0.3);
32 border-bottom: solid 1px rgba(0, 0, 0, 0.3);
33 } 38 }
34 39
35 .zoom-button { 40 .zoom-button {
36 text-align: center; 41 text-align: center;
37 width: 15px; 42 width: 15px;
38 } 43 }
39 44
40 .zoom-percent { 45 .zoom-percent {
41 min-width: 40px; 46 min-width: 40px;
42 text-align: center; 47 text-align: center;
43 } 48 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/sim_unlock.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698