mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-09 18:02:50 +01:00
67 lines
1.2 KiB
Text
67 lines
1.2 KiB
Text
@import "inSceneUI-sketcher";
|
|
|
|
.objectItem {
|
|
background-color: rgba(0,0,0, 0.6);
|
|
border: 1px solid #000;
|
|
border-radius: 5px;
|
|
margin: 2px @itemRadius;
|
|
pointer-events: auto;
|
|
display: flex;
|
|
align-items: stretch;
|
|
overflow-wrap: anywhere;
|
|
|
|
|
|
@alt-color: #9c9c9c;
|
|
.objectIcon {
|
|
border-radius: @itemRadius 0 0 @itemRadius;
|
|
padding: 3px 3px;
|
|
background-color: @alt-color;
|
|
text-align: center;
|
|
& svg {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
}
|
|
|
|
.menuButton {
|
|
border-radius: 0 @itemRadius @itemRadius 0;
|
|
background-color: @alt-color;
|
|
padding: 0 3px;
|
|
.button;
|
|
}
|
|
|
|
.objectTag {
|
|
display: flex;
|
|
align-items: center;
|
|
flex: 1;
|
|
padding: 0 5px;
|
|
.button;
|
|
|
|
&.selected {
|
|
background: linear-gradient(#59acff, #0074D9);
|
|
}
|
|
}
|
|
|
|
.objectRole {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 8px;
|
|
}
|
|
|
|
.objectRole.construction {
|
|
cursor: pointer;
|
|
background-color: #005e82;
|
|
.button;
|
|
}
|
|
.objectRole.sketch {
|
|
cursor: pointer;
|
|
background-color: #5f5f5f;
|
|
.button;
|
|
}
|
|
.objectRole.aux {
|
|
cursor: default;
|
|
background-color: #FDF7E7;
|
|
color: #1a1a1a;
|
|
}
|
|
}
|
|
|