OLD | NEW |
| (Empty) |
1 /* Copyright 2011 The Native Client 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 | |
6 /** | |
7 * Classes used to support rendering of the stamp editor panel. | |
8 */ | |
9 .panel { | |
10 position: absolute; | |
11 background: white; | |
12 border: 1px solid black; | |
13 font-size: inherit; | |
14 /* A "high" z-index: the panel should float above everything else. */ | |
15 z-index: 100; | |
16 } | |
17 | |
18 /** | |
19 * Ensure that images within a table do not have suprious spacing. | |
20 */ | |
21 td img { | |
22 display: block; | |
23 } | |
24 | |
25 .stamp_editor_button { | |
26 background-color: lightgray; | |
27 border-style: inset; | |
28 border-width: 1px; | |
29 } | |
30 | |
31 #stamp_editor_outer_container { | |
32 margin-left: auto; | |
33 margin-right: auto; | |
34 text-align: center; | |
35 } | |
36 | |
37 #title_text { | |
38 text-align: center; | |
39 width: 120px; | |
40 } | |
41 | |
42 #ok_cancel_buttons { | |
43 float: right; | |
44 font-size: inherit; | |
45 text-align: right; | |
46 } | |
47 | |
48 #stamp_editor_legend { | |
49 font-size: inherit; | |
50 background-color: lightgray; | |
51 margin-top: 8px; | |
52 } | |
OLD | NEW |