274 lines
6.0 KiB
CSS
274 lines
6.0 KiB
CSS
.matrix-tool-workspace {
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
padding: 10px;
|
|
color: #24313d;
|
|
background: var(--matrix-color-surface-muted, #dce8f1);
|
|
font-family: Arial, sans-serif;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.matrix-tool-workspace #PageFrame {
|
|
width: 100%;
|
|
}
|
|
|
|
.matrix-tool-workspace .matrix-tool-workspace__content {
|
|
position: relative !important;
|
|
z-index: 1 !important;
|
|
top: auto !important;
|
|
left: auto !important;
|
|
right: auto !important;
|
|
width: min(100%, 1280px) !important;
|
|
margin: 0 auto !important;
|
|
border: 1px solid #cbd5df;
|
|
border-radius: 5px;
|
|
background: #fff;
|
|
box-shadow: 0 2px 8px rgba(31, 52, 72, .08);
|
|
}
|
|
|
|
.matrix-tool-workspace .matrix-tool-workspace__content > .title {
|
|
display: flex;
|
|
min-height: 38px;
|
|
align-items: center;
|
|
gap: 7px;
|
|
padding: 7px 10px;
|
|
color: #24313d;
|
|
border-bottom: 2px solid #aeb8c2;
|
|
border-radius: 5px 5px 0 0;
|
|
background: #eef1f4;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.matrix-tool-workspace .matrix-tool-workspace__content > .title img {
|
|
width: 16px;
|
|
height: 16px;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.matrix-tool-workspace .matrix-tool-workspace__content > .title img:last-child {
|
|
margin-left: auto;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.matrix-tool-workspace .FormPanel {
|
|
padding: 10px;
|
|
border: 0;
|
|
background: transparent;
|
|
}
|
|
|
|
.matrix-tool-workspace #filtertab {
|
|
width: 100% !important;
|
|
margin-bottom: 10px;
|
|
padding: 8px;
|
|
border: 1px solid #d7dee6 !important;
|
|
border-radius: 4px;
|
|
background: #f8fafc;
|
|
}
|
|
|
|
.matrix-tool-workspace #filtertab > tbody > tr > td {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: end;
|
|
gap: 8px;
|
|
padding: 7px;
|
|
}
|
|
|
|
.matrix-tool-workspace #filtertab .widget {
|
|
display: flex;
|
|
min-width: 130px;
|
|
flex: 1 1 150px;
|
|
flex-direction: column;
|
|
float: none;
|
|
gap: 3px;
|
|
margin: 0;
|
|
}
|
|
|
|
.matrix-tool-workspace #filtertab .lblcontainer,
|
|
.matrix-tool-workspace #filtertab .inputcontainer,
|
|
.matrix-tool-workspace #filtertab .divselect {
|
|
width: 100% !important;
|
|
height: auto;
|
|
padding: 0 !important;
|
|
float: none;
|
|
}
|
|
|
|
.matrix-tool-workspace #filtertab input[type="text"],
|
|
.matrix-tool-workspace #filtertab select,
|
|
.matrix-tool-workspace #alloclist select {
|
|
width: 100% !important;
|
|
min-height: 30px;
|
|
padding: 3px 7px;
|
|
border: 1px solid #aebdca;
|
|
border-radius: 3px;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.matrix-tool-workspace #filtertab br {
|
|
display: none;
|
|
}
|
|
|
|
.matrix-tool-workspace .tableContainer {
|
|
width: 100%;
|
|
overflow: auto;
|
|
border: 1px solid #cbd5df;
|
|
border-radius: 4px;
|
|
background: #fff;
|
|
}
|
|
|
|
.matrix-tool-workspace .tableContainer table {
|
|
width: 100%;
|
|
min-width: 760px;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.matrix-tool-workspace .tableContainer thead td {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 2;
|
|
padding: 7px 6px;
|
|
color: #2d3b47;
|
|
border-bottom: 1px solid #b8c5d1;
|
|
background: #e6edf3;
|
|
font-size: 11px !important;
|
|
font-weight: 700;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.matrix-tool-workspace .tableContainer tbody td {
|
|
padding: 6px !important;
|
|
border-bottom: 1px solid #e1e7ed !important;
|
|
font-size: 11px !important;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.matrix-tool-workspace .tableContainer tbody tr:hover {
|
|
background: #f2f7fb;
|
|
}
|
|
|
|
.matrix-tool-workspace input.button {
|
|
width: auto !important;
|
|
min-height: 30px;
|
|
margin: 0 !important;
|
|
padding: 4px 10px !important;
|
|
float: none !important;
|
|
border: 1px solid #7f8b96;
|
|
border-radius: 3px;
|
|
background: #e5e8eb;
|
|
color: #24313d;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.matrix-tool-workspace input.button:hover {
|
|
background: #d8dde2;
|
|
}
|
|
|
|
.matrix-tool-workspace #gsms {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: 9px;
|
|
max-width: 680px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.matrix-tool-workspace #gsms > br { display: none; }
|
|
|
|
.matrix-tool-workspace #gsms > .widget {
|
|
display: flex;
|
|
width: 100%;
|
|
flex-direction: column;
|
|
float: none;
|
|
gap: 3px;
|
|
margin: 0;
|
|
}
|
|
|
|
.matrix-tool-workspace #gsms .lblcontainer,
|
|
.matrix-tool-workspace #gsms .inputcontainer {
|
|
width: 100% !important;
|
|
padding: 0 !important;
|
|
float: none;
|
|
}
|
|
|
|
.matrix-tool-workspace #gsms input[type="text"],
|
|
.matrix-tool-workspace #gsms textarea {
|
|
width: 100% !important;
|
|
padding: 5px 7px;
|
|
border: 1px solid #aebdca;
|
|
border-radius: 3px;
|
|
background: #fff;
|
|
}
|
|
|
|
.matrix-tool-workspace #gsms textarea {
|
|
min-height: 90px;
|
|
resize: vertical;
|
|
}
|
|
|
|
.matrix-tool-workspace #gsms #receipents {
|
|
width: calc(100% - 28px) !important;
|
|
}
|
|
|
|
.matrix-tool-workspace .matrix-form-controls {
|
|
width: 100%;
|
|
border-collapse: separate;
|
|
border-spacing: 0 7px;
|
|
}
|
|
|
|
.matrix-tool-workspace .matrix-form-controls > tbody > tr > td:not(#linkdiv) {
|
|
padding: 8px;
|
|
}
|
|
|
|
.matrix-tool-workspace .matrix-form-controls .widget {
|
|
margin: 2px 6px 4px 0;
|
|
}
|
|
|
|
.matrix-tool-workspace #linkdiv > td {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 5px;
|
|
padding: 7px;
|
|
border: 1px solid #d7dee6 !important;
|
|
border-radius: 4px;
|
|
background: #f8fafc;
|
|
}
|
|
|
|
.matrix-tool-workspace #linkdiv .linkbutton,
|
|
.matrix-tool-workspace #advslink {
|
|
display: inline-flex !important;
|
|
align-items: center;
|
|
gap: 4px;
|
|
margin: 0 !important;
|
|
padding: 5px 8px;
|
|
float: none !important;
|
|
border: 1px solid #c5d0da;
|
|
border-radius: 3px;
|
|
background: #fff;
|
|
cursor: pointer;
|
|
text-decoration: none !important;
|
|
}
|
|
|
|
.matrix-tool-workspace #linkdiv .linkbutton:hover,
|
|
.matrix-tool-workspace #advslink:hover {
|
|
border-color: #8799a9;
|
|
background: #edf3f7;
|
|
}
|
|
|
|
.matrix-tool-workspace #fraudlist button {
|
|
padding: 4px 10px;
|
|
border: 1px solid #71808d;
|
|
border-radius: 3px;
|
|
background: #e5e8eb;
|
|
color: #24313d;
|
|
}
|
|
|
|
.matrix-tool-workspace #btnfind {
|
|
min-width: 34px;
|
|
background-image: url('/matrix/images/filter.png');
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
@media (max-width: 700px) {
|
|
.matrix-tool-workspace { padding: 5px; }
|
|
.matrix-tool-workspace #filtertab .widget { flex-basis: 100%; }
|
|
}
|