

    
.comps-view {

    
    .placeholde {
        color: white;
        background-color: #b8b9bb;
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

    
    .comp-operation {

        /**
        * 操作区
        */
        .operation {
            // position: absolute;
            display: none;
            top: 0;
            width: 34px;
            z-index: 99;

            .item {
                cursor: pointer;
                position: absolute;
                z-index: 99;

                .delete {
                    background-color: white;
                    border-radius: 10px;
                }
            }
        }

        &:hover {
            .operation {
                display: block;
            }
        }
    }

    /**
     * 选中
     */
   .active {
     /**
        * 操作区
        */
        .operation {

            .item {
                right: -10px;
                top: -10px;
            }
        }

        border: none !important;

    }

     /**
     * 未选中
     */
   .inactive {
      /**
       * 操作区
       */
       .operation {

           .item {
            right: -8px;
            top: -8px;
           }
       }
   }
}


