| OLD | NEW |
| (Empty) |
| 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 | |
| 3 * found in the LICENSE file. */ | |
| 4 | |
| 5 .timeline-view { | |
| 6 -webkit-box-flex: 1; | |
| 7 -webkit-box-orient: vertical; | |
| 8 display: -webkit-box; | |
| 9 padding: 0; | |
| 10 } | |
| 11 | |
| 12 .timeline-view > .control { | |
| 13 border-bottom: 1px solid #555; | |
| 14 display: -webkit-box; | |
| 15 } | |
| 16 | |
| 17 .timeline-view > .control > .controls { | |
| 18 display: -webkit-box; | |
| 19 } | |
| 20 | |
| 21 .timeline-view > .control > span { | |
| 22 padding-left: 5px; | |
| 23 padding-right: 10px; | |
| 24 } | |
| 25 | |
| 26 .timeline-view > .control > button { | |
| 27 font-size: 75%; | |
| 28 height: 20px; | |
| 29 min-height: 10px; | |
| 30 } | |
| 31 | |
| 32 .timeline-view > .control > .spacer { | |
| 33 -webkit-box-flex: 1; | |
| 34 } | |
| 35 | |
| 36 .timeline-view > .timeline-container { | |
| 37 -webkit-box-flex: 1; | |
| 38 display: -webkit-box; | |
| 39 overflow: auto; | |
| 40 } | |
| 41 | |
| 42 .timeline-view > .timeline-container > * { | |
| 43 -webkit-box-flex: 1; | |
| 44 } | |
| 45 | |
| 46 .timeline-view > .analysis-container { | |
| 47 border-top: 1px solid black; | |
| 48 max-height: 250px; | |
| 49 min-height: 250px; | |
| 50 overflow: auto; | |
| 51 } | |
| 52 | |
| 53 .timeline-view .selection { | |
| 54 margin: 2px; | |
| 55 } | |
| 56 | |
| 57 .timeline-view .selection ul { | |
| 58 margin: 0; | |
| 59 } | |
| 60 | |
| 61 .timeline-find-control { | |
| 62 -webkit-user-select: none; | |
| 63 display: -webkit-box; | |
| 64 position: relative; | |
| 65 } | |
| 66 | |
| 67 .timeline-find-control .hit-count-label { | |
| 68 left: 0; | |
| 69 opacity: 0.25; | |
| 70 pointer-events: none; | |
| 71 position: absolute; | |
| 72 text-align: right; | |
| 73 top: 2px; | |
| 74 width: 170px; | |
| 75 z-index: 1; | |
| 76 } | |
| 77 | |
| 78 .timeline-find-control input { | |
| 79 -webkit-user-select: auto; | |
| 80 border: 1px solid rgba(0, 0, 0, 0.4); | |
| 81 box-sizing: border-box; | |
| 82 height: 19px; | |
| 83 margin-bottom: 1px; | |
| 84 margin-left: 0; | |
| 85 margin-right: 0; | |
| 86 margin-top: 1px; | |
| 87 padding: 0; | |
| 88 width: 170px; | |
| 89 } | |
| 90 | |
| 91 .timeline-button.find-previous { | |
| 92 border-left: none; | |
| 93 margin-left: 0; | |
| 94 margin-right: 0; | |
| 95 } | |
| 96 .timeline-button.find-next { | |
| 97 border-bottom-right-radius: 5px; | |
| 98 border-left: none; | |
| 99 margin-left: 0; | |
| 100 } | |
| 101 | |
| 102 .timeline-button { | |
| 103 background-color: rgba(255, 255, 255, 0.5); | |
| 104 border: 1px solid rgba(0, 0, 0, 0.2); | |
| 105 color: rgba(0,0,0,0.2); | |
| 106 font-size: 14px; | |
| 107 height: 17px; | |
| 108 margin: 1px; | |
| 109 text-align: center; | |
| 110 width: 23px; | |
| 111 } | |
| 112 | |
| 113 .timeline-button:hover { | |
| 114 background-color: rgba(255, 255, 255, 1.0); | |
| 115 border: 1px solid rgba(0, 0, 0, 0.8); | |
| 116 box-shadow: 0 0 .05em rgba(0, 0, 0, 0.4); | |
| 117 color: rgba(0, 0, 0, 1); | |
| 118 } | |
| OLD | NEW |