| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- .SceneEditor {
- padding: 5px;
- }
- .SceneEditor .SceneEditorContainer {
- width: 100%;
- height: 100%;
- }
- .SceneEditor canvas {
- border-radius: 3px;
- }
- .PropertyLockIcon:hover {
- cursor: pointer;
- }
- #InspectorView .PrefabLink {
- display: flex;
- flex-wrap: wrap;
- column-gap: 3px;
- width: 100%;
- padding: 3px;
- border-radius: 3px;
- }
- #InspectorView .UserComponentTitle_PrefabsPart {
- font-size: small;
- font-style: italic;
- opacity: 0.5;
- }
- #InspectorView label {
- min-width: unset;
- }
- #InspectorView .PrefabLink .IconButton {
- margin-left: auto;
- }
- /* light */
- .light .SceneEditor .SceneEditorContainer {
- background: #8e8e8e;
- }
- /* lightBlue*/
- .lightBlue .SceneEditor .SceneEditorContainer {
- background: #97AAC2;
- }
- /* dark */
- .dark .SceneEditor .SceneEditorContainer {
- background: #3f3f3f;
- border-radius: 3px;
- }
- /* dark plus */
- .dark .SceneEditor {
- padding: 0px !important;
- }
- .SceneEditor .LayoutPane {
- position: absolute;
- display: grid;
- grid-template-columns: auto;
- bottom: 5px;
- justify-content: left;
- padding-left: 5px;
- }
- .SceneEditor .LayoutPane input {
- max-width: 4em;
- }
- .light .SceneEditor .LayoutPane,
- .lightBlue .SceneEditor .LayoutPane {
- bottom: 10px;
- }
- .SceneEditor .LayoutPane .CenterPane {
- display: grid;
- border-radius: 5px;
- border-style: solid;
- border-width: 1px;
- border-color: rgba(255, 255, 255, 0.2);
- box-shadow: 3px 3px 3px #0003;
- }
- .SceneEditor .LayoutPane .Title {
- display: flex;
- justify-content: space-between;
- width: 100%;
- grid-column: 1 / span 4;
- }
- .SceneEditor .LayoutPane .Title label {
- font-size: small;
- opacity: 0.5;
- }
- .SceneEditor .LayoutPane .Title .Buttons {
- display: flex;
- justify-content: flex-end;
- }
- .SceneEditor .LayoutPane .Form {
- display: grid;
- grid-template-columns: auto 1fr auto 1fr;
- column-gap: 5px;
- row-gap: 5px;
- align-items: center;
- padding: 5px;
- }
- .SceneEditor .LayoutPane .Toolbar {
- display: flex;
- row-gap: 5px;
- padding: 5px;
- }
- .light .SceneEditor .ToolbarItem,
- .lightBlue .SceneEditor .ToolbarItem {
- border-style: none;
- }
|