@hpcc-js/layout 3.5.10 → 3.5.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +43 -43
- package/README.md +83 -83
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +6 -6
- package/src/AbsoluteSurface.css +8 -8
- package/src/AbsoluteSurface.ts +93 -93
- package/src/Accordion.css +101 -101
- package/src/Accordion.ts +146 -146
- package/src/Border.css +148 -148
- package/src/Border.ts +636 -636
- package/src/Border2.css +22 -22
- package/src/Border2.ts +391 -391
- package/src/Carousel.css +7 -7
- package/src/Carousel.ts +100 -100
- package/src/Cell.css +10 -10
- package/src/Cell.ts +94 -94
- package/src/ChartPanel.css +7 -7
- package/src/ChartPanel.ts +635 -635
- package/src/FlexGrid.css +8 -8
- package/src/FlexGrid.ts +140 -140
- package/src/Grid.css +89 -89
- package/src/Grid.ts +576 -576
- package/src/HorizontalList.ts +15 -15
- package/src/Layered.css +11 -11
- package/src/Layered.ts +132 -132
- package/src/Legend.ts +516 -516
- package/src/Modal.css +50 -50
- package/src/Modal.ts +289 -289
- package/src/Popup.ts +120 -120
- package/src/Surface.css +104 -104
- package/src/Surface.ts +223 -223
- package/src/Tabbed.css +23 -23
- package/src/Tabbed.ts +165 -165
- package/src/Toolbar.css +33 -33
- package/src/Toolbar.ts +127 -127
- package/src/VerticalList.ts +15 -15
- package/src/__package__.ts +3 -3
- package/src/index.ts +20 -20
package/src/Modal.css
CHANGED
|
@@ -1,51 +1,51 @@
|
|
|
1
|
-
.layout_Modal-header {
|
|
2
|
-
background-color: rgb(63, 81, 181);
|
|
3
|
-
overflow: hidden;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.layout_Modal-body {
|
|
7
|
-
background-color: #ffffff;
|
|
8
|
-
overflow-y: scroll;
|
|
9
|
-
overflow-x: hidden;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.layout_Modal-title {
|
|
13
|
-
position: absolute;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.layout_Modal-annotations {
|
|
17
|
-
position: absolute;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.layout_Modal-closeButton {
|
|
21
|
-
cursor: pointer;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.layout_Modal-closeButton:hover {
|
|
25
|
-
opacity: 0.7;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.layout_Modal-closeButton:active {
|
|
29
|
-
opacity: 0.5;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.layout_Modal-fade {
|
|
33
|
-
position: fixed;
|
|
34
|
-
background-color: #000;
|
|
35
|
-
opacity: 0.5;
|
|
36
|
-
z-index: 10000;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.layout_Modal-content {
|
|
40
|
-
position: fixed;
|
|
41
|
-
background-color: #ffffff;
|
|
42
|
-
z-index: 10100;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.layout_Modal-fade-hidden {
|
|
46
|
-
display: none;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.layout_Modal-fadeClickable {
|
|
50
|
-
cursor: pointer;
|
|
1
|
+
.layout_Modal-header {
|
|
2
|
+
background-color: rgb(63, 81, 181);
|
|
3
|
+
overflow: hidden;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.layout_Modal-body {
|
|
7
|
+
background-color: #ffffff;
|
|
8
|
+
overflow-y: scroll;
|
|
9
|
+
overflow-x: hidden;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.layout_Modal-title {
|
|
13
|
+
position: absolute;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.layout_Modal-annotations {
|
|
17
|
+
position: absolute;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.layout_Modal-closeButton {
|
|
21
|
+
cursor: pointer;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.layout_Modal-closeButton:hover {
|
|
25
|
+
opacity: 0.7;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.layout_Modal-closeButton:active {
|
|
29
|
+
opacity: 0.5;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.layout_Modal-fade {
|
|
33
|
+
position: fixed;
|
|
34
|
+
background-color: #000;
|
|
35
|
+
opacity: 0.5;
|
|
36
|
+
z-index: 10000;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.layout_Modal-content {
|
|
40
|
+
position: fixed;
|
|
41
|
+
background-color: #ffffff;
|
|
42
|
+
z-index: 10100;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.layout_Modal-fade-hidden {
|
|
46
|
+
display: none;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.layout_Modal-fadeClickable {
|
|
50
|
+
cursor: pointer;
|
|
51
51
|
}
|