feat: 更换选中样式为黑边框,取消未选中的灰度化
This commit is contained in:
parent
22db97e502
commit
14cba39b15
|
@ -849,26 +849,18 @@ export default {
|
||||||
.type {
|
.type {
|
||||||
position: relative;
|
position: relative;
|
||||||
box-sizing: content-box;
|
box-sizing: content-box;
|
||||||
border: 1px solid #ccc;
|
border: 2px solid #0000;
|
||||||
border-bottom: 3px solid #ccc;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
filter: grayscale(1);
|
|
||||||
}
|
}
|
||||||
.type.selected {
|
.type.selected {
|
||||||
filter: unset;
|
border: 2px solid #000;
|
||||||
}
|
}
|
||||||
.type.selected,
|
|
||||||
.result.selected {
|
.result.selected {
|
||||||
position: relative;
|
position: relative;
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
background: white;
|
background: white;
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
.type.selected {
|
|
||||||
transform: translateX(0px) translateY(2px);
|
|
||||||
border: 1px solid #ccc;
|
|
||||||
border-bottom: 1px solid #ccc;
|
|
||||||
}
|
|
||||||
.ner-box {
|
.ner-box {
|
||||||
position: relative;
|
position: relative;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
|
Loading…
Reference in New Issue