@logicflow/dumi-theme-simple
Version:
Simple website theme based on dumi2.
64 lines (53 loc) • 1.07 kB
text/less
@import '../_.less';
@tool-width: 28px;
.preview {
position: relative;
.ul {
position: absolute;
list-style: none;
padding: 0;
margin: 0;
margin-left: -@tool-width;
left: 0;
top: 0;
display: none;
background: #eee;
width: @tool-width;
border-bottom-left-radius: 4px;
border-top-left-radius: 4px;
.li {
list-style-type: none ;
cursor: pointer;
margin: 0 ;
padding: 0 ;
display: flex;
align-items: center;
justify-content: center;
width: @tool-width;
height: @tool-width;
}
.li:hover {
color: @primary-color;
}
.li:active {
transform: scale(1.1);
}
}
.ul:hover {
display: block;
}
.loading {
display: block;
color: @primary-color;
padding: 0.25rem 0;
border-left: 3px solid @primary-color;
padding-left: 12px;
}
.error {
display: block;
color: #fb1716;
padding: 0.25rem 0;
border-left: 3px solid #ff0000;
padding-left: 12px;
}
}