2020-06-29 19:21:56 +00:00
|
|
|
<!-- Copyright 2020 the V8 project authors. All rights reserved.
|
|
|
|
Use of this source code is governed by a BSD-style license that can be
|
|
|
|
found in the LICENSE file. -->
|
|
|
|
|
2020-08-25 06:31:43 +00:00
|
|
|
<head>
|
|
|
|
<link href="./index.css" rel="stylesheet">
|
2020-12-03 17:48:45 +00:00
|
|
|
<style>
|
|
|
|
.panel {
|
|
|
|
padding-bottom: 0px;
|
2020-12-07 08:44:54 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.titleBackground {
|
|
|
|
position: absolute;
|
|
|
|
left: 0px;
|
|
|
|
top: 34px;
|
|
|
|
border-radius: 0 0 0 7px;
|
|
|
|
height: calc(100% - 34px);
|
|
|
|
width: 30px;
|
2020-12-14 09:44:51 +00:00
|
|
|
background-color: var(--border-color);
|
2020-12-03 17:48:45 +00:00
|
|
|
}
|
|
|
|
</style>
|
2020-08-25 06:31:43 +00:00
|
|
|
</head>
|
2020-07-13 18:02:52 +00:00
|
|
|
<div class="panel">
|
|
|
|
<h2>Timeline Panel</h2>
|
2020-12-07 08:44:54 +00:00
|
|
|
<div class="titleBackground"></div>
|
2020-07-28 12:46:10 +00:00
|
|
|
<div>
|
|
|
|
<slot></slot>
|
2020-07-13 18:02:52 +00:00
|
|
|
</div>
|
2020-06-29 19:21:56 +00:00
|
|
|
</div>
|