123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- // @import "~@less/mixin.less";
- .del-box{
- position: absolute;
- width: 206px;
- height: 106px;
- box-shadow: 2px 2px 5px rgba(0,0,0,.4);
- background: #fff;
- z-index: 66;
- text-align: center;
- padding: 20px;
- right: -30px;
- top: 40px;
- }
- .del-con{
- position: relative;
- .del-tri{
- width: 0;
- height: 0;
- border-width: 10px;
- border-style: solid;
- border-color: transparent transparent #fff transparent;
- position: absolute;
- top: -40px;
- right: 10px;
- }
- .del-title{
- margin-bottom: 19px;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .del-foot{
- .del-btn{
- display: inline-block;
- width: 63px;
- height: 26px;
- line-height: 26px;
- text-align: center;
- cursor: pointer;
- }
- .del-del{
- color: #fff;
- background: #EC3E3E;
- margin: 0 20px 0 10px;
- }
- .del-cancel{
- color:#000;
- background: #E5E5E5;
- }
- }
- }
|