modified-dicom-pacs
Version:
A modified version of DICOM PACS implementation
2,058 lines (2,040 loc) • 123 kB
CSS
:root {
--text-secondary-color: #91b9cd;
--active-color: #20a5d6;
--primary-background-color: #000;
--ui-border-color-dark: #3c5d80;
--sidebar-transition: all 0.3s ease;
}
.ImageThumbnail.active {
border-color: var(--active-color);
box-shadow: none;
transition: var(--sidebar-transition);
}
.ImageThumbnail {
background-color: var(--primary-background-color);
box-shadow: inset 0 0 0 1px var(--ui-border-color-dark);
border: 2px solid transparent;
border-radius: 12px;
height: 135px;
margin: 0 auto;
padding: 5px;
position: relative;
transition: var(--sidebar-transition);
width: 217px;
-moz-background-clip: padding;
-webkit-background-clip: padding;
background-clip: padding-box;
}
.ImageThumbnail .image-thumbnail-loading-indicator {
position: absolute;
left: 50%;
top: 50%;
margin: -22px 0 0 -22px;
display: block;
width: 44px;
height: 44px;
}
.ImageThumbnail .image-thumbnail-loading-indicator:after {
content: " ";
display: block;
width: 32px;
height: 32px;
margin: 1px;
border-radius: 50%;
border: 5px solid var(--ui-border-color-dark);
border-color: var(--ui-border-color-dark) transparent var(--ui-border-color-dark) transparent;
animation: image-thumbnail-loading-indicator 1.2s linear infinite;
}
@-moz-keyframes image-thumbnail-loading-indicator {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@-webkit-keyframes image-thumbnail-loading-indicator {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@-o-keyframes image-thumbnail-loading-indicator {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes image-thumbnail-loading-indicator {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.image-thumbnail-canvas {
height: 100%;
overflow: hidden;
display: flex;
justify-content: center;
}
.image-thumbnail-canvas img {
-webkit-user-drag: none;
pointer-events: none;
}
.thumbnailLoadingIndicator {
display: none;
pointer-events: none;
color: var(--text-secondary-color);
height: 20px;
width: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
position: absolute;
}
.thumbnailLoadingIndicator.d-block {
display: block;
}
.thumbnailLoadingIndicator p {
text-align: center;
font-size: 10pt;
}
.image-thumbnail-progress-bar {
position: relative;
width: 100%;
height: 3px;
top: -5px;
}
.image-thumbnail-progress-bar .image-thumbnail-progress-bar-inner {
height: 100%;
width: 0;
border-radius: 5px;
background-color: var(--active-color);
}
.icon-pulse {
fa-spin: 1s infinite steps(8);
}
.icon-spin {
animation: spin 2s linear infinite;
}
@-moz-keyframes fa-spin {
0% {
transform: rotate(0deg);
}
to {
transform: rotate(1turn);
}
}
@-webkit-keyframes fa-spin {
0% {
transform: rotate(0deg);
}
to {
transform: rotate(1turn);
}
}
@-o-keyframes fa-spin {
0% {
transform: rotate(0deg);
}
to {
transform: rotate(1turn);
}
}
@keyframes fa-spin {
0% {
transform: rotate(0deg);
}
to {
transform: rotate(1turn);
}
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.full-width {
width: 100%;
}
.full-height {
height: 100%;
}
.flex-h {
display: flex;
flex-direction: row;
}
.flex-v {
display: flex;
flex-direction: column;
}
.flex-grow {
flex-grow: 1;
}
.nowrap {
white-space: nowrap;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
.text-left {
text-align: left;
}
h1 {
font-size: 36px;
}
h3,
h1 {
font-family: inherit;
font-weight: 500;
line-height: 1.1;
margin-top: 20px;
margin-bottom: 10px;
}
button,
input,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
.row {
margin-right: -15px;
margin-left: -15px;
}
.pull-left {
float: left !important;
}
.pull-right {
float: right !important;
}
.fade {
opacity: 0;
-webkit-transition: opacity 0.15s linear;
-o-transition: opacity 0.15s linear;
transition: opacity 0.15s linear;
}
.fade.in {
opacity: 1;
}
a {
color: #337ab7;
text-decoration: none;
}
.tooltip {
position: absolute;
z-index: 1070;
display: block;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 1.42857143;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
letter-spacing: normal;
word-break: normal;
word-spacing: normal;
word-wrap: normal;
white-space: normal;
opacity: 0;
line-break: auto;
}
.tooltip.in {
opacity: 0.9;
}
.tooltip.top {
margin-top: -3px;
padding: 5px 0;
}
.tooltip.right {
margin-left: 3px;
padding: 0 5px;
}
.tooltip.bottom {
margin-top: 3px;
padding: 5px 0;
}
.tooltip.left {
margin-left: -3px;
padding: 0 5px;
}
.tooltip.top .tooltip-arrow {
bottom: 0;
left: 50%;
margin-left: -5px;
border-width: 5px 5px 0;
border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
top: 50%;
left: 0;
margin-top: -5px;
border-width: 5px 5px 5px 0;
border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
top: 50%;
right: 0;
margin-top: -5px;
border-width: 5px 0 5px 5px;
border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
top: 0;
left: 50%;
margin-left: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000;
}
.tooltip-inner {
max-width: 200px;
padding: 3px 8px;
color: #fff;
text-align: center;
background-color: #000;
border-radius: 4px;
}
.tooltip-arrow {
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
.tooltip.in {
opacity: 0.9;
}
.sb-container{position:fixed;width:var(--snackbar-size);padding:20px;z-index:var(--snackbar-zIndex);box-sizing:border-box;height:auto}.sb-topLeft{top:0;bottom:auto;left:0;right:auto}.sb-topCenter{left:50%;top:0;bottom:auto;transform:translateX(-50%)}.sb-topRight{top:0;bottom:auto;left:auto;right:0}.sb-bottomLeft{top:auto;bottom:0;left:0;right:auto}.sb-bottomCenter{left:50%;bottom:0;top:auto;transform:translateX(-50%)}.sb-bottomRight{top:auto;bottom:0;left:auto;right:0;margin:10px 0 0}.sb-topCenter .sb-item,.sb-topLeft .sb-item,.sb-topRight .sb-item{margin:10px 0 0}.sb-bottomCenter .sb-item,.sb-bottomLeft .sb-item,.sb-bottomRight .sb-item{margin:0 0 10px}.sb-closeBtn{height:20px;opacity:1;overflow:hidden;padding:2px;text-align:center;text-shadow:none;width:20px;cursor:pointer;position:absolute;right:5px;top:5px;transition:all .3s ease;background:hsla(0,0%,100%,.6);border-radius:100%}.sb-closeBtn:hover{background:#fff}.sb-closeIcon{display:block;font-size:0;height:100%;line-height:0;overflow:hidden;position:relative;width:100%}.sb-closeIcon:after,.sb-closeIcon:before{content:" ";display:block;height:2px;transition:all .3s ease;width:12px;background-color:#222;opacity:1;position:absolute}.sb-closeIcon:before{left:4px;top:3px;transform:rotate(45deg);transform-origin:0 50%}.sb-closeIcon:after{right:3px;top:5px;transform:rotate(-45deg);transform-origin:calc(100% - 3px) 50%}.sb-title{font-size:16px;font-weight:700}.sb-message{font-size:14px;word-break:normal}.sb-item{position:relative;transition:height .3s ease;animation:fadein 1s;padding:20px;color:#fff;overflow:hidden;border-radius:4px;box-shadow:0 6px 10px 0 rgba(0,0,0,.2),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px -1px rgba(0,0,0,.14)}.sb-item a{color:#fff;text-decoration:underline}.sb-container .sb-hidden{padding-top:0;padding-bottom:0;margin-bottom:0;height:0;opacity:0;transition:all .3s ease}.sb-error .sb-action,.sb-info .sb-action,.sb-item .sb-action,.sb-success .sb-action,.sb-warning .sb-action{margin-top:10px;display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:none;color:#fff}.sb-success,.sb-success .sb-action{background-color:var(--snackbar-success)}.sb-error,.sb-error .sb-action{background-color:var(--snackbar-error)}.sb-warning,.sb-warning .sb-action{background-color:var(--snackbar-warning)}.sb-info,.sb-info .sb-action{background-color:var(--snackbar-info)}@keyframes fadein{0%{opacity:0;top:30px}to{opacity:1;top:0}}
.DraggableItem.draggable div {
cursor: grab !important;
}
.DraggableItem.draggable.dragging div {
cursor: grabbing !important;
}
.DraggableArea {
width: 100%;
height: 100%;
position: absolute;
}
.DraggableArea .Overlay {
position: fixed;
z-index: 999;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background: rgba(0,0,0,0.1);
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.full-width {
width: 100%;
}
.full-height {
height: 100%;
}
.flex-h {
display: flex;
flex-direction: row;
}
.flex-v {
display: flex;
flex-direction: column;
}
.flex-grow {
flex-grow: 1;
}
.nowrap {
white-space: nowrap;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
.text-left {
text-align: left;
}
h1 {
font-size: 36px;
}
h3,
h1 {
font-family: inherit;
font-weight: 500;
line-height: 1.1;
margin-top: 20px;
margin-bottom: 10px;
}
button,
input,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
.row {
margin-right: -15px;
margin-left: -15px;
}
.pull-left {
float: left !important;
}
.pull-right {
float: right !important;
}
.fade {
opacity: 0;
-webkit-transition: opacity 0.15s linear;
-o-transition: opacity 0.15s linear;
transition: opacity 0.15s linear;
}
.fade.in {
opacity: 1;
}
a {
color: #337ab7;
text-decoration: none;
}
:root {
--series-count-background-color: #678696;
--active-color: #20a5d6;
}
.thumbnail.active .alt-image-text {
border-color: var(--active-color);
box-shadow: none;
transition: var(--sidebar-transition);
}
.thumbnail {
cursor: pointer;
display: table;
margin: 0 auto;
min-width: 90%;
padding-bottom: 1.5rem;
}
.thumbnail .alt-image-text {
align-items: center;
justify-content: center;
background-color: var(--primary-background-color);
box-shadow: inset 0 0 0 1px var(--ui-border-color-dark);
border: 2px solid transparent;
border-radius: 12px;
min-height: 135px;
max-height: 250px;
margin: 0 auto;
padding: 5px;
position: relative;
transition: var(--sidebar-transition);
width: 217px;
display: flex;
}
.thumbnail .alt-image-text h1 {
text-align: center;
color: var(--text-primary-color);
max-width: 200px;
max-height: 250px;
overflow-wrap: break-word;
word-wrap: break-word;
hyphens: auto;
}
.thumbnail .series-details {
display: flex;
flex-direction: column;
color: var(--text-primary-color);
font-size: 14px;
line-height: 1.3em;
margin-top: 5px;
margin-left: 1rem;
margin-right: 0.5rem;
max-width: 217px;
position: relative;
word-wrap: break-word;
}
.thumbnail .series-details .series-description {
flex-grow: 1;
}
.thumbnail .series-details.info-only .series-description {
display: none;
}
.thumbnail .series-information {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.thumbnail .series-information .item-frames .icon {
height: 18px;
}
.thumbnail .series-information .item-series.image-frames .icon {
background-color: var(--series-count-background-color);
margin-top: 6px;
position: relative;
}
.thumbnail .series-information .item-series.image-frames .icon:after {
content: '';
background-color: var(--active-color);
box-shadow: 1px 1px rgba(0,0,0,0.115);
left: -4px;
position: absolute;
top: -4px;
}
.thumbnail .series-information .item-series.image-frames .icon,
.thumbnail .series-information .item-series.image-frames .icon:after {
content: '';
border: 0px solid var(--series-count-background-color);
display: inline-block;
height: 11px;
width: 11px;
}
.thumbnail .series-information .warning {
margin: auto 0;
opacity: 1;
color: #e29e4a;
}
.thumbnail .series-information .warning svg {
width: 16px;
height: 14px;
pointer-events: inherit;
}
.thumbnail .series-information .value {
color: var(--text-secondary-color);
display: inline-block;
font-size: 12px;
margin-left: 4px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: calc(100% - 15px);
vertical-align: middle;
}
.thumbnail .series-information .icon {
color: var(--active-color);
display: inline-block;
font-size: 10px;
font-weight: 900;
text-align: right;
width: 11px;
}
.study-browser {
float: left;
height: 100%;
width: 100%;
overflow: hidden;
background-color: #000;
padding-bottom: 20px;
padding-top: 10px;
}
.study-browser .scrollable-study-thumbnails {
height: 100%;
overflow-y: auto;
overflow-x: hidden;
padding-bottom: 50px;
padding-right: 16px;
padding-left: 4px;
margin-right: -16px;
display: flex;
flex-direction: column;
}
.study-browser .scrollable-study-thumbnails::-webkit-scrollbar {
display: none;
}
.study-browser .scrollable-study-thumbnails .thumbnail-container {
margin: 0 auto;
padding-bottom: 1.5rem;
}
.study-browser .scrollable-study-thumbnails .thumbnail-container .noselect {
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer */
-khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
-webkit-user-select: none; /* Chrome, Safari, and Opera */
-webkit-touch-callout: none; /* Disable Android and iOS callouts*/
}
.draggable {
cursor: copy;
cursor: -webkit-grab;
cursor: -moz-grab;
}
.btn-danger {
color: #fff;
background-color: #d9534f;
border-color: #d43f3a;
}
.btn-primary {
color: #fff;
background-color: #337ab7;
border-color: #2e6da4;
}
.btn-default {
color: #333;
background-color: #fff;
border-color: #ccc;
}
.btn {
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
cursor: not-allowed;
-webkit-box-shadow: none;
box-shadow: none;
opacity: 0.65;
}
button.close {
-webkit-appearance: none;
padding: 0;
cursor: pointer;
background: 0 0;
border: 0;
}
.btn-group,
.btn-group-vertical {
position: relative;
display: inline-block;
vertical-align: middle;
}
.btn-sm {
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
line-height: 1.5;
border-radius: 0.2rem;
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.full-width {
width: 100%;
}
.full-height {
height: 100%;
}
.flex-h {
display: flex;
flex-direction: row;
}
.flex-v {
display: flex;
flex-direction: column;
}
.flex-grow {
flex-grow: 1;
}
.nowrap {
white-space: nowrap;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
.text-left {
text-align: left;
}
h1 {
font-size: 36px;
}
h3,
h1 {
font-family: inherit;
font-weight: 500;
line-height: 1.1;
margin-top: 20px;
margin-bottom: 10px;
}
button,
input,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
.row {
margin-right: -15px;
margin-left: -15px;
}
.pull-left {
float: left !important;
}
.pull-right {
float: right !important;
}
.fade {
opacity: 0;
-webkit-transition: opacity 0.15s linear;
-o-transition: opacity 0.15s linear;
transition: opacity 0.15s linear;
}
.fade.in {
opacity: 1;
}
a {
color: #337ab7;
text-decoration: none;
}
.layoutChooser-dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
float: left;
min-width: 160px;
padding: 5px 0;
margin: 2px 0 0;
font-size: 14px;
text-align: left;
list-style: none;
background-color: #fff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid #ccc;
border: 1px solid rgba(0,0,0,0.15);
border-radius: 4px;
-webkit-box-shadow: 0 6px 12px rgba(0,0,0,0.175);
box-shadow: 0 6px 12px rgba(0,0,0,0.175);
}
.layoutChooser {
border: 1px solid rgba(77,99,110,0.81);
border-radius: 8px;
padding: 5px 0;
position: absolute;
z-index: 5000;
}
.layoutChooser .selectedBefore {
background-color: #5cc3eb;
}
.layoutChooser table {
margin: 0 auto;
border-spacing: 0;
border-collapse: collapse;
}
.layoutChooser table td {
cursor: pointer;
}
.layoutChooser table td:hover,
.layoutChooser table td.hover {
background-color: #209ac9;
}
.toolbar-button {
height: 48px;
color: var(--default-color);
float: left;
text-align: center;
padding: 0 10px;
cursor: pointer;
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Chrome and Opera */
}
.toolbar-button .toolbar-button-label {
font-size: 12px;
font-weight: 500;
}
.toolbar-button .expand-caret {
width: 8px;
height: 8px;
transform: translate(2px, 2px);
}
.toolbar-button svg {
height: 21px;
width: 21px;
margin: 2px;
}
.toolbar-button:hover {
color: var(--hover-color);
}
.toolbar-button.active,
.toolbar-button:active {
color: var(--active-color);
}
.measurementTable {
background-color: var(--primary-background-color);
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
}
.measurementTable .maxMeasurements {
border-radius: 3px;
color: var(--primary-background-color);
font-size: 12px;
font-weight: 500;
height: 19px;
line-height: 17px;
margin-top: 22px;
margin-right: 15px;
padding: 2px 6px 0;
text-transform: uppercase;
transition: all 0.3s ease;
background-color: var(--default-color);
}
.measurementTable .measurementTableHeader {
padding-left: 45px;
}
.measurementTable .measurementTableHeader .measurementTableHeaderItem {
display: inline-block;
margin-top: 9px;
margin-left: 9px;
padding-left: 9px;
width: 90px;
font-size: 14px;
line-height: 20px;
border-left: 1px solid var(--text-secondary-color);
color: var(--text-primary-color);
}
.measurementTable .measurementTableHeader .measurementTableHeaderItem .timepointLabel {
color: var(--text-secondary-color);
font-size: 12px;
}
.measurementTable .measurementTableHeader .warning-status {
display: block;
position: absolute;
width: 50px;
height: 40px;
padding-left: 7px;
left: 15px;
top: 7px;
}
.measurementTable .measurementTableHeader .warning-status .warning-border {
display: block;
border: 2px solid #e29e4a;
border-radius: 36px;
padding: 6px 7px;
width: 40px;
height: 40px;
}
.measurementTable .measurementTableHeader .warning-status svg {
color: #e29e4a;
width: 22px;
height: 20px;
pointer-events: inherit;
}
.measurementTable .measurementTableFooter {
padding: 10px;
color: #fff;
text-align: center;
z-index: 1;
}
.measurementTable .measurementTableFooter .saveBtn {
border: 1px solid var(--ui-border-color-active);
border-radius: 25px;
background-color: var(--active-color);
color: var(--ui-gray-dark);
line-height: 25px;
padding: 0 20px;
outline: none;
cursor: pointer;
}
.measurementTable .measurementTableFooter .saveBtn:hover,
.measurementTable .measurementTableFooter .saveBtn:active {
background-color: var(--ui-sky-blue);
}
.measurementTable .measurementTableFooter .saveBtn svg {
margin-right: 4px;
position: relative;
top: 2px;
}
.tooltip-warning.in {
opacity: 1;
}
.tooltip-warning .tooltip-inner {
padding: 0;
}
.tooltip-warning .tooltip-inner .warningTitle {
text-align: left;
background-color: var(--ui-gray-darkest);
padding: 7px 15px;
border-top-left-radius: 7px;
border-top-right-radius: 7px;
}
.tooltip-warning .tooltip-inner .warningContent {
text-align: center;
background-color: var(--ui-gray);
border-bottom-left-radius: 7px;
border-bottom-right-radius: 7px;
}
.tooltip-warning .tooltip-inner .warningContent ol {
margin-top: auto;
padding-inline-start: 20px;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 25px;
text-align: left;
}
.tooltip-warning .tooltip-inner .warningContent ol li {
padding-right: 10px;
}
.tableListItem {
display: flex;
margin-left: -6px;
margin-top: 2px;
padding-left: 6px;
opacity: 0.7;
cursor: pointer;
width: calc(100% + 6px);
}
.tableListItem:hover {
opacity: 1;
}
.tableListItem.selected {
opacity: 1;
}
.tableListItem.selected .itemIndex {
color: $activeColor;
}
.tableListItem.hasWarning .warning {
display: block;
}
.tableListItem .itemIndex {
background-color: var(--ui-gray);
color: var(--text-secondary-color);
cursor: pointer;
flex: 1;
max-width: 25px;
font-size: 14px;
font-weight: 400;
margin-right: 6px;
padding: 10px;
text-align: center;
-webkit-box-sizing: initial;
-moz-box-sizing: initial;
box-sizing: initial;
}
.tableListItem .itemContent {
flex: 1;
color: var(--text-secondary-color);
width: calc(100% - 51px);
font-weight: 400;
margin-top: 9px;
}
.tableListItem .warning-icon {
display: none;
}
.measurementItem .item-color-section {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.item-color {
margin-top: 8px;
border-radius: 100%;
width: 20px;
height: 20px;
}
.rowActions {
margin-left: -1px;
background-color: var(--ui-gray-darker);
height: 0;
overflow: hidden;
transition: all 0.3s ease;
visibility: hidden;
padding-left: 14px;
}
.rowActions .btnAction {
background-color: transparent;
border: none;
color: var(--default-color);
cursor: pointer;
line-height: 35px;
height: 35px;
transition: all 0.3s ease;
}
.rowActions .btnAction:hover,
.rowActions .btnAction:active {
color: var(--text-primary-color);
}
.rowActions .btnAction i {
margin-right: 4px;
}
.selected .rowActions {
height: auto;
visibility: visible;
}
.measurementLocation {
margin-top: 9px;
overflow: hidden;
max-width: calc(100% - 50px);
text-overflow: ellipsis;
overflow-wrap: normal;
white-space: nowrap;
}
.measurementDisplayText {
display: inline-block;
margin-top: 9px;
padding-left: 9px;
width: 90px;
border-left: 1px solid var(--text-secondary-color);
color: var(--text-primary-color);
}
.itemIndex {
-webkit-box-sizing: initial;
-moz-box-sizing: initial;
box-sizing: initial;
}
.hasWarnings .itemIndex {
opacity: 1;
background-color: #e29e4a;
color: #fff;
}
.hasWarnings .warning-icon {
display: block;
margin: 7px auto 0;
}
.hasWarnings .warning-icon svg {
width: 22px;
height: 20px;
pointer-events: inherit;
}
.icons {
display: flex;
align-items: center;
border-radius: 5px;
}
.icons .eye-icon {
margin-left: 100px;
margin-right: -5px;
}
.icons .angle-double-down,
.icons .angle-double-up {
margin-left: 15px;
margin-right: -5px;
}
.scrollArea {
overflow: hidden;
position: relative;
}
.scrollArea .scrollable {
max-height: inherit;
overflow: hidden;
zoom: 1;
}
.scrollArea .scrollable.scrollX {
overflow-x: scroll;
}
.scrollArea .scrollable.scrollY {
overflow-y: scroll;
}
.scrollArea.fit {
height: 100%;
width: 100%;
}
.scrollArea.fit .scrollable {
bottom: 0;
left: 0;
max-height: none;
position: absolute;
right: 0;
top: 0;
}
.scrollArea .scrollNav {
background-color: rgba(0,0,0,0.75);
box-shadow: 0 0 10px 10px rgba(0,0,0,0.75);
cursor: pointer;
height: 24px;
left: 10px;
opacity: 0;
position: absolute;
right: 10px;
transition: all 0.3s ease;
}
.scrollArea .scrollNav .scrollNavIcon {
color: var(--active-color);
display: block;
width: 18px;
height: 18px;
margin: 0 auto;
transition: color 0.3s ease;
}
.scrollArea .scrollNav:hover {
background-color: rgba(0,0,0,0.9);
box-shadow: 0 0 10px 10px rgba(0,0,0,0.9);
}
.scrollArea .scrollNav:hover .scrollNavIcon {
color: var(--hover-color);
}
.scrollArea .scrollNavUp {
border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
top: 0;
transform: translateY(-24px);
}
.scrollArea .scrollNavDown {
border-top-left-radius: 12px;
border-top-right-radius: 12px;
bottom: 0;
transform: translateY(24px);
}
.scrollArea.canScrollUp .scrollNavUp,
.scrollArea.canScrollDown .scrollNavDown {
opacity: 1;
transform: translateY(0);
}
.tableList {
background-color: var(--primary-background-color);
height: 100%;
width: 100%;
}
.tableList .tableListHeader {
background-color: var(--ui-gray-darker);
color: var(--text-secondary-color);
display: flex;
height: 63px;
line-height: 63px;
margin-top: 2px;
overflow: hidden;
width: 100%;
}
.tableList .tableListHeader .tableListHeaderTitle {
color: var(--text-secondary-color);
max-width: 230px;
font-size: 22px;
font-weight: 300;
line-height: 63px;
padding: 0 10px;
text-align: left;
flex: 1;
}
.tableList .tableListHeader .tableListHeaderSelector {
cursor: pointer;
max-width: 30px;
padding-left: 2px;
align-items: stretch;
flex: 1;
justify-content: space-around;
text-align: center;
}
.tableList .tableListHeader .tableListHeaderSelector svg {
fill: #c1d8e3;
height: 63px;
max-width: 11px;
}
.tableList .tableListHeader .numberOfItems {
color: var(--ui-sky-blue);
float: right;
font-weight: 300;
font-size: 40px;
max-width: 54px;
height: 63px;
line-height: 66px;
flex: 1;
}
.btn-danger {
color: #fff;
background-color: #d9534f;
border-color: #d43f3a;
}
.btn-primary {
color: #fff;
background-color: #337ab7;
border-color: #2e6da4;
}
.btn-default {
color: #333;
background-color: #fff;
border-color: #ccc;
}
.btn {
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
cursor: not-allowed;
-webkit-box-shadow: none;
box-shadow: none;
opacity: 0.65;
}
button.close {
-webkit-appearance: none;
padding: 0;
cursor: pointer;
background: 0 0;
border: 0;
}
.btn-group,
.btn-group-vertical {
position: relative;
display: inline-block;
vertical-align: middle;
}
.btn-sm {
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
line-height: 1.5;
border-radius: 0.2rem;
}
.table-responsive {
min-height: 0.01%;
overflow-x: auto;
}
.table {
width: 100%;
max-width: 100%;
margin-bottom: 20px;
}
table {
border-spacing: 0;
border-collapse: collapse;
}
th {
text-align: left;
}
.AboutContent .btn {
border-color: #ccc;
}
.AboutContent .table thead:first-child tr:first-child th,
.AboutContent .table thead:first-child tr:first-child td {
border-top: 0;
}
.AboutContent .table thead tr th,
.AboutContent .table tbody tr th,
.AboutContent .table tfoot tr th,
.AboutContent .table thead tr td,
.AboutContent .table tbody tr td,
.AboutContent .table tfoot tr td {
padding: 8px;
line-height: 1.42857143;
vertical-align: top;
border-top: 1px solid #ddd;
}
.nav-tabs {
border-bottom: 0;
margin-bottom: 3px;
position: relative;
z-index: 1;
}
.nav-tabs :hover {
cursor: pointer;
}
.nav-tabs>li {
font-size: 14px;
font-weight: normal;
height: 40px;
line-height: 40px;
margin-bottom: 0;
}
.nav-tabs>li>button {
display: block;
width: 100%;
line-height: inherit;
margin: 0;
height: inherit;
padding: 0 10px 0 10px;
outline: none;
}
.nav-tabs>li>button:after {
background-color: transparent;
bottom: -3px;
content: ' ';
display: block;
height: 3px;
width: 100%;
}
.nav-tabs>li>button,
.nav-tabs>li.active>button,
.nav-tabs>li>button:hover,
.nav-tabs>li.active>button:hover,
.nav-tabs>li>button:active,
.nav-tabs>li.active>button:active,
.nav-tabs>li>button:focus,
.nav-tabs>li.active>button:focus {
color: var(--active-color);
background-color: transparent;
border: 0;
}
.nav-tabs>li.active>button {
font-weight: bold;
}
.nav-tabs>li.active>button:after {
background-color: var(--active-color);
}
.nav {
padding-left: 0;
list-style: none;
}
.nav > li {
position: relative;
display: block;
}
.nav > li {
float: left;
margin-bottom: -1px;
}
.TabComponents .TabComponents_tabHeader {
display: flex;
flex-direction: column;
margin-left: -20px;
margin-right: -20px;
}
.TabComponents .TabComponents_tabHeader_selector {
border-bottom: 3px solid #000;
padding: 0 25px;
}
.TabComponents .TabComponents_content {
min-height: 450px;
display: none;
}
.TabComponents .TabComponents_content.active {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.footer {
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 20px 20px 0 20px;
margin: 0 -20px;
border-top: 3px solid var(--primary-background-color);
}
.footer div button:last-child {
margin-left: 10px;
}
.language-select {
color: var(--primary-background-color);
display: block;
min-width: 150px;
}
.ohif-check-container{--check-button-dim:15px}.ohif-check-container input{position:absolute;opacity:0;height:inherit;width:inherit;cursor:default}.ohif-check-container{display:block;position:relative;padding-left:35px;margin-bottom:12px;cursor:pointer;-webkit-user-select:none;-ms-user-select:none;user-select:none}.ohif-checkbox{width:var(--check-button-dim);height:var(--check-button-dim);position:absolute;top:20%;left:5%;cursor:pointer;background-color:var(--ui-gray-lighter)}.ohif-checkbox:hover{background-color:var(--default-color)}.ohif-checkbox:after{content:"";position:absolute;width:70%;height:70%}.ohif-checkbox.ohif-checked:after{display:block;top:14%;left:14%;background:#fff}.ohif-check-label{font-size:12px;font-weight:500}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.full-width {
width: 100%;
}
.full-height {
height: 100%;
}
.flex-h {
display: flex;
flex-direction: row;
}
.flex-v {
display: flex;
flex-direction: column;
}
.flex-grow {
flex-grow: 1;
}
.nowrap {
white-space: nowrap;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
.text-left {
text-align: left;
}
h1 {
font-size: 36px;
}
h3,
h1 {
font-family: inherit;
font-weight: 500;
line-height: 1.1;
margin-top: 20px;
margin-bottom: 10px;
}
button,
input,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
.row {
margin-right: -15px;
margin-left: -15px;
}
.pull-left {
float: left !important;
}
.pull-right {
float: right !important;
}
.fade {
opacity: 0;
-webkit-transition: opacity 0.15s linear;
-o-transition: opacity 0.15s linear;
transition: opacity 0.15s linear;
}
.fade.in {
opacity: 1;
}
a {
color: #337ab7;
text-decoration: none;
}
.form-themed table {
color: var(--text-primary-color);
}
.form-themed table th,
.form-themed table td {
font-size: 15px;
font-weight: normal;
}
.form-themed table th {
line-height: 60px;
}
.form-themed table td {
line-height: 18px;
padding: 0;
}
.form-themed .p-r-1 {
padding-right: 1rem !important;
}
.form-themed label {
margin-bottom: 5px;
}
.form-themed label.wrapperLabel {
cursor: pointer;
}
.form-themed label.wrapperLabel:not(.checkboxLabel) {
cursor: pointer;
display: flex;
flex-direction: column;
}
.form-themed label.wrapperLabel:not(.checkboxLabel) .wrapperText {
display: block;
order: -1;
}
.form-themed .btn[disabled],
.form-themed input[type=text][disabled],
.form-themed input[type=password][disabled],
.form-themed input[type=number][disabled],
.form-themed .btn.disabled,
.form-themed input[type=text].disabled,
.form-themed input[type=password].disabled,
.form-themed input[type=number].disabled,
.form-themed .btn[disabled]:hover,
.form-themed input[type=text][disabled]:hover,
.form-themed input[type=password][disabled]:hover,
.form-themed input[type=number][disabled]:hover,
.form-themed .btn.disabled:hover,
.form-themed input[type=text].disabled:hover,
.form-themed input[type=password].disabled:hover,
.form-themed input[type=number].disabled:hover,
.form-themed .btn[disabled]:active,
.form-themed input[type=text][disabled]:active,
.form-themed input[type=password][disabled]:active,
.form-themed input[type=number][disabled]:active,
.form-themed .btn.disabled:active,
.form-themed input[type=text].disabled:active,
.form-themed input[type=password].disabled:active,
.form-themed input[type=number].disabled:active {
background-color: var(--ui-gray-darker);
border-color: var(--ui-gray-light);
color: var(--text-primary-color);
}
.form-themed .btn[disabled] + .wrapperText,
.form-themed input[type=text][disabled] + .wrapperText,
.form-themed input[type=password][disabled] + .wrapperText,
.form-themed input[type=number][disabled] + .wrapperText,
.form-themed .btn.disabled + .wrapperText,
.form-themed input[type=text].disabled + .wrapperText,
.form-themed input[type=password].disabled + .wrapperText,
.form-themed input[type=number].disabled + .wrapperText,
.form-themed .btn[disabled]:hover + .wrapperText,
.form-themed input[type=text][disabled]:hover + .wrapperText,
.form-themed input[type=password][disabled]:hover + .wrapperText,
.form-themed input[type=number][disabled]:hover + .wrapperText,
.form-themed .btn.disabled:hover + .wrapperText,
.form-themed input[type=text].disabled:hover + .wrapperText,
.form-themed input[type=password].disabled:hover + .wrapperText,
.form-themed input[type=number].disabled:hover + .wrapperText,
.form-themed .btn[disabled]:active + .wrapperText,
.form-themed input[type=text][disabled]:active + .wrapperText,
.form-themed input[type=password][disabled]:active + .wrapperText,
.form-themed input[type=number][disabled]:active + .wrapperText,
.form-themed .btn.disabled:active + .wrapperText,
.form-themed input[type=text].disabled:active + .wrapperText,
.form-themed input[type=password].disabled:active + .wrapperText,
.form-themed input[type=number].disabled:active + .wrapperText {
color: var(--text-primary-color);
cursor: auto;
}
.form-themed input[type=text],
.form-themed input[type=password],
.form-themed input[type=number] {
background-color: var(--ui-gray);
border-color: var(--ui-border-color);
color: var(--text-primary-color);
font-weight: normal;
}
.form-themed input[type=text]:active,
.form-themed input[type=password]:active,
.form-themed input[type=number]:active,
.form-themed input[type=text]:focus,
.form-themed input[type=password]:focus,
.form-themed input[type=number]:focus {
background-color: var(--ui-gray-dark);
border: 2px solid var(--active-color);
box-shadow: none;
}
.form-themed input[type=text]:active + .wrapperText,
.form-themed input[type=password]:active + .wrapperText,
.form-themed input[type=number]:active + .wrapperText,
.form-themed input[type=text]:focus + .wrapperText,
.form-themed input[type=password]:focus + .wrapperText,
.form-themed input[type=number]:focus + .wrapperText {
color: var(--active-color);
}
.form-themed .btn-primary {
background-color: var(--active-color);
border-collapse: var(--ui-border-color-active);
color: var(--ui-text-color-active);
}
.form-themed .btn-primary:hover,
.form-themed .btn-primary:active,
.form-themed .btn-primary:focus,
.form-themed .btn-primary:focus:active {
background-color: var(--ui-active-color);
border-collapse: var(--ui-border-color-active);
color: var(--ui-text-color-active);
}
.form-themed .form-control {
background-color: #fff;
border: 0;
font-size: 14px;
height: 30px;
line-height: 16px;
padding: 8px 9px 6px;
}
.form-control {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
}
.form-control:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
}
.form-control::-ms-expand {
border: 0;
background-color: transparent;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
background-color: ;
opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
cursor: ;
}
input[type=range] {
display: block;
width: 100%;
}
.CineDialog {
background: var(--ui-gray-darkest);
color: var(--text-secondary-color);
filter: drop-shadow(0 0 3px var(--ui-gray-darkest));
border: none;
border-radius: 8px;
width: inherit;
}
.CineDialog h5 {
font-size: 20px;
line-height: 35px;
margin: 0;
}
.CineDialog h5,
.CineDialog label {
font-weight: 400;
}
.CineDialog .cine-navigation,
.CineDialog .cine-controls,
.CineDialog .cine-options {
cursor: default;
}
.CineDialog .fps-section input[type="range"] {
background-color: transparent;
border: 0 none;
outline: 0 none;
}
.CineDialog .fps-section input[type="range"]::-ms-tooltip {
display: none;
}
.CineDialog .double-row-style {
box-sizing: border-box;
width: 290px;
height: 70px;
padding: 10px;
top: 2%;
left: 35%;
}
.CineDialog .double-row-style .cine-navigation {
position: absolute;
right: 16px;
top: 10px;
}
.CineDialog .double-row-style .cine-navigation .btn {
padding: 0 4px;
}
.CineDialog .double-row-style .cine-navigation .btn i {
font-size: 32px;
line-height: 32px;
}
.CineDialog .double-row-style .cine-controls {
left: 0px;
}
.CineDialog .double-row-style .cine-options {
padding: 0px 0;
}
.CineDialog .double-row-style .cine-options .fps-section {
width: 175px;
float: left;
}
.CineDialog .double-row-style .cine-options .fps {
float: right;
}
.CineDialog .single-row-style {
box-sizing: content-box;
width: 425px;
height: 45px;
padding: 4px 8px;
top: 2%;
left: 35%;
}
.CineDialog .single-row-style .cine-navigation {
float: right;
overflow: hidden;
padding-right: 12px;
position: relative;
}
.CineDialog .single-row-style .cine-navigation .btn {
padding: 0 2px;
margin: 0 0 0 2px;
border: 0 none;
}
.CineDialog .single-row-style .cine-navigation .btn:first-of-type {
margin-left: 0;
}
.CineDialog .single-row-style .cine-navigation .btn i {
font-size: 32px;
line-height: 45px;
}
.CineDialog .single-row-style .cine-controls {
position: relative;
float: left;
overflow: hidden;
}
.CineDialog .single-row-style .cine-controls .btn {
font-size: 22px;
line-height: 45px;
min-width: 28px;
padding: 0 0px;
margin: 0 4px;
border: 0 none;
}
.CineDialog .single-row-style .cine-options {
display: block;
position: relative;
width: 150px;
float: left;
overflow: hidden;
padding: 0;
margin: 0 0 0 10px;
}
.CineDialog .single-row-style .cine-options .fps-section {
display: block;
float: left;
width: 80px;
}
.CineDialog .single-row-style .cine-options .fps-section input[type="range"] {
line-height: 45px;
height: 45px;
}
.CineDialog .single-row-style .cine-options .fps {
display: block;
width: 68px;
float: left;
padding: 0;
margin: 0 0 0 2px;
text-align: center;
line-height: 45px;
font-size: 14px;
line-height: 1.42857143;
}
.CineDialog .btn {
color: var(--text-secondary-color);
background-color: transparent;
border: 0;
border-radius: 4px;
font-size: 15px;
width: 45px;
font-weight: normal;
height: 37px;
line-height: 37px;
padding: 0 12px;
}
.CineDialog .btn:hover,
.CineDialog .btn:active,
.CineDialog .btn.active {
color: var(--hover-color);
}
.CineDialog .btn[disabled]:hover {
color: inherit;
}
.CineDialog .btn[disabled]:active {
color: var(--text-secondary-color);
}
.CineDialog .btn.btn-primary,
.CineDialog .btn.btn-secondary,
.CineDialog .btn.btn-danger {
transition: background-color 0.3s ease;
}
.CineDialog .btn.btn-primary:hover,
.CineDialog .btn.btn-secondary:hover,
.CineDialog .btn.btn-danger:hover,
.CineDialog .btn.btn-primary:active,
.CineDialog .btn.btn-secondary:active,
.CineDialog .btn.btn-danger:active,
.CineDialog .btn.btn-primary:focus,
.CineDialog .btn.btn-secondary:focus,
.CineDialog .btn.btn-danger:focus {
opacity: 0.8;
}
.CineDialog .btn.btn-primary {
background-color: var(--active-color);
color: var(--primary-background-color);
}
.CineDialog .btn.btn-secondary {
background-color: var(--text-secondary-color);
color: var(--primary-background-color);
}
.CineDialog .btn.btn-danger {
background-color: var(--text-destructive-color);
color: var(--text-primary-color);
}
.CineDialog .btn.active {
box-shadow: inset 1px 1px 2px var(--ui-gray-darkest);
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.full-width {
width: 100%;
}
.full-height {
height: 100%;
}
.flex-h {
display: flex;
flex-direction: row;
}
.flex-v {
display: flex;
flex-direction: column;
}
.flex-grow {
flex-grow: 1;
}
.nowrap {
white-space: nowrap;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
.text-left {
text-align: left;
}
h1 {
font-size: 36px;
}
h3,
h1 {
font-family: inherit;
font-weight: 500;
line-height: 1.1;
margin-top: 20px;
margin-bottom: 10px;
}
button,
input,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
.row {
margin-right: -15px;
margin-left: -15px;
}
.pull-left {
float: left !important;
}
.pull-right {
float: right !important;
}
.fade {
opacity: 0;
-webkit-transition: opacity 0.15s linear;
-o-transition: opacity 0.15s linear;
transition: opacity 0.15s linear;
}
.fade.in {
opacity: 1;
}
a {
color: #337ab7;
text-decoration: none;
}
.form-themed table {
color: var(--text-primary-color);
}
.form-themed table th,
.form-themed table td {
font-size: 15px;
font-weight: normal;
}
.form-themed table th {
line-height: 60px;
}
.form-themed table td {
line-height: 18px;
padding: 0;
}
.form-themed .p-r-1 {
padding-right: 1rem !important;
}
.form-themed label {
margin-bottom: 5px;
}
.form-themed label.wrapperLabel {
cursor: pointer;
}
.form-themed label.wrapperLabel:not(.checkboxLabel) {
cursor: pointer;
display: flex;
flex-direction: column;
}
.form-themed label.wrapperLabel:not(.checkboxLabel) .wrapperText {
display: block;
order: -1;
}
.form-themed .btn[disabled],
.form-themed input[type=text][disabled],
.form-themed input[type=password][disabled],
.form-themed input[type=number][disabled],
.form-themed .btn.disabled,
.form-themed input[type=text].disabled,
.form-themed input[type=password].disabled,
.form-themed input[type=number].disabled,
.form-themed .btn[disabled]:hover,
.form-themed input[type=text][disabled]:hover,
.form-themed input[type=password][disabled]:hover,
.form-themed input[type=number][disabled]:hover,
.form-themed .btn.disabled:hover,
.form-themed input[type=text].disabled:hover,
.form-themed input[type=password].disabled:hover,
.form-themed input[type=number].disabled:hover,
.form-themed .btn[disabled]:active,
.form-themed input[type=text][disabled]:active,
.form-themed input[type=password][disabled]:active,
.form-themed input[type=number][disabled]:active,
.form-themed .btn.disabled:active,
.form-themed input[type=text].disabled:active,
.form-themed input[type=password].disabled:active,
.form-themed input[type=number].disabled:active {
background-color: var(--ui-gray-darker);
border-color: var(--ui-gray-light);
color: var(--text-primary-color);
}
.form-themed .btn[disabled] + .wrapperText,
.form-themed input[type=text][disabled] + .wrapperText,
.form-themed input[type=password][disabled] + .wrapperText,
.form-themed input[type=number][disabled] + .wrapperText,
.form-themed .btn.disabled + .wrapperText,
.form-themed input[type=text].disabled + .wrapperText,
.form-themed input[type=password].disabled + .wrapperText,
.form-themed input[type=number].disabled + .wrapperText,
.form-themed .btn[disabled]:hover + .wrapperText,
.form-themed input[type=text][disabled]:hover + .wrapperText,
.form-themed input[type=password][disabled]:hover + .wrapperText,
.form-themed input[type=number][disabled]:hover + .wrapperText,
.form-themed .btn.disabled:hover + .wrapperText,
.form-themed input[type=text].disabled:hover + .wrapperText,
.form-themed input[type=password].disabled:hover + .wrapperText,
.form-themed input[type=number].disabled:hover + .wrapperText,
.form-themed .btn[disabled]:active + .wrapperText,
.form-themed input[type=text][disabled]:active + .wrapperText,
.form-themed input[type=password][disabled]:active + .wrapperText,
.form-themed input[type=number][disabled]:active + .wrapperText,
.form-themed .btn.disabled:active + .wrapperText,
.form-themed input[type=text].disabled:active + .wrapperText,
.form-themed input[type=password].disabled:active + .wrapperText,
.form-themed input[type=number].disabled:active + .wrapperText {
color: var(--text-primary-color);
cursor: auto;
}
.form-themed input[type=text],
.form-themed input[type=password],
.form-themed input[type=number] {
background-color: var(--ui-gray);
border-color: var(--ui-border-color);
color: var(--text-primary-color);
font-weight: normal;
}
.form-themed input[type=text]:active,
.form-themed input[type=password]:active,
.form-themed input[type=number]:active,
.form-themed input[type=text]:focus,
.form-themed input[type=password]:focus,
.form-themed input[type=number]:focus {
background-color: var(--ui-gray-dark);
border: 2px solid var(--active-color);
box-shadow: none;
}
.form-themed input[type=text]:active + .wrapperText,
.form-themed input[type=password]:active + .wrapperText,
.form-themed input[type=number]:active + .wrapperText,
.form-themed input[type=text]:focus + .wrapperText,
.form-themed input[type=password]:focus + .wrapperText,
.form-themed input[type=number]:focus + .wrapperText {
color: var(--active-color);
}
.form-themed .btn-primary {
background-color: var(--active-color);
border-collapse: var(--ui-border-color-active);
color: var(--ui-text-color-active);
}
.form-themed .btn-primary:hover,
.form-themed .btn-primary:active,
.form-themed .btn-primary:focus,
.form-themed .btn-primary:focus:active {
background-color: var(--ui-active-color);
border-collapse: var(--ui-border-color-active);
color: var(--ui-text-color-active);
}
.form-themed .form-control {
background-color: #fff;
border: 0;
font-size: 14px;
height: 30px;
line-height: 16px;
padding: 8px 9px 6px;
}
.form-control {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
}
.form-control:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
}
.form-control::-ms-expand {
border: 0;
background-color: transparent;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
background-color: ;
opacity: 1;
}
.form-control[disabled],
fieldset[disable