@cu-mkp/editioncrafter 0.1.0 → 0.2.1
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/dist/editioncrafter.min.js +1 -1
- package/dist/es/src/action/DocumentActions.js +11 -0
- package/dist/es/src/action/initialState/documentInitialState.js +6 -0
- package/dist/es/src/action/rootReducer.js +21 -4
- package/dist/es/src/component/DiploMatic.js +38 -7
- package/dist/es/src/component/DocumentView.js +101 -32
- package/dist/es/src/component/ImageGridView.js +96 -20
- package/dist/es/src/component/ImageView.js +30 -5
- package/dist/es/src/component/Navigation.js +109 -11
- package/dist/es/src/component/RingSpinner.js +40 -0
- package/dist/es/src/component/SeaDragonComponent.js +40 -6
- package/dist/es/src/component/SinglePaneView.js +8 -8
- package/dist/es/src/component/SplitPaneView.js +53 -25
- package/dist/es/src/component/TranscriptionView.js +38 -11
- package/dist/es/src/component/Watermark.js +1 -1
- package/dist/es/src/component/XMLView.js +2 -1
- package/dist/es/src/img/editioncrafterlogo.png +0 -0
- package/dist/es/src/index.js +2 -2
- package/dist/es/src/model/ReduxStore.js +1 -0
- package/dist/es/src/saga/RouteListenerSaga.js +82 -33
- package/dist/es/src/scss/_CETEIcean.scss +1 -1
- package/dist/es/src/scss/_diplomatic.scss +12 -9
- package/dist/es/src/scss/_glossary.scss +5 -0
- package/dist/es/src/scss/_imageGridView.scss +10 -0
- package/dist/es/src/scss/_imageView.scss +2 -1
- package/dist/es/src/scss/_navigation.scss +57 -6
- package/dist/es/src/scss/_ringSpinner.scss +88 -0
- package/dist/es/src/scss/_splitPaneView.scss +15 -1
- package/dist/es/src/scss/_watermark.scss +5 -1
- package/dist/es/src/scss/editioncrafter.scss +8 -6
- package/package.json +1 -1
|
@@ -12,8 +12,12 @@ $watermark-size: 10rem;
|
|
|
12
12
|
.watermark_contents{
|
|
13
13
|
width:$watermark-size;
|
|
14
14
|
height:$watermark-size;
|
|
15
|
-
background-image: url("../img/
|
|
15
|
+
background-image: url("../img/editioncrafterlogo.png");
|
|
16
16
|
background-size: 100%;
|
|
17
17
|
background-repeat: no-repeat;
|
|
18
18
|
margin: auto auto auto auto;
|
|
19
19
|
}
|
|
20
|
+
|
|
21
|
+
.third_pane_blank {
|
|
22
|
+
min-width: 8px;
|
|
23
|
+
}
|
|
@@ -56,27 +56,27 @@ animation: #{$str};
|
|
|
56
56
|
|
|
57
57
|
// BREAKPOINT MIXINS
|
|
58
58
|
@mixin xs {
|
|
59
|
-
@
|
|
59
|
+
@container diplomatic (min-width: #{$screen-xs-min}) {
|
|
60
60
|
@content;
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
63
|
@mixin sm {
|
|
64
|
-
@
|
|
64
|
+
@container diplomatic (min-width: #{$screen-sm-min}) {
|
|
65
65
|
@content;
|
|
66
66
|
}
|
|
67
67
|
}
|
|
68
68
|
@mixin md {
|
|
69
|
-
@
|
|
69
|
+
@container diplomatic (min-width: #{$screen-md-min}) {
|
|
70
70
|
@content;
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
73
|
@mixin lg {
|
|
74
|
-
@
|
|
74
|
+
@container diplomatic (min-width: #{$screen-lg-min}) {
|
|
75
75
|
@content;
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
@mixin xl {
|
|
79
|
-
@
|
|
79
|
+
@container diplomatic (min-width: #{$screen-xl-min}) {
|
|
80
80
|
@content;
|
|
81
81
|
}
|
|
82
82
|
}
|
|
@@ -106,4 +106,6 @@ animation: #{$str};
|
|
|
106
106
|
@import "glossary";
|
|
107
107
|
@import "jumpbox";
|
|
108
108
|
|
|
109
|
-
@import "CETEIcean";
|
|
109
|
+
@import "CETEIcean";
|
|
110
|
+
|
|
111
|
+
@import "ringSpinner";
|