104 lines
2.5 KiB
CSS
104 lines
2.5 KiB
CSS
.matrix-case-download .matrix-tool-workspace__content {
|
|
width: calc(100% - 24px) !important;
|
|
max-width: 920px !important;
|
|
background: #f4f8fb;
|
|
}
|
|
|
|
.matrix-case-download .matrix-tool-workspace__content > .title .divselect {
|
|
width: min(320px, 38vw) !important;
|
|
margin-left: auto;
|
|
position: static !important;
|
|
}
|
|
|
|
.matrix-case-download .matrix-tool-workspace__content > .title select {
|
|
width: 100% !important;
|
|
min-height: 28px;
|
|
}
|
|
|
|
.matrix-case-download .matrix-upload-cases__panel {
|
|
margin: 10px;
|
|
padding: 12px;
|
|
border: 1px solid #c5d3de;
|
|
border-radius: 5px;
|
|
background: #edf3f7;
|
|
}
|
|
|
|
.matrix-case-download .matrix-form-controls {
|
|
margin: 0;
|
|
}
|
|
|
|
.matrix-case-download .matrix-upload-cases__fields {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
align-items: end;
|
|
gap: 12px 16px;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.matrix-case-download .matrix-upload-cases__fields > .widget {
|
|
display: flex;
|
|
width: 100%;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
margin: 0;
|
|
}
|
|
|
|
.matrix-case-download .matrix-upload-cases__fields .lblcontainer,
|
|
.matrix-case-download .matrix-upload-cases__fields .inputcontainer {
|
|
width: 100% !important;
|
|
height: auto;
|
|
padding: 0 !important;
|
|
float: none;
|
|
}
|
|
|
|
.matrix-case-download .matrix-upload-cases__fields input[type="text"],
|
|
.matrix-case-download .matrix-upload-cases__fields input[type="file"] {
|
|
width: 100% !important;
|
|
min-height: 30px;
|
|
padding: 4px 7px;
|
|
border: 1px solid #9fb1c1;
|
|
border-radius: 3px;
|
|
background: #fff;
|
|
}
|
|
|
|
.matrix-case-download .matrix-download-mode,
|
|
.matrix-case-download .matrix-download-domain {
|
|
display: inline-flex;
|
|
min-height: 30px;
|
|
align-items: center;
|
|
padding: 4px 8px !important;
|
|
border: 1px solid #c3d1dc;
|
|
border-radius: 3px;
|
|
background: #f8fafc;
|
|
color: #294f70 !important;
|
|
font-weight: 700;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.matrix-case-download #btndownload {
|
|
grid-column: 2;
|
|
justify-self: end;
|
|
min-width: 110px;
|
|
}
|
|
|
|
@media (max-width: 680px) {
|
|
.matrix-case-download .matrix-tool-workspace__content {
|
|
width: 100% !important;
|
|
}
|
|
|
|
.matrix-case-download .matrix-tool-workspace__content > .title,
|
|
.matrix-case-download .matrix-upload-cases__fields {
|
|
grid-template-columns: 1fr;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.matrix-case-download .matrix-tool-workspace__content > .title .divselect {
|
|
width: 100% !important;
|
|
order: 3;
|
|
}
|
|
|
|
.matrix-case-download #btndownload {
|
|
grid-column: 1;
|
|
}
|
|
}
|