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 * The basic toolbar presentation. Use this in conjunction with the top-toolbar | |
8 * and bottom-toolbar classes. | |
9 */ | |
10 .life-toolbar { | |
11 /* Client apps may override the URL at which they serve the image. */ | |
12 background: #fafafa url(../img/toolbar-bg.png) repeat-x bottom left; | |
13 border-bottom: 1px solid #d5d5d5; | |
14 cursor: default; | |
15 font: normal 11pt Verdana, Arial, sans-serif; | |
16 margin: 0; | |
17 outline: none; | |
18 padding: 0px; | |
19 position: relative; | |
20 width: 100%; | |
21 zoom: 1; /* The toolbar element must have layout on IE. */ | |
22 } | |
23 | |
24 /** | |
25 * Draw a vertical bar in between toolbar elements. | |
26 */ | |
27 .toolbar-separator { | |
28 margin: 0 2px; | |
29 border-left: 1px solid #d6d6d6; | |
30 border-right: 1px solid #f7f7f7; | |
31 display: inline; | |
32 padding: 0 4px; | |
33 width: 0; | |
34 text-decoration: none; | |
35 list-style: none; | |
36 outline: none; | |
37 vertical-align: middle; | |
38 line-height: normal; | |
39 font-size: 120%; | |
40 overflow: hidden; | |
41 } | |
42 | |
43 /** | |
44 * Use this class in conjunction with life-toolbar to describe the top | |
45 * toolbar. | |
46 */ | |
47 .top-toolbar { | |
48 display: table; | |
49 height: 32px; | |
50 padding-left: 16px; | |
51 } | |
52 | |
53 /** | |
54 * Use this class in conjunction with life-toolbar to describe the bottom | |
55 * toolbar. | |
56 */ | |
57 .bottom-toolbar { | |
58 display: table; | |
59 bottom: 0; | |
60 left: 0; | |
61 height: 32px; | |
62 position: absolute; | |
63 width: 100%; | |
64 } | |
OLD | NEW |