You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
1.7 KiB
CSS

* {
cursor: default;
}
.___scraping___tool___ {
position: fixed;
right: 32px;
top: 32px;
background-color: red;
color: white;
padding: 8px;
z-index: 999999999;
}
.___scraping___tool___overlay {
pointer-events: none;
/* opacity: 0.4; */
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 999999990;
}
.___scraping___tool___overlay.___scraping___tool___active {
/* background-color: rgba(240, 0, 0, 0.4); */
font-family: sans-serif;
font-weight: normal;
}
.___scraping___tool___hover, .___scraping___tool___selection, .___scraping___tool___secondarySelection, .___scraping___tool___tooltip {
position: absolute;
z-index: 999999991;
}
.___scraping___tool___hover, .___scraping___tool___selection, .___scraping___tool___secondarySelection {
box-sizing: border-box;
border: 1px solid black;
}
.___scraping___tool___hover {
background-color: rgba(216, 61, 255, 0.4);
border-color: rgba(140, 21, 170, 0.4);
z-index: 999999992;
}
.___scraping___tool___selection {
background-color: rgba(0, 255, 0, 0.4);
border-color: rgba(0, 184, 0, 0.4);
}
.___scraping___tool___tooltip {
background-color: black;
color: white;
padding: .2em .4em;
font-family: sans-serif;
font-weight: normal;
}
.___scraping___tool___secondarySelection {
background-color: rgba(181, 238, 233, 0.4);
border-color: rgba(80, 185, 177, 0.4);
}
.___scraping___tool___candidatePicker {
pointer-events: initial;
z-index: 999999995;
position: absolute;
left: 16px;
top: 16px;
padding: .6em 1em;
background-color: rgba(43, 43, 43, 0.9);
color: white;
}
.___scraping___tool___candidate {
padding: .2em .5em;
font-size: 15px;
}
.___scraping___tool___candidate:hover {
background-color: rgb(88, 88, 88);
}