
@media screen and (min-width:0\0) and (min-resolution:.001dpcm) { 
    .miniux-button-saving .miniux-button-inverse:before {
        background-image: url('./image/save-ie9-btn.gif') !important;
    }
}
.miniux-button-saving{
    opacity: 0.7;
    filter: alpha(opacity=70);
    padding: 0px !important;
    text-align: center !important;
}

.miniux-button-inverse{
    width: 20px;
    height: 20px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px; 
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    margin-bottom: 3px;
}
.miniux-button-saving .miniux-button-inverse:before,
.miniux-button-inverse.loading:before{
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    -webkit-animation: buttonSavingRotate 400ms linear infinite;
    animation: buttonSavingRotate 400ms linear infinite;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-image: url('./image/save_loading.png');
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -10px;
}
.miniux-button-saving .miniux-button-inverse-gray:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    -webkit-animation: buttonSavingRotate 400ms linear infinite;
    animation: buttonSavingRotate 400ms linear infinite;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-image: url('./image/loading-gray.png');
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -10px;
}


@keyframes buttonSavingRotate {
    0% {
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    50% {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }