OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 Copyright (c) 2010 The Chromium Authors. All rights reserved. | |
3 Use of this source code is governed by a BSD-style license that can be | |
4 found in the LICENSE file. | |
5 */ | |
6 | |
7 * { | |
8 -webkit-box-sizing: border-box; | |
arv (Not doing code reviews)
2010/11/24 19:07:38
box-sizing: border-box;
| |
9 -moz-box-sizing: border-box; | |
arv (Not doing code reviews)
2010/11/24 19:07:38
remove -moz-
| |
10 } | |
11 body { | |
arv (Not doing code reviews)
2010/11/24 19:07:38
one empty line between each rule
| |
12 font-family: sans-serif; | |
13 } | |
14 | |
15 .tabSwitcher { | |
16 margin-top: 10px; | |
17 margin-left: 10px; | |
arv (Not doing code reviews)
2010/11/24 19:07:38
-webkit-margin-start
| |
18 } | |
19 | |
20 .tabSwitcher th { | |
21 background: rgb(229,236,249); | |
arv (Not doing code reviews)
2010/11/24 19:07:38
space after comma
| |
22 cursor: pointer; | |
23 background-clip: border-box; | |
24 border-top-left-radius: 5px 5px; | |
25 border-top-right-radius: 5px 5px; | |
26 padding-left: 4px; | |
27 padding-top: 4px; | |
28 padding-right: 4px; | |
29 font-size: 12px; | |
30 margin-left: 30px; | |
arv (Not doing code reviews)
2010/11/24 19:07:38
-webkit-margin-start
| |
31 } | |
32 | |
33 .tabSwitcher th.selected, .tabSwitcherLine { | |
34 background: rgb(195,217,255); | |
35 } | |
36 | |
37 .tabSwitcherLine { | |
38 height: 10px; | |
39 } | |
40 | |
41 #categoryTabHandles ul { | |
42 list-style: none; | |
43 padding: 0; | |
44 margin: 0; | |
45 } | |
46 | |
47 #categoryTabHandles { | |
48 border-bottom: 1px solid #555; | |
49 background: #aaa; | |
50 overflow: hidden; | |
51 } | |
52 | |
53 #categoryTabHandles li { | |
54 float: left; | |
55 margin-left: 5px; | |
56 } | |
57 | |
58 #categoryTabHandles a { | |
59 text-decoration: none; | |
60 text-align: center; | |
61 display: inline-block; | |
62 margin-top: 4px; | |
63 padding: 5px 10px 3px 10px; | |
arv (Not doing code reviews)
2010/11/24 19:07:38
rtl
| |
64 -webkit-border-top-right-radius: 8px; | |
65 -webkit-border-top-left-radius: 8px; | |
66 background-clip: border-box; | |
67 background: #ccc; | |
68 } | |
69 | |
70 #categoryTabHandles a:hover { | |
71 background: #eee; | |
72 } | |
73 | |
74 #categoryTabHandles a:visited, | |
75 #categoryTabHandles a { | |
76 color: blue; | |
77 } | |
78 | |
79 #categoryTabHandles .selected { | |
80 background: white; | |
81 } | |
82 | |
83 #categoryTabHandles a.selected { | |
84 position:relative; | |
arv (Not doing code reviews)
2010/11/24 19:07:38
ws
| |
85 top: 3px; | |
86 color: black; | |
87 } | |
88 | |
89 /* | |
90 * Styles for TABLE that uses a thin collapsed border. | |
91 */ | |
92 table.styledTable { | |
arv (Not doing code reviews)
2010/11/24 19:07:38
class names should be dash separated
| |
93 border-collapse:collapse; | |
94 } | |
95 | |
96 table.styledTable, | |
97 .styledTable th, | |
98 .styledTable td { | |
99 border: 1px solid #777; | |
100 padding-right: 4px; | |
101 padding-left: 4px; | |
102 } | |
103 | |
104 .styledTable th { | |
105 background: rgb(224,236,255); | |
106 } | |
107 | |
108 .styledTable th.title { | |
109 background: rgb(255,217,217); | |
110 } | |
111 | |
112 /** | |
113 * Styling for an emphasized button. | |
114 */ | |
115 .bigButton { | |
116 font-size: 100%; | |
117 font-weight: bold; | |
118 } | |
119 | |
120 /** | |
121 * InfoTab | |
122 */ | |
123 #infoText { | |
124 overflow: auto; | |
125 padding: 10px; | |
126 font-family: monospace; | |
127 } | |
128 | |
129 #infoText table, | |
130 #infoText tr, | |
131 #infoText td { | |
132 text-algin: top; | |
133 border-collapse:collapse; | |
134 } | |
135 | |
136 #infoText table.border, | |
137 #infoText table.border tr, | |
138 #infoText table.border td { | |
139 border: 1px solid #777; | |
140 } | |
141 | |
142 | |
OLD | NEW |