Skip to content
This repository was archived by the owner on Apr 1, 2021. It is now read-only.

Commit 28566ee

Browse files
committed
fixed: datepicker style
1 parent 5888be1 commit 28566ee

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
3333

3434
ENV COMPOSER_ALLOW_SUPERUSER=1
3535
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
36-
COPY composer.json composer.json
37-
COPY composer.lock composer.lock
3836
RUN composer config -g repos.packagist composer https://packagist.jp
3937
RUN composer global require hirak/prestissimo
38+
COPY composer.json composer.json
39+
COPY composer.lock composer.lock
4040
RUN composer install \
4141
--prefer-dist \
4242
--no-ansi \

resources/js/coreui/views/sample/base/Forms.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@
357357
label="Select"
358358
label-for="basicMultiSelect"
359359
>
360-
<b-select2
360+
<b-select-2
361361
id="basicMultiSelect"
362362
v-model="select2"
363363
:options="[

resources/js/coreui/views/sample/icons/SimpleLineIcons.vue

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -425,8 +425,11 @@
425425
<i class="icon-screen-tablet icons font-2xl d-block mt-4" />icon-screen-tablet
426426
</b-col>
427427

428-
<b-col>
429-
cols="6" sm="4" md="3">
428+
<b-col
429+
cols="6"
430+
sm="4"
431+
md="3"
432+
>
430433
<i class="icon-magic-wand icons font-2xl d-block mt-4" />icon-magic-wand
431434
</b-col>
432435

resources/sass/coreui/style.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,4 @@ $simple-line-font-path: '~simple-line-icons/fonts/';
3535
@import 'custom';
3636
@import 'vendors/vue-notification/notification';
3737
@import 'vendors/vue-loading-spinner/spinner';
38+
@import 'vendors/vue-datepicker/datepicker';
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.vdp-datepicker {
2+
> .input-group {
3+
> .form-control:not(:disabled) {
4+
background-color: transparent;
5+
}
6+
}
7+
}

0 commit comments

Comments
 (0)