mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-10-29 23:46:32 +08:00
Fix hound [SCI-8250]
This commit is contained in:
parent
5f8eafedf9
commit
d6a3da2c6f
3 changed files with 14 additions and 13 deletions
|
|
@ -1,10 +1,10 @@
|
|||
.assign-items-to-task-modal-container {
|
||||
.modal-header {
|
||||
padding: 1rem;
|
||||
display: flex;
|
||||
color: $color-volcano;
|
||||
display: flex;
|
||||
font-size: $font-size-h2;
|
||||
font-weight: bold;
|
||||
padding: 1rem;
|
||||
|
||||
.close {
|
||||
margin-left: auto;
|
||||
|
|
@ -12,22 +12,23 @@
|
|||
}
|
||||
|
||||
.modal-body {
|
||||
color: $color-volcano;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
color: $color-volcano;
|
||||
font-size: $font-size-base;
|
||||
row-gap: 1rem;
|
||||
|
||||
.level-selector {
|
||||
flex-direction: column;
|
||||
display: flex;
|
||||
gap: .25rem;
|
||||
flex-direction: column;
|
||||
row-gap: .25rem;
|
||||
|
||||
label {
|
||||
margin-bottom: 0;
|
||||
font-weight: bold;
|
||||
font-size: $font-size-h6;
|
||||
}
|
||||
}
|
||||
|
||||
label {
|
||||
font-size: $font-size-h6;
|
||||
font-weight: bold;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ function initAssignItemsToTaskModalComponent() {
|
|||
assign: container.data('assign-url'),
|
||||
projects: container.data('projects-url'),
|
||||
experiments: container.data('experiments-url'),
|
||||
tasks: container.data('tasks-url'),
|
||||
tasks: container.data('tasks-url')
|
||||
}
|
||||
};
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<Select class="sn-select--search" :options="currentOptions" :placeholder="placeholder" :disabled="disabled" @change="change" @blur="blur" @open="open" @close="close">
|
||||
<Select class="sn-select--search" :options="currentOptions" :placeholder="placeholder" v-bind:disabled="disabled" @change="change" @blur="blur" @open="open" @close="close">
|
||||
<input ref="focusElement" v-model="query" type="text" class="sn-select__search-input" :placeholder="searchPlaceholder" />
|
||||
<span class="sn-select__value">{{ valueLabel || (placeholder || i18n.t('general.select')) }}</span>
|
||||
<span class="sn-select__caret caret"></span>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue