BesService/styles.css
Aljaz Grilc 5d9d22bfef Refactor correction panel creation to support scroll functionality
This feature is not fully tested, there are still some bugs left, i.e., after scroll event the popup is unavailable
2024-02-09 10:38:31 +01:00

37 lines
1018 B
CSS

/* Mistake types styles */
.bes-typo-mistake {
border-bottom: 2px solid red;
position: absolute;
z-index: 2;
cursor: text;
pointer-events: none;
/* text-decoration: underline;
text-decoration-color: red;
cursor: text; */
}
.bes-correction-panel-scroll {
pointer-events: none !important;
box-shadow: initial !important;
box-sizing: initial !important;
cursor: initial !important;
display: block !important;
float: initial !important;
max-height: initial !important;
min-height: initial !important;
max-width: initial !important;
min-width: initial !important;
position: absolute !important;
height: initial !important;
width: initial !important;
animation: auto ease 0s 1 normal none running none !important;
background: transparent !important;
border-width: initial !important;
border-style: none !important;
border-color: initial !important;
border-image: initial !important;
margin: 0px !important;
outline: initial !important;
padding: 0px !important;
}