변수 보기 수정

This commit is contained in:
현성필
2024-01-20 17:57:16 +09:00
parent c70d14e2e2
commit a4c75411c2
3 changed files with 67 additions and 30 deletions
+27 -3
View File
@@ -1971,21 +1971,45 @@ footer div.foot_info span {
/* Property Table*/
.prop-table {
display: flex;
flex-direction: column;
/*display: flex;*/
/*flex-direction: column;*/
/*width: 100%;*/
display: table;
width: 100%;
table-layout: fixed;
}
.prop-table-row {
display: flex;
display: table-row;
}
.prop-table-cell {
/*padding: 10px;*/
/*border: 1px solid #ddd;*/
display: table-cell;
padding: 10px;
border: 1px solid #ddd;
overflow: hidden; /* Hide overflow */
text-overflow: ellipsis; /* Show ellipsis for overflow */
white-space: nowrap;
}
.prop-table-header {
background-color: #f4f4f4;
font-weight: bold;
}
.variable_popper {
min-width: 100px;
max-width: 300px;
background: white;
border: 1px solid #ddd;
border-radius: 2px;
margin: 5px;
padding: 5px;
overflow: hidden;
}
.query_params .prop-table {
width: calc(100vw - 240px);
}