2
0
mirror of https://github.com/tenrok/vue-cron-editor-bootstrap.git synced 2026-06-08 17:32:24 +03:00

Changed style to embed style

This commit is contained in:
Alex Freitas
2020-05-22 14:14:52 -03:00
parent cda138829d
commit 851c73eede
8 changed files with 62 additions and 68 deletions
+25 -25
View File
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+25 -25
View File
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+6 -12
View File
@@ -6,7 +6,7 @@
<b-form-input
type="number"
v-model="editorData.minuteInterval"
class="small-input"
v-bind:style="{ width: '50px' }"
/>
<label class="mr-sm-2 ml-sm-2">{{ _$t("mminutes") }}</label>
</b-form>
@@ -19,7 +19,7 @@
<b-form-input
type="number"
v-model="editorData.hourInterval"
class="small-input"
v-bind:style="{ width: '50px' }"
/>
<label class="mr-sm-2 ml-sm-2">{{
_$t("hoursOnMinute")
@@ -29,7 +29,7 @@
max="59"
min="0"
v-model="editorData.minutes"
class="small-input"
v-bind:style="{ width: '50px' }"
/>
</b-form>
</b-col>
@@ -43,7 +43,7 @@
<b-form-input
type="number"
v-model="editorData.dayInterval"
class="small-input"
v-bind:style="{ width: '50px' }"
/>
<label class="mr-sm-2 ml-sm-2">{{
_$t("daysAt")
@@ -120,7 +120,7 @@
<b-form-input
type="number"
v-model="editorData.day"
class="small-input"
v-bind:style="{ width: '50px' }"
/>
<label class="mr-sm-2 ml-sm-2">{{
_$t("dayOfEvery")
@@ -128,7 +128,7 @@
<b-form-input
type="number"
v-model="editorData.monthInterval"
class="small-input"
v-bind:style="{ width: '50px' }"
/><label class="mr-sm-2 ml-sm-2">{{
_$t("monthsAt")
}}</label>
@@ -231,9 +231,3 @@ export default {
}
};
</script>
<style lang="scss">
.form-inline .form-control.small-input {
width: 50px;
}
</style>