56 lines
904 B
Plaintext
56 lines
904 B
Plaintext
/* packageE/cube/cube.wxss */
|
|
.component-wrapper {
|
|
width: 100vw;
|
|
}
|
|
|
|
.decorate-cube {
|
|
position: relative;
|
|
width: 100vw;
|
|
}
|
|
|
|
.decorate-cube .cube-selected {
|
|
position: absolute;
|
|
background-color: #fff;
|
|
|
|
/* border: 1px solid #ebedf0; */
|
|
text-align: center;
|
|
color: #7d7e80;
|
|
cursor: pointer;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.decorate-cube .cube-selected.cube-selected-click {
|
|
background: #e0edff;
|
|
|
|
/* border: 1px solid #155bd4; */
|
|
color: #29ba9c;
|
|
z-index: 2;
|
|
cursor: auto;
|
|
}
|
|
|
|
.decorate-cube .cube-selected-text {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.decorate-cube .cube-row {
|
|
float: left;
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.decorate-cube .cube-item {
|
|
background: #f8f8f8;
|
|
|
|
/* border-left: 1px solid #e5e5e5; */
|
|
|
|
/* border-bottom: 1px solid #e5e5e5; */
|
|
cursor: pointer;
|
|
text-align: center;
|
|
box-sizing: border-box;
|
|
}
|