85 lines
1.5 KiB
SCSS
85 lines
1.5 KiB
SCSS
.content-inner {
|
|
position: absolute;
|
|
|
|
&.dragging {
|
|
pointer-events: none !important;
|
|
}
|
|
}
|
|
|
|
.content-container {
|
|
position: relative;
|
|
}
|
|
|
|
.right-container {
|
|
padding: 0;
|
|
width: var(--workload-width);
|
|
min-width: var(--workload-width);
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
::ng-deep .right-title {
|
|
min-height: 70px;
|
|
display: flex;
|
|
border-bottom: 1px solid var(--iqser-separator);
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0 24px;
|
|
|
|
> div {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
> *:not(:last-child) {
|
|
margin-right: 16px;
|
|
}
|
|
}
|
|
}
|
|
|
|
::ng-deep .right-content {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex: 1;
|
|
}
|
|
|
|
&.documine-container {
|
|
width: calc(100% - var(--structured-component-management-width));
|
|
}
|
|
}
|
|
|
|
.analysis-progress {
|
|
padding: 12px 20px;
|
|
max-width: 400px;
|
|
width: 400px;
|
|
}
|
|
|
|
redaction-pdf-viewer.hidden {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.resize {
|
|
background: #444857;
|
|
height: 100%;
|
|
width: 14px;
|
|
cursor: col-resize;
|
|
position: relative;
|
|
z-index: 10;
|
|
user-select: none;
|
|
}
|
|
.resize::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: 3px;
|
|
height: 15px;
|
|
border-inline: 1px solid #fff;
|
|
}
|
|
|
|
@media only screen and (max-width: 1015px) {
|
|
.label {
|
|
display: none;
|
|
}
|
|
}
|