@things-factory/board-ui 10.0.6 → 10.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-client/themes/board-theme.css +11 -5
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-client/viewparts/board-basic-info.js +22 -4
- package/dist-client/viewparts/board-basic-info.js.map +1 -1
- package/dist-client/viewparts/board-info.js +21 -4
- package/dist-client/viewparts/board-info.js.map +1 -1
- package/package.json +5 -5
|
@@ -52,11 +52,17 @@ body {
|
|
|
52
52
|
--property-sidebar-fieldset-label: normal 12px/16px var(--theme-font);
|
|
53
53
|
--property-sidebar-fieldset-legend-color: var(--md-sys-color-on-secondary-container);
|
|
54
54
|
--property-sidebar-fieldset-legend: bold 13px var(--theme-font);
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
55
|
+
/*
|
|
56
|
+
* 씬 아웃라인은 목록/트리라서 본문 성격이다. 강조 역할(secondary·primary)을 글자색과 칩 배경에
|
|
57
|
+
* 쓰고 있어서 패널 전체가 브랜드색으로 물들고, 다크에서는 그 역할들이 밝아져 더 튀었다.
|
|
58
|
+
* 글자는 표면 위 본문 역할로, 선택 표시만 브랜드 강조색으로 남긴다.
|
|
59
|
+
*/
|
|
60
|
+
--scene-inspector-color: var(--md-sys-color-on-surface);
|
|
61
|
+
--scene-inspector-selected-background-color: color-mix(in srgb, var(--md-sys-color-primary) 20%, transparent);
|
|
62
|
+
--scene-inspector-selected-border: 1px solid var(--md-sys-color-primary);
|
|
63
|
+
/* 개수 칩 — primary 는 큰 면이 아니어도 글자와 짝이 맞아야 한다 */
|
|
64
|
+
--scene-inspector-name-background-color: var(--md-sys-color-surface-container-highest);
|
|
65
|
+
--scene-inspector-eye-icon-color: var(--md-sys-color-on-surface-variant);
|
|
60
66
|
}
|
|
61
67
|
|
|
62
68
|
@media (min-width: 461px) and (max-width: 1024px) {
|