1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
html, body {
width: 100%;
height: 100%;
margin: 0px;
border: 0;
overflow: hidden; /* Disable scrollbars */
display: block; /* No floating content on sides */
}
.jsPanel-hdr-r {
display: none;
}
.ui-button-icon-only {
padding-top: 6px;
padding-bottom: 6px;
}
.jsPanel-content {
padding: 4px;
overflow-y: visible !important;
}
.jsPanel-hdr img {
padding-top: 4px;
padding-bottom: 4px;
display: block;
margin-left: auto;
margin-right: auto;
}
.ui-slider .ui-slider-handle {
height: 20px;
}
.ui-icon-custom-default {
background-image: url(images/default.png) !important;
}
.ui-icon-custom-orthanc {
background-image: url(images/orthanc-icon.png) !important;
}
.ui-icon-custom-stretch {
background-image: url(images/stretch.png) !important;
}
.ui-icon-custom-bone {
background-image: url(images/bone.png) !important;
}
.ui-icon-custom-lung {
background-image: url(images/lung.png) !important;
}
.ui-icon-custom-interpolation {
background-image: url(images/interpolation.png) !important;
}
.ui-icon-custom-inversion {
background-image: url(images/inversion.png) !important;
}
#dicomImageWrapper {
top: 0px;
left: 0px;
width: 100%;
height: 100%;
position: absolute;
background-color: black;
color: white;
overflow: hidden;
font-family: Arial, Helvetica, sans-serif;
}
#dicomImage {
width: 100%;
height: 100%;
top: 0px;
left: 0px;
position: absolute;
}
#topleft {
position: absolute;
top: 10px;
left: 10px;
}
#topleft img {
vertical-align: middle;
}
#topright {
position: absolute;
top: 10px;
right: 10px;
text-align: right;
}
#bottomright {
position: absolute;
bottom:25px;
right:10px;
}
#bottomleft {
position: absolute;
bottom: 25px;
left: 10px;
}
#bottomcenter {
position: absolute;
bottom: 25px;
left: 10px;
right: 10px;
width: 100%;
text-align: center;
}
#bottom {
position: absolute;
bottom: 0px;
left: 0px;
height: 20px;
width: 100%;
}
.alert {
color: #f00;
font-weight: bold;
}
|