Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: new design of the web UI #408

Merged
merged 20 commits into from
Nov 13, 2021
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
2b55058
refactor(appbar): change buttons to new design
steadyjaw Nov 8, 2021
ff1437a
refactor(appbar): change height and add pritnername
steadyjaw Nov 8, 2021
e78ed57
refactor: small sidebar
steadyjaw Nov 9, 2021
11a9a8e
refactor(vuetify): define parts of the mainsail theme and expose colo…
steadyjaw Nov 9, 2021
413e642
refactor: ui settings add missing divider
steadyjaw Nov 9, 2021
46bb749
refactor: add farm printer selection and menu to new top and sidebar,…
steadyjaw Nov 9, 2021
d10caf3
refactor: make topbar buttons hideable via ui settings
steadyjaw Nov 9, 2021
be109a6
refactor: move miniConsole buttons to toolbar and make'em collapsible
steadyjaw Nov 9, 2021
39ede45
refactor: set matching colors for buttons on console page
steadyjaw Nov 9, 2021
88fb3f3
refactor: use colornames from theme and set play/resume button to green
steadyjaw Nov 9, 2021
c30ea16
fix: correct visibility of hide buttons on collapse
steadyjaw Nov 9, 2021
884a336
feature: add virtual tab button to console-input on touch devices
steadyjaw Nov 9, 2021
1dfa48a
refactor: remove hide e-stop button setting
steadyjaw Nov 12, 2021
9af6427
fix: add reactivity to hide upload and print button functionality
steadyjaw Nov 12, 2021
03408a0
refactor: move logo to topbar and clip menu under topbar
steadyjaw Nov 12, 2021
4d6d9de
refactor: remove unused TheSidebarPrinterMenu
steadyjaw Nov 12, 2021
cd2a534
feature: create and add about component to sidebar ...no dialog on cl…
steadyjaw Nov 12, 2021
f66e29d
fix: correct appearance of the close icon from interface settings dialog
steadyjaw Nov 12, 2021
b414572
Revert "fix: correct appearance of the close icon from interface sett…
steadyjaw Nov 13, 2021
7f67a35
Merge branch 'develop' into refactor/ui-redesign
steadyjaw Nov 13, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refactor: ui settings add missing divider
Signed-off-by: steadyjaw <martin.keilaus@gmail.com>
  • Loading branch information
steadyjaw committed Nov 9, 2021
commit 413e6429fae30763089f95ade793c08f3f8b5806
2 changes: 1 addition & 1 deletion src/components/settings/SettingsUiSettingsTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
<settings-row :title="$t('Settings.UiSettingsTab.ConfirmOnPowerDeviceChange')" :sub-title="$t('Settings.UiSettingsTab.ConfirmOnPowerDeviceChangeDescription')" :dynamicSlotWidth="true">
<v-switch v-model="confirmOnPowerDeviceChange" hide-details class="mt-0"></v-switch>
</settings-row>
<v-divider class="my-2"></v-divider>
<settings-row :title="$t('Settings.UiSettingsTab.BoolWideNavDrawer')" :sub-title="$t('Settings.UiSettingsTab.BoolWideNavDrawerDescription')" :dynamicSlotWidth="true">
<v-switch v-model="boolWideNavDrawer" hide-details class="mt-0"></v-switch>
</settings-row>
Expand Down Expand Up @@ -146,7 +147,6 @@ export default class SettingsUiSettingsTab extends Mixins(BaseMixin) {
this.$store.dispatch('gui/saveSetting', {name: 'general.confirmOnPowerDeviceChange', value: newVal })
}


get boolWideNavDrawer() {
return this.$store.state.gui.dashboard.boolWideNavDrawer ?? false
}
Expand Down