변수 보기 수정
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user