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 *!*/ /*max-width: 100%; !* Optional, depending on layout *!*/
} }
.path.editableInput .editableInputContent{
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.editableInputContent:focus { .editableInputContent:focus {
white-space: nowrap; white-space: nowrap;
} }
@@ -1960,6 +1965,27 @@ footer div.foot_info span {
flex-grow: 0; /* Prevent buttons from growing */ flex-grow: 0; /* Prevent buttons from growing */
} }
.editableInput .variable { .editableInputContent .variable {
color: red; 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;
}
+7
View File
@@ -1,4 +1,10 @@
/* 폰트 시작*/ /* 폰트 시작*/
@font-face {
font-family: 'codicon';
font-style: normal;
font-weight: 400;
url(/fonts/codicon.ttf) format('truetype');
}
@font-face { @font-face {
font-family: 'NanumGothicCoding'; font-family: 'NanumGothicCoding';
font-style: normal; font-style: normal;
@@ -6,6 +12,7 @@
local('NanumGothicCoding-Regular'), local('NanumGothicCoding-Regular'),
url(/fonts/NanumGothicCoding-Regular.ttf) format('truetype'); url(/fonts/NanumGothicCoding-Regular.ttf) format('truetype');
} }
@font-face { @font-face {
font-family: 'NotoSansKR'; font-family: 'NotoSansKR';
font-style: normal; font-style: normal;
Binary file not shown.