2022-09-19 12:21:49 +00:00
|
|
|
.rtfscan-wizard {
|
2024-03-31 10:32:03 +00:00
|
|
|
min-width: 700px;
|
|
|
|
min-height: 550px;
|
2024-07-04 14:54:04 +00:00
|
|
|
|
2022-09-19 12:21:49 +00:00
|
|
|
wizardpage {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2024-07-04 14:54:04 +00:00
|
|
|
overflow: visible; // prevents focus ring from being clipped
|
|
|
|
|
2022-09-19 12:21:49 +00:00
|
|
|
> div {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2024-07-04 14:54:04 +00:00
|
|
|
|
2022-09-19 12:21:49 +00:00
|
|
|
p {
|
|
|
|
display: inline;
|
|
|
|
}
|
2024-07-04 14:54:04 +00:00
|
|
|
|
|
|
|
.file-inputs {
|
|
|
|
margin-top: 1em;
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: [label] fit-content(20%) [input] auto [button] fit-content(33%);
|
|
|
|
gap: 10px 5px;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
label, input {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2022-09-19 12:21:49 +00:00
|
|
|
|
2024-07-04 14:54:04 +00:00
|
|
|
@media (-moz-platform: macos) {
|
|
|
|
button {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.example, .page-start-1, .page-start-2 {
|
2022-09-19 12:21:49 +00:00
|
|
|
display: block;
|
|
|
|
}
|
2024-07-04 14:54:04 +00:00
|
|
|
|
2022-09-19 12:21:49 +00:00
|
|
|
.example {
|
|
|
|
line-height: 1.5em
|
|
|
|
}
|
2024-07-04 14:54:04 +00:00
|
|
|
|
2022-09-19 12:21:49 +00:00
|
|
|
.page-start-1 {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
2024-07-04 14:54:04 +00:00
|
|
|
|
2022-09-19 12:21:49 +00:00
|
|
|
.page-start-2 {
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
2024-07-04 14:54:04 +00:00
|
|
|
|
2022-09-19 12:21:49 +00:00
|
|
|
.citations-page > .wizard-body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2024-07-04 14:54:04 +00:00
|
|
|
|
2022-09-19 12:21:49 +00:00
|
|
|
.table-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex: 1 0 auto;
|
|
|
|
margin-top: 1.5em;
|
|
|
|
|
2024-07-04 14:54:04 +00:00
|
|
|
.virtualized-table {
|
|
|
|
.row {
|
|
|
|
&.odd:not(.selected) {
|
|
|
|
background-color: var(--material-stripe);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.even:not(.selected) {
|
|
|
|
background-color: var(--material-background);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#tree {
|
2022-09-19 12:21:49 +00:00
|
|
|
display: flex;
|
|
|
|
flex: 1 0 auto;
|
2023-10-16 11:40:59 +00:00
|
|
|
background: var(--material-background70);
|
2022-09-19 12:21:49 +00:00
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
2024-07-04 14:54:04 +00:00
|
|
|
height: 0;
|
2022-09-19 12:21:49 +00:00
|
|
|
}
|
2024-07-04 14:54:04 +00:00
|
|
|
|
2022-09-19 12:21:49 +00:00
|
|
|
.virtualized-table-body {
|
|
|
|
display: flex;
|
2024-07-04 14:54:04 +00:00
|
|
|
|
2022-09-19 12:21:49 +00:00
|
|
|
.windowed-list {
|
|
|
|
flex: 1 0 auto;
|
|
|
|
}
|
|
|
|
}
|
2024-01-10 15:29:22 +00:00
|
|
|
|
2024-07-04 14:54:04 +00:00
|
|
|
.cell.action > button {
|
|
|
|
@include focus-ring(true);
|
|
|
|
appearance: none;
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
|
|
|
width: 19px;
|
|
|
|
height: 19px;
|
|
|
|
padding: 0;
|
|
|
|
margin: 1px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: var(--fill-quinary);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$-icons: (document-accept, link);
|
2024-01-10 15:29:22 +00:00
|
|
|
@each $icon in $-icons {
|
|
|
|
.icon-css.icon-#{$icon} {
|
2024-07-04 14:54:04 +00:00
|
|
|
@include svgicon($icon, "universal", "16");
|
2024-01-10 15:29:22 +00:00
|
|
|
@include focus-states using ($color) {
|
2024-07-04 14:54:04 +00:00
|
|
|
@if $color =="white" {
|
|
|
|
fill: var(--accent-white);
|
|
|
|
}
|
|
|
|
@else {
|
|
|
|
fill: var(--fill-secondary);
|
|
|
|
}
|
2024-01-10 15:29:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-07-04 14:54:04 +00:00
|
|
|
|
|
|
|
@media (-moz-platform: macos) {
|
|
|
|
|
|
|
|
// override to make it a bit taller
|
|
|
|
--style-configurator-richlistitem-max-height: 300px;
|
|
|
|
|
|
|
|
input {
|
|
|
|
@include focus-ring;
|
|
|
|
background-color: var(--material-background);
|
|
|
|
border-radius: 5px;
|
|
|
|
border: var(--material-border-quinary) !important;
|
|
|
|
color: var(--fill-primary);
|
|
|
|
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.20);
|
|
|
|
padding-left: 7px;
|
|
|
|
padding-right: 7px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|