sbPublic.scss 1.27 KB
@import '~@/styles/element-ui.scss';

.from-clues {
  height: 100%;
  width: 100%;
  min-width: 1280px;
  box-sizing: border-box;
  overflow-x: hidden;
  padding: 2px;

  &-header {
    width: 100%;
    padding: 5px 30px 20px 24px;
    box-sizing: border-box;
    background-size: 100% 100%;
    background: #FFFFFF;
    border-radius: 4px;
  }

  &-content {
    width: 100%;
    box-sizing: border-box;
    margin-top: 15px;
    background: #FFFFFF;
    border-radius: 4px;
    background-size: 100% 100%;
    padding: 22px 42px 20px;
  }



  .el-form--inline .el-form-item {
    width: auto;
    margin-right: 0px;

    .el-form-item__content {
      width: auto;
    }
  }

  .el-form-item--small.el-form-item {
    margin-bottom: 0px;
  }
}

/* --------------进度条美化---------------- */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-track {
  width: 7px;
  background-color: rgba(255, 255, 255, 0);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(207, 208, 209);
  background-clip: padding-box;
  min-height: 28px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(162, 164, 167);
}