summaryrefslogtreecommitdiff
path: root/src/components/Global/TableDateFilter.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Global/TableDateFilter.vue')
-rw-r--r--src/components/Global/TableDateFilter.vue11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/components/Global/TableDateFilter.vue b/src/components/Global/TableDateFilter.vue
index ab501ea3..538f0e05 100644
--- a/src/components/Global/TableDateFilter.vue
+++ b/src/components/Global/TableDateFilter.vue
@@ -12,6 +12,7 @@
v-model="fromDate"
placeholder="YYYY-MM-DD"
:state="getValidationState($v.fromDate)"
+ class="form-control-with-button"
@blur="$v.fromDate.$touch()"
/>
<b-form-invalid-feedback role="alert">
@@ -58,6 +59,7 @@
v-model="toDate"
placeholder="YYYY-MM-DD"
:state="getValidationState($v.toDate)"
+ class="form-control-with-button"
@blur="$v.toDate.$touch()"
/>
<b-form-invalid-feedback role="alert">
@@ -163,12 +165,3 @@ export default {
}
};
</script>
-
-<style lang="scss" scoped>
-.b-form-datepicker {
- position: absolute;
- right: 0;
- top: 0;
- z-index: $zindex-dropdown + 1;
-}
-</style>