OLD | NEW |
---|---|
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 | 5 |
6 body { | 6 body { |
7 font-family: Helvetica, sans-serif; | 7 font-family: Helvetica, sans-serif; |
8 cursor: default; | 8 cursor: default; |
9 font-size: 13px; | 9 font-size: 13px; |
10 } | 10 } |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
133 } | 133 } |
134 | 134 |
135 section > div:only-of-type { | 135 section > div:only-of-type { |
136 -webkit-box-flex: 1; | 136 -webkit-box-flex: 1; |
137 } | 137 } |
138 | 138 |
139 div.page section:last-child { | 139 div.page section:last-child { |
140 border-bottom: none; | 140 border-bottom: none; |
141 } | 141 } |
142 | 142 |
143 div#xmpp_div { | |
Jamie
2011/05/19 21:01:04
Why bother with this? IMO, it looks kind of weird
awong
2011/05/19 21:33:06
...I was going to deprecate the XMPP token in the
| |
144 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5); | |
145 border: 1px solid #aaa; | |
146 padding: 0px 3px 0px 3px; | |
147 color: #444; | |
148 } | |
149 | |
143 button { | 150 button { |
144 -webkit-border-radius: 2px; | 151 -webkit-border-radius: 2px; |
145 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); | 152 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); |
146 -webkit-user-select: none; | 153 -webkit-user-select: none; |
147 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5); | 154 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5); |
148 border: 1px solid #aaa; | 155 border: 1px solid #aaa; |
149 color: #444; | 156 color: #444; |
150 font-size: inherit; | 157 font-size: inherit; |
151 margin-bottom: 0px; | 158 margin-bottom: 0px; |
152 min-width: 4em; | 159 min-width: 4em; |
(...skipping 12 matching lines...) Expand all Loading... | |
165 background: #ebebeb -webkit-linear-gradient(#f4f4f4, #efefef 40%, #dcdcdc); | 172 background: #ebebeb -webkit-linear-gradient(#f4f4f4, #efefef 40%, #dcdcdc); |
166 color: #333; | 173 color: #333; |
167 } | 174 } |
168 | 175 |
169 button[disabled], button[disabled]:hover { | 176 button[disabled], button[disabled]:hover { |
170 -webkit-box-shadow: none; | 177 -webkit-box-shadow: none; |
171 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5); | 178 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5); |
172 border-color: #aaa; | 179 border-color: #aaa; |
173 color: #888; | 180 color: #888; |
174 } | 181 } |
OLD | NEW |