comparison Applications/StoneWebViewer/Resources/Styles/webviewer.components.scss @ 1538:d1806b4e4839

moving OrthancStone/Samples/ as Applications/Samples/
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 11 Aug 2020 13:24:38 +0200
parents StoneWebViewer/Resources/Styles/webviewer.components.scss@fb74ed5d8c22
children 092af2150f67
comparison
equal deleted inserted replaced
1537:de8cf5859e84 1538:d1806b4e4839
1 /* wvp-ui stuffs */
2 wv-webviewer {
3 display: block;
4 height: 100%;
5 overflow: hidden;
6 }
7
8 @import "variable";
9 @import "button";
10 @import "exitButton";
11 @import "studyIsland";
12 @import "helpers";
13 @import "notice";
14 @import "layout";
15 @import "serieslist";
16 @import "toolbar";
17 @import "video";
18 @import "studyInformationBreadcrumb";
19 @import "selectionActionlist";
20
21 /* wvb-ui stuffs */
22 @import "wv-overlay.scss";
23 @import "wv-pdf-viewer.scss";
24 @import "wv-splitpane.scss";
25 @import "wv-timeline.scss";
26 @import "wv-timeline-controls.scss";
27 @import "wv-loadingbar.scss";
28 @import "wv-disclaimer";
29 @import "tb-group";
30
31 wv-viewport { // make sure the element is sized when using with drag & drop
32 display: inline-block;
33 width: 100%;
34 height: 100%;
35
36 > div {
37 position: relative;
38 width: 100%;
39 height: 100%;
40 }
41
42 // We don't set 100% width/height to the canvas element, as it would stretch
43 // the pixels. Instead, we center it for more fluid transition when pane's
44 // width changes (at least the content is kept centered even if the js hasn't
45 // yet reacted to layout reflow).
46 > div > .wv-cornerstone-enabled-image {
47 width: 100%;
48 height: 100%;
49 text-align: center;
50 }
51 }
52
53 .wv-draggable-clone {
54 width: 150px;
55 height: 150px;
56 background-color: rgba(255,255,255,0.25);
57
58 // No need to set z-index (already done by jquery ui lib).
59 }