Skip to content

Commit

Permalink
fixed: ローディングにおいてスクロールが表示される #3
Browse files Browse the repository at this point in the history
  • Loading branch information
Remicck committed Jan 10, 2020
1 parent c926fce commit 68c68ae
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions resources/nuxt/assets/style/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,14 @@ fc-day-header>span
.popupwrap-padding{
padding: 0 0 10px;
}
.loading .v-dialog{
box-shadow: none;
text-align: center;
.loading{
* {
overflow: hidden;
}
.v-dialog{
box-shadow: none;
text-align: center;
}
}

/***************************************
Expand Down

3 comments on commit 68c68ae

@hsekia
Copy link

@hsekia hsekia commented on 68c68ae Feb 27, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

初めまして、hsekiaと申します。
このたびOSS Calendarを使わせていただきたいと思い、インストールしてみたのですが
手順の最初のdocker-compose buildのところで以下のようなエラーが出てしまいました。

Step 7/18 : RUN pecl install mcrypt-1.0.2
 ---> Running in 46b208761da2
[27-Feb-2020 09:46:46 UTC] PHP Warning:  PHP Startup: Unable to load dynamic library 'php_mcrypt.dll' (tried: /usr/local/lib/php/extensions/no-debug-non-zts-20170718/php_mcrypt.dll (/usr/local/lib/php/extensions/no-debug-non-zts-20170718/php_mcrypt.dll: cannot open shared object file: No such file or directory), /usr/local/lib/php/extensions/no-debug-non-zts-20170718/php_mcrypt.dll.so (/usr/local/lib/php/extensions/no-debug-non-zts-20170718/php_mcrypt.dll.so: cannot open shared object file: No such file or directory)) in Unknown on line 0
[27-Feb-2020 09:46:46 UTC] PHP Warning:  PHP Startup: Unable to load dynamic library 'php_fileinfo.dll' (tried: /usr/local/lib/php/extensions/no-debug-non-zts-20170718/php_fileinfo.dll (/usr/local/lib/php/extensions/no-debug-non-zts-20170718/php_fileinfo.dll: cannot open shared object file: No such file or directory), /usr/local/lib/php/extensions/no-debug-non-zts-20170718/php_fileinfo.dll.so (/usr/local/lib/php/extensions/no-debug-non-zts-20170718/php_fileinfo.dll.so: cannot open shared object file: No such file or directory)) in Unknown on line 0
[27-Feb-2020 09:46:46 UTC] PHP Warning:  PHP Startup: Unable to load dynamic library 'php_gd2.dll' (tried: /usr/local/lib/php/extensions/no-debug-non-zts-20170718/php_gd2.dll (/usr/local/lib/php/extensions/no-debug-non-zts-20170718/php_gd2.dll: cannot open shared object file: No such file or directory), /usr/local/lib/php/extensions/no-debug-non-zts-20170718/php_gd2.dll.so (/usr/local/lib/php/extensions/no-debug-non-zts-20170718/php_gd2.dll.so: cannot open shared object file: No such file or directory)) in Unknown on line 0
downloading mcrypt-1.0.2.tgz ...

buildのこの後のフェーズでも何度か「 PHP Warning: PHP Startup: Unable to load dynamic library」のメッセージが出ております。
手探りでdocker/php-fpm/php.ini の「extension=・・・」の行を削除したところ、エラーは出なくなったのですが
何か他の設定ミスがあったのではないかとも考えております。
原因についてアドバイスをいただけたら大変ありがたいです。

環境は以下の通りです。
CentOS Linux release 7.7.1908 (Core)
Docker version 19.03.6, build 369ce74a3c

(なお、この後にサービスを起動したところ、ログイン時に #5 と同じ現象になっております。)

お忙しいところ恐れいりますが、宜しくお願いいたします。

@Remicck
Copy link
Contributor Author

@Remicck Remicck commented on 68c68ae Mar 3, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ご指摘ありがとうございます。
#5 の部分で、手順とDockerfile周りを整理したいと思っています。

もしそちら側で解決できましたらPRでいただけると助かります!

@hsekia
Copy link

@hsekia hsekia commented on 68c68ae Mar 3, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ご連絡をありがとうございました。
承知いたしました。#5 の方に更新がありましたら確認させていただき、再度試してみます。
(不適切な場所にコメントをつけてしまったかもしれません、申し訳ありません)

Please sign in to comment.