Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
15 changes: 2 additions & 13 deletions src/components/dialogs/CopyProfileDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,14 @@
<div v-if="profileOptions && profileOptions.length" class="contentProfile">
<div>
<span>{{ profileText }}</span>
<select v-model.number="selectedProfile">
<option v-for="opt in profileOptions" :key="opt.value" :value="opt.value">
{{ opt.label }}
</option>
</select>
<USelect v-model="selectedProfile" :items="profileOptions" class="min-w-40" />
</div>
</div>

<div v-if="rateOptions && rateOptions.length" class="contentRateProfile">
<div>
<span>{{ rateProfileText }}</span>
<select v-model.number="selectedRateProfile">
<option v-for="opt in rateOptions" :key="opt.value" :value="opt.value">{{ opt.label }}</option>
</select>
<USelect v-model="selectedRateProfile" :items="rateOptions" class="min-w-40" />
</div>
</div>
</div>
Expand Down Expand Up @@ -98,11 +92,6 @@ defineExpose({
margin-top: 20px;
}

.contentProfile select,
.contentRateProfile select {
margin-left: 8px;
}

.dialogCopyProfile-confirmbtn {
margin: 0;
margin-right: 12px;
Expand Down
7 changes: 0 additions & 7 deletions src/components/tabs/FirmwareFlasherTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2588,13 +2588,6 @@ export default defineComponent({
margin-top: 0; /* keep vertically centered */
}
.build_configuration {
.gui_box_titlebar {
display: flex;
flex-direction: row-reverse;
gap: 1rem;
flex-wrap: nowrap;
align-items: center;
}
.build_configuration_toggle_wrapper {
display: flex;
flex-wrap: nowrap;
Expand Down
19 changes: 0 additions & 19 deletions src/components/tabs/PidTuningTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -681,27 +681,12 @@ onUnmounted(() => {
border-radius: 3px;
}

/* ── gui_box ──────────────────────────────────────────────────────── */
.tab-pid_tuning .gui_box {
padding: 0;
overflow: hidden;
gap: 0;
}
.tab-pid_tuning .gui_box span {
font-style: normal;
font-weight: normal;
line-height: 19px;
font-size: 11px;
}
.tab-pid_tuning .note,
.tab-pid_tuning .danger {
margin-bottom: 0;
}

/* ── Filter sub-tab ───────────────────────────────────────────────── */
.tab-pid_tuning .subtab-filter .gui_box {
float: none;
}
.tab-pid_tuning .subtab-filter table select {
display: inline-block;
}
Expand Down Expand Up @@ -888,10 +873,6 @@ onUnmounted(() => {
border-radius: 3px;
font-weight: normal;
}
.tab-pid_tuning .gui_box_titlebar .helpicon {
margin-top: 5px;
margin-right: 5px;
}
.tab-pid_tuning .spacer_left {
padding-left: 0;
float: right;
Expand Down
Loading