PropertyTable 생성

This commit is contained in:
현성필
2024-01-19 21:11:11 +09:00
parent 924196b629
commit 69efab357e
3 changed files with 34 additions and 1 deletions
+27 -1
View File
@@ -1952,6 +1952,11 @@ footer div.foot_info span {
/*max-width: 100%; !* Optional, depending on layout *!*/
}
.path.editableInput .editableInputContent{
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.editableInputContent:focus {
white-space: nowrap;
}
@@ -1960,6 +1965,27 @@ footer div.foot_info span {
flex-grow: 0; /* Prevent buttons from growing */
}
.editableInput .variable {
.editableInputContent .variable {
color: red;
}
/* Property Table*/
.prop-table {
display: flex;
flex-direction: column;
width: 100%;
}
.prop-table-row {
display: flex;
}
.prop-table-cell {
padding: 10px;
border: 1px solid #ddd;
}
.prop-table-header {
background-color: #f4f4f4;
font-weight: bold;
}