* feat(Download ScreenShot Dialog) - UI part of it * feat(Download ScreenShot Dialog) - UI part of it * feat(Download ScreenShot Dialog) - Missing Annotations showing controls * feat(Download ScreenShot Dialog) - Missing Annotations showing controls * feat(Download ScreenShot Dialog) - Partial Pull Request - Not ready to Prod yet. * feat(Download ScreenShot Dialog) - UI - v2 * feat(Download ScreenShot Dialog) - UI - v3 * feat(Download ScreenShot Dialog) - Resizing tool * feat(Download ScreenShot Dialog) - Resizing tool * feat(Download ScreenShot Dialog) - Removing hardcoded CSS left * feat(Download ScreenShot Dialog) - Bugfixes * feat(Download ScreenShot Dialog) - Bugfixes - Escape closes the modal * feat(Download ScreenShot Dialog) - Bugfixes - Responsive issues * WIP: Refactoring DownloadDialog * WIP: Refactoring DownloadDialog * Align label and hide background canvas * Add constantes and remove code not used * Reset state on close modal * Extract cornerstone to connect * Fix modal zindex and add custom canvas classname * CR Update: Add proptypes and fix useeffect warning * CR Update: Refactor hooks, styles and imports * CR Update: Remove important from css * CR Update: Update core utils test of index
35 lines
728 B
CSS
35 lines
728 B
CSS
.input-ohif-container {
|
|
font-size: 1em;
|
|
color: var(--text-primary-color);
|
|
font-weight: 400;
|
|
}
|
|
|
|
.input-ohif-container .input-ohif {
|
|
display: inline-block;
|
|
height: 40px;
|
|
margin: 0 10px 20px;
|
|
padding: 0 20px;
|
|
cursor: pointer;
|
|
border: none;
|
|
background-color: var(--input-background-color);
|
|
color: var(--input-placeholder-color);
|
|
font-size: 10pt;
|
|
font-weight: normal;
|
|
width: auto;
|
|
border-radius: 4px;
|
|
transition: all 0.15s ease;
|
|
}
|
|
|
|
.input-ohif-container .input-ohif-label {
|
|
padding: 5px;
|
|
}
|
|
|
|
.input-ohif-container .input-ohif:active,
|
|
.input-ohif-container .input-ohif:focus {
|
|
background-color: var(--input-background-color);
|
|
}
|
|
|
|
.input-ohif-container .input-ohif.invisible {
|
|
visibility: hidden;
|
|
}
|