2023-04-13 10:00:24 +08:00
|
|
|
.excel-codeWrap {
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
padding: 0 0 8px;
|
|
|
|
|
|
|
|
|
|
.excel-codeBox {
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
background: #fff;
|
|
|
|
|
box-sizing: content-box;
|
|
|
|
|
border: 1px solid #e5e5e5;
|
|
|
|
|
|
2023-04-13 16:42:57 +08:00
|
|
|
span {
|
|
|
|
|
font-family: Liberation Mono, LiberationMonoRegular, Courier New, monospace;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.CodeMirror-code {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-13 13:26:43 +08:00
|
|
|
.CodeMirror-scroll {
|
|
|
|
|
overflow-x: visible !important;
|
|
|
|
|
padding: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.CodeMirror-sizer {
|
|
|
|
|
margin-left: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.CodeMirror-gutters {
|
|
|
|
|
border-right: none;
|
|
|
|
|
background-color: #f7f7f7;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
display: none;
|
2023-04-13 10:00:24 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.excel-codeBox-keyboard {
|
|
|
|
|
width: 272px;
|
|
|
|
|
min-height: 232px;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
border: 1px solid #e5e5e5;
|
|
|
|
|
border-left: none;
|
|
|
|
|
|
|
|
|
|
.excel-codeBox-keyboard-operate {
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
.excel-codeBox-keyboard-operate-content {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
|
|
.excel-codeBox-keyboard-base {
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin: 0 10px 10px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.excel-codeBox-keyboard-space {
|
|
|
|
|
width: 70px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.excel-codeBox-keyboard-operate-clear {
|
|
|
|
|
width: 30px;
|
|
|
|
|
|
|
|
|
|
.excel-codeBox-keyboard-del {
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 70px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.excel-codeBox-keyboard-clear {
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.excel-codeAction {
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
|
|
.excel-codeAction-item:last-child {
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
|
|
|
|
|
.excel-codeAction-header-title {
|
|
|
|
|
color: rgb(217, 82, 189);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.excel-codeAction-item {
|
|
|
|
|
width: 33%;
|
|
|
|
|
min-height: 317px;
|
|
|
|
|
flex: 1;
|
|
|
|
|
background: #fff;
|
|
|
|
|
border: 1px solid #e5e5e5;
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
|
|
|
|
|
.excel-codeAction-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
padding: 10px 16px;
|
|
|
|
|
border-bottom: 1px solid #e5e5e5;
|
|
|
|
|
|
|
|
|
|
.excel-codeAction-header-title {
|
|
|
|
|
flex: 1;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|