OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 20 matching lines...) Expand all Loading... |
31 | 31 |
32 #profile-views { | 32 #profile-views { |
33 flex: auto; | 33 flex: auto; |
34 position: relative; | 34 position: relative; |
35 } | 35 } |
36 | 36 |
37 .profile-view .data-grid table.data { | 37 .profile-view .data-grid table.data { |
38 background: white; | 38 background: white; |
39 } | 39 } |
40 | 40 |
| 41 .profile-view .data-grid tr:not(.selected) .highlight { |
| 42 background-color: rgb(255, 230, 179); |
| 43 } |
| 44 |
41 .profile-view .data-grid tr:hover td:not(.bottom-filler-td) { | 45 .profile-view .data-grid tr:hover td:not(.bottom-filler-td) { |
42 background-color: rgba(0, 0, 0, 0.1); | 46 background-color: rgba(0, 0, 0, 0.1); |
43 } | 47 } |
44 | 48 |
45 .profile-view .data-grid td.numeric-column { | 49 .profile-view .data-grid td.numeric-column { |
46 text-align: right; | 50 text-align: right; |
47 } | 51 } |
48 | 52 |
49 .profile-view .data-grid div.profile-multiple-values { | 53 .profile-view .data-grid div.profile-multiple-values { |
50 float: right; | 54 float: right; |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 } | 256 } |
253 | 257 |
254 .text-button.load-profile { | 258 .text-button.load-profile { |
255 margin-left: 20px; | 259 margin-left: 20px; |
256 } | 260 } |
257 | 261 |
258 .text-button.load-profile.multi-target { | 262 .text-button.load-profile.multi-target { |
259 display: block; | 263 display: block; |
260 margin-top: 14px; | 264 margin-top: 14px; |
261 margin-left: 0px; | 265 margin-left: 0px; |
262 } | 266 } |
OLD | NEW |