58 lines
1.1 KiB
Plaintext
58 lines
1.1 KiB
Plaintext
/* ヘッダー */
|
|
.header {
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 0 5px 5px 5px;
|
|
border-bottom: 1px solid rgb(56, 56, 56);
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
|
|
|
|
/* Inspector全体のコンテナ */
|
|
.root-container {
|
|
padding: 5px;
|
|
}
|
|
|
|
.title {
|
|
-unity-font-style: bold;
|
|
font-size: 14px;
|
|
color: white;
|
|
}
|
|
|
|
/* 警告メッセージのラベル */
|
|
.warning-label {
|
|
font-size: 14px;
|
|
padding: 10px 5px;
|
|
white-space: normal; /* テキストの折り返しを許可 */
|
|
}
|
|
|
|
/* 区切り線 */
|
|
.separator {
|
|
height: 1px;
|
|
background-color: rgb(56, 56, 56);
|
|
margin: 5px 0;
|
|
}
|
|
|
|
/* テーブルリストのセクション */
|
|
.tables-section {
|
|
padding: 10px 5px;
|
|
}
|
|
|
|
/* テーブルリストのタイトル */
|
|
.title-label {
|
|
-unity-font-style: bold;
|
|
font-size: 14px;
|
|
margin-bottom: 5px;
|
|
white-space: normal; /* テキストの折り返しを許可 */
|
|
}
|
|
|
|
/* テーブル名リストのコンテナ */
|
|
.list-container {}
|
|
|
|
/* 個々のテーブル名のラベル */
|
|
.table-name-label {
|
|
margin-left: 15px; /* リスト項目をインデント */
|
|
padding: 1px 0;
|
|
} |