...
https://app.kudo.graebert.com/editor?file=demo.dwg&auth=demo2&userId=demouser
TODO: customized style
Added customized style.css in customization.zip that overrides background color of some style classes.
E.g. for toolbar background:
Code Block |
---|
.xenon-toolbarContainer .container {
background-color: #262c41;
} |
3. Open file for editing from S3 bucket with customized UI
...
Code Block |
---|
<workspace> <name workspace_name="Classic Default" /> <description description="" /> <status_bar_visible status_bar_visible="1" /> <groups/> <root_menu_items> <menu group_id="Id_XenonMainGroup" uid="ID_MnTools" /> </root_menu_items> <navigation_toolbars> <toolbar group_id="Id_XenonMainGroup" uid="ID_NavBarDefault" /> </navigation_toolbars> <dockable_windows> <window object_name="CommandWindow" visible="0" name="Command Prompt" /> <window object_name="PropertyWindow" visible="0" name="Properties Window" /> <window object_name="XRefManager" visible="0" name="References" /> <window object_name="LayerPanel" visible="0" name="Layer Panel" /> </dockable_windows> </workspace> |
Added customized style.css in customization.zip that hides all button groups in statusbar based on their style class except the first one with sheet controls:
Code Block |
---|
.xenon-statusbar.XeButtonGroup:not(:first-child) {
display: none;
} |
4. Open file for editing from S3 bucket with custom feature
todo