OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 Copyright (c) 2011 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 .gpu-tracing-overlay { | |
7 text-align: center; | |
8 display: -webkit-box; | |
9 width: 200px; | |
10 height: 80px; | |
11 -webkit-box-orient: vertical; | |
12 -webkit-box-pack: center; | |
13 -webkit-box-align: center; | |
14 } | |
15 | |
16 .gpu-tracing-start-button { | |
17 position: fixed; | |
18 right: 3px; | |
19 top: -1px; | |
20 -webkit-margin-start: 5px; | |
21 text-decoration: none; | |
22 text-align: center; | |
23 display: inline-block; | |
24 margin-top: 4px; | |
25 padding: 5px 10px 3px 10px; | |
26 border-top-right-radius: 8px; | |
27 border-top-left-radius: 8px; | |
28 background-clip: border-box; | |
29 background: rgb(255,0,0); | |
arv (Not doing code reviews)
2011/02/25 00:51:29
ws after comma
| |
30 border-left: 1px solid black; | |
arv (Not doing code reviews)
2011/02/25 00:51:29
Sometimes it gets shorter to do:
border: 1px soli
| |
31 border-top: 1px solid black; | |
32 border-right: 1px solid black; | |
33 } | |
OLD | NEW |