ClipboardManager/src/style/cpns/clip-full-data.less
2022-08-15 16:22:07 +08:00

41 lines
814 B
Plaintext

.clip-full {
z-index: 9999999999;
position: fixed;
top: 0;
height: 100%;
width: 60%;
color: @text-color;
background: @bg-color;
padding: 0px 20px 0px 20px;
overflow-y: scroll;
word-break: break-all;
white-space: pre-wrap;
&::-webkit-scrollbar {
width: 5px;
height: 10px;
}
&::-webkit-scrollbar-track {
border-radius: 2px;
background-color: @bg-color;
&-piece {
border-radius: 2px;
background-color: @bg-color;
}
}
&::-webkit-scrollbar-thumb {
background: @bg-color;
border-radius: 2px;
}
&::-webkit-scrollbar-thumb:hover {
background: @nav-bg-color;
}
}
.clip-overlay {
z-index: 999999999;
position: fixed;
top: 0;
height: 100%;
width: 100%;
background: rgba(0, 0, 0, 0.5);
}