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

Side by Side Diff: experimental/conways_life/css/stamp_editor.css

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 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
« no previous file with comments | « experimental/conways_life/css/life.css ('k') | experimental/conways_life/css/toolbar.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « experimental/conways_life/css/life.css ('k') | experimental/conways_life/css/toolbar.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698