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 1021 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1032 border: 1px solid rgba(0, 0, 0, 0.1); | 1032 border: 1px solid rgba(0, 0, 0, 0.1); |
1033 } | 1033 } |
1034 | 1034 |
1035 .timeline-tree-view .data-grid .name-container .activity-link { | 1035 .timeline-tree-view .data-grid .name-container .activity-link { |
1036 flex: auto; | 1036 flex: auto; |
1037 text-align: right; | 1037 text-align: right; |
1038 overflow: hidden; | 1038 overflow: hidden; |
1039 text-overflow: ellipsis; | 1039 text-overflow: ellipsis; |
1040 } | 1040 } |
1041 | 1041 |
1042 .timeline-tree-view .data-grid .background-bar-container { | |
1043 position: absolute; | |
1044 left: 3px; | |
1045 right: 0; | |
1046 } | |
1047 | |
1042 .timeline-tree-view .data-grid .background-bar { | 1048 .timeline-tree-view .data-grid .background-bar { |
1049 float: right; | |
paulirish
2015/09/10 00:11:43
The render times will be much faster if we do this
alph
2015/09/10 17:37:09
Bars were shown 2px less than they are. So if a ba
| |
1043 height: 15px; | 1050 height: 15px; |
1044 background-color: hsla(0, 100%, 74%, 0.1); | 1051 background-color: hsla(43, 84%, 64%, 0.2); |
1045 position: absolute; | 1052 border-bottom: 1px solid hsl(43, 84%, 64%); |
1046 right: -2px; | |
1047 bottom: 0px; | |
1048 border-bottom: 1px solid hsl(0, 100%, 74%); | |
1049 } | 1053 } |
1050 | 1054 |
1051 .timeline-tree-view .data-grid .selected .background-bar { | 1055 .timeline-tree-view .data-grid .selected .background-bar { |
1052 background-color: rgba(255,255,255,0.25); | 1056 background-color: rgba(255, 255, 255, 0.25); |
1053 border-bottom-color: transparent; | 1057 border-bottom-color: transparent; |
1054 } | 1058 } |
OLD | NEW |