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 989 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1000 .timeline-tree-view .data-grid tr:not(.selected) .highlight { | 1000 .timeline-tree-view .data-grid tr:not(.selected) .highlight { |
1001 background-color: rgb(255, 230, 179); | 1001 background-color: rgb(255, 230, 179); |
1002 } | 1002 } |
1003 | 1003 |
1004 .timeline-tree-view .data-grid tr:hover td:not(.bottom-filler-td) { | 1004 .timeline-tree-view .data-grid tr:hover td:not(.bottom-filler-td) { |
1005 background-color: rgba(0, 0, 0, 0.1); | 1005 background-color: rgba(0, 0, 0, 0.1); |
1006 } | 1006 } |
1007 | 1007 |
1008 .timeline-tree-view .data-grid td.numeric-column { | 1008 .timeline-tree-view .data-grid td.numeric-column { |
1009 text-align: right; | 1009 text-align: right; |
| 1010 position: relative; |
1010 } | 1011 } |
1011 | 1012 |
1012 .timeline-tree-view .data-grid div.profile-multiple-values { | 1013 .timeline-tree-view .data-grid div.profile-multiple-values { |
1013 float: right; | 1014 float: right; |
1014 } | 1015 } |
1015 | 1016 |
1016 .timeline-tree-view .data-grid span.percent-column { | 1017 .timeline-tree-view .data-grid span.percent-column { |
1017 color: #999; | 1018 color: #888; |
1018 width: 48px; | 1019 width: 48px; |
1019 display: inline-block; | 1020 display: inline-block; |
1020 } | 1021 } |
1021 | 1022 |
1022 .timeline-tree-view .data-grid tr.selected span { | 1023 .timeline-tree-view .data-grid tr.selected span { |
1023 color: inherit; | 1024 color: inherit; |
1024 } | 1025 } |
1025 | 1026 |
1026 .timeline-tree-view .data-grid .name-container { | 1027 .timeline-tree-view .data-grid .name-container { |
1027 display: flex; | 1028 display: flex; |
(...skipping 10 matching lines...) Expand all Loading... |
1038 margin: 0 4px 0 2px; | 1039 margin: 0 4px 0 2px; |
1039 border: 1px solid rgba(0, 0, 0, 0.1); | 1040 border: 1px solid rgba(0, 0, 0, 0.1); |
1040 } | 1041 } |
1041 | 1042 |
1042 .timeline-tree-view .data-grid .name-container .activity-link { | 1043 .timeline-tree-view .data-grid .name-container .activity-link { |
1043 flex: auto; | 1044 flex: auto; |
1044 text-align: right; | 1045 text-align: right; |
1045 overflow: hidden; | 1046 overflow: hidden; |
1046 text-overflow: ellipsis; | 1047 text-overflow: ellipsis; |
1047 } | 1048 } |
| 1049 |
| 1050 .timeline-tree-view .data-grid .background-bar { |
| 1051 height: 15px; |
| 1052 background-color: hsla(0, 100%, 74%, 0.1); |
| 1053 position: absolute; |
| 1054 right: -2px; |
| 1055 bottom: 0px; |
| 1056 border-bottom: 1px solid hsl(0, 100%, 74%); |
| 1057 } |
| 1058 |
| 1059 .timeline-tree-view .data-grid .selected .background-bar { |
| 1060 background-color: rgba(255,255,255,0.25); |
| 1061 border-bottom-color: transparent; |
| 1062 } |
OLD | NEW |