Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* Copyright 2016 The Chromium Authors. All rights reserved. | 1 /* Copyright 2016 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 #clear-drive-cache-overlay-page { | 5 table { |
| 6 max-width: 476px; | 6 border: 1px solid black; |
| 7 border-collapse: collapse; | |
| 7 } | 8 } |
| 8 | 9 |
| 9 #clear-drive-cache-overlay-page p { | 10 td, |
| 10 line-height: 1.6em; | 11 th { |
| 12 border: 1px solid black; | |
| 13 padding: 5px; | |
| 14 text-align: center; | |
| 11 } | 15 } |
| 16 | |
| 17 #details { | |
|
xiyuan
2016/10/19 17:49:57
nit: get rid of this and use hidden
in html:
<d
robliao
2016/10/19 21:24:28
Done.
| |
| 18 visibility: hidden; | |
|
Dan Beam
2016/10/29 01:13:24
can we just use the [hidden] attribute in HTML ins
robliao
2016/11/08 18:14:18
On Trunk: Hidden attribute used at commit.
| |
| 19 } | |
| OLD | NEW |