Jhipster:运行时生产环境的css与本地开发环境不同

时间:2017-12-12 08:18:21

标签: css jhipster bootbox

我正在使用bootbox显示一个对话框:

bootbox.confirm({
  message: "Confirmez-vous l'envoi de la demande de CRA ?",
  backdrop: false,
  className: "on-top-bootbox-alert-2",
  buttons: {
    confirm: {
        label: 'Oui',
        className: 'btn-success'
    },
    cancel: {
        label: 'Non',
        className: 'btn-danger'
    }
  },

在我的main.css中:

.on-top-bootbox-alert-2 {
    z-index: 9999 !important;
}

当我运行war(使用dev和prod配置文件)时,bootbox不会显示,因为on-top-bootbox-alert-2的z-index的值为7.

enter image description here

当我点击main.css时,我得到的值为9999。

enter image description here

当我从IntelliJ运行应用程序时,问题不会发生。

构建过程有问题吗?我已经习惯于2年以来建立这个应用程序,这是我第一次遇到这个问题。

1 个答案:

答案 0 :(得分:1)

编辑build.js解决了我的问题:
.pipe(cssnano)

.pipe(cssnano,{
            zindex:false
        });