Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 body { | 5 body { |
| 6 margin: 20px; | 6 margin: 20px; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #countBanner { | 9 #countBanner { |
| 10 background-color: rgb(235, 239, 250); | 10 background-color: rgb(235, 239, 250); |
| (...skipping 19 matching lines...) Expand all Loading... | |
| 30 white-space: nowrap; | 30 white-space: nowrap; |
| 31 } | 31 } |
| 32 | 32 |
| 33 td { | 33 td { |
| 34 border-color: lightgray; | 34 border-color: lightgray; |
| 35 border-style: solid; | 35 border-style: solid; |
| 36 border-width: 1px; | 36 border-width: 1px; |
| 37 padding: 3px; | 37 padding: 3px; |
| 38 } | 38 } |
| 39 | 39 |
| 40 tr td:first-child[rowspan] { | |
|
alexilin
2017/03/13 15:14:41
To not highlight a cell with MainFrameUrl/Host tog
| |
| 41 background-color: rgb(215, 215, 215); | |
| 42 } | |
| 43 | |
| 40 tbody > td:first-child { | 44 tbody > td:first-child { |
| 41 white-space: nowrap; | 45 white-space: nowrap; |
| 42 } | 46 } |
| 43 | 47 |
| 44 #disabledMode h2 { | 48 #disabledMode h2 { |
| 45 color: rgb(141, 51, 42); | 49 color: rgb(141, 51, 42); |
| 46 font-size: 125%; | 50 font-size: 125%; |
| 47 } | 51 } |
| 48 | 52 |
| 49 tr.action-prerender td { | 53 tr.action-prerender td { |
| 50 background-color: rgb(0, 215, 0); | 54 background-color: rgb(0, 215, 0); |
| 51 } | 55 } |
| 52 | 56 |
| 53 tr.action-preconnect td { | 57 tr.action-preconnect td { |
| 54 background-color: rgb(255, 215, 0); | 58 background-color: rgb(255, 215, 0); |
| 55 } | 59 } |
| 56 | 60 |
| 57 tr.action-none td { | 61 tr.action-none td { |
| 58 background-color: rgb(215, 215, 215); | 62 background-color: rgb(215, 215, 215); |
| 59 } | 63 } |
| OLD | NEW |