Skip to content

Commit 7943cda

Browse files
committed
feat: style
1 parent 7df1820 commit 7943cda

File tree

3 files changed

+19
-17
lines changed

3 files changed

+19
-17
lines changed

web/src/App.vue

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -758,10 +758,11 @@
758758
759759
.v-input {
760760
.v-input__slot fieldset {
761-
//border-radius: 8px;
762-
//border: 0;
761+
border-radius: 8px;
762+
//border: 1px;
763763
//border-color: rgba(133, 133, 133, 0.3);
764-
//background-color: rgba(133, 133, 133, 0.05);
764+
border-color: rgba(133, 133, 133, 0.4);
765+
background-color: rgba(133, 133, 133, 0.04);
765766
}
766767
767768
.v-label--active {
@@ -773,6 +774,13 @@
773774
//color: black;
774775
//font-weight: 500;
775776
}
777+
778+
&.primary--text {
779+
.v-input__slot fieldset {
780+
border-color: #2196f3;
781+
}
782+
}
783+
776784
}
777785
778786
@import '~vuetify/src/styles/styles.sass';

web/src/components/ArgsPicker.vue

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,11 @@
5656
</v-card>
5757
</v-dialog>
5858
<fieldset style="padding: 0 10px 2px 10px;
59-
border: 1px solid rgba(0, 0, 0, 0.38);
60-
border-radius: 4px;
59+
border: 1px solid rgba(133, 133, 133, 0.4);
60+
background-color: rgba(133, 133, 133, 0.04);
61+
border-radius: 8px;
6162
font-size: 12px;"
62-
:style="{
63-
'border-color': $vuetify.theme.dark ?
64-
'rgba(200, 200, 200, 0.38)' :
65-
'rgba(0, 0, 0, 0.38)'
66-
}">
63+
>
6764
<legend style="padding: 0 3px;">{{ title || $t('Args') }}</legend>
6865
<v-chip-group column style="margin-top: -4px;">
6966
<v-chip

web/src/components/SurveyVars.vue

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -147,14 +147,11 @@
147147
</v-card>
148148
</v-dialog>
149149
<fieldset style="padding: 0 10px 2px 10px;
150-
border: 1px solid rgba(0, 0, 0, 0.38);
151-
border-radius: 4px;
150+
border: 1px solid rgba(133, 133, 133, 0.4);
151+
background-color: rgba(133, 133, 133, 0.04);
152+
border-radius: 8px;
152153
font-size: 12px;"
153-
:style="{
154-
'border-color': $vuetify.theme.dark ?
155-
'rgba(200, 200, 200, 0.38)' :
156-
'rgba(0, 0, 0, 0.38)'
157-
}">
154+
>
158155
<legend style="padding: 0 3px;">{{ $t('surveyVariables') }}</legend>
159156
<v-chip-group column style="margin-top: -4px;">
160157
<v-chip

0 commit comments

Comments
 (0)