Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 78 additions & 0 deletions packages/lynx-devtool-web/src/containers/TestBench/TestBench.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
// Copyright 2024 The Lynx Authors. All rights reserved.
// Licensed under the Apache License Version 2.0 that can be found in the
// LICENSE file in the root directory of this source tree.

.ldt-devtool-tabs {
background-color: white;
.session-item {
display: flex;
.session-url {
max-width: 150px;
min-width: 100px;
overflow: hidden;
text-overflow: ellipsis;
margin-left: 5px;
}
}

.ant-tabs-content {
height: calc(100vh - 103px) !important;
}
.ant-tabs-nav .ant-tabs-tab {
&:not(:last-of-type) {
margin-right: 12px;
}
}
}

.devtool-card-debugged {
.ant-tabs-tab.ant-tabs-tab-active,
.ant-tabs-tab.ant-tabs-tab-active:hover {
border-bottom: 2px solid #faad14;
}
}

.ldt-devtool-pannel {
position: relative;
width: 100%;
height: 100%;

.tags {
display: flex;
position: absolute;
left: 5px;
bottom: 5px;

.ant-tag {
margin: 3px;
}
}
}

.ldt-devtool-pannel {
position: relative;
width: 100%;
height: 100%;

.tags {
display: flex;
position: absolute;
left: 5px;
bottom: 5px;

.ant-tag {
margin: 3px;
}
}
}

.page-session-item-tooltips-content {
display: flex;
flex-direction: column;
align-items: center;
}

.page-session-item-url-container {
max-height: 150px;
overflow-y: auto;
}
Loading