• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (C) 2022 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16export const TabPaneVmTrackerShmHtml = `
17<style>
18:host{
19    display: flex;
20    flex-direction: column;
21    padding: 10px 10px 0 10px;
22    height: calc(100% - 10px - 31px);
23}
24tab-pane-filter {
25    border: solid rgb(216,216,216) 1px;
26    float: left;
27    position: fixed;
28    bottom: 0;
29    width: 100%;
30}
31selector{
32    display: none;
33}
34.show{
35    display: flex;
36    flex: 1;
37}
38.progress{
39    bottom: 33px;
40    position: absolute;
41    height: 1px;
42    left: 0;
43    right: 0;
44}
45.loading{
46    bottom: 0;
47    position: absolute;
48    left: 0;
49    right: 0;
50    width:100%;
51    background:transparent;
52    z-index: 999999;
53}
54</style>
55 <label id="time-range" style="width: 100%;height: 20px;text-align: end;font-size: 10pt;margin-bottom: 5px">Selected range:0.0 ms</label>
56                <lit-table id="tb-shm" style="height: auto">
57                    <lit-table-column width="1fr" title="AvgSize" data-index="avgSizeStr" key="avgSizeStr" align="flex-start"  order>
58                    </lit-table-column>
59                    <lit-table-column width="1fr" title="MinSize" data-index="minSizeStr" key="minSizeStr" align="flex-start" order>
60                    </lit-table-column>
61                    <lit-table-column width="1fr" title="MaxSize" data-index="maxSizeStr" key="maxSizeStr" align="flex-start"  order>
62                    </lit-table-column>
63                </lit-table>
64`;
65