Chromium Code Reviews| 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 13 matching lines...) Expand all Loading... | |
| 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 .panel.timeline > .toolbar { | 30 .panel.timeline > .toolbar { |
| 31 border-bottom: 1px solid #dadada; | 31 border-bottom: 1px solid #dadada; |
| 32 } | 32 } |
| 33 | 33 |
| 34 .timeline-settings-pane { | |
| 35 flex: none; | |
| 36 border-bottom: 1px solid #dadada; | |
| 37 } | |
| 38 | |
| 34 #timeline-overview-panel { | 39 #timeline-overview-panel { |
| 35 flex: none; | 40 flex: none; |
| 36 position: relative; | 41 position: relative; |
| 37 border-bottom: 1px solid rgb(140, 140, 140); | 42 border-bottom: 1px solid rgb(140, 140, 140); |
| 38 } | 43 } |
| 39 | 44 |
| 40 #timeline-overview-panel .timeline-graph-bar { | 45 #timeline-overview-panel .timeline-graph-bar { |
| 41 pointer-events: none; | 46 pointer-events: none; |
| 42 } | 47 } |
| 43 | 48 |
| (...skipping 26 matching lines...) Expand all Loading... | |
| 70 #timeline-container .devtools-link { | 75 #timeline-container .devtools-link { |
| 71 color: inherit; | 76 color: inherit; |
| 72 } | 77 } |
| 73 | 78 |
| 74 .timeline-graph-side.hovered { | 79 .timeline-graph-side.hovered { |
| 75 background-color: rgba(0, 0, 0, 0.05) !important; | 80 background-color: rgba(0, 0, 0, 0.05) !important; |
| 76 } | 81 } |
| 77 | 82 |
| 78 .timeline.panel .status-pane-container { | 83 .timeline.panel .status-pane-container { |
| 79 z-index: 1000; | 84 z-index: 1000; |
| 80 pointer-events: none; | |
| 81 display: flex; | 85 display: flex; |
| 82 align-items: center; | 86 align-items: center; |
| 83 } | 87 } |
| 84 | 88 |
| 85 .timeline.panel .status-pane-container.tinted { | 89 .timeline.panel .status-pane-container.tinted { |
| 86 background-color: hsla(0, 0%, 90%, 0.8); | 90 background-color: hsla(0, 0%, 90%, 0.8); |
| 87 pointer-events: auto; | 91 pointer-events: auto; |
| 88 } | 92 } |
| 89 | 93 |
| 90 #timeline-overview-panel .overview-strip { | 94 #timeline-overview-panel .overview-strip { |
| (...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 630 background-color: #f3f3f3 | 634 background-color: #f3f3f3 |
| 631 } | 635 } |
| 632 | 636 |
| 633 .timeline-stack-view-header { | 637 .timeline-stack-view-header { |
| 634 height: 26px; | 638 height: 26px; |
| 635 background-color: white; | 639 background-color: white; |
| 636 padding: 6px 10px; | 640 padding: 6px 10px; |
| 637 color: #5a5a5a; | 641 color: #5a5a5a; |
| 638 white-space: nowrap; | 642 white-space: nowrap; |
| 639 } | 643 } |
| 644 | |
| 645 .timeline-landing-page { | |
| 646 position: absolute; | |
| 647 background-color: white; | |
| 648 justify-content: center; | |
| 649 align-items: center; | |
| 650 overflow: auto; | |
| 651 font-size: 13px; | |
| 652 color: #777; | |
| 653 } | |
| 654 | |
| 655 .timeline-landing-page > div { | |
| 656 width: 430px; | |
| 657 } | |
| 658 | |
| 659 .timeline-landing-page > div > p { | |
|
alph
2017/01/14 02:33:51
drop extra space
| |
| 660 flex: none; | |
| 661 } | |
| OLD | NEW |