.popoverContent{
    width: 500px;
    .popoverBtn{
        text-align: right;
    }
}
.toolButton{
    border-radius: 0px;
    background-color: transparent;
    border: none;
    height: 32px;
    // 图标放文字上面
    .anticon {
        display: block;
        font-size: 14px;
        text-align: center;
    }
    // 设置按钮的右分隔线
    > button {
        height: 36px;
        font-size: 8px;
        border:none;
        border-right: 1px solid  #d9d9d9;
        -webkit-box-shadow: none; 
        box-shadow: none;
        padding: 0 8px;
    }
    // 设置按钮获取焦点后的样式
    > button:hover, > button:focus{
        color: #40a9ff;
        background: #fff;
        border-color: #d9d9d9;
    }
    // > :last-child{
    //     border:none; // 左右按钮的样式是共享的
    // }
}

// .toolButton:hover{
//     background-color: transparent;
// }
// .toolButton[disabled="true"]{
//     color: #d9d9d9;
//     background-color: transparent;
// }
// .toolButton[disabled="true"]:hover{
//     background-color: transparent;
// }