OLD | NEW |
---|---|
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 div.header { | 6 div.header { |
7 border-bottom: 2px solid black; | 7 border-bottom: 2px solid black; |
8 padding-bottom: 5px; | 8 padding-bottom: 5px; |
9 margin: 10px; | 9 margin: 10px; |
10 } | 10 } |
(...skipping 25 matching lines...) Expand all Loading... | |
36 cursor: pointer; | 36 cursor: pointer; |
37 display: inline-block; | 37 display: inline-block; |
38 margin-left: -10px; | 38 margin-left: -10px; |
39 width: 10px; | 39 width: 10px; |
40 background-repeat: no-repeat; | 40 background-repeat: no-repeat; |
41 background-position: left top; | 41 background-position: left top; |
42 vertical-align: bottom; | 42 vertical-align: bottom; |
43 } | 43 } |
44 | 44 |
45 .collapse-button { | 45 .collapse-button { |
46 background-image: -webkit-canvas(arrowDown); | 46 background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='#909090' width='10' height='10'><path d='M0 0 L8 0 L4 7 Z'/></svg>"); |
47 height: 10px; | 47 height: 10px; |
48 } | 48 } |
49 | 49 |
50 .expand-button { | 50 .expand-button { |
51 background-image: -webkit-canvas(arrowRight); | 51 background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='#909090' width='10' height='10'><path d='M0 0 L0 8 L7 4 Z'/></svg>"); |
52 height: 11px; | 52 height: 11px; |
pdr.
2015/10/23 18:23:55
Change this to 10px;
chrishtr
2015/10/23 19:47:06
Done.
| |
53 } | 53 } |
OLD | NEW |