mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-08 19:38:51 +01:00
0145e8fe99
The migration tool we used didn't take into account our formatting standards so I'm bulk-formatting the SCSS files to bring them back up to our standards. Basically this just changes the tab size for all the files.
97 lines
1.9 KiB
SCSS
97 lines
1.9 KiB
SCSS
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
@use "../../mixins.scss";
|
|
|
|
.csv-view {
|
|
opacity: 0; /* Start with an opacity of 0, meaning it's invisible */
|
|
|
|
@include mixins.ellipsis();
|
|
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
|
|
.cursor-pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.select-none {
|
|
user-select: none;
|
|
}
|
|
|
|
table.probe {
|
|
position: absolute;
|
|
visibility: hidden;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
overflow-x: auto;
|
|
border: 1px solid var(--scrollbar-thumb-hover-color);
|
|
|
|
thead {
|
|
position: relative;
|
|
display: block;
|
|
width: 100%;
|
|
overflow-y: scroll;
|
|
|
|
tr {
|
|
border-bottom: 1px solid var(--scrollbar-thumb-hover-color);
|
|
|
|
th {
|
|
color: var(--main-text-color);
|
|
border-right: 1px solid var(--scrollbar-thumb-hover-color);
|
|
border-bottom: none;
|
|
padding: 2px 10px;
|
|
flex-basis: 100%;
|
|
flex-grow: 2;
|
|
display: block;
|
|
text-align: left;
|
|
position: relative;
|
|
|
|
.inner {
|
|
text-align: left;
|
|
padding-right: 15px;
|
|
position: relative;
|
|
@include mixins.ellipsis();
|
|
|
|
.sort-icon {
|
|
position: absolute;
|
|
right: 0px;
|
|
top: 2px;
|
|
width: 9px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
tbody {
|
|
display: block;
|
|
position: relative;
|
|
overflow-y: scroll;
|
|
overscroll-behavior: contain;
|
|
}
|
|
|
|
tr {
|
|
width: 100%;
|
|
display: flex;
|
|
|
|
td {
|
|
border-right: 1px solid var(--scrollbar-thumb-hover-color);
|
|
border-left: 1px solid var(--scrollbar-thumb-hover-color);
|
|
padding: 3px 10px;
|
|
flex-basis: 100%;
|
|
flex-grow: 2;
|
|
display: block;
|
|
text-align: left;
|
|
@include mixins.ellipsis();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.csv-view.show {
|
|
opacity: 1;
|
|
}
|