@harbour-enterprises/superdoc 1.0.0-alpha.2 → 1.0.0-alpha.25
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/README.md +12 -0
- package/dist/style.css +855 -1243
- package/dist/superdoc.cjs.js +34277 -22957
- package/dist/superdoc.cjs.js.map +1 -1
- package/dist/superdoc.es.js +34277 -22957
- package/dist/superdoc.es.js.map +1 -1
- package/package.json +3 -1
package/dist/style.css
CHANGED
|
@@ -16751,8 +16751,20 @@ body {
|
|
|
16751
16751
|
}
|
|
16752
16752
|
.sd-highlight {
|
|
16753
16753
|
position: absolute;
|
|
16754
|
-
border-radius:
|
|
16755
|
-
background-color: #
|
|
16754
|
+
border-radius: 33px;
|
|
16755
|
+
background-color: #DDAF0955;
|
|
16756
|
+
mix-blend-mode: multiply;
|
|
16757
|
+
transition: background-color 250ms ease;
|
|
16758
|
+
}
|
|
16759
|
+
.sd-initial-highlight {
|
|
16760
|
+
background-color: #1355ff7F;
|
|
16761
|
+
}
|
|
16762
|
+
.sd-highlight:hover {
|
|
16763
|
+
background-color: #DDAF0999;
|
|
16764
|
+
}
|
|
16765
|
+
.sd-highlight-active {
|
|
16766
|
+
background-color: #1355ff7F;
|
|
16767
|
+
cursor: pointer;
|
|
16756
16768
|
}
|
|
16757
16769
|
.comment-box {
|
|
16758
16770
|
width: 300px;
|
|
@@ -16760,6 +16772,13 @@ body {
|
|
|
16760
16772
|
.superdoc {
|
|
16761
16773
|
min-height: 100%;
|
|
16762
16774
|
display: flex;
|
|
16775
|
+
margin: 0;
|
|
16776
|
+
padding: 20px;
|
|
16777
|
+
position: relative;
|
|
16778
|
+
overflow: hidden;
|
|
16779
|
+
}
|
|
16780
|
+
@media (max-width: 768px) {
|
|
16781
|
+
|
|
16763
16782
|
}
|
|
16764
16783
|
/* Copyright 2014 Mozilla Foundation
|
|
16765
16784
|
*
|
|
@@ -16775,8 +16794,7 @@ body {
|
|
|
16775
16794
|
* See the License for the specific language governing permissions and
|
|
16776
16795
|
* limitations under the License.
|
|
16777
16796
|
*/
|
|
16778
|
-
|
|
16779
|
-
.dialog{
|
|
16797
|
+
.superdoc-viewer .dialog{
|
|
16780
16798
|
--dialog-bg-color:white;
|
|
16781
16799
|
--dialog-border-color:white;
|
|
16782
16800
|
--dialog-shadow:0 2px 14px 0 rgb(58 57 68 / 0.2);
|
|
@@ -16819,10 +16837,8 @@ body {
|
|
|
16819
16837
|
color:var(--text-primary-color);
|
|
16820
16838
|
box-shadow:var(--dialog-shadow);
|
|
16821
16839
|
}
|
|
16822
|
-
|
|
16823
16840
|
@media (prefers-color-scheme: dark){
|
|
16824
|
-
|
|
16825
|
-
.dialog{
|
|
16841
|
+
.superdoc-viewer .dialog{
|
|
16826
16842
|
--dialog-bg-color:#1c1b22;
|
|
16827
16843
|
--dialog-border-color:#1c1b22;
|
|
16828
16844
|
--dialog-shadow:0 2px 14px 0 #15141a;
|
|
@@ -16841,11 +16857,9 @@ body {
|
|
|
16841
16857
|
--button-primary-bg-color:#0df;
|
|
16842
16858
|
--button-primary-fg-color:#15141a;
|
|
16843
16859
|
}
|
|
16844
|
-
|
|
16845
|
-
|
|
16860
|
+
}
|
|
16846
16861
|
@media screen and (forced-colors: active){
|
|
16847
|
-
|
|
16848
|
-
.dialog{
|
|
16862
|
+
.superdoc-viewer .dialog{
|
|
16849
16863
|
--dialog-bg-color:Canvas;
|
|
16850
16864
|
--dialog-border-color:CanvasText;
|
|
16851
16865
|
--dialog-shadow:none;
|
|
@@ -16874,28 +16888,24 @@ body {
|
|
|
16874
16888
|
--button-primary-hover-bg-color:AccentColor;
|
|
16875
16889
|
--button-primary-hover-fg-color:AccentColorText;
|
|
16876
16890
|
}
|
|
16877
|
-
|
|
16878
|
-
|
|
16879
|
-
.dialog .mainContainer *:focus-visible{
|
|
16891
|
+
}
|
|
16892
|
+
.superdoc-viewer .dialog .mainContainer *:focus-visible{
|
|
16880
16893
|
outline:var(--focus-ring-outline);
|
|
16881
16894
|
outline-offset:2px;
|
|
16882
|
-
|
|
16883
|
-
|
|
16884
|
-
.dialog .mainContainer .radio{
|
|
16895
|
+
}
|
|
16896
|
+
.superdoc-viewer .dialog .mainContainer .radio{
|
|
16885
16897
|
display:flex;
|
|
16886
16898
|
flex-direction:column;
|
|
16887
16899
|
align-items:flex-start;
|
|
16888
16900
|
gap:4px;
|
|
16889
|
-
|
|
16890
|
-
|
|
16891
|
-
.dialog .mainContainer .radio > .radioButton{
|
|
16901
|
+
}
|
|
16902
|
+
.superdoc-viewer .dialog .mainContainer .radio > .radioButton{
|
|
16892
16903
|
display:flex;
|
|
16893
16904
|
gap:8px;
|
|
16894
16905
|
align-self:stretch;
|
|
16895
16906
|
align-items:center;
|
|
16896
|
-
|
|
16897
|
-
|
|
16898
|
-
.dialog .mainContainer .radio > .radioButton input{
|
|
16907
|
+
}
|
|
16908
|
+
.superdoc-viewer .dialog .mainContainer .radio > .radioButton input{
|
|
16899
16909
|
-webkit-appearance:none;
|
|
16900
16910
|
-moz-appearance:none;
|
|
16901
16911
|
appearance:none;
|
|
@@ -16905,32 +16915,27 @@ body {
|
|
|
16905
16915
|
border-radius:50%;
|
|
16906
16916
|
background-color:var(--radio-bg-color);
|
|
16907
16917
|
border:1px solid var(--radio-border-color);
|
|
16908
|
-
|
|
16909
|
-
|
|
16910
|
-
.dialog .mainContainer .radio > .radioButton input:hover{
|
|
16918
|
+
}
|
|
16919
|
+
.superdoc-viewer .dialog .mainContainer .radio > .radioButton input:hover{
|
|
16911
16920
|
filter:var(--hover-filter);
|
|
16912
|
-
|
|
16913
|
-
|
|
16914
|
-
.dialog .mainContainer .radio > .radioButton input:checked{
|
|
16921
|
+
}
|
|
16922
|
+
.superdoc-viewer .dialog .mainContainer .radio > .radioButton input:checked{
|
|
16915
16923
|
background-color:var(--radio-checked-bg-color);
|
|
16916
16924
|
border:4px solid var(--radio-checked-border-color);
|
|
16917
|
-
|
|
16918
|
-
|
|
16919
|
-
.dialog .mainContainer .radio > .radioLabel{
|
|
16925
|
+
}
|
|
16926
|
+
.superdoc-viewer .dialog .mainContainer .radio > .radioLabel{
|
|
16920
16927
|
display:flex;
|
|
16921
16928
|
padding-inline-start:24px;
|
|
16922
16929
|
align-items:flex-start;
|
|
16923
16930
|
gap:10px;
|
|
16924
16931
|
align-self:stretch;
|
|
16925
|
-
|
|
16926
|
-
|
|
16927
|
-
.dialog .mainContainer .radio > .radioLabel > span{
|
|
16932
|
+
}
|
|
16933
|
+
.superdoc-viewer .dialog .mainContainer .radio > .radioLabel > span{
|
|
16928
16934
|
flex:1 0 0;
|
|
16929
16935
|
font-size:11px;
|
|
16930
16936
|
color:var(--text-secondary-color);
|
|
16931
|
-
|
|
16932
|
-
|
|
16933
|
-
.dialog .mainContainer button{
|
|
16937
|
+
}
|
|
16938
|
+
.superdoc-viewer .dialog .mainContainer button{
|
|
16934
16939
|
border-radius:4px;
|
|
16935
16940
|
border:1px solid;
|
|
16936
16941
|
font:menu;
|
|
@@ -16938,39 +16943,33 @@ body {
|
|
|
16938
16943
|
padding:4px 16px;
|
|
16939
16944
|
width:auto;
|
|
16940
16945
|
height:32px;
|
|
16941
|
-
|
|
16942
|
-
|
|
16943
|
-
.dialog .mainContainer button:hover{
|
|
16946
|
+
}
|
|
16947
|
+
.superdoc-viewer .dialog .mainContainer button:hover{
|
|
16944
16948
|
cursor:pointer;
|
|
16945
16949
|
filter:var(--hover-filter);
|
|
16946
|
-
|
|
16947
|
-
|
|
16948
|
-
.dialog .mainContainer button.secondaryButton{
|
|
16950
|
+
}
|
|
16951
|
+
.superdoc-viewer .dialog .mainContainer button.secondaryButton{
|
|
16949
16952
|
color:var(--button-secondary-fg-color);
|
|
16950
16953
|
background-color:var(--button-secondary-bg-color);
|
|
16951
16954
|
border-color:var(--button-secondary-border-color);
|
|
16952
|
-
|
|
16953
|
-
|
|
16954
|
-
.dialog .mainContainer button.secondaryButton:hover{
|
|
16955
|
+
}
|
|
16956
|
+
.superdoc-viewer .dialog .mainContainer button.secondaryButton:hover{
|
|
16955
16957
|
color:var(--button-secondary-hover-fg-color);
|
|
16956
16958
|
background-color:var(--button-secondary-hover-bg-color);
|
|
16957
16959
|
border-color:var(--button-secondary-hover-border-color);
|
|
16958
|
-
|
|
16959
|
-
|
|
16960
|
-
.dialog .mainContainer button.primaryButton{
|
|
16960
|
+
}
|
|
16961
|
+
.superdoc-viewer .dialog .mainContainer button.primaryButton{
|
|
16961
16962
|
color:var(--button-primary-hover-fg-color);
|
|
16962
16963
|
background-color:var(--button-primary-hover-bg-color);
|
|
16963
16964
|
border-color:var(--button-primary-hover-border-color);
|
|
16964
16965
|
opacity:1;
|
|
16965
|
-
|
|
16966
|
-
|
|
16967
|
-
.dialog .mainContainer button.primaryButton:hover{
|
|
16966
|
+
}
|
|
16967
|
+
.superdoc-viewer .dialog .mainContainer button.primaryButton:hover{
|
|
16968
16968
|
color:var(--button-primary-hover-fg-color);
|
|
16969
16969
|
background-color:var(--button-primary-hover-bg-color);
|
|
16970
16970
|
border-color:var(--button-primary-hover-border-color);
|
|
16971
|
-
|
|
16972
|
-
|
|
16973
|
-
.dialog .mainContainer textarea{
|
|
16971
|
+
}
|
|
16972
|
+
.superdoc-viewer .dialog .mainContainer textarea{
|
|
16974
16973
|
font:inherit;
|
|
16975
16974
|
padding:8px;
|
|
16976
16975
|
resize:none;
|
|
@@ -16980,19 +16979,16 @@ body {
|
|
|
16980
16979
|
border:1px solid var(--textarea-border-color);
|
|
16981
16980
|
background:var(--textarea-bg-color);
|
|
16982
16981
|
color:var(--textarea-fg-color);
|
|
16983
|
-
|
|
16984
|
-
|
|
16985
|
-
.dialog .mainContainer textarea:focus{
|
|
16982
|
+
}
|
|
16983
|
+
.superdoc-viewer .dialog .mainContainer textarea:focus{
|
|
16986
16984
|
outline-offset:0;
|
|
16987
16985
|
border-color:transparent;
|
|
16988
|
-
|
|
16989
|
-
|
|
16990
|
-
.dialog .mainContainer textarea:disabled{
|
|
16986
|
+
}
|
|
16987
|
+
.superdoc-viewer .dialog .mainContainer textarea:disabled{
|
|
16991
16988
|
pointer-events:none;
|
|
16992
16989
|
opacity:0.4;
|
|
16993
|
-
|
|
16994
|
-
|
|
16995
|
-
.textLayer{
|
|
16990
|
+
}
|
|
16991
|
+
.superdoc-viewer .textLayer{
|
|
16996
16992
|
position:absolute;
|
|
16997
16993
|
text-align:initial;
|
|
16998
16994
|
inset:0;
|
|
@@ -17007,30 +17003,25 @@ body {
|
|
|
17007
17003
|
caret-color:CanvasText;
|
|
17008
17004
|
z-index:0;
|
|
17009
17005
|
}
|
|
17010
|
-
|
|
17011
|
-
.textLayer.highlighting{
|
|
17006
|
+
.superdoc-viewer .textLayer.highlighting{
|
|
17012
17007
|
touch-action:none;
|
|
17013
|
-
|
|
17014
|
-
|
|
17015
|
-
.textLayer :is(span, br){
|
|
17008
|
+
}
|
|
17009
|
+
.superdoc-viewer .textLayer :is(span, br){
|
|
17016
17010
|
color:transparent;
|
|
17017
17011
|
position:absolute;
|
|
17018
17012
|
white-space:pre;
|
|
17019
17013
|
cursor:text;
|
|
17020
17014
|
transform-origin:0% 0%;
|
|
17021
|
-
|
|
17022
|
-
|
|
17023
|
-
.textLayer
|
|
17024
|
-
.textLayer .markedContent span:not(.markedContent){
|
|
17015
|
+
}
|
|
17016
|
+
.superdoc-viewer .textLayer > :not(.markedContent),
|
|
17017
|
+
.superdoc-viewer .textLayer .markedContent span:not(.markedContent){
|
|
17025
17018
|
z-index:1;
|
|
17026
|
-
|
|
17027
|
-
|
|
17028
|
-
.textLayer span.markedContent{
|
|
17019
|
+
}
|
|
17020
|
+
.superdoc-viewer .textLayer span.markedContent{
|
|
17029
17021
|
top:0;
|
|
17030
17022
|
height:0;
|
|
17031
|
-
|
|
17032
|
-
|
|
17033
|
-
.textLayer .highlight{
|
|
17023
|
+
}
|
|
17024
|
+
.superdoc-viewer .textLayer .highlight{
|
|
17034
17025
|
--highlight-bg-color:rgb(180 0 170 / 0.25);
|
|
17035
17026
|
--highlight-selected-bg-color:rgb(0 100 0 / 0.25);
|
|
17036
17027
|
--highlight-backdrop-filter:none;
|
|
@@ -17042,61 +17033,49 @@ body {
|
|
|
17042
17033
|
-webkit-backdrop-filter:var(--highlight-backdrop-filter);
|
|
17043
17034
|
backdrop-filter:var(--highlight-backdrop-filter);
|
|
17044
17035
|
border-radius:4px;
|
|
17045
|
-
|
|
17046
|
-
|
|
17036
|
+
}
|
|
17047
17037
|
@media screen and (forced-colors: active){
|
|
17048
|
-
|
|
17049
|
-
.textLayer .highlight{
|
|
17038
|
+
.superdoc-viewer .textLayer .highlight{
|
|
17050
17039
|
--highlight-bg-color:transparent;
|
|
17051
17040
|
--highlight-selected-bg-color:transparent;
|
|
17052
17041
|
--highlight-backdrop-filter:var(--hcm-highlight-filter);
|
|
17053
17042
|
--highlight-selected-backdrop-filter:var(
|
|
17054
17043
|
--hcm-highlight-selected-filter
|
|
17055
17044
|
);
|
|
17056
|
-
|
|
17057
|
-
|
|
17058
|
-
|
|
17059
|
-
.textLayer .highlight.appended{
|
|
17045
|
+
}
|
|
17046
|
+
}
|
|
17047
|
+
.superdoc-viewer .textLayer .highlight.appended{
|
|
17060
17048
|
position:initial;
|
|
17061
|
-
|
|
17062
|
-
|
|
17063
|
-
.textLayer .highlight.begin{
|
|
17049
|
+
}
|
|
17050
|
+
.superdoc-viewer .textLayer .highlight.begin{
|
|
17064
17051
|
border-radius:4px 0 0 4px;
|
|
17065
|
-
|
|
17066
|
-
|
|
17067
|
-
.textLayer .highlight.end{
|
|
17052
|
+
}
|
|
17053
|
+
.superdoc-viewer .textLayer .highlight.end{
|
|
17068
17054
|
border-radius:0 4px 4px 0;
|
|
17069
|
-
|
|
17070
|
-
|
|
17071
|
-
.textLayer .highlight.middle{
|
|
17055
|
+
}
|
|
17056
|
+
.superdoc-viewer .textLayer .highlight.middle{
|
|
17072
17057
|
border-radius:0;
|
|
17073
|
-
|
|
17074
|
-
|
|
17075
|
-
.textLayer .highlight.selected{
|
|
17058
|
+
}
|
|
17059
|
+
.superdoc-viewer .textLayer .highlight.selected{
|
|
17076
17060
|
background-color:var(--highlight-selected-bg-color);
|
|
17077
17061
|
-webkit-backdrop-filter:var(--highlight-selected-backdrop-filter);
|
|
17078
17062
|
backdrop-filter:var(--highlight-selected-backdrop-filter);
|
|
17079
|
-
|
|
17080
|
-
|
|
17081
|
-
.textLayer ::-moz-selection{
|
|
17063
|
+
}
|
|
17064
|
+
.superdoc-viewer .textLayer ::-moz-selection{
|
|
17082
17065
|
background:rgba(0 0 255 / 0.25);
|
|
17083
17066
|
background:color-mix(in srgb, AccentColor, transparent 75%);
|
|
17084
|
-
|
|
17085
|
-
|
|
17086
|
-
.textLayer ::selection{
|
|
17067
|
+
}
|
|
17068
|
+
.superdoc-viewer .textLayer ::selection{
|
|
17087
17069
|
background:rgba(0 0 255 / 0.25);
|
|
17088
17070
|
background:color-mix(in srgb, AccentColor, transparent 75%);
|
|
17089
|
-
|
|
17090
|
-
|
|
17091
|
-
.textLayer br::-moz-selection{
|
|
17071
|
+
}
|
|
17072
|
+
.superdoc-viewer .textLayer br::-moz-selection{
|
|
17092
17073
|
background:transparent;
|
|
17093
|
-
|
|
17094
|
-
|
|
17095
|
-
.textLayer br::selection{
|
|
17074
|
+
}
|
|
17075
|
+
.superdoc-viewer .textLayer br::selection{
|
|
17096
17076
|
background:transparent;
|
|
17097
|
-
|
|
17098
|
-
|
|
17099
|
-
.textLayer .endOfContent{
|
|
17077
|
+
}
|
|
17078
|
+
.superdoc-viewer .textLayer .endOfContent{
|
|
17100
17079
|
display:block;
|
|
17101
17080
|
position:absolute;
|
|
17102
17081
|
inset:100% 0 0;
|
|
@@ -17105,13 +17084,11 @@ body {
|
|
|
17105
17084
|
-webkit-user-select:none;
|
|
17106
17085
|
-moz-user-select:none;
|
|
17107
17086
|
user-select:none;
|
|
17108
|
-
|
|
17109
|
-
|
|
17110
|
-
.textLayer .endOfContent.active{
|
|
17087
|
+
}
|
|
17088
|
+
.superdoc-viewer .textLayer .endOfContent.active{
|
|
17111
17089
|
top:0;
|
|
17112
|
-
|
|
17113
|
-
|
|
17114
|
-
.annotationLayer{
|
|
17090
|
+
}
|
|
17091
|
+
.superdoc-viewer .annotationLayer{
|
|
17115
17092
|
--annotation-unfocused-field-background:url("data:image/svg+xml;charset=UTF-8,<svg width='1px' height='1px' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill:rgba(0, 54, 255, 0.13);'/></svg>");
|
|
17116
17093
|
--input-focus-border-color:Highlight;
|
|
17117
17094
|
--input-focus-outline:1px solid Canvas;
|
|
@@ -17126,43 +17103,35 @@ body {
|
|
|
17126
17103
|
pointer-events:none;
|
|
17127
17104
|
transform-origin:0 0;
|
|
17128
17105
|
}
|
|
17129
|
-
|
|
17130
17106
|
@media screen and (forced-colors: active){
|
|
17131
|
-
|
|
17132
|
-
.annotationLayer{
|
|
17107
|
+
.superdoc-viewer .annotationLayer{
|
|
17133
17108
|
--input-focus-border-color:CanvasText;
|
|
17134
17109
|
--input-unfocused-border-color:ActiveText;
|
|
17135
17110
|
--input-disabled-border-color:GrayText;
|
|
17136
17111
|
--input-hover-border-color:Highlight;
|
|
17137
17112
|
--link-outline:1.5px solid LinkText;
|
|
17138
17113
|
}
|
|
17139
|
-
|
|
17140
|
-
.annotationLayer .textWidgetAnnotation :is(input, textarea):required, .annotationLayer .choiceWidgetAnnotation select:required, .annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:required{
|
|
17114
|
+
.superdoc-viewer .annotationLayer .textWidgetAnnotation :is(input, textarea):required, .superdoc-viewer .annotationLayer .choiceWidgetAnnotation select:required, .superdoc-viewer .annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:required{
|
|
17141
17115
|
outline:1.5px solid selectedItem;
|
|
17142
|
-
|
|
17143
|
-
|
|
17144
|
-
.annotationLayer .linkAnnotation{
|
|
17116
|
+
}
|
|
17117
|
+
.superdoc-viewer .annotationLayer .linkAnnotation{
|
|
17145
17118
|
outline:var(--link-outline);
|
|
17146
|
-
|
|
17147
|
-
|
|
17148
|
-
.annotationLayer .linkAnnotation:hover{
|
|
17119
|
+
}
|
|
17120
|
+
.superdoc-viewer .annotationLayer .linkAnnotation:hover{
|
|
17149
17121
|
-webkit-backdrop-filter:var(--hcm-highlight-filter);
|
|
17150
17122
|
backdrop-filter:var(--hcm-highlight-filter);
|
|
17151
|
-
|
|
17152
|
-
|
|
17153
|
-
.annotationLayer .linkAnnotation > a:hover{
|
|
17123
|
+
}
|
|
17124
|
+
.superdoc-viewer .annotationLayer .linkAnnotation > a:hover{
|
|
17154
17125
|
opacity:0 !important;
|
|
17155
17126
|
background:none !important;
|
|
17156
17127
|
box-shadow:none;
|
|
17157
|
-
|
|
17158
|
-
|
|
17159
|
-
.annotationLayer .popupAnnotation .popup{
|
|
17128
|
+
}
|
|
17129
|
+
.superdoc-viewer .annotationLayer .popupAnnotation .popup{
|
|
17160
17130
|
outline:calc(1.5px * var(--scale-factor)) solid CanvasText !important;
|
|
17161
17131
|
background-color:ButtonFace !important;
|
|
17162
17132
|
color:ButtonText !important;
|
|
17163
|
-
|
|
17164
|
-
|
|
17165
|
-
.annotationLayer .highlightArea:hover::after{
|
|
17133
|
+
}
|
|
17134
|
+
.superdoc-viewer .annotationLayer .highlightArea:hover::after{
|
|
17166
17135
|
position:absolute;
|
|
17167
17136
|
top:0;
|
|
17168
17137
|
left:0;
|
|
@@ -17172,38 +17141,31 @@ body {
|
|
|
17172
17141
|
backdrop-filter:var(--hcm-highlight-filter);
|
|
17173
17142
|
content:"";
|
|
17174
17143
|
pointer-events:none;
|
|
17175
|
-
|
|
17176
|
-
|
|
17177
|
-
.annotationLayer .popupAnnotation.focused .popup{
|
|
17144
|
+
}
|
|
17145
|
+
.superdoc-viewer .annotationLayer .popupAnnotation.focused .popup{
|
|
17178
17146
|
outline:calc(3px * var(--scale-factor)) solid Highlight !important;
|
|
17179
|
-
|
|
17180
|
-
|
|
17181
|
-
|
|
17182
|
-
.annotationLayer[data-main-rotation="90"] .norotate{
|
|
17147
|
+
}
|
|
17148
|
+
}
|
|
17149
|
+
.superdoc-viewer .annotationLayer[data-main-rotation="90"] .norotate{
|
|
17183
17150
|
transform:rotate(270deg) translateX(-100%);
|
|
17184
|
-
|
|
17185
|
-
|
|
17186
|
-
.annotationLayer[data-main-rotation="180"] .norotate{
|
|
17151
|
+
}
|
|
17152
|
+
.superdoc-viewer .annotationLayer[data-main-rotation="180"] .norotate{
|
|
17187
17153
|
transform:rotate(180deg) translate(-100%, -100%);
|
|
17188
|
-
|
|
17189
|
-
|
|
17190
|
-
.annotationLayer[data-main-rotation="270"] .norotate{
|
|
17154
|
+
}
|
|
17155
|
+
.superdoc-viewer .annotationLayer[data-main-rotation="270"] .norotate{
|
|
17191
17156
|
transform:rotate(90deg) translateY(-100%);
|
|
17192
|
-
|
|
17193
|
-
|
|
17194
|
-
.annotationLayer.disabled
|
|
17195
|
-
.annotationLayer.disabled .popup{
|
|
17157
|
+
}
|
|
17158
|
+
.superdoc-viewer .annotationLayer.disabled section,
|
|
17159
|
+
.superdoc-viewer .annotationLayer.disabled .popup{
|
|
17196
17160
|
pointer-events:none;
|
|
17197
|
-
|
|
17198
|
-
|
|
17199
|
-
.annotationLayer .annotationContent{
|
|
17161
|
+
}
|
|
17162
|
+
.superdoc-viewer .annotationLayer .annotationContent{
|
|
17200
17163
|
position:absolute;
|
|
17201
17164
|
width:100%;
|
|
17202
17165
|
height:100%;
|
|
17203
17166
|
pointer-events:none;
|
|
17204
|
-
|
|
17205
|
-
|
|
17206
|
-
.annotationLayer .annotationContent.freetext{
|
|
17167
|
+
}
|
|
17168
|
+
.superdoc-viewer .annotationLayer .annotationContent.freetext{
|
|
17207
17169
|
background:transparent;
|
|
17208
17170
|
border:none;
|
|
17209
17171
|
inset:0;
|
|
@@ -17214,54 +17176,46 @@ body {
|
|
|
17214
17176
|
-webkit-user-select:none;
|
|
17215
17177
|
-moz-user-select:none;
|
|
17216
17178
|
user-select:none;
|
|
17217
|
-
|
|
17218
|
-
|
|
17219
|
-
.annotationLayer section{
|
|
17179
|
+
}
|
|
17180
|
+
.superdoc-viewer .annotationLayer section{
|
|
17220
17181
|
position:absolute;
|
|
17221
17182
|
text-align:initial;
|
|
17222
17183
|
pointer-events:auto;
|
|
17223
17184
|
box-sizing:border-box;
|
|
17224
17185
|
transform-origin:0 0;
|
|
17225
|
-
|
|
17226
|
-
|
|
17227
|
-
.annotationLayer section:has(div.annotationContent) canvas.annotationContent{
|
|
17186
|
+
}
|
|
17187
|
+
.superdoc-viewer .annotationLayer section:has(div.annotationContent) canvas.annotationContent{
|
|
17228
17188
|
display:none;
|
|
17229
|
-
|
|
17230
|
-
|
|
17231
|
-
.annotationLayer :is(.linkAnnotation, .buttonWidgetAnnotation.pushButton) > a{
|
|
17189
|
+
}
|
|
17190
|
+
.superdoc-viewer .annotationLayer :is(.linkAnnotation, .buttonWidgetAnnotation.pushButton) > a{
|
|
17232
17191
|
position:absolute;
|
|
17233
17192
|
font-size:1em;
|
|
17234
17193
|
top:0;
|
|
17235
17194
|
left:0;
|
|
17236
17195
|
width:100%;
|
|
17237
17196
|
height:100%;
|
|
17238
|
-
|
|
17239
|
-
|
|
17240
|
-
.annotationLayer :is(.linkAnnotation, .buttonWidgetAnnotation.pushButton):not(.hasBorder)
|
|
17197
|
+
}
|
|
17198
|
+
.superdoc-viewer .annotationLayer :is(.linkAnnotation, .buttonWidgetAnnotation.pushButton):not(.hasBorder)
|
|
17241
17199
|
> a:hover{
|
|
17242
17200
|
opacity:0.2;
|
|
17243
17201
|
background-color:rgb(255 255 0);
|
|
17244
17202
|
box-shadow:0 2px 10px rgb(255 255 0);
|
|
17245
|
-
|
|
17246
|
-
|
|
17247
|
-
.annotationLayer .linkAnnotation.hasBorder:hover{
|
|
17203
|
+
}
|
|
17204
|
+
.superdoc-viewer .annotationLayer .linkAnnotation.hasBorder:hover{
|
|
17248
17205
|
background-color:rgb(255 255 0 / 0.2);
|
|
17249
|
-
|
|
17250
|
-
|
|
17251
|
-
.annotationLayer .hasBorder{
|
|
17206
|
+
}
|
|
17207
|
+
.superdoc-viewer .annotationLayer .hasBorder{
|
|
17252
17208
|
background-size:100% 100%;
|
|
17253
|
-
|
|
17254
|
-
|
|
17255
|
-
.annotationLayer .textAnnotation img{
|
|
17209
|
+
}
|
|
17210
|
+
.superdoc-viewer .annotationLayer .textAnnotation img{
|
|
17256
17211
|
position:absolute;
|
|
17257
17212
|
cursor:pointer;
|
|
17258
17213
|
width:100%;
|
|
17259
17214
|
height:100%;
|
|
17260
17215
|
top:0;
|
|
17261
17216
|
left:0;
|
|
17262
|
-
|
|
17263
|
-
|
|
17264
|
-
.annotationLayer .textWidgetAnnotation :is(input, textarea), .annotationLayer .choiceWidgetAnnotation select, .annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input{
|
|
17217
|
+
}
|
|
17218
|
+
.superdoc-viewer .annotationLayer .textWidgetAnnotation :is(input, textarea), .superdoc-viewer .annotationLayer .choiceWidgetAnnotation select, .superdoc-viewer .annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input{
|
|
17265
17219
|
background-image:var(--annotation-unfocused-field-background);
|
|
17266
17220
|
border:2px solid var(--input-unfocused-border-color);
|
|
17267
17221
|
box-sizing:border-box;
|
|
@@ -17270,115 +17224,94 @@ body {
|
|
|
17270
17224
|
margin:0;
|
|
17271
17225
|
vertical-align:top;
|
|
17272
17226
|
width:100%;
|
|
17273
|
-
|
|
17274
|
-
|
|
17275
|
-
.annotationLayer .textWidgetAnnotation :is(input, textarea):required, .annotationLayer .choiceWidgetAnnotation select:required, .annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:required{
|
|
17227
|
+
}
|
|
17228
|
+
.superdoc-viewer .annotationLayer .textWidgetAnnotation :is(input, textarea):required, .superdoc-viewer .annotationLayer .choiceWidgetAnnotation select:required, .superdoc-viewer .annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:required{
|
|
17276
17229
|
outline:1.5px solid red;
|
|
17277
|
-
|
|
17278
|
-
|
|
17279
|
-
.annotationLayer .choiceWidgetAnnotation select option{
|
|
17230
|
+
}
|
|
17231
|
+
.superdoc-viewer .annotationLayer .choiceWidgetAnnotation select option{
|
|
17280
17232
|
padding:0;
|
|
17281
|
-
|
|
17282
|
-
|
|
17283
|
-
.annotationLayer .buttonWidgetAnnotation.radioButton input{
|
|
17233
|
+
}
|
|
17234
|
+
.superdoc-viewer .annotationLayer .buttonWidgetAnnotation.radioButton input{
|
|
17284
17235
|
border-radius:50%;
|
|
17285
|
-
|
|
17286
|
-
|
|
17287
|
-
.annotationLayer .textWidgetAnnotation textarea{
|
|
17236
|
+
}
|
|
17237
|
+
.superdoc-viewer .annotationLayer .textWidgetAnnotation textarea{
|
|
17288
17238
|
resize:none;
|
|
17289
|
-
|
|
17290
|
-
|
|
17291
|
-
.annotationLayer .textWidgetAnnotation [disabled]:is(input, textarea), .annotationLayer .choiceWidgetAnnotation select[disabled], .annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input[disabled]{
|
|
17239
|
+
}
|
|
17240
|
+
.superdoc-viewer .annotationLayer .textWidgetAnnotation [disabled]:is(input, textarea), .superdoc-viewer .annotationLayer .choiceWidgetAnnotation select[disabled], .superdoc-viewer .annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input[disabled]{
|
|
17292
17241
|
background:none;
|
|
17293
17242
|
border:2px solid var(--input-disabled-border-color);
|
|
17294
17243
|
cursor:not-allowed;
|
|
17295
|
-
|
|
17296
|
-
|
|
17297
|
-
.annotationLayer .textWidgetAnnotation :is(input, textarea):hover, .annotationLayer .choiceWidgetAnnotation select:hover, .annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:hover{
|
|
17244
|
+
}
|
|
17245
|
+
.superdoc-viewer .annotationLayer .textWidgetAnnotation :is(input, textarea):hover, .superdoc-viewer .annotationLayer .choiceWidgetAnnotation select:hover, .superdoc-viewer .annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:hover{
|
|
17298
17246
|
border:2px solid var(--input-hover-border-color);
|
|
17299
|
-
|
|
17300
|
-
|
|
17301
|
-
.annotationLayer .textWidgetAnnotation :is(input, textarea):hover, .annotationLayer .choiceWidgetAnnotation select:hover, .annotationLayer .buttonWidgetAnnotation.checkBox input:hover{
|
|
17247
|
+
}
|
|
17248
|
+
.superdoc-viewer .annotationLayer .textWidgetAnnotation :is(input, textarea):hover, .superdoc-viewer .annotationLayer .choiceWidgetAnnotation select:hover, .superdoc-viewer .annotationLayer .buttonWidgetAnnotation.checkBox input:hover{
|
|
17302
17249
|
border-radius:2px;
|
|
17303
|
-
|
|
17304
|
-
|
|
17305
|
-
.annotationLayer .textWidgetAnnotation :is(input, textarea):focus, .annotationLayer .choiceWidgetAnnotation select:focus{
|
|
17250
|
+
}
|
|
17251
|
+
.superdoc-viewer .annotationLayer .textWidgetAnnotation :is(input, textarea):focus, .superdoc-viewer .annotationLayer .choiceWidgetAnnotation select:focus{
|
|
17306
17252
|
background:none;
|
|
17307
17253
|
border:2px solid var(--input-focus-border-color);
|
|
17308
17254
|
border-radius:2px;
|
|
17309
17255
|
outline:var(--input-focus-outline);
|
|
17310
|
-
|
|
17311
|
-
|
|
17312
|
-
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) :focus{
|
|
17256
|
+
}
|
|
17257
|
+
.superdoc-viewer .annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) :focus{
|
|
17313
17258
|
background-image:none;
|
|
17314
17259
|
background-color:transparent;
|
|
17315
|
-
|
|
17316
|
-
|
|
17317
|
-
.annotationLayer .buttonWidgetAnnotation.checkBox :focus{
|
|
17260
|
+
}
|
|
17261
|
+
.superdoc-viewer .annotationLayer .buttonWidgetAnnotation.checkBox :focus{
|
|
17318
17262
|
border:2px solid var(--input-focus-border-color);
|
|
17319
17263
|
border-radius:2px;
|
|
17320
17264
|
outline:var(--input-focus-outline);
|
|
17321
|
-
|
|
17322
|
-
|
|
17323
|
-
.annotationLayer .buttonWidgetAnnotation.radioButton :focus{
|
|
17265
|
+
}
|
|
17266
|
+
.superdoc-viewer .annotationLayer .buttonWidgetAnnotation.radioButton :focus{
|
|
17324
17267
|
border:2px solid var(--input-focus-border-color);
|
|
17325
17268
|
outline:var(--input-focus-outline);
|
|
17326
|
-
|
|
17327
|
-
|
|
17328
|
-
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::
|
|
17329
|
-
.annotationLayer .buttonWidgetAnnotation.
|
|
17330
|
-
.annotationLayer .buttonWidgetAnnotation.radioButton input:checked::before{
|
|
17269
|
+
}
|
|
17270
|
+
.superdoc-viewer .annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before,
|
|
17271
|
+
.superdoc-viewer .annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after,
|
|
17272
|
+
.superdoc-viewer .annotationLayer .buttonWidgetAnnotation.radioButton input:checked::before{
|
|
17331
17273
|
background-color:CanvasText;
|
|
17332
17274
|
content:"";
|
|
17333
17275
|
display:block;
|
|
17334
17276
|
position:absolute;
|
|
17335
|
-
|
|
17336
|
-
|
|
17337
|
-
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::
|
|
17338
|
-
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after{
|
|
17277
|
+
}
|
|
17278
|
+
.superdoc-viewer .annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before,
|
|
17279
|
+
.superdoc-viewer .annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after{
|
|
17339
17280
|
height:80%;
|
|
17340
17281
|
left:45%;
|
|
17341
17282
|
width:1px;
|
|
17342
|
-
|
|
17343
|
-
|
|
17344
|
-
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before{
|
|
17283
|
+
}
|
|
17284
|
+
.superdoc-viewer .annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before{
|
|
17345
17285
|
transform:rotate(45deg);
|
|
17346
|
-
|
|
17347
|
-
|
|
17348
|
-
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after{
|
|
17286
|
+
}
|
|
17287
|
+
.superdoc-viewer .annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after{
|
|
17349
17288
|
transform:rotate(-45deg);
|
|
17350
|
-
|
|
17351
|
-
|
|
17352
|
-
.annotationLayer .buttonWidgetAnnotation.radioButton input:checked::before{
|
|
17289
|
+
}
|
|
17290
|
+
.superdoc-viewer .annotationLayer .buttonWidgetAnnotation.radioButton input:checked::before{
|
|
17353
17291
|
border-radius:50%;
|
|
17354
17292
|
height:50%;
|
|
17355
17293
|
left:25%;
|
|
17356
17294
|
top:25%;
|
|
17357
17295
|
width:50%;
|
|
17358
|
-
|
|
17359
|
-
|
|
17360
|
-
.annotationLayer .textWidgetAnnotation input.comb{
|
|
17296
|
+
}
|
|
17297
|
+
.superdoc-viewer .annotationLayer .textWidgetAnnotation input.comb{
|
|
17361
17298
|
font-family:monospace;
|
|
17362
17299
|
padding-left:2px;
|
|
17363
17300
|
padding-right:0;
|
|
17364
|
-
|
|
17365
|
-
|
|
17366
|
-
.annotationLayer .textWidgetAnnotation input.comb:focus{
|
|
17301
|
+
}
|
|
17302
|
+
.superdoc-viewer .annotationLayer .textWidgetAnnotation input.comb:focus{
|
|
17367
17303
|
width:103%;
|
|
17368
|
-
|
|
17369
|
-
|
|
17370
|
-
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input{
|
|
17304
|
+
}
|
|
17305
|
+
.superdoc-viewer .annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input{
|
|
17371
17306
|
-webkit-appearance:none;
|
|
17372
17307
|
-moz-appearance:none;
|
|
17373
17308
|
appearance:none;
|
|
17374
|
-
|
|
17375
|
-
|
|
17376
|
-
.annotationLayer .fileAttachmentAnnotation .popupTriggerArea{
|
|
17309
|
+
}
|
|
17310
|
+
.superdoc-viewer .annotationLayer .fileAttachmentAnnotation .popupTriggerArea{
|
|
17377
17311
|
height:100%;
|
|
17378
17312
|
width:100%;
|
|
17379
|
-
|
|
17380
|
-
|
|
17381
|
-
.annotationLayer .popupAnnotation{
|
|
17313
|
+
}
|
|
17314
|
+
.superdoc-viewer .annotationLayer .popupAnnotation{
|
|
17382
17315
|
position:absolute;
|
|
17383
17316
|
font-size:calc(9px * var(--scale-factor));
|
|
17384
17317
|
pointer-events:none;
|
|
@@ -17386,9 +17319,8 @@ body {
|
|
|
17386
17319
|
width:max-content;
|
|
17387
17320
|
max-width:45%;
|
|
17388
17321
|
height:auto;
|
|
17389
|
-
|
|
17390
|
-
|
|
17391
|
-
.annotationLayer .popup{
|
|
17322
|
+
}
|
|
17323
|
+
.superdoc-viewer .annotationLayer .popup{
|
|
17392
17324
|
background-color:rgb(255 255 153);
|
|
17393
17325
|
box-shadow:0 calc(2px * var(--scale-factor)) calc(5px * var(--scale-factor)) rgb(136 136 136);
|
|
17394
17326
|
border-radius:calc(2px * var(--scale-factor));
|
|
@@ -17399,55 +17331,45 @@ body {
|
|
|
17399
17331
|
white-space:normal;
|
|
17400
17332
|
word-wrap:break-word;
|
|
17401
17333
|
pointer-events:auto;
|
|
17402
|
-
|
|
17403
|
-
|
|
17404
|
-
.annotationLayer .popupAnnotation.focused .popup{
|
|
17334
|
+
}
|
|
17335
|
+
.superdoc-viewer .annotationLayer .popupAnnotation.focused .popup{
|
|
17405
17336
|
outline-width:3px;
|
|
17406
|
-
|
|
17407
|
-
|
|
17408
|
-
.annotationLayer .popup *{
|
|
17337
|
+
}
|
|
17338
|
+
.superdoc-viewer .annotationLayer .popup *{
|
|
17409
17339
|
font-size:calc(9px * var(--scale-factor));
|
|
17410
|
-
|
|
17411
|
-
|
|
17412
|
-
.annotationLayer .popup > .header{
|
|
17340
|
+
}
|
|
17341
|
+
.superdoc-viewer .annotationLayer .popup > .header{
|
|
17413
17342
|
display:inline-block;
|
|
17414
|
-
|
|
17415
|
-
|
|
17416
|
-
.annotationLayer .popup > .header h1{
|
|
17343
|
+
}
|
|
17344
|
+
.superdoc-viewer .annotationLayer .popup > .header h1{
|
|
17417
17345
|
display:inline;
|
|
17418
|
-
|
|
17419
|
-
|
|
17420
|
-
.annotationLayer .popup > .header .popupDate{
|
|
17346
|
+
}
|
|
17347
|
+
.superdoc-viewer .annotationLayer .popup > .header .popupDate{
|
|
17421
17348
|
display:inline-block;
|
|
17422
17349
|
margin-left:calc(5px * var(--scale-factor));
|
|
17423
17350
|
width:-moz-fit-content;
|
|
17424
17351
|
width:fit-content;
|
|
17425
|
-
|
|
17426
|
-
|
|
17427
|
-
.annotationLayer .popupContent{
|
|
17352
|
+
}
|
|
17353
|
+
.superdoc-viewer .annotationLayer .popupContent{
|
|
17428
17354
|
border-top:1px solid rgb(51 51 51);
|
|
17429
17355
|
margin-top:calc(2px * var(--scale-factor));
|
|
17430
17356
|
padding-top:calc(2px * var(--scale-factor));
|
|
17431
|
-
|
|
17432
|
-
|
|
17433
|
-
.annotationLayer .richText > *{
|
|
17357
|
+
}
|
|
17358
|
+
.superdoc-viewer .annotationLayer .richText > *{
|
|
17434
17359
|
white-space:pre-wrap;
|
|
17435
17360
|
font-size:calc(9px * var(--scale-factor));
|
|
17436
|
-
|
|
17437
|
-
|
|
17438
|
-
.annotationLayer .popupTriggerArea{
|
|
17361
|
+
}
|
|
17362
|
+
.superdoc-viewer .annotationLayer .popupTriggerArea{
|
|
17439
17363
|
cursor:pointer;
|
|
17440
|
-
|
|
17441
|
-
|
|
17442
|
-
.annotationLayer section svg{
|
|
17364
|
+
}
|
|
17365
|
+
.superdoc-viewer .annotationLayer section svg{
|
|
17443
17366
|
position:absolute;
|
|
17444
17367
|
width:100%;
|
|
17445
17368
|
height:100%;
|
|
17446
17369
|
top:0;
|
|
17447
17370
|
left:0;
|
|
17448
|
-
|
|
17449
|
-
|
|
17450
|
-
.annotationLayer .annotationTextContent{
|
|
17371
|
+
}
|
|
17372
|
+
.superdoc-viewer .annotationLayer .annotationTextContent{
|
|
17451
17373
|
position:absolute;
|
|
17452
17374
|
width:100%;
|
|
17453
17375
|
height:100%;
|
|
@@ -17457,14 +17379,12 @@ body {
|
|
|
17457
17379
|
-moz-user-select:none;
|
|
17458
17380
|
user-select:none;
|
|
17459
17381
|
pointer-events:none;
|
|
17460
|
-
|
|
17461
|
-
|
|
17462
|
-
.annotationLayer .annotationTextContent span{
|
|
17382
|
+
}
|
|
17383
|
+
.superdoc-viewer .annotationLayer .annotationTextContent span{
|
|
17463
17384
|
width:100%;
|
|
17464
17385
|
display:inline-block;
|
|
17465
|
-
|
|
17466
|
-
|
|
17467
|
-
.annotationLayer svg.quadrilateralsContainer{
|
|
17386
|
+
}
|
|
17387
|
+
.superdoc-viewer .annotationLayer svg.quadrilateralsContainer{
|
|
17468
17388
|
contain:strict;
|
|
17469
17389
|
width:0;
|
|
17470
17390
|
height:0;
|
|
@@ -17472,67 +17392,54 @@ body {
|
|
|
17472
17392
|
top:0;
|
|
17473
17393
|
left:0;
|
|
17474
17394
|
z-index:-1;
|
|
17475
|
-
|
|
17476
|
-
|
|
17477
|
-
:root{
|
|
17395
|
+
}
|
|
17396
|
+
.superdoc-viewer :root{
|
|
17478
17397
|
--xfa-unfocused-field-background:url("data:image/svg+xml;charset=UTF-8,<svg width='1px' height='1px' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill:rgba(0, 54, 255, 0.13);'/></svg>");
|
|
17479
17398
|
--xfa-focus-outline:auto;
|
|
17480
17399
|
}
|
|
17481
|
-
|
|
17482
17400
|
@media screen and (forced-colors: active){
|
|
17483
|
-
|
|
17401
|
+
.superdoc-viewer :root{
|
|
17484
17402
|
--xfa-focus-outline:2px solid CanvasText;
|
|
17485
|
-
|
|
17486
|
-
|
|
17403
|
+
}
|
|
17404
|
+
.superdoc-viewer .xfaLayer *:required{
|
|
17487
17405
|
outline:1.5px solid selectedItem;
|
|
17488
|
-
}
|
|
17489
17406
|
}
|
|
17490
|
-
|
|
17491
|
-
.xfaLayer{
|
|
17407
|
+
}
|
|
17408
|
+
.superdoc-viewer .xfaLayer{
|
|
17492
17409
|
background-color:transparent;
|
|
17493
17410
|
}
|
|
17494
|
-
|
|
17495
|
-
.xfaLayer .highlight{
|
|
17411
|
+
.superdoc-viewer .xfaLayer .highlight{
|
|
17496
17412
|
margin:-1px;
|
|
17497
17413
|
padding:1px;
|
|
17498
17414
|
background-color:rgb(239 203 237);
|
|
17499
17415
|
border-radius:4px;
|
|
17500
17416
|
}
|
|
17501
|
-
|
|
17502
|
-
.xfaLayer .highlight.appended{
|
|
17417
|
+
.superdoc-viewer .xfaLayer .highlight.appended{
|
|
17503
17418
|
position:initial;
|
|
17504
17419
|
}
|
|
17505
|
-
|
|
17506
|
-
.xfaLayer .highlight.begin{
|
|
17420
|
+
.superdoc-viewer .xfaLayer .highlight.begin{
|
|
17507
17421
|
border-radius:4px 0 0 4px;
|
|
17508
17422
|
}
|
|
17509
|
-
|
|
17510
|
-
.xfaLayer .highlight.end{
|
|
17423
|
+
.superdoc-viewer .xfaLayer .highlight.end{
|
|
17511
17424
|
border-radius:0 4px 4px 0;
|
|
17512
17425
|
}
|
|
17513
|
-
|
|
17514
|
-
.xfaLayer .highlight.middle{
|
|
17426
|
+
.superdoc-viewer .xfaLayer .highlight.middle{
|
|
17515
17427
|
border-radius:0;
|
|
17516
17428
|
}
|
|
17517
|
-
|
|
17518
|
-
.xfaLayer .highlight.selected{
|
|
17429
|
+
.superdoc-viewer .xfaLayer .highlight.selected{
|
|
17519
17430
|
background-color:rgb(203 223 203);
|
|
17520
17431
|
}
|
|
17521
|
-
|
|
17522
|
-
.xfaPage{
|
|
17432
|
+
.superdoc-viewer .xfaPage{
|
|
17523
17433
|
overflow:hidden;
|
|
17524
17434
|
position:relative;
|
|
17525
17435
|
}
|
|
17526
|
-
|
|
17527
|
-
.xfaContentarea{
|
|
17436
|
+
.superdoc-viewer .xfaContentarea{
|
|
17528
17437
|
position:absolute;
|
|
17529
17438
|
}
|
|
17530
|
-
|
|
17531
|
-
.xfaPrintOnly{
|
|
17439
|
+
.superdoc-viewer .xfaPrintOnly{
|
|
17532
17440
|
display:none;
|
|
17533
17441
|
}
|
|
17534
|
-
|
|
17535
|
-
.xfaLayer{
|
|
17442
|
+
.superdoc-viewer .xfaLayer{
|
|
17536
17443
|
position:absolute;
|
|
17537
17444
|
text-align:initial;
|
|
17538
17445
|
top:0;
|
|
@@ -17540,8 +17447,7 @@ body {
|
|
|
17540
17447
|
transform-origin:0 0;
|
|
17541
17448
|
line-height:1.2;
|
|
17542
17449
|
}
|
|
17543
|
-
|
|
17544
|
-
.xfaLayer *{
|
|
17450
|
+
.superdoc-viewer .xfaLayer *{
|
|
17545
17451
|
color:inherit;
|
|
17546
17452
|
font:inherit;
|
|
17547
17453
|
font-style:inherit;
|
|
@@ -17557,26 +17463,21 @@ body {
|
|
|
17557
17463
|
pointer-events:auto;
|
|
17558
17464
|
line-height:inherit;
|
|
17559
17465
|
}
|
|
17560
|
-
|
|
17561
|
-
.xfaLayer *:required{
|
|
17466
|
+
.superdoc-viewer .xfaLayer *:required{
|
|
17562
17467
|
outline:1.5px solid red;
|
|
17563
17468
|
}
|
|
17564
|
-
|
|
17565
|
-
.xfaLayer
|
|
17566
|
-
.xfaLayer svg
|
|
17567
|
-
.xfaLayer svg *{
|
|
17469
|
+
.superdoc-viewer .xfaLayer div,
|
|
17470
|
+
.superdoc-viewer .xfaLayer svg,
|
|
17471
|
+
.superdoc-viewer .xfaLayer svg *{
|
|
17568
17472
|
pointer-events:none;
|
|
17569
17473
|
}
|
|
17570
|
-
|
|
17571
|
-
.xfaLayer a{
|
|
17474
|
+
.superdoc-viewer .xfaLayer a{
|
|
17572
17475
|
color:blue;
|
|
17573
17476
|
}
|
|
17574
|
-
|
|
17575
|
-
.xfaRich li{
|
|
17477
|
+
.superdoc-viewer .xfaRich li{
|
|
17576
17478
|
margin-left:3em;
|
|
17577
17479
|
}
|
|
17578
|
-
|
|
17579
|
-
.xfaFont{
|
|
17480
|
+
.superdoc-viewer .xfaFont{
|
|
17580
17481
|
color:black;
|
|
17581
17482
|
font-weight:normal;
|
|
17582
17483
|
font-kerning:none;
|
|
@@ -17586,78 +17487,64 @@ body {
|
|
|
17586
17487
|
text-decoration:none;
|
|
17587
17488
|
vertical-align:0;
|
|
17588
17489
|
}
|
|
17589
|
-
|
|
17590
|
-
.xfaCaption{
|
|
17490
|
+
.superdoc-viewer .xfaCaption{
|
|
17591
17491
|
overflow:hidden;
|
|
17592
17492
|
flex:0 0 auto;
|
|
17593
17493
|
}
|
|
17594
|
-
|
|
17595
|
-
.xfaCaptionForCheckButton{
|
|
17494
|
+
.superdoc-viewer .xfaCaptionForCheckButton{
|
|
17596
17495
|
overflow:hidden;
|
|
17597
17496
|
flex:1 1 auto;
|
|
17598
17497
|
}
|
|
17599
|
-
|
|
17600
|
-
.xfaLabel{
|
|
17498
|
+
.superdoc-viewer .xfaLabel{
|
|
17601
17499
|
height:100%;
|
|
17602
17500
|
width:100%;
|
|
17603
17501
|
}
|
|
17604
|
-
|
|
17605
|
-
.xfaLeft{
|
|
17502
|
+
.superdoc-viewer .xfaLeft{
|
|
17606
17503
|
display:flex;
|
|
17607
17504
|
flex-direction:row;
|
|
17608
17505
|
align-items:center;
|
|
17609
17506
|
}
|
|
17610
|
-
|
|
17611
|
-
.xfaRight{
|
|
17507
|
+
.superdoc-viewer .xfaRight{
|
|
17612
17508
|
display:flex;
|
|
17613
17509
|
flex-direction:row-reverse;
|
|
17614
17510
|
align-items:center;
|
|
17615
17511
|
}
|
|
17616
|
-
|
|
17617
|
-
:is(.xfaLeft, .xfaRight) > :is(.xfaCaption, .xfaCaptionForCheckButton){
|
|
17512
|
+
.superdoc-viewer :is(.xfaLeft, .xfaRight) > :is(.xfaCaption, .xfaCaptionForCheckButton){
|
|
17618
17513
|
max-height:100%;
|
|
17619
17514
|
}
|
|
17620
|
-
|
|
17621
|
-
.xfaTop{
|
|
17515
|
+
.superdoc-viewer .xfaTop{
|
|
17622
17516
|
display:flex;
|
|
17623
17517
|
flex-direction:column;
|
|
17624
17518
|
align-items:flex-start;
|
|
17625
17519
|
}
|
|
17626
|
-
|
|
17627
|
-
.xfaBottom{
|
|
17520
|
+
.superdoc-viewer .xfaBottom{
|
|
17628
17521
|
display:flex;
|
|
17629
17522
|
flex-direction:column-reverse;
|
|
17630
17523
|
align-items:flex-start;
|
|
17631
17524
|
}
|
|
17632
|
-
|
|
17633
|
-
:is(.xfaTop, .xfaBottom) > :is(.xfaCaption, .xfaCaptionForCheckButton){
|
|
17525
|
+
.superdoc-viewer :is(.xfaTop, .xfaBottom) > :is(.xfaCaption, .xfaCaptionForCheckButton){
|
|
17634
17526
|
width:100%;
|
|
17635
17527
|
}
|
|
17636
|
-
|
|
17637
|
-
.xfaBorder{
|
|
17528
|
+
.superdoc-viewer .xfaBorder{
|
|
17638
17529
|
background-color:transparent;
|
|
17639
17530
|
position:absolute;
|
|
17640
17531
|
pointer-events:none;
|
|
17641
17532
|
}
|
|
17642
|
-
|
|
17643
|
-
.xfaWrapped{
|
|
17533
|
+
.superdoc-viewer .xfaWrapped{
|
|
17644
17534
|
width:100%;
|
|
17645
17535
|
height:100%;
|
|
17646
17536
|
}
|
|
17647
|
-
|
|
17648
|
-
:is(.xfaTextfield, .xfaSelect):focus{
|
|
17537
|
+
.superdoc-viewer :is(.xfaTextfield, .xfaSelect):focus{
|
|
17649
17538
|
background-image:none;
|
|
17650
17539
|
background-color:transparent;
|
|
17651
17540
|
outline:var(--xfa-focus-outline);
|
|
17652
17541
|
outline-offset:-1px;
|
|
17653
17542
|
}
|
|
17654
|
-
|
|
17655
|
-
:is(.xfaCheckbox, .xfaRadio):focus{
|
|
17543
|
+
.superdoc-viewer :is(.xfaCheckbox, .xfaRadio):focus{
|
|
17656
17544
|
outline:var(--xfa-focus-outline);
|
|
17657
17545
|
}
|
|
17658
|
-
|
|
17659
|
-
.
|
|
17660
|
-
.xfaSelect{
|
|
17546
|
+
.superdoc-viewer .xfaTextfield,
|
|
17547
|
+
.superdoc-viewer .xfaSelect{
|
|
17661
17548
|
height:100%;
|
|
17662
17549
|
width:100%;
|
|
17663
17550
|
flex:1 1 auto;
|
|
@@ -17665,46 +17552,39 @@ body {
|
|
|
17665
17552
|
resize:none;
|
|
17666
17553
|
background-image:var(--xfa-unfocused-field-background);
|
|
17667
17554
|
}
|
|
17668
|
-
|
|
17669
|
-
.xfaSelect{
|
|
17555
|
+
.superdoc-viewer .xfaSelect{
|
|
17670
17556
|
padding-inline:2px;
|
|
17671
17557
|
}
|
|
17672
|
-
|
|
17673
|
-
:is(.xfaTop, .xfaBottom) > :is(.xfaTextfield, .xfaSelect){
|
|
17558
|
+
.superdoc-viewer :is(.xfaTop, .xfaBottom) > :is(.xfaTextfield, .xfaSelect){
|
|
17674
17559
|
flex:0 1 auto;
|
|
17675
17560
|
}
|
|
17676
|
-
|
|
17677
|
-
.xfaButton{
|
|
17561
|
+
.superdoc-viewer .xfaButton{
|
|
17678
17562
|
cursor:pointer;
|
|
17679
17563
|
width:100%;
|
|
17680
17564
|
height:100%;
|
|
17681
17565
|
border:none;
|
|
17682
17566
|
text-align:center;
|
|
17683
17567
|
}
|
|
17684
|
-
|
|
17685
|
-
.xfaLink{
|
|
17568
|
+
.superdoc-viewer .xfaLink{
|
|
17686
17569
|
width:100%;
|
|
17687
17570
|
height:100%;
|
|
17688
17571
|
position:absolute;
|
|
17689
17572
|
top:0;
|
|
17690
17573
|
left:0;
|
|
17691
17574
|
}
|
|
17692
|
-
|
|
17693
|
-
.
|
|
17694
|
-
.xfaRadio{
|
|
17575
|
+
.superdoc-viewer .xfaCheckbox,
|
|
17576
|
+
.superdoc-viewer .xfaRadio{
|
|
17695
17577
|
width:100%;
|
|
17696
17578
|
height:100%;
|
|
17697
17579
|
flex:0 0 auto;
|
|
17698
17580
|
border:none;
|
|
17699
17581
|
}
|
|
17700
|
-
|
|
17701
|
-
.xfaRich{
|
|
17582
|
+
.superdoc-viewer .xfaRich{
|
|
17702
17583
|
white-space:pre-wrap;
|
|
17703
17584
|
width:100%;
|
|
17704
17585
|
height:100%;
|
|
17705
17586
|
}
|
|
17706
|
-
|
|
17707
|
-
.xfaImage{
|
|
17587
|
+
.superdoc-viewer .xfaImage{
|
|
17708
17588
|
-o-object-position:left top;
|
|
17709
17589
|
object-position:left top;
|
|
17710
17590
|
-o-object-fit:contain;
|
|
@@ -17712,165 +17592,135 @@ body {
|
|
|
17712
17592
|
width:100%;
|
|
17713
17593
|
height:100%;
|
|
17714
17594
|
}
|
|
17715
|
-
|
|
17716
|
-
.
|
|
17717
|
-
.
|
|
17718
|
-
.xfaTb{
|
|
17595
|
+
.superdoc-viewer .xfaLrTb,
|
|
17596
|
+
.superdoc-viewer .xfaRlTb,
|
|
17597
|
+
.superdoc-viewer .xfaTb{
|
|
17719
17598
|
display:flex;
|
|
17720
17599
|
flex-direction:column;
|
|
17721
17600
|
align-items:stretch;
|
|
17722
17601
|
}
|
|
17723
|
-
|
|
17724
|
-
.xfaLr{
|
|
17602
|
+
.superdoc-viewer .xfaLr{
|
|
17725
17603
|
display:flex;
|
|
17726
17604
|
flex-direction:row;
|
|
17727
17605
|
align-items:stretch;
|
|
17728
17606
|
}
|
|
17729
|
-
|
|
17730
|
-
.xfaRl{
|
|
17607
|
+
.superdoc-viewer .xfaRl{
|
|
17731
17608
|
display:flex;
|
|
17732
17609
|
flex-direction:row-reverse;
|
|
17733
17610
|
align-items:stretch;
|
|
17734
17611
|
}
|
|
17735
|
-
|
|
17736
|
-
.xfaTb > div{
|
|
17612
|
+
.superdoc-viewer .xfaTb > div{
|
|
17737
17613
|
justify-content:left;
|
|
17738
17614
|
}
|
|
17739
|
-
|
|
17740
|
-
.xfaPosition{
|
|
17615
|
+
.superdoc-viewer .xfaPosition{
|
|
17741
17616
|
position:relative;
|
|
17742
17617
|
}
|
|
17743
|
-
|
|
17744
|
-
.xfaArea{
|
|
17618
|
+
.superdoc-viewer .xfaArea{
|
|
17745
17619
|
position:relative;
|
|
17746
17620
|
}
|
|
17747
|
-
|
|
17748
|
-
.xfaValignMiddle{
|
|
17621
|
+
.superdoc-viewer .xfaValignMiddle{
|
|
17749
17622
|
display:flex;
|
|
17750
17623
|
align-items:center;
|
|
17751
17624
|
}
|
|
17752
|
-
|
|
17753
|
-
.xfaTable{
|
|
17625
|
+
.superdoc-viewer .xfaTable{
|
|
17754
17626
|
display:flex;
|
|
17755
17627
|
flex-direction:column;
|
|
17756
17628
|
align-items:stretch;
|
|
17757
17629
|
}
|
|
17758
|
-
|
|
17759
|
-
.xfaTable .xfaRow{
|
|
17630
|
+
.superdoc-viewer .xfaTable .xfaRow{
|
|
17760
17631
|
display:flex;
|
|
17761
17632
|
flex-direction:row;
|
|
17762
17633
|
align-items:stretch;
|
|
17763
17634
|
}
|
|
17764
|
-
|
|
17765
|
-
.xfaTable .xfaRlRow{
|
|
17635
|
+
.superdoc-viewer .xfaTable .xfaRlRow{
|
|
17766
17636
|
display:flex;
|
|
17767
17637
|
flex-direction:row-reverse;
|
|
17768
17638
|
align-items:stretch;
|
|
17769
17639
|
flex:1;
|
|
17770
17640
|
}
|
|
17771
|
-
|
|
17772
|
-
.xfaTable .xfaRlRow > div{
|
|
17641
|
+
.superdoc-viewer .xfaTable .xfaRlRow > div{
|
|
17773
17642
|
flex:1;
|
|
17774
17643
|
}
|
|
17775
|
-
|
|
17776
|
-
:is(.xfaNonInteractive, .xfaDisabled, .xfaReadOnly) :is(input, textarea){
|
|
17644
|
+
.superdoc-viewer :is(.xfaNonInteractive, .xfaDisabled, .xfaReadOnly) :is(input, textarea){
|
|
17777
17645
|
background:initial;
|
|
17778
17646
|
}
|
|
17779
|
-
|
|
17780
17647
|
@media print{
|
|
17781
|
-
|
|
17782
|
-
.xfaSelect{
|
|
17648
|
+
.superdoc-viewer .xfaTextfield,
|
|
17649
|
+
.superdoc-viewer .xfaSelect{
|
|
17783
17650
|
background:transparent;
|
|
17784
|
-
|
|
17785
|
-
|
|
17786
|
-
.xfaSelect{
|
|
17651
|
+
}
|
|
17652
|
+
.superdoc-viewer .xfaSelect{
|
|
17787
17653
|
-webkit-appearance:none;
|
|
17788
17654
|
-moz-appearance:none;
|
|
17789
17655
|
appearance:none;
|
|
17790
17656
|
text-indent:1px;
|
|
17791
17657
|
text-overflow:"";
|
|
17792
|
-
}
|
|
17793
17658
|
}
|
|
17794
|
-
|
|
17795
|
-
.canvasWrapper svg{
|
|
17659
|
+
}
|
|
17660
|
+
.superdoc-viewer .canvasWrapper svg{
|
|
17796
17661
|
transform:none;
|
|
17797
|
-
|
|
17798
|
-
|
|
17799
|
-
.canvasWrapper svg[data-main-rotation="90"] mask
|
|
17800
|
-
.canvasWrapper svg[data-main-rotation="90"] use:not(.clip, .mask){
|
|
17662
|
+
}
|
|
17663
|
+
.superdoc-viewer .canvasWrapper svg[data-main-rotation="90"] mask,
|
|
17664
|
+
.superdoc-viewer .canvasWrapper svg[data-main-rotation="90"] use:not(.clip, .mask){
|
|
17801
17665
|
transform:matrix(0, 1, -1, 0, 1, 0);
|
|
17802
|
-
|
|
17803
|
-
|
|
17804
|
-
.canvasWrapper svg[data-main-rotation="180"] mask
|
|
17805
|
-
.canvasWrapper svg[data-main-rotation="180"] use:not(.clip, .mask){
|
|
17666
|
+
}
|
|
17667
|
+
.superdoc-viewer .canvasWrapper svg[data-main-rotation="180"] mask,
|
|
17668
|
+
.superdoc-viewer .canvasWrapper svg[data-main-rotation="180"] use:not(.clip, .mask){
|
|
17806
17669
|
transform:matrix(-1, 0, 0, -1, 1, 1);
|
|
17807
|
-
|
|
17808
|
-
|
|
17809
|
-
.canvasWrapper svg[data-main-rotation="270"] mask
|
|
17810
|
-
.canvasWrapper svg[data-main-rotation="270"] use:not(.clip, .mask){
|
|
17670
|
+
}
|
|
17671
|
+
.superdoc-viewer .canvasWrapper svg[data-main-rotation="270"] mask,
|
|
17672
|
+
.superdoc-viewer .canvasWrapper svg[data-main-rotation="270"] use:not(.clip, .mask){
|
|
17811
17673
|
transform:matrix(0, -1, 1, 0, 0, 1);
|
|
17812
|
-
|
|
17813
|
-
|
|
17814
|
-
.canvasWrapper svg.highlight{
|
|
17674
|
+
}
|
|
17675
|
+
.superdoc-viewer .canvasWrapper svg.highlight{
|
|
17815
17676
|
--blend-mode:multiply;
|
|
17816
17677
|
|
|
17817
17678
|
position:absolute;
|
|
17818
17679
|
mix-blend-mode:var(--blend-mode);
|
|
17819
|
-
|
|
17820
|
-
|
|
17680
|
+
}
|
|
17821
17681
|
@media screen and (forced-colors: active){
|
|
17822
|
-
|
|
17823
|
-
.canvasWrapper svg.highlight{
|
|
17682
|
+
.superdoc-viewer .canvasWrapper svg.highlight{
|
|
17824
17683
|
--blend-mode:difference;
|
|
17825
|
-
|
|
17826
|
-
|
|
17827
|
-
|
|
17828
|
-
.canvasWrapper svg.highlight:not(.free){
|
|
17684
|
+
}
|
|
17685
|
+
}
|
|
17686
|
+
.superdoc-viewer .canvasWrapper svg.highlight:not(.free){
|
|
17829
17687
|
fill-rule:evenodd;
|
|
17830
|
-
|
|
17831
|
-
|
|
17832
|
-
.canvasWrapper svg.highlightOutline{
|
|
17688
|
+
}
|
|
17689
|
+
.superdoc-viewer .canvasWrapper svg.highlightOutline{
|
|
17833
17690
|
position:absolute;
|
|
17834
17691
|
mix-blend-mode:normal;
|
|
17835
17692
|
fill-rule:evenodd;
|
|
17836
17693
|
fill:none;
|
|
17837
|
-
|
|
17838
|
-
|
|
17839
|
-
.canvasWrapper svg.highlightOutline.hovered:not(.free):not(.selected){
|
|
17694
|
+
}
|
|
17695
|
+
.superdoc-viewer .canvasWrapper svg.highlightOutline.hovered:not(.free):not(.selected){
|
|
17840
17696
|
stroke:var(--hover-outline-color);
|
|
17841
17697
|
stroke-width:var(--outline-width);
|
|
17842
|
-
|
|
17843
|
-
|
|
17844
|
-
.canvasWrapper svg.highlightOutline.selected:not(.free) .mainOutline{
|
|
17698
|
+
}
|
|
17699
|
+
.superdoc-viewer .canvasWrapper svg.highlightOutline.selected:not(.free) .mainOutline{
|
|
17845
17700
|
stroke:var(--outline-around-color);
|
|
17846
17701
|
stroke-width:calc(
|
|
17847
17702
|
var(--outline-width) + 2 * var(--outline-around-width)
|
|
17848
17703
|
);
|
|
17849
|
-
|
|
17850
|
-
|
|
17851
|
-
.canvasWrapper svg.highlightOutline.selected:not(.free) .secondaryOutline{
|
|
17704
|
+
}
|
|
17705
|
+
.superdoc-viewer .canvasWrapper svg.highlightOutline.selected:not(.free) .secondaryOutline{
|
|
17852
17706
|
stroke:var(--outline-color);
|
|
17853
17707
|
stroke-width:var(--outline-width);
|
|
17854
|
-
|
|
17855
|
-
|
|
17856
|
-
.canvasWrapper svg.highlightOutline.free.hovered:not(.selected){
|
|
17708
|
+
}
|
|
17709
|
+
.superdoc-viewer .canvasWrapper svg.highlightOutline.free.hovered:not(.selected){
|
|
17857
17710
|
stroke:var(--hover-outline-color);
|
|
17858
17711
|
stroke-width:calc(2 * var(--outline-width));
|
|
17859
|
-
|
|
17860
|
-
|
|
17861
|
-
.canvasWrapper svg.highlightOutline.free.selected .mainOutline{
|
|
17712
|
+
}
|
|
17713
|
+
.superdoc-viewer .canvasWrapper svg.highlightOutline.free.selected .mainOutline{
|
|
17862
17714
|
stroke:var(--outline-around-color);
|
|
17863
17715
|
stroke-width:calc(
|
|
17864
17716
|
2 * (var(--outline-width) + var(--outline-around-width))
|
|
17865
17717
|
);
|
|
17866
|
-
|
|
17867
|
-
|
|
17868
|
-
.canvasWrapper svg.highlightOutline.free.selected .secondaryOutline{
|
|
17718
|
+
}
|
|
17719
|
+
.superdoc-viewer .canvasWrapper svg.highlightOutline.free.selected .secondaryOutline{
|
|
17869
17720
|
stroke:var(--outline-color);
|
|
17870
17721
|
stroke-width:calc(2 * var(--outline-width));
|
|
17871
|
-
|
|
17872
|
-
|
|
17873
|
-
.toggle-button{
|
|
17722
|
+
}
|
|
17723
|
+
.superdoc-viewer .toggle-button{
|
|
17874
17724
|
--button-background-color:#f0f0f4;
|
|
17875
17725
|
--button-background-color-hover:#e0e0e6;
|
|
17876
17726
|
--button-background-color-active:#cfcfd8;
|
|
@@ -17926,10 +17776,8 @@ body {
|
|
|
17926
17776
|
box-sizing:border-box;
|
|
17927
17777
|
flex-shrink:0;
|
|
17928
17778
|
}
|
|
17929
|
-
|
|
17930
17779
|
@media (prefers-color-scheme: dark){
|
|
17931
|
-
|
|
17932
|
-
.toggle-button{
|
|
17780
|
+
.superdoc-viewer .toggle-button{
|
|
17933
17781
|
--button-background-color:color-mix(in srgb, currentColor 7%, transparent);
|
|
17934
17782
|
--button-background-color-hover:color-mix(
|
|
17935
17783
|
in srgb,
|
|
@@ -17947,11 +17795,9 @@ body {
|
|
|
17947
17795
|
--border-interactive-color:#bfbfc9;
|
|
17948
17796
|
--color-canvas:#1c1b22;
|
|
17949
17797
|
}
|
|
17950
|
-
|
|
17951
|
-
|
|
17798
|
+
}
|
|
17952
17799
|
@media (forced-colors: active){
|
|
17953
|
-
|
|
17954
|
-
.toggle-button{
|
|
17800
|
+
.superdoc-viewer .toggle-button{
|
|
17955
17801
|
--color-accent-primary:ButtonText;
|
|
17956
17802
|
--color-accent-primary-hover:SelectedItem;
|
|
17957
17803
|
--color-accent-primary-active:SelectedItem;
|
|
@@ -17962,39 +17808,32 @@ body {
|
|
|
17962
17808
|
--border-interactive-color-disabled:GrayText;
|
|
17963
17809
|
--color-canvas:ButtonText;
|
|
17964
17810
|
}
|
|
17965
|
-
|
|
17966
|
-
|
|
17967
|
-
.toggle-button:focus-visible{
|
|
17811
|
+
}
|
|
17812
|
+
.superdoc-viewer .toggle-button:focus-visible{
|
|
17968
17813
|
outline:var(--focus-outline);
|
|
17969
17814
|
outline-offset:var(--focus-outline-offset);
|
|
17970
|
-
|
|
17971
|
-
|
|
17972
|
-
.toggle-button:enabled:hover{
|
|
17815
|
+
}
|
|
17816
|
+
.superdoc-viewer .toggle-button:enabled:hover{
|
|
17973
17817
|
background:var(--toggle-background-color-hover);
|
|
17974
17818
|
border-color:var(--toggle-border-color);
|
|
17975
|
-
|
|
17976
|
-
|
|
17977
|
-
.toggle-button:enabled:active{
|
|
17819
|
+
}
|
|
17820
|
+
.superdoc-viewer .toggle-button:enabled:active{
|
|
17978
17821
|
background:var(--toggle-background-color-active);
|
|
17979
17822
|
border-color:var(--toggle-border-color);
|
|
17980
|
-
|
|
17981
|
-
|
|
17982
|
-
.toggle-button[aria-pressed="true"]{
|
|
17823
|
+
}
|
|
17824
|
+
.superdoc-viewer .toggle-button[aria-pressed="true"]{
|
|
17983
17825
|
background:var(--toggle-background-color-pressed);
|
|
17984
17826
|
border-color:transparent;
|
|
17985
|
-
|
|
17986
|
-
|
|
17987
|
-
.toggle-button[aria-pressed="true"]:enabled:hover{
|
|
17827
|
+
}
|
|
17828
|
+
.superdoc-viewer .toggle-button[aria-pressed="true"]:enabled:hover{
|
|
17988
17829
|
background:var(--toggle-background-color-pressed-hover);
|
|
17989
17830
|
border-color:transparent;
|
|
17990
|
-
|
|
17991
|
-
|
|
17992
|
-
.toggle-button[aria-pressed="true"]:enabled:active{
|
|
17831
|
+
}
|
|
17832
|
+
.superdoc-viewer .toggle-button[aria-pressed="true"]:enabled:active{
|
|
17993
17833
|
background:var(--toggle-background-color-pressed-active);
|
|
17994
17834
|
border-color:transparent;
|
|
17995
|
-
|
|
17996
|
-
|
|
17997
|
-
.toggle-button::before{
|
|
17835
|
+
}
|
|
17836
|
+
.superdoc-viewer .toggle-button::before{
|
|
17998
17837
|
display:block;
|
|
17999
17838
|
content:"";
|
|
18000
17839
|
background-color:var(--toggle-dot-background-color);
|
|
@@ -18003,61 +17842,49 @@ body {
|
|
|
18003
17842
|
margin:var(--toggle-dot-margin);
|
|
18004
17843
|
border-radius:var(--toggle-border-radius);
|
|
18005
17844
|
translate:0;
|
|
18006
|
-
|
|
18007
|
-
|
|
18008
|
-
.toggle-button[aria-pressed="true"]::before{
|
|
17845
|
+
}
|
|
17846
|
+
.superdoc-viewer .toggle-button[aria-pressed="true"]::before{
|
|
18009
17847
|
translate:var(--toggle-dot-transform-x);
|
|
18010
17848
|
background-color:var(--toggle-dot-background-color-on-pressed);
|
|
18011
|
-
|
|
18012
|
-
|
|
18013
|
-
.toggle-button[aria-pressed="true"]:enabled:
|
|
18014
|
-
.toggle-button[aria-pressed="true"]:enabled:active::before{
|
|
17849
|
+
}
|
|
17850
|
+
.superdoc-viewer .toggle-button[aria-pressed="true"]:enabled:hover::before,
|
|
17851
|
+
.superdoc-viewer .toggle-button[aria-pressed="true"]:enabled:active::before{
|
|
18015
17852
|
background-color:var(--toggle-dot-background-color-on-pressed);
|
|
18016
|
-
|
|
18017
|
-
|
|
18018
|
-
[dir="rtl"] .toggle-button[aria-pressed="true"]::before{
|
|
17853
|
+
}
|
|
17854
|
+
.superdoc-viewer [dir="rtl"] .toggle-button[aria-pressed="true"]::before{
|
|
18019
17855
|
translate:calc(-1 * var(--toggle-dot-transform-x));
|
|
18020
|
-
|
|
18021
|
-
|
|
17856
|
+
}
|
|
18022
17857
|
@media (prefers-reduced-motion: no-preference){
|
|
18023
|
-
|
|
17858
|
+
.superdoc-viewer .toggle-button::before{
|
|
18024
17859
|
transition:translate 100ms;
|
|
18025
|
-
|
|
18026
|
-
|
|
18027
|
-
|
|
17860
|
+
}
|
|
17861
|
+
}
|
|
18028
17862
|
@media (prefers-contrast){
|
|
18029
|
-
|
|
17863
|
+
.superdoc-viewer .toggle-button:enabled:hover{
|
|
18030
17864
|
border-color:var(--toggle-border-color-hover);
|
|
18031
|
-
|
|
18032
|
-
|
|
18033
|
-
.toggle-button:enabled:active{
|
|
17865
|
+
}
|
|
17866
|
+
.superdoc-viewer .toggle-button:enabled:active{
|
|
18034
17867
|
border-color:var(--toggle-border-color-active);
|
|
18035
|
-
|
|
18036
|
-
|
|
18037
|
-
.toggle-button[aria-pressed="true"]:enabled{
|
|
17868
|
+
}
|
|
17869
|
+
.superdoc-viewer .toggle-button[aria-pressed="true"]:enabled{
|
|
18038
17870
|
border-color:var(--toggle-border-color);
|
|
18039
17871
|
position:relative;
|
|
18040
|
-
|
|
18041
|
-
|
|
18042
|
-
.toggle-button[aria-pressed="true"]:enabled:hover
|
|
18043
|
-
.toggle-button[aria-pressed="true"]:enabled:hover:active{
|
|
17872
|
+
}
|
|
17873
|
+
.superdoc-viewer .toggle-button[aria-pressed="true"]:enabled:hover,
|
|
17874
|
+
.superdoc-viewer .toggle-button[aria-pressed="true"]:enabled:hover:active{
|
|
18044
17875
|
border-color:var(--toggle-border-color-hover);
|
|
18045
|
-
|
|
18046
|
-
|
|
18047
|
-
.toggle-button[aria-pressed="true"]:enabled:active{
|
|
17876
|
+
}
|
|
17877
|
+
.superdoc-viewer .toggle-button[aria-pressed="true"]:enabled:active{
|
|
18048
17878
|
background-color:var(--toggle-dot-background-color-active);
|
|
18049
17879
|
border-color:var(--toggle-dot-background-color-hover);
|
|
18050
|
-
|
|
18051
|
-
|
|
18052
|
-
.toggle-button:
|
|
18053
|
-
.toggle-button:active::before{
|
|
17880
|
+
}
|
|
17881
|
+
.superdoc-viewer .toggle-button:hover::before,
|
|
17882
|
+
.superdoc-viewer .toggle-button:active::before{
|
|
18054
17883
|
background-color:var(--toggle-dot-background-color-hover);
|
|
18055
|
-
|
|
18056
|
-
|
|
18057
|
-
|
|
17884
|
+
}
|
|
17885
|
+
}
|
|
18058
17886
|
@media (forced-colors){
|
|
18059
|
-
|
|
18060
|
-
.toggle-button{
|
|
17887
|
+
.superdoc-viewer .toggle-button{
|
|
18061
17888
|
--toggle-dot-background-color:var(--color-accent-primary);
|
|
18062
17889
|
--toggle-dot-background-color-hover:var(--color-accent-primary-hover);
|
|
18063
17890
|
--toggle-dot-background-color-active:var(--color-accent-primary-active);
|
|
@@ -18067,8 +17894,7 @@ body {
|
|
|
18067
17894
|
--toggle-border-color-active:var(--border-interactive-color-active);
|
|
18068
17895
|
--toggle-border-color-disabled:var(--border-interactive-color-disabled);
|
|
18069
17896
|
}
|
|
18070
|
-
|
|
18071
|
-
.toggle-button[aria-pressed="true"]:enabled::after{
|
|
17897
|
+
.superdoc-viewer .toggle-button[aria-pressed="true"]:enabled::after{
|
|
18072
17898
|
border:1px solid var(--button-background-color);
|
|
18073
17899
|
content:"";
|
|
18074
17900
|
position:absolute;
|
|
@@ -18077,14 +17903,12 @@ body {
|
|
|
18077
17903
|
display:block;
|
|
18078
17904
|
border-radius:var(--toggle-border-radius);
|
|
18079
17905
|
inset:-2px;
|
|
18080
|
-
|
|
18081
|
-
|
|
18082
|
-
.toggle-button[aria-pressed="true"]:enabled:active::after{
|
|
17906
|
+
}
|
|
17907
|
+
.superdoc-viewer .toggle-button[aria-pressed="true"]:enabled:active::after{
|
|
18083
17908
|
border-color:var(--toggle-border-color-active);
|
|
18084
|
-
|
|
18085
|
-
|
|
18086
|
-
|
|
18087
|
-
:root{
|
|
17909
|
+
}
|
|
17910
|
+
}
|
|
17911
|
+
.superdoc-viewer :root{
|
|
18088
17912
|
--outline-width:2px;
|
|
18089
17913
|
--outline-color:#0060df;
|
|
18090
17914
|
--outline-around-width:1px;
|
|
@@ -18105,11 +17929,11 @@ body {
|
|
|
18105
17929
|
var(--outline-around-width)
|
|
18106
17930
|
);
|
|
18107
17931
|
--editorFreeText-editing-cursor:text;
|
|
18108
|
-
--editorInk-editing-cursor:url(
|
|
18109
|
-
--editorHighlight-editing-cursor:url(
|
|
18110
|
-
--editorFreeHighlight-editing-cursor:url(
|
|
17932
|
+
--editorInk-editing-cursor:url(images/cursor-editorInk.svg) 0 16, pointer;
|
|
17933
|
+
--editorHighlight-editing-cursor:url(images/cursor-editorTextHighlight.svg) 24 24, text;
|
|
17934
|
+
--editorFreeHighlight-editing-cursor:url(images/cursor-editorFreeHighlight.svg) 1 18, pointer;
|
|
18111
17935
|
}
|
|
18112
|
-
.visuallyHidden{
|
|
17936
|
+
.superdoc-viewer .visuallyHidden{
|
|
18113
17937
|
position:absolute;
|
|
18114
17938
|
top:0;
|
|
18115
17939
|
left:0;
|
|
@@ -18122,48 +17946,39 @@ body {
|
|
|
18122
17946
|
white-space:nowrap;
|
|
18123
17947
|
font-size:0;
|
|
18124
17948
|
}
|
|
18125
|
-
|
|
18126
|
-
.textLayer.highlighting{
|
|
17949
|
+
.superdoc-viewer .textLayer.highlighting{
|
|
18127
17950
|
cursor:var(--editorFreeHighlight-editing-cursor);
|
|
18128
17951
|
}
|
|
18129
|
-
|
|
18130
|
-
.textLayer.highlighting:not(.free) span{
|
|
17952
|
+
.superdoc-viewer .textLayer.highlighting:not(.free) span{
|
|
18131
17953
|
cursor:var(--editorHighlight-editing-cursor);
|
|
18132
|
-
|
|
18133
|
-
|
|
18134
|
-
.textLayer.highlighting.free span{
|
|
17954
|
+
}
|
|
17955
|
+
.superdoc-viewer .textLayer.highlighting.free span{
|
|
18135
17956
|
cursor:var(--editorFreeHighlight-editing-cursor);
|
|
18136
|
-
|
|
18137
|
-
|
|
17957
|
+
}
|
|
18138
17958
|
@media (min-resolution: 1.1dppx){
|
|
18139
|
-
|
|
18140
|
-
--editorFreeText-editing-cursor:url(
|
|
18141
|
-
|
|
17959
|
+
.superdoc-viewer :root{
|
|
17960
|
+
--editorFreeText-editing-cursor:url(images/cursor-editorFreeText.svg) 0 16, text;
|
|
17961
|
+
}
|
|
18142
17962
|
}
|
|
18143
|
-
|
|
18144
17963
|
@media screen and (forced-colors: active){
|
|
18145
|
-
|
|
17964
|
+
.superdoc-viewer :root{
|
|
18146
17965
|
--outline-color:CanvasText;
|
|
18147
17966
|
--outline-around-color:ButtonFace;
|
|
18148
17967
|
--resizer-bg-color:ButtonText;
|
|
18149
17968
|
--hover-outline-color:Highlight;
|
|
18150
17969
|
--hover-outline-around-color:SelectedItemText;
|
|
18151
|
-
}
|
|
18152
17970
|
}
|
|
18153
|
-
|
|
18154
|
-
[data-editor-rotation="90"]{
|
|
17971
|
+
}
|
|
17972
|
+
.superdoc-viewer [data-editor-rotation="90"]{
|
|
18155
17973
|
transform:rotate(90deg);
|
|
18156
17974
|
}
|
|
18157
|
-
|
|
18158
|
-
[data-editor-rotation="180"]{
|
|
17975
|
+
.superdoc-viewer [data-editor-rotation="180"]{
|
|
18159
17976
|
transform:rotate(180deg);
|
|
18160
17977
|
}
|
|
18161
|
-
|
|
18162
|
-
[data-editor-rotation="270"]{
|
|
17978
|
+
.superdoc-viewer [data-editor-rotation="270"]{
|
|
18163
17979
|
transform:rotate(270deg);
|
|
18164
17980
|
}
|
|
18165
|
-
|
|
18166
|
-
.annotationEditorLayer{
|
|
17981
|
+
.superdoc-viewer .annotationEditorLayer{
|
|
18167
17982
|
background:transparent;
|
|
18168
17983
|
position:absolute;
|
|
18169
17984
|
inset:0;
|
|
@@ -18171,8 +17986,7 @@ body {
|
|
|
18171
17986
|
transform-origin:0 0;
|
|
18172
17987
|
cursor:auto;
|
|
18173
17988
|
}
|
|
18174
|
-
|
|
18175
|
-
.annotationEditorLayer.waiting{
|
|
17989
|
+
.superdoc-viewer .annotationEditorLayer.waiting{
|
|
18176
17990
|
content:"";
|
|
18177
17991
|
cursor:wait;
|
|
18178
17992
|
position:absolute;
|
|
@@ -18180,20 +17994,16 @@ body {
|
|
|
18180
17994
|
width:100%;
|
|
18181
17995
|
height:100%;
|
|
18182
17996
|
}
|
|
18183
|
-
|
|
18184
|
-
.annotationEditorLayer.disabled{
|
|
17997
|
+
.superdoc-viewer .annotationEditorLayer.disabled{
|
|
18185
17998
|
pointer-events:none;
|
|
18186
17999
|
}
|
|
18187
|
-
|
|
18188
|
-
.annotationEditorLayer.freetextEditing{
|
|
18000
|
+
.superdoc-viewer .annotationEditorLayer.freetextEditing{
|
|
18189
18001
|
cursor:var(--editorFreeText-editing-cursor);
|
|
18190
18002
|
}
|
|
18191
|
-
|
|
18192
|
-
.annotationEditorLayer.inkEditing{
|
|
18003
|
+
.superdoc-viewer .annotationEditorLayer.inkEditing{
|
|
18193
18004
|
cursor:var(--editorInk-editing-cursor);
|
|
18194
18005
|
}
|
|
18195
|
-
|
|
18196
|
-
.annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor){
|
|
18006
|
+
.superdoc-viewer .annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor){
|
|
18197
18007
|
position:absolute;
|
|
18198
18008
|
background:transparent;
|
|
18199
18009
|
z-index:1;
|
|
@@ -18203,45 +18013,38 @@ body {
|
|
|
18203
18013
|
max-height:100%;
|
|
18204
18014
|
border:var(--unfocus-outline);
|
|
18205
18015
|
}
|
|
18206
|
-
|
|
18207
|
-
.annotationEditorLayer .draggable.selectedEditor:is(.freeTextEditor, .inkEditor, .stampEditor){
|
|
18016
|
+
.superdoc-viewer .annotationEditorLayer .draggable.selectedEditor:is(.freeTextEditor, .inkEditor, .stampEditor){
|
|
18208
18017
|
cursor:move;
|
|
18209
|
-
|
|
18210
|
-
|
|
18211
|
-
.annotationEditorLayer .moving:is(.freeTextEditor, .inkEditor, .stampEditor){
|
|
18018
|
+
}
|
|
18019
|
+
.superdoc-viewer .annotationEditorLayer .moving:is(.freeTextEditor, .inkEditor, .stampEditor){
|
|
18212
18020
|
touch-action:none;
|
|
18213
|
-
|
|
18214
|
-
|
|
18215
|
-
.annotationEditorLayer .selectedEditor:is(.freeTextEditor, .inkEditor, .stampEditor){
|
|
18021
|
+
}
|
|
18022
|
+
.superdoc-viewer .annotationEditorLayer .selectedEditor:is(.freeTextEditor, .inkEditor, .stampEditor){
|
|
18216
18023
|
border:var(--focus-outline);
|
|
18217
18024
|
outline:var(--focus-outline-around);
|
|
18218
|
-
|
|
18219
|
-
|
|
18220
|
-
.annotationEditorLayer .selectedEditor:is(.freeTextEditor, .inkEditor, .stampEditor)::before{
|
|
18025
|
+
}
|
|
18026
|
+
.superdoc-viewer .annotationEditorLayer .selectedEditor:is(.freeTextEditor, .inkEditor, .stampEditor)::before{
|
|
18221
18027
|
content:"";
|
|
18222
18028
|
position:absolute;
|
|
18223
18029
|
inset:0;
|
|
18224
18030
|
border:var(--focus-outline-around);
|
|
18225
18031
|
pointer-events:none;
|
|
18226
|
-
|
|
18227
|
-
|
|
18228
|
-
.annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor):hover:not(.selectedEditor){
|
|
18032
|
+
}
|
|
18033
|
+
.superdoc-viewer .annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor):hover:not(.selectedEditor){
|
|
18229
18034
|
border:var(--hover-outline);
|
|
18230
18035
|
outline:var(--hover-outline-around);
|
|
18231
|
-
|
|
18232
|
-
|
|
18233
|
-
.annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor):hover:not(.selectedEditor)::before{
|
|
18036
|
+
}
|
|
18037
|
+
.superdoc-viewer .annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor):hover:not(.selectedEditor)::before{
|
|
18234
18038
|
content:"";
|
|
18235
18039
|
position:absolute;
|
|
18236
18040
|
inset:0;
|
|
18237
18041
|
border:var(--focus-outline-around);
|
|
18238
|
-
|
|
18239
|
-
|
|
18240
|
-
:is(.annotationEditorLayer
|
|
18042
|
+
}
|
|
18043
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18241
18044
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar{
|
|
18242
|
-
--editor-toolbar-delete-image:url(
|
|
18045
|
+
--editor-toolbar-delete-image:url(images/editor-toolbar-delete.svg);
|
|
18243
18046
|
--editor-toolbar-bg-color:#f0f0f4;
|
|
18244
|
-
--editor-toolbar-highlight-image:url(
|
|
18047
|
+
--editor-toolbar-highlight-image:url(images/toolbarButton-editorHighlight.svg);
|
|
18245
18048
|
--editor-toolbar-fg-color:#2e2e56;
|
|
18246
18049
|
--editor-toolbar-border-color:#8f8f9d;
|
|
18247
18050
|
--editor-toolbar-hover-border-color:var(--editor-toolbar-border-color);
|
|
@@ -18274,22 +18077,18 @@ body {
|
|
|
18274
18077
|
background-color:var(--editor-toolbar-bg-color);
|
|
18275
18078
|
border:1px solid var(--editor-toolbar-border-color);
|
|
18276
18079
|
box-shadow:var(--editor-toolbar-shadow);
|
|
18277
|
-
|
|
18278
|
-
|
|
18080
|
+
}
|
|
18279
18081
|
@media (prefers-color-scheme: dark){
|
|
18280
|
-
|
|
18281
|
-
:is(.annotationEditorLayer
|
|
18082
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18282
18083
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar{
|
|
18283
18084
|
--editor-toolbar-bg-color:#2b2a33;
|
|
18284
18085
|
--editor-toolbar-fg-color:#fbfbfe;
|
|
18285
18086
|
--editor-toolbar-hover-bg-color:#52525e;
|
|
18286
18087
|
--editor-toolbar-focus-outline-color:#0df;
|
|
18287
|
-
|
|
18288
|
-
|
|
18289
|
-
|
|
18088
|
+
}
|
|
18089
|
+
}
|
|
18290
18090
|
@media screen and (forced-colors: active){
|
|
18291
|
-
|
|
18292
|
-
:is(.annotationEditorLayer
|
|
18091
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18293
18092
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar{
|
|
18294
18093
|
--editor-toolbar-bg-color:ButtonFace;
|
|
18295
18094
|
--editor-toolbar-fg-color:ButtonText;
|
|
@@ -18300,39 +18099,33 @@ body {
|
|
|
18300
18099
|
--editor-toolbar-hover-outline:2px solid var(--editor-toolbar-hover-border-color);
|
|
18301
18100
|
--editor-toolbar-focus-outline-color:ButtonBorder;
|
|
18302
18101
|
--editor-toolbar-shadow:none;
|
|
18303
|
-
|
|
18304
|
-
|
|
18305
|
-
|
|
18306
|
-
:is(.annotationEditorLayer
|
|
18102
|
+
}
|
|
18103
|
+
}
|
|
18104
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18307
18105
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar.hidden{
|
|
18308
18106
|
display:none;
|
|
18309
|
-
|
|
18310
|
-
|
|
18311
|
-
:is(.annotationEditorLayer
|
|
18107
|
+
}
|
|
18108
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18312
18109
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar:has(:focus-visible){
|
|
18313
18110
|
border-color:transparent;
|
|
18314
|
-
|
|
18315
|
-
|
|
18316
|
-
[dir="ltr"] :is(.annotationEditorLayer
|
|
18111
|
+
}
|
|
18112
|
+
.superdoc-viewer [dir="ltr"] :is(.annotationEditorLayer
|
|
18317
18113
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar{
|
|
18318
18114
|
transform-origin:100% 0;
|
|
18319
|
-
|
|
18320
|
-
|
|
18321
|
-
[dir="rtl"] :is(.annotationEditorLayer
|
|
18115
|
+
}
|
|
18116
|
+
.superdoc-viewer [dir="rtl"] :is(.annotationEditorLayer
|
|
18322
18117
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar{
|
|
18323
18118
|
transform-origin:0 0;
|
|
18324
|
-
|
|
18325
|
-
|
|
18326
|
-
:is(.annotationEditorLayer
|
|
18119
|
+
}
|
|
18120
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18327
18121
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons{
|
|
18328
18122
|
display:flex;
|
|
18329
18123
|
justify-content:center;
|
|
18330
18124
|
align-items:center;
|
|
18331
18125
|
gap:0;
|
|
18332
18126
|
height:100%;
|
|
18333
|
-
|
|
18334
|
-
|
|
18335
|
-
:is(.annotationEditorLayer
|
|
18127
|
+
}
|
|
18128
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18336
18129
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons .divider{
|
|
18337
18130
|
width:1px;
|
|
18338
18131
|
height:calc(
|
|
@@ -18341,14 +18134,12 @@ body {
|
|
|
18341
18134
|
background-color:var(--editor-toolbar-border-color);
|
|
18342
18135
|
display:inline-block;
|
|
18343
18136
|
margin-inline:2px;
|
|
18344
|
-
|
|
18345
|
-
|
|
18346
|
-
:is(.annotationEditorLayer
|
|
18137
|
+
}
|
|
18138
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18347
18139
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons .highlightButton{
|
|
18348
18140
|
width:var(--editor-toolbar-height);
|
|
18349
|
-
|
|
18350
|
-
|
|
18351
|
-
:is(.annotationEditorLayer
|
|
18141
|
+
}
|
|
18142
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18352
18143
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons .highlightButton::before{
|
|
18353
18144
|
content:"";
|
|
18354
18145
|
-webkit-mask-image:var(--editor-toolbar-highlight-image);
|
|
@@ -18361,19 +18152,16 @@ body {
|
|
|
18361
18152
|
background-color:var(--editor-toolbar-fg-color);
|
|
18362
18153
|
width:100%;
|
|
18363
18154
|
height:100%;
|
|
18364
|
-
|
|
18365
|
-
|
|
18366
|
-
:is(.annotationEditorLayer
|
|
18155
|
+
}
|
|
18156
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18367
18157
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons .highlightButton:hover::before{
|
|
18368
18158
|
background-color:var(--editor-toolbar-hover-fg-color);
|
|
18369
|
-
|
|
18370
|
-
|
|
18371
|
-
:is(.annotationEditorLayer
|
|
18159
|
+
}
|
|
18160
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18372
18161
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons .delete{
|
|
18373
18162
|
width:var(--editor-toolbar-height);
|
|
18374
|
-
|
|
18375
|
-
|
|
18376
|
-
:is(.annotationEditorLayer
|
|
18163
|
+
}
|
|
18164
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18377
18165
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons .delete::before{
|
|
18378
18166
|
content:"";
|
|
18379
18167
|
-webkit-mask-image:var(--editor-toolbar-delete-image);
|
|
@@ -18386,49 +18174,42 @@ body {
|
|
|
18386
18174
|
background-color:var(--editor-toolbar-fg-color);
|
|
18387
18175
|
width:100%;
|
|
18388
18176
|
height:100%;
|
|
18389
|
-
|
|
18390
|
-
|
|
18391
|
-
:is(.annotationEditorLayer
|
|
18177
|
+
}
|
|
18178
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18392
18179
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons .delete:hover::before{
|
|
18393
18180
|
background-color:var(--editor-toolbar-hover-fg-color);
|
|
18394
|
-
|
|
18395
|
-
|
|
18396
|
-
:is(.annotationEditorLayer
|
|
18181
|
+
}
|
|
18182
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18397
18183
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons > *{
|
|
18398
18184
|
height:var(--editor-toolbar-height);
|
|
18399
|
-
|
|
18400
|
-
|
|
18401
|
-
:is(.annotationEditorLayer
|
|
18185
|
+
}
|
|
18186
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18402
18187
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons > :not(.divider){
|
|
18403
18188
|
border:none;
|
|
18404
18189
|
background-color:transparent;
|
|
18405
18190
|
cursor:pointer;
|
|
18406
|
-
|
|
18407
|
-
|
|
18408
|
-
:is(.annotationEditorLayer
|
|
18191
|
+
}
|
|
18192
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18409
18193
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons > :not(.divider):hover{
|
|
18410
18194
|
border-radius:2px;
|
|
18411
18195
|
background-color:var(--editor-toolbar-hover-bg-color);
|
|
18412
18196
|
color:var(--editor-toolbar-hover-fg-color);
|
|
18413
18197
|
outline:var(--editor-toolbar-hover-outline);
|
|
18414
18198
|
outline-offset:1px;
|
|
18415
|
-
|
|
18416
|
-
|
|
18417
|
-
:is(.annotationEditorLayer
|
|
18199
|
+
}
|
|
18200
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18418
18201
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons > :not(.divider):hover:active{
|
|
18419
18202
|
outline:none;
|
|
18420
|
-
|
|
18421
|
-
|
|
18422
|
-
:is(.annotationEditorLayer
|
|
18203
|
+
}
|
|
18204
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18423
18205
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons > :not(.divider):focus-visible{
|
|
18424
18206
|
border-radius:2px;
|
|
18425
18207
|
outline:2px solid var(--editor-toolbar-focus-outline-color);
|
|
18426
|
-
|
|
18427
|
-
|
|
18428
|
-
:is(.annotationEditorLayer
|
|
18208
|
+
}
|
|
18209
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18429
18210
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons .altText{
|
|
18430
|
-
--alt-text-add-image:url(
|
|
18431
|
-
--alt-text-done-image:url(
|
|
18211
|
+
--alt-text-add-image:url(images/altText_add.svg);
|
|
18212
|
+
--alt-text-done-image:url(images/altText_done.svg);
|
|
18432
18213
|
|
|
18433
18214
|
display:flex;
|
|
18434
18215
|
align-items:center;
|
|
@@ -18441,14 +18222,12 @@ body {
|
|
|
18441
18222
|
font-weight:590;
|
|
18442
18223
|
font-size:12px;
|
|
18443
18224
|
color:var(--editor-toolbar-fg-color);
|
|
18444
|
-
|
|
18445
|
-
|
|
18446
|
-
:is(.annotationEditorLayer
|
|
18225
|
+
}
|
|
18226
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18447
18227
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons .altText:disabled{
|
|
18448
18228
|
pointer-events:none;
|
|
18449
|
-
|
|
18450
|
-
|
|
18451
|
-
:is(.annotationEditorLayer
|
|
18229
|
+
}
|
|
18230
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18452
18231
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons .altText::before{
|
|
18453
18232
|
content:"";
|
|
18454
18233
|
-webkit-mask-image:var(--alt-text-add-image);
|
|
@@ -18462,25 +18241,21 @@ body {
|
|
|
18462
18241
|
height:13px;
|
|
18463
18242
|
background-color:var(--editor-toolbar-fg-color);
|
|
18464
18243
|
margin-inline-end:4px;
|
|
18465
|
-
|
|
18466
|
-
|
|
18467
|
-
:is(.annotationEditorLayer
|
|
18244
|
+
}
|
|
18245
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18468
18246
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons .altText:hover::before{
|
|
18469
18247
|
background-color:var(--editor-toolbar-hover-fg-color);
|
|
18470
|
-
|
|
18471
|
-
|
|
18472
|
-
:is(.annotationEditorLayer
|
|
18248
|
+
}
|
|
18249
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18473
18250
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons .altText.done::before{
|
|
18474
18251
|
-webkit-mask-image:var(--alt-text-done-image);
|
|
18475
18252
|
mask-image:var(--alt-text-done-image);
|
|
18476
|
-
|
|
18477
|
-
|
|
18478
|
-
:is(.annotationEditorLayer
|
|
18253
|
+
}
|
|
18254
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18479
18255
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons .altText .tooltip{
|
|
18480
18256
|
display:none;
|
|
18481
|
-
|
|
18482
|
-
|
|
18483
|
-
:is(.annotationEditorLayer
|
|
18257
|
+
}
|
|
18258
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18484
18259
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons .altText .tooltip.show{
|
|
18485
18260
|
--alt-text-tooltip-bg:#f0f0f4;
|
|
18486
18261
|
--alt-text-tooltip-fg:#15141a;
|
|
@@ -18508,37 +18283,31 @@ body {
|
|
|
18508
18283
|
color:var(--alt-text-tooltip-fg);
|
|
18509
18284
|
|
|
18510
18285
|
pointer-events:none;
|
|
18511
|
-
|
|
18512
|
-
|
|
18286
|
+
}
|
|
18513
18287
|
@media (prefers-color-scheme: dark){
|
|
18514
|
-
|
|
18515
|
-
:is(.annotationEditorLayer
|
|
18288
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18516
18289
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons .altText .tooltip.show{
|
|
18517
18290
|
--alt-text-tooltip-bg:#1c1b22;
|
|
18518
18291
|
--alt-text-tooltip-fg:#fbfbfe;
|
|
18519
18292
|
--alt-text-tooltip-shadow:0px 2px 6px 0px #15141a;
|
|
18520
|
-
|
|
18521
|
-
|
|
18522
|
-
|
|
18293
|
+
}
|
|
18294
|
+
}
|
|
18523
18295
|
@media screen and (forced-colors: active){
|
|
18524
|
-
|
|
18525
|
-
:is(.annotationEditorLayer
|
|
18296
|
+
.superdoc-viewer :is(.annotationEditorLayer
|
|
18526
18297
|
:is(.freeTextEditor, .inkEditor, .stampEditor, .highlightEditor),.textLayer) .editToolbar .buttons .altText .tooltip.show{
|
|
18527
18298
|
--alt-text-tooltip-bg:Canvas;
|
|
18528
18299
|
--alt-text-tooltip-fg:CanvasText;
|
|
18529
18300
|
--alt-text-tooltip-border:CanvasText;
|
|
18530
18301
|
--alt-text-tooltip-shadow:none;
|
|
18531
|
-
|
|
18532
|
-
|
|
18533
|
-
|
|
18534
|
-
.annotationEditorLayer .freeTextEditor{
|
|
18302
|
+
}
|
|
18303
|
+
}
|
|
18304
|
+
.superdoc-viewer .annotationEditorLayer .freeTextEditor{
|
|
18535
18305
|
padding:calc(var(--freetext-padding) * var(--scale-factor));
|
|
18536
18306
|
width:auto;
|
|
18537
18307
|
height:auto;
|
|
18538
18308
|
touch-action:none;
|
|
18539
18309
|
}
|
|
18540
|
-
|
|
18541
|
-
.annotationEditorLayer .freeTextEditor .internal{
|
|
18310
|
+
.superdoc-viewer .annotationEditorLayer .freeTextEditor .internal{
|
|
18542
18311
|
background:transparent;
|
|
18543
18312
|
border:none;
|
|
18544
18313
|
inset:0;
|
|
@@ -18550,8 +18319,7 @@ body {
|
|
|
18550
18319
|
-moz-user-select:none;
|
|
18551
18320
|
user-select:none;
|
|
18552
18321
|
}
|
|
18553
|
-
|
|
18554
|
-
.annotationEditorLayer .freeTextEditor .overlay{
|
|
18322
|
+
.superdoc-viewer .annotationEditorLayer .freeTextEditor .overlay{
|
|
18555
18323
|
position:absolute;
|
|
18556
18324
|
display:none;
|
|
18557
18325
|
background:transparent;
|
|
@@ -18559,263 +18327,179 @@ body {
|
|
|
18559
18327
|
width:100%;
|
|
18560
18328
|
height:100%;
|
|
18561
18329
|
}
|
|
18562
|
-
|
|
18563
|
-
.annotationEditorLayer freeTextEditor .overlay.enabled{
|
|
18330
|
+
.superdoc-viewer .annotationEditorLayer freeTextEditor .overlay.enabled{
|
|
18564
18331
|
display:block;
|
|
18565
18332
|
}
|
|
18566
|
-
|
|
18567
|
-
.annotationEditorLayer .freeTextEditor .internal:empty::before{
|
|
18333
|
+
.superdoc-viewer .annotationEditorLayer .freeTextEditor .internal:empty::before{
|
|
18568
18334
|
content:attr(default-content);
|
|
18569
18335
|
color:gray;
|
|
18570
18336
|
}
|
|
18571
|
-
|
|
18572
|
-
.annotationEditorLayer .freeTextEditor .internal:focus{
|
|
18337
|
+
.superdoc-viewer .annotationEditorLayer .freeTextEditor .internal:focus{
|
|
18573
18338
|
outline:none;
|
|
18574
18339
|
-webkit-user-select:auto;
|
|
18575
18340
|
-moz-user-select:auto;
|
|
18576
18341
|
user-select:auto;
|
|
18577
18342
|
}
|
|
18578
|
-
|
|
18579
|
-
.annotationEditorLayer .inkEditor{
|
|
18343
|
+
.superdoc-viewer .annotationEditorLayer .inkEditor{
|
|
18580
18344
|
width:100%;
|
|
18581
18345
|
height:100%;
|
|
18582
18346
|
}
|
|
18583
|
-
|
|
18584
|
-
.annotationEditorLayer .inkEditor.editing{
|
|
18347
|
+
.superdoc-viewer .annotationEditorLayer .inkEditor.editing{
|
|
18585
18348
|
cursor:inherit;
|
|
18586
18349
|
}
|
|
18587
|
-
|
|
18588
|
-
.annotationEditorLayer .inkEditor .inkEditorCanvas{
|
|
18350
|
+
.superdoc-viewer .annotationEditorLayer .inkEditor .inkEditorCanvas{
|
|
18589
18351
|
position:absolute;
|
|
18590
18352
|
inset:0;
|
|
18591
18353
|
width:100%;
|
|
18592
18354
|
height:100%;
|
|
18593
18355
|
touch-action:none;
|
|
18594
18356
|
}
|
|
18595
|
-
|
|
18596
|
-
.annotationEditorLayer .stampEditor{
|
|
18357
|
+
.superdoc-viewer .annotationEditorLayer .stampEditor{
|
|
18597
18358
|
width:auto;
|
|
18598
18359
|
height:auto;
|
|
18599
18360
|
}
|
|
18600
|
-
|
|
18601
|
-
.annotationEditorLayer .stampEditor canvas{
|
|
18361
|
+
.superdoc-viewer .annotationEditorLayer .stampEditor canvas{
|
|
18602
18362
|
position:absolute;
|
|
18603
18363
|
width:100%;
|
|
18604
18364
|
height:100%;
|
|
18605
18365
|
margin:0;
|
|
18606
|
-
|
|
18607
|
-
|
|
18608
|
-
.annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers{
|
|
18366
|
+
}
|
|
18367
|
+
.superdoc-viewer .annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers{
|
|
18609
18368
|
position:absolute;
|
|
18610
18369
|
inset:0;
|
|
18611
|
-
|
|
18612
|
-
|
|
18613
|
-
.annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers.hidden{
|
|
18370
|
+
}
|
|
18371
|
+
.superdoc-viewer .annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers.hidden{
|
|
18614
18372
|
display:none;
|
|
18615
|
-
|
|
18616
|
-
|
|
18617
|
-
.annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers > .resizer{
|
|
18373
|
+
}
|
|
18374
|
+
.superdoc-viewer .annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers > .resizer{
|
|
18618
18375
|
width:var(--resizer-size);
|
|
18619
18376
|
height:var(--resizer-size);
|
|
18620
18377
|
background:content-box var(--resizer-bg-color);
|
|
18621
18378
|
border:var(--focus-outline-around);
|
|
18622
18379
|
border-radius:2px;
|
|
18623
18380
|
position:absolute;
|
|
18624
|
-
|
|
18625
|
-
|
|
18626
|
-
.annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers > .resizer.topLeft{
|
|
18381
|
+
}
|
|
18382
|
+
.superdoc-viewer .annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers > .resizer.topLeft{
|
|
18627
18383
|
top:var(--resizer-shift);
|
|
18628
18384
|
left:var(--resizer-shift);
|
|
18629
|
-
|
|
18630
|
-
|
|
18631
|
-
.annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers > .resizer.topMiddle{
|
|
18385
|
+
}
|
|
18386
|
+
.superdoc-viewer .annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers > .resizer.topMiddle{
|
|
18632
18387
|
top:var(--resizer-shift);
|
|
18633
18388
|
left:calc(50% + var(--resizer-shift));
|
|
18634
|
-
|
|
18635
|
-
|
|
18636
|
-
.annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers > .resizer.topRight{
|
|
18389
|
+
}
|
|
18390
|
+
.superdoc-viewer .annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers > .resizer.topRight{
|
|
18637
18391
|
top:var(--resizer-shift);
|
|
18638
18392
|
right:var(--resizer-shift);
|
|
18639
|
-
|
|
18640
|
-
|
|
18641
|
-
.annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers > .resizer.middleRight{
|
|
18393
|
+
}
|
|
18394
|
+
.superdoc-viewer .annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers > .resizer.middleRight{
|
|
18642
18395
|
top:calc(50% + var(--resizer-shift));
|
|
18643
18396
|
right:var(--resizer-shift);
|
|
18644
|
-
|
|
18645
|
-
|
|
18646
|
-
.annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers > .resizer.bottomRight{
|
|
18397
|
+
}
|
|
18398
|
+
.superdoc-viewer .annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers > .resizer.bottomRight{
|
|
18647
18399
|
bottom:var(--resizer-shift);
|
|
18648
18400
|
right:var(--resizer-shift);
|
|
18649
|
-
|
|
18650
|
-
|
|
18651
|
-
.annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers > .resizer.bottomMiddle{
|
|
18401
|
+
}
|
|
18402
|
+
.superdoc-viewer .annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers > .resizer.bottomMiddle{
|
|
18652
18403
|
bottom:var(--resizer-shift);
|
|
18653
18404
|
left:calc(50% + var(--resizer-shift));
|
|
18654
|
-
|
|
18655
|
-
|
|
18656
|
-
.annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers > .resizer.bottomLeft{
|
|
18405
|
+
}
|
|
18406
|
+
.superdoc-viewer .annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers > .resizer.bottomLeft{
|
|
18657
18407
|
bottom:var(--resizer-shift);
|
|
18658
18408
|
left:var(--resizer-shift);
|
|
18659
|
-
|
|
18660
|
-
|
|
18661
|
-
.annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers > .resizer.middleLeft{
|
|
18409
|
+
}
|
|
18410
|
+
.superdoc-viewer .annotationEditorLayer :is(.freeTextEditor, .inkEditor, .stampEditor) > .resizers > .resizer.middleLeft{
|
|
18662
18411
|
top:calc(50% + var(--resizer-shift));
|
|
18663
18412
|
left:var(--resizer-shift);
|
|
18664
|
-
|
|
18665
|
-
|
|
18666
|
-
.annotationEditorLayer[data-main-rotation="
|
|
18667
|
-
:is([data-editor-rotation="
|
|
18668
|
-
|
|
18669
|
-
:is([data-editor-rotation="
|
|
18670
|
-
|
|
18671
|
-
:is([data-editor-rotation="
|
|
18672
|
-
|
|
18673
|
-
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.topLeft,
|
|
18674
|
-
.annotationEditorLayer[data-main-rotation="0"]
|
|
18675
|
-
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.bottomRight,
|
|
18676
|
-
.annotationEditorLayer[data-main-rotation="90"]
|
|
18677
|
-
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.bottomRight,
|
|
18678
|
-
.annotationEditorLayer[data-main-rotation="180"]
|
|
18679
|
-
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.bottomRight,
|
|
18680
|
-
.annotationEditorLayer[data-main-rotation="270"]
|
|
18413
|
+
}
|
|
18414
|
+
.superdoc-viewer .annotationEditorLayer[data-main-rotation="0"]
|
|
18415
|
+
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.topLeft, .superdoc-viewer .annotationEditorLayer[data-main-rotation="90"]
|
|
18416
|
+
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.topLeft, .superdoc-viewer .annotationEditorLayer[data-main-rotation="180"]
|
|
18417
|
+
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.topLeft, .superdoc-viewer .annotationEditorLayer[data-main-rotation="270"]
|
|
18418
|
+
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.topLeft, .superdoc-viewer .annotationEditorLayer[data-main-rotation="0"]
|
|
18419
|
+
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.bottomRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="90"]
|
|
18420
|
+
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.bottomRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="180"]
|
|
18421
|
+
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.bottomRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="270"]
|
|
18681
18422
|
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.bottomRight{
|
|
18682
18423
|
cursor:nwse-resize;
|
|
18683
|
-
|
|
18684
|
-
|
|
18685
|
-
.annotationEditorLayer[data-main-rotation="
|
|
18686
|
-
:is([data-editor-rotation="
|
|
18687
|
-
|
|
18688
|
-
:is([data-editor-rotation="
|
|
18689
|
-
|
|
18690
|
-
:is([data-editor-rotation="
|
|
18691
|
-
|
|
18692
|
-
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.topMiddle,
|
|
18693
|
-
.annotationEditorLayer[data-main-rotation="0"]
|
|
18694
|
-
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.bottomMiddle,
|
|
18695
|
-
.annotationEditorLayer[data-main-rotation="90"]
|
|
18696
|
-
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.bottomMiddle,
|
|
18697
|
-
.annotationEditorLayer[data-main-rotation="180"]
|
|
18698
|
-
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.bottomMiddle,
|
|
18699
|
-
.annotationEditorLayer[data-main-rotation="270"]
|
|
18424
|
+
}
|
|
18425
|
+
.superdoc-viewer .annotationEditorLayer[data-main-rotation="0"]
|
|
18426
|
+
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.topMiddle, .superdoc-viewer .annotationEditorLayer[data-main-rotation="90"]
|
|
18427
|
+
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.topMiddle, .superdoc-viewer .annotationEditorLayer[data-main-rotation="180"]
|
|
18428
|
+
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.topMiddle, .superdoc-viewer .annotationEditorLayer[data-main-rotation="270"]
|
|
18429
|
+
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.topMiddle, .superdoc-viewer .annotationEditorLayer[data-main-rotation="0"]
|
|
18430
|
+
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.bottomMiddle, .superdoc-viewer .annotationEditorLayer[data-main-rotation="90"]
|
|
18431
|
+
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.bottomMiddle, .superdoc-viewer .annotationEditorLayer[data-main-rotation="180"]
|
|
18432
|
+
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.bottomMiddle, .superdoc-viewer .annotationEditorLayer[data-main-rotation="270"]
|
|
18700
18433
|
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.bottomMiddle{
|
|
18701
18434
|
cursor:ns-resize;
|
|
18702
|
-
|
|
18703
|
-
|
|
18704
|
-
.annotationEditorLayer[data-main-rotation="
|
|
18705
|
-
:is([data-editor-rotation="
|
|
18706
|
-
|
|
18707
|
-
:is([data-editor-rotation="
|
|
18708
|
-
|
|
18709
|
-
:is([data-editor-rotation="
|
|
18710
|
-
|
|
18711
|
-
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.topRight,
|
|
18712
|
-
.annotationEditorLayer[data-main-rotation="0"]
|
|
18713
|
-
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.bottomLeft,
|
|
18714
|
-
.annotationEditorLayer[data-main-rotation="90"]
|
|
18715
|
-
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.bottomLeft,
|
|
18716
|
-
.annotationEditorLayer[data-main-rotation="180"]
|
|
18717
|
-
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.bottomLeft,
|
|
18718
|
-
.annotationEditorLayer[data-main-rotation="270"]
|
|
18435
|
+
}
|
|
18436
|
+
.superdoc-viewer .annotationEditorLayer[data-main-rotation="0"]
|
|
18437
|
+
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.topRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="90"]
|
|
18438
|
+
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.topRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="180"]
|
|
18439
|
+
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.topRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="270"]
|
|
18440
|
+
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.topRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="0"]
|
|
18441
|
+
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.bottomLeft, .superdoc-viewer .annotationEditorLayer[data-main-rotation="90"]
|
|
18442
|
+
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.bottomLeft, .superdoc-viewer .annotationEditorLayer[data-main-rotation="180"]
|
|
18443
|
+
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.bottomLeft, .superdoc-viewer .annotationEditorLayer[data-main-rotation="270"]
|
|
18719
18444
|
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.bottomLeft{
|
|
18720
18445
|
cursor:nesw-resize;
|
|
18721
|
-
|
|
18722
|
-
|
|
18723
|
-
.annotationEditorLayer[data-main-rotation="
|
|
18724
|
-
:is([data-editor-rotation="
|
|
18725
|
-
|
|
18726
|
-
:is([data-editor-rotation="
|
|
18727
|
-
|
|
18728
|
-
:is([data-editor-rotation="
|
|
18729
|
-
|
|
18730
|
-
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.middleRight,
|
|
18731
|
-
.annotationEditorLayer[data-main-rotation="0"]
|
|
18732
|
-
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.middleLeft,
|
|
18733
|
-
.annotationEditorLayer[data-main-rotation="90"]
|
|
18734
|
-
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.middleLeft,
|
|
18735
|
-
.annotationEditorLayer[data-main-rotation="180"]
|
|
18736
|
-
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.middleLeft,
|
|
18737
|
-
.annotationEditorLayer[data-main-rotation="270"]
|
|
18446
|
+
}
|
|
18447
|
+
.superdoc-viewer .annotationEditorLayer[data-main-rotation="0"]
|
|
18448
|
+
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.middleRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="90"]
|
|
18449
|
+
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.middleRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="180"]
|
|
18450
|
+
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.middleRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="270"]
|
|
18451
|
+
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.middleRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="0"]
|
|
18452
|
+
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.middleLeft, .superdoc-viewer .annotationEditorLayer[data-main-rotation="90"]
|
|
18453
|
+
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.middleLeft, .superdoc-viewer .annotationEditorLayer[data-main-rotation="180"]
|
|
18454
|
+
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.middleLeft, .superdoc-viewer .annotationEditorLayer[data-main-rotation="270"]
|
|
18738
18455
|
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.middleLeft{
|
|
18739
18456
|
cursor:ew-resize;
|
|
18740
|
-
|
|
18741
|
-
|
|
18742
|
-
.annotationEditorLayer[data-main-rotation="
|
|
18743
|
-
:is([data-editor-rotation="
|
|
18744
|
-
|
|
18745
|
-
:is([data-editor-rotation="
|
|
18746
|
-
|
|
18747
|
-
:is([data-editor-rotation="
|
|
18748
|
-
|
|
18749
|
-
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.topLeft,
|
|
18750
|
-
.annotationEditorLayer[data-main-rotation="0"]
|
|
18751
|
-
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.bottomRight,
|
|
18752
|
-
.annotationEditorLayer[data-main-rotation="90"]
|
|
18753
|
-
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.bottomRight,
|
|
18754
|
-
.annotationEditorLayer[data-main-rotation="180"]
|
|
18755
|
-
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.bottomRight,
|
|
18756
|
-
.annotationEditorLayer[data-main-rotation="270"]
|
|
18457
|
+
}
|
|
18458
|
+
.superdoc-viewer .annotationEditorLayer[data-main-rotation="0"]
|
|
18459
|
+
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.topLeft, .superdoc-viewer .annotationEditorLayer[data-main-rotation="90"]
|
|
18460
|
+
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.topLeft, .superdoc-viewer .annotationEditorLayer[data-main-rotation="180"]
|
|
18461
|
+
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.topLeft, .superdoc-viewer .annotationEditorLayer[data-main-rotation="270"]
|
|
18462
|
+
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.topLeft, .superdoc-viewer .annotationEditorLayer[data-main-rotation="0"]
|
|
18463
|
+
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.bottomRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="90"]
|
|
18464
|
+
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.bottomRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="180"]
|
|
18465
|
+
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.bottomRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="270"]
|
|
18757
18466
|
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.bottomRight{
|
|
18758
18467
|
cursor:nesw-resize;
|
|
18759
|
-
|
|
18760
|
-
|
|
18761
|
-
.annotationEditorLayer[data-main-rotation="
|
|
18762
|
-
:is([data-editor-rotation="
|
|
18763
|
-
|
|
18764
|
-
:is([data-editor-rotation="
|
|
18765
|
-
|
|
18766
|
-
:is([data-editor-rotation="
|
|
18767
|
-
|
|
18768
|
-
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.topMiddle,
|
|
18769
|
-
.annotationEditorLayer[data-main-rotation="0"]
|
|
18770
|
-
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.bottomMiddle,
|
|
18771
|
-
.annotationEditorLayer[data-main-rotation="90"]
|
|
18772
|
-
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.bottomMiddle,
|
|
18773
|
-
.annotationEditorLayer[data-main-rotation="180"]
|
|
18774
|
-
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.bottomMiddle,
|
|
18775
|
-
.annotationEditorLayer[data-main-rotation="270"]
|
|
18468
|
+
}
|
|
18469
|
+
.superdoc-viewer .annotationEditorLayer[data-main-rotation="0"]
|
|
18470
|
+
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.topMiddle, .superdoc-viewer .annotationEditorLayer[data-main-rotation="90"]
|
|
18471
|
+
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.topMiddle, .superdoc-viewer .annotationEditorLayer[data-main-rotation="180"]
|
|
18472
|
+
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.topMiddle, .superdoc-viewer .annotationEditorLayer[data-main-rotation="270"]
|
|
18473
|
+
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.topMiddle, .superdoc-viewer .annotationEditorLayer[data-main-rotation="0"]
|
|
18474
|
+
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.bottomMiddle, .superdoc-viewer .annotationEditorLayer[data-main-rotation="90"]
|
|
18475
|
+
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.bottomMiddle, .superdoc-viewer .annotationEditorLayer[data-main-rotation="180"]
|
|
18476
|
+
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.bottomMiddle, .superdoc-viewer .annotationEditorLayer[data-main-rotation="270"]
|
|
18776
18477
|
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.bottomMiddle{
|
|
18777
18478
|
cursor:ew-resize;
|
|
18778
|
-
|
|
18779
|
-
|
|
18780
|
-
.annotationEditorLayer[data-main-rotation="
|
|
18781
|
-
:is([data-editor-rotation="
|
|
18782
|
-
|
|
18783
|
-
:is([data-editor-rotation="
|
|
18784
|
-
|
|
18785
|
-
:is([data-editor-rotation="
|
|
18786
|
-
|
|
18787
|
-
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.topRight,
|
|
18788
|
-
.annotationEditorLayer[data-main-rotation="0"]
|
|
18789
|
-
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.bottomLeft,
|
|
18790
|
-
.annotationEditorLayer[data-main-rotation="90"]
|
|
18791
|
-
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.bottomLeft,
|
|
18792
|
-
.annotationEditorLayer[data-main-rotation="180"]
|
|
18793
|
-
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.bottomLeft,
|
|
18794
|
-
.annotationEditorLayer[data-main-rotation="270"]
|
|
18479
|
+
}
|
|
18480
|
+
.superdoc-viewer .annotationEditorLayer[data-main-rotation="0"]
|
|
18481
|
+
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.topRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="90"]
|
|
18482
|
+
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.topRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="180"]
|
|
18483
|
+
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.topRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="270"]
|
|
18484
|
+
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.topRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="0"]
|
|
18485
|
+
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.bottomLeft, .superdoc-viewer .annotationEditorLayer[data-main-rotation="90"]
|
|
18486
|
+
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.bottomLeft, .superdoc-viewer .annotationEditorLayer[data-main-rotation="180"]
|
|
18487
|
+
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.bottomLeft, .superdoc-viewer .annotationEditorLayer[data-main-rotation="270"]
|
|
18795
18488
|
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.bottomLeft{
|
|
18796
18489
|
cursor:nwse-resize;
|
|
18797
|
-
|
|
18798
|
-
|
|
18799
|
-
.annotationEditorLayer[data-main-rotation="
|
|
18800
|
-
:is([data-editor-rotation="
|
|
18801
|
-
|
|
18802
|
-
:is([data-editor-rotation="
|
|
18803
|
-
|
|
18804
|
-
:is([data-editor-rotation="
|
|
18805
|
-
|
|
18806
|
-
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.middleRight,
|
|
18807
|
-
.annotationEditorLayer[data-main-rotation="0"]
|
|
18808
|
-
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.middleLeft,
|
|
18809
|
-
.annotationEditorLayer[data-main-rotation="90"]
|
|
18810
|
-
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.middleLeft,
|
|
18811
|
-
.annotationEditorLayer[data-main-rotation="180"]
|
|
18812
|
-
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.middleLeft,
|
|
18813
|
-
.annotationEditorLayer[data-main-rotation="270"]
|
|
18490
|
+
}
|
|
18491
|
+
.superdoc-viewer .annotationEditorLayer[data-main-rotation="0"]
|
|
18492
|
+
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.middleRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="90"]
|
|
18493
|
+
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.middleRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="180"]
|
|
18494
|
+
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.middleRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="270"]
|
|
18495
|
+
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.middleRight, .superdoc-viewer .annotationEditorLayer[data-main-rotation="0"]
|
|
18496
|
+
:is([data-editor-rotation="90"], [data-editor-rotation="270"]) > .resizers > .resizer.middleLeft, .superdoc-viewer .annotationEditorLayer[data-main-rotation="90"]
|
|
18497
|
+
:is([data-editor-rotation="0"], [data-editor-rotation="180"]) > .resizers > .resizer.middleLeft, .superdoc-viewer .annotationEditorLayer[data-main-rotation="180"]
|
|
18498
|
+
:is([data-editor-rotation="270"], [data-editor-rotation="90"]) > .resizers > .resizer.middleLeft, .superdoc-viewer .annotationEditorLayer[data-main-rotation="270"]
|
|
18814
18499
|
:is([data-editor-rotation="180"], [data-editor-rotation="0"]) > .resizers > .resizer.middleLeft{
|
|
18815
18500
|
cursor:ns-resize;
|
|
18816
|
-
|
|
18817
|
-
|
|
18818
|
-
.annotationEditorLayer
|
|
18501
|
+
}
|
|
18502
|
+
.superdoc-viewer .annotationEditorLayer
|
|
18819
18503
|
:is(
|
|
18820
18504
|
[data-main-rotation="0"] [data-editor-rotation="90"],
|
|
18821
18505
|
[data-main-rotation="90"] [data-editor-rotation="0"],
|
|
@@ -18823,9 +18507,8 @@ body {
|
|
|
18823
18507
|
[data-main-rotation="270"] [data-editor-rotation="180"]
|
|
18824
18508
|
) .editToolbar{
|
|
18825
18509
|
rotate:270deg;
|
|
18826
|
-
|
|
18827
|
-
|
|
18828
|
-
[dir="ltr"] .annotationEditorLayer
|
|
18510
|
+
}
|
|
18511
|
+
.superdoc-viewer [dir="ltr"] .annotationEditorLayer
|
|
18829
18512
|
:is(
|
|
18830
18513
|
[data-main-rotation="0"] [data-editor-rotation="90"],
|
|
18831
18514
|
[data-main-rotation="90"] [data-editor-rotation="0"],
|
|
@@ -18834,9 +18517,8 @@ body {
|
|
|
18834
18517
|
) .editToolbar{
|
|
18835
18518
|
inset-inline-end:calc(0px - var(--editor-toolbar-vert-offset));
|
|
18836
18519
|
inset-block-start:0;
|
|
18837
|
-
|
|
18838
|
-
|
|
18839
|
-
[dir="rtl"] .annotationEditorLayer
|
|
18520
|
+
}
|
|
18521
|
+
.superdoc-viewer [dir="rtl"] .annotationEditorLayer
|
|
18840
18522
|
:is(
|
|
18841
18523
|
[data-main-rotation="0"] [data-editor-rotation="90"],
|
|
18842
18524
|
[data-main-rotation="90"] [data-editor-rotation="0"],
|
|
@@ -18845,9 +18527,8 @@ body {
|
|
|
18845
18527
|
) .editToolbar{
|
|
18846
18528
|
inset-inline-end:calc(100% + var(--editor-toolbar-vert-offset));
|
|
18847
18529
|
inset-block-start:0;
|
|
18848
|
-
|
|
18849
|
-
|
|
18850
|
-
.annotationEditorLayer
|
|
18530
|
+
}
|
|
18531
|
+
.superdoc-viewer .annotationEditorLayer
|
|
18851
18532
|
:is(
|
|
18852
18533
|
[data-main-rotation="0"] [data-editor-rotation="180"],
|
|
18853
18534
|
[data-main-rotation="90"] [data-editor-rotation="90"],
|
|
@@ -18857,9 +18538,8 @@ body {
|
|
|
18857
18538
|
rotate:180deg;
|
|
18858
18539
|
inset-inline-end:100%;
|
|
18859
18540
|
inset-block-start:calc(0pc - var(--editor-toolbar-vert-offset));
|
|
18860
|
-
|
|
18861
|
-
|
|
18862
|
-
.annotationEditorLayer
|
|
18541
|
+
}
|
|
18542
|
+
.superdoc-viewer .annotationEditorLayer
|
|
18863
18543
|
:is(
|
|
18864
18544
|
[data-main-rotation="0"] [data-editor-rotation="270"],
|
|
18865
18545
|
[data-main-rotation="90"] [data-editor-rotation="180"],
|
|
@@ -18867,9 +18547,8 @@ body {
|
|
|
18867
18547
|
[data-main-rotation="270"] [data-editor-rotation="0"]
|
|
18868
18548
|
) .editToolbar{
|
|
18869
18549
|
rotate:90deg;
|
|
18870
|
-
|
|
18871
|
-
|
|
18872
|
-
[dir="ltr"] .annotationEditorLayer
|
|
18550
|
+
}
|
|
18551
|
+
.superdoc-viewer [dir="ltr"] .annotationEditorLayer
|
|
18873
18552
|
:is(
|
|
18874
18553
|
[data-main-rotation="0"] [data-editor-rotation="270"],
|
|
18875
18554
|
[data-main-rotation="90"] [data-editor-rotation="180"],
|
|
@@ -18878,9 +18557,8 @@ body {
|
|
|
18878
18557
|
) .editToolbar{
|
|
18879
18558
|
inset-inline-end:calc(100% + var(--editor-toolbar-vert-offset));
|
|
18880
18559
|
inset-block-start:100%;
|
|
18881
|
-
|
|
18882
|
-
|
|
18883
|
-
[dir="rtl"] .annotationEditorLayer
|
|
18560
|
+
}
|
|
18561
|
+
.superdoc-viewer [dir="rtl"] .annotationEditorLayer
|
|
18884
18562
|
:is(
|
|
18885
18563
|
[data-main-rotation="0"] [data-editor-rotation="270"],
|
|
18886
18564
|
[data-main-rotation="90"] [data-editor-rotation="180"],
|
|
@@ -18889,18 +18567,15 @@ body {
|
|
|
18889
18567
|
) .editToolbar{
|
|
18890
18568
|
inset-inline-start:calc(0px - var(--editor-toolbar-vert-offset));
|
|
18891
18569
|
inset-block-start:0;
|
|
18892
|
-
|
|
18893
|
-
|
|
18894
|
-
.dialog.altText::backdrop{
|
|
18570
|
+
}
|
|
18571
|
+
.superdoc-viewer .dialog.altText::backdrop{
|
|
18895
18572
|
-webkit-mask:url(#alttext-manager-mask);
|
|
18896
18573
|
mask:url(#alttext-manager-mask);
|
|
18897
|
-
|
|
18898
|
-
|
|
18899
|
-
.dialog.altText.positioned{
|
|
18574
|
+
}
|
|
18575
|
+
.superdoc-viewer .dialog.altText.positioned{
|
|
18900
18576
|
margin:0;
|
|
18901
|
-
|
|
18902
|
-
|
|
18903
|
-
.dialog.altText #altTextContainer{
|
|
18577
|
+
}
|
|
18578
|
+
.superdoc-viewer .dialog.altText #altTextContainer{
|
|
18904
18579
|
width:300px;
|
|
18905
18580
|
height:-moz-fit-content;
|
|
18906
18581
|
height:fit-content;
|
|
@@ -18908,76 +18583,63 @@ body {
|
|
|
18908
18583
|
flex-direction:column;
|
|
18909
18584
|
align-items:flex-start;
|
|
18910
18585
|
gap:16px;
|
|
18911
|
-
|
|
18912
|
-
|
|
18913
|
-
.dialog.altText #altTextContainer #overallDescription{
|
|
18586
|
+
}
|
|
18587
|
+
.superdoc-viewer .dialog.altText #altTextContainer #overallDescription{
|
|
18914
18588
|
display:flex;
|
|
18915
18589
|
flex-direction:column;
|
|
18916
18590
|
align-items:flex-start;
|
|
18917
18591
|
gap:4px;
|
|
18918
18592
|
align-self:stretch;
|
|
18919
|
-
|
|
18920
|
-
|
|
18921
|
-
.dialog.altText #altTextContainer #overallDescription span{
|
|
18593
|
+
}
|
|
18594
|
+
.superdoc-viewer .dialog.altText #altTextContainer #overallDescription span{
|
|
18922
18595
|
align-self:stretch;
|
|
18923
|
-
|
|
18924
|
-
|
|
18925
|
-
.dialog.altText #altTextContainer #overallDescription .title{
|
|
18596
|
+
}
|
|
18597
|
+
.superdoc-viewer .dialog.altText #altTextContainer #overallDescription .title{
|
|
18926
18598
|
font-size:13px;
|
|
18927
18599
|
font-style:normal;
|
|
18928
18600
|
font-weight:590;
|
|
18929
|
-
|
|
18930
|
-
|
|
18931
|
-
.dialog.altText #altTextContainer #addDescription{
|
|
18601
|
+
}
|
|
18602
|
+
.superdoc-viewer .dialog.altText #altTextContainer #addDescription{
|
|
18932
18603
|
display:flex;
|
|
18933
18604
|
flex-direction:column;
|
|
18934
18605
|
align-items:stretch;
|
|
18935
18606
|
gap:8px;
|
|
18936
|
-
|
|
18937
|
-
|
|
18938
|
-
.dialog.altText #altTextContainer #addDescription .descriptionArea{
|
|
18607
|
+
}
|
|
18608
|
+
.superdoc-viewer .dialog.altText #altTextContainer #addDescription .descriptionArea{
|
|
18939
18609
|
flex:1;
|
|
18940
18610
|
padding-inline:24px 10px;
|
|
18941
|
-
|
|
18942
|
-
|
|
18943
|
-
.dialog.altText #altTextContainer #addDescription .descriptionArea textarea{
|
|
18611
|
+
}
|
|
18612
|
+
.superdoc-viewer .dialog.altText #altTextContainer #addDescription .descriptionArea textarea{
|
|
18944
18613
|
width:100%;
|
|
18945
18614
|
min-height:75px;
|
|
18946
|
-
|
|
18947
|
-
|
|
18948
|
-
.dialog.altText #altTextContainer #buttons{
|
|
18615
|
+
}
|
|
18616
|
+
.superdoc-viewer .dialog.altText #altTextContainer #buttons{
|
|
18949
18617
|
display:flex;
|
|
18950
18618
|
justify-content:flex-end;
|
|
18951
18619
|
align-items:flex-start;
|
|
18952
18620
|
gap:8px;
|
|
18953
18621
|
align-self:stretch;
|
|
18954
|
-
|
|
18955
|
-
|
|
18956
|
-
.colorPicker{
|
|
18622
|
+
}
|
|
18623
|
+
.superdoc-viewer .colorPicker{
|
|
18957
18624
|
--hover-outline-color:#0250bb;
|
|
18958
18625
|
--selected-outline-color:#0060df;
|
|
18959
18626
|
--swatch-border-color:#cfcfd8;
|
|
18960
18627
|
}
|
|
18961
|
-
|
|
18962
18628
|
@media (prefers-color-scheme: dark){
|
|
18963
|
-
|
|
18964
|
-
.colorPicker{
|
|
18629
|
+
.superdoc-viewer .colorPicker{
|
|
18965
18630
|
--hover-outline-color:#80ebff;
|
|
18966
18631
|
--selected-outline-color:#aaf2ff;
|
|
18967
18632
|
--swatch-border-color:#52525e;
|
|
18968
18633
|
}
|
|
18969
|
-
|
|
18970
|
-
|
|
18634
|
+
}
|
|
18971
18635
|
@media screen and (forced-colors: active){
|
|
18972
|
-
|
|
18973
|
-
.colorPicker{
|
|
18636
|
+
.superdoc-viewer .colorPicker{
|
|
18974
18637
|
--hover-outline-color:Highlight;
|
|
18975
18638
|
--selected-outline-color:var(--hover-outline-color);
|
|
18976
18639
|
--swatch-border-color:ButtonText;
|
|
18977
18640
|
}
|
|
18978
|
-
|
|
18979
|
-
|
|
18980
|
-
.colorPicker .swatch{
|
|
18641
|
+
}
|
|
18642
|
+
.superdoc-viewer .colorPicker .swatch{
|
|
18981
18643
|
width:16px;
|
|
18982
18644
|
height:16px;
|
|
18983
18645
|
border:1px solid var(--swatch-border-color);
|
|
@@ -18985,29 +18647,23 @@ body {
|
|
|
18985
18647
|
outline-offset:2px;
|
|
18986
18648
|
box-sizing:border-box;
|
|
18987
18649
|
forced-color-adjust:none;
|
|
18988
|
-
|
|
18989
|
-
|
|
18990
|
-
.colorPicker button:is(:hover, .selected) > .swatch{
|
|
18650
|
+
}
|
|
18651
|
+
.superdoc-viewer .colorPicker button:is(:hover, .selected) > .swatch{
|
|
18991
18652
|
border:none;
|
|
18992
|
-
|
|
18993
|
-
|
|
18994
|
-
.annotationEditorLayer[data-main-rotation="0"] .highlightEditor:not(.free) > .editToolbar{
|
|
18653
|
+
}
|
|
18654
|
+
.superdoc-viewer .annotationEditorLayer[data-main-rotation="0"] .highlightEditor:not(.free) > .editToolbar{
|
|
18995
18655
|
rotate:0deg;
|
|
18996
|
-
|
|
18997
|
-
|
|
18998
|
-
.annotationEditorLayer[data-main-rotation="90"] .highlightEditor:not(.free) > .editToolbar{
|
|
18656
|
+
}
|
|
18657
|
+
.superdoc-viewer .annotationEditorLayer[data-main-rotation="90"] .highlightEditor:not(.free) > .editToolbar{
|
|
18999
18658
|
rotate:270deg;
|
|
19000
|
-
|
|
19001
|
-
|
|
19002
|
-
.annotationEditorLayer[data-main-rotation="180"] .highlightEditor:not(.free) > .editToolbar{
|
|
18659
|
+
}
|
|
18660
|
+
.superdoc-viewer .annotationEditorLayer[data-main-rotation="180"] .highlightEditor:not(.free) > .editToolbar{
|
|
19003
18661
|
rotate:180deg;
|
|
19004
|
-
|
|
19005
|
-
|
|
19006
|
-
.annotationEditorLayer[data-main-rotation="270"] .highlightEditor:not(.free) > .editToolbar{
|
|
18662
|
+
}
|
|
18663
|
+
.superdoc-viewer .annotationEditorLayer[data-main-rotation="270"] .highlightEditor:not(.free) > .editToolbar{
|
|
19007
18664
|
rotate:90deg;
|
|
19008
|
-
|
|
19009
|
-
|
|
19010
|
-
.annotationEditorLayer .highlightEditor{
|
|
18665
|
+
}
|
|
18666
|
+
.superdoc-viewer .annotationEditorLayer .highlightEditor{
|
|
19011
18667
|
position:absolute;
|
|
19012
18668
|
background:transparent;
|
|
19013
18669
|
z-index:1;
|
|
@@ -19018,36 +18674,30 @@ body {
|
|
|
19018
18674
|
outline:none;
|
|
19019
18675
|
pointer-events:none;
|
|
19020
18676
|
transform-origin:0 0;
|
|
19021
|
-
|
|
19022
|
-
|
|
19023
|
-
.annotationEditorLayer .highlightEditor:not(.free){
|
|
18677
|
+
}
|
|
18678
|
+
.superdoc-viewer .annotationEditorLayer .highlightEditor:not(.free){
|
|
19024
18679
|
transform:none;
|
|
19025
|
-
|
|
19026
|
-
|
|
19027
|
-
.annotationEditorLayer .highlightEditor .internal{
|
|
18680
|
+
}
|
|
18681
|
+
.superdoc-viewer .annotationEditorLayer .highlightEditor .internal{
|
|
19028
18682
|
position:absolute;
|
|
19029
18683
|
top:0;
|
|
19030
18684
|
left:0;
|
|
19031
18685
|
width:100%;
|
|
19032
18686
|
height:100%;
|
|
19033
18687
|
pointer-events:auto;
|
|
19034
|
-
|
|
19035
|
-
|
|
19036
|
-
.annotationEditorLayer .highlightEditor.disabled .internal{
|
|
18688
|
+
}
|
|
18689
|
+
.superdoc-viewer .annotationEditorLayer .highlightEditor.disabled .internal{
|
|
19037
18690
|
pointer-events:none;
|
|
19038
|
-
|
|
19039
|
-
|
|
19040
|
-
.annotationEditorLayer .highlightEditor.selectedEditor .internal{
|
|
18691
|
+
}
|
|
18692
|
+
.superdoc-viewer .annotationEditorLayer .highlightEditor.selectedEditor .internal{
|
|
19041
18693
|
cursor:pointer;
|
|
19042
|
-
|
|
19043
|
-
|
|
19044
|
-
.
|
|
19045
|
-
--editor-toolbar-colorpicker-arrow-image:url("data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M8.23336%2010.4664L11.8474%206.85339C11.894%206.8071%2011.931%206.75203%2011.9563%206.69136C11.9816%206.63069%2011.9946%206.56562%2011.9946%206.49989C11.9946%206.43417%2011.9816%206.3691%2011.9563%206.30843C11.931%206.24776%2011.894%206.19269%2011.8474%206.14639C11.7536%206.05266%2011.6264%206%2011.4939%206C11.3613%206%2011.2341%206.05266%2011.1404%206.14639L7.99236%209.29339L4.84736%206.14739C4.75305%206.05631%204.62675%206.00592%204.49566%206.00706C4.36456%206.0082%204.23915%206.06078%204.14645%206.15348C4.05374%206.24619%204.00116%206.37159%204.00002%206.50269C3.99888%206.63379%204.04928%206.76009%204.14036%206.85439L7.75236%2010.4674L8.23336%2010.4664Z'%20fill='black'/%3e%3c/svg%3e");
|
|
18694
|
+
}
|
|
18695
|
+
.superdoc-viewer .annotationEditorLayer .highlightEditor .editToolbar{
|
|
18696
|
+
--editor-toolbar-colorpicker-arrow-image:url(images/toolbarButton-menuArrow.svg);
|
|
19046
18697
|
|
|
19047
18698
|
transform-origin:center !important;
|
|
19048
|
-
|
|
19049
|
-
|
|
19050
|
-
.annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker{
|
|
18699
|
+
}
|
|
18700
|
+
.superdoc-viewer .annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker{
|
|
19051
18701
|
position:relative;
|
|
19052
18702
|
width:auto;
|
|
19053
18703
|
display:flex;
|
|
@@ -19055,9 +18705,8 @@ body {
|
|
|
19055
18705
|
align-items:center;
|
|
19056
18706
|
gap:4px;
|
|
19057
18707
|
padding:4px;
|
|
19058
|
-
|
|
19059
|
-
|
|
19060
|
-
.annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker::after{
|
|
18708
|
+
}
|
|
18709
|
+
.superdoc-viewer .annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker::after{
|
|
19061
18710
|
content:"";
|
|
19062
18711
|
-webkit-mask-image:var(--editor-toolbar-colorpicker-arrow-image);
|
|
19063
18712
|
mask-image:var(--editor-toolbar-colorpicker-arrow-image);
|
|
@@ -19069,21 +18718,17 @@ body {
|
|
|
19069
18718
|
background-color:var(--editor-toolbar-fg-color);
|
|
19070
18719
|
width:12px;
|
|
19071
18720
|
height:12px;
|
|
19072
|
-
|
|
19073
|
-
|
|
19074
|
-
.annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker:hover::after{
|
|
18721
|
+
}
|
|
18722
|
+
.superdoc-viewer .annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker:hover::after{
|
|
19075
18723
|
background-color:var(--editor-toolbar-hover-fg-color);
|
|
19076
|
-
|
|
19077
|
-
|
|
19078
|
-
.annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker:has(.dropdown:not(.hidden)){
|
|
18724
|
+
}
|
|
18725
|
+
.superdoc-viewer .annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker:has(.dropdown:not(.hidden)){
|
|
19079
18726
|
background-color:var(--editor-toolbar-hover-bg-color);
|
|
19080
|
-
|
|
19081
|
-
|
|
19082
|
-
.annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker:has(.dropdown:not(.hidden))::after{
|
|
18727
|
+
}
|
|
18728
|
+
.superdoc-viewer .annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker:has(.dropdown:not(.hidden))::after{
|
|
19083
18729
|
scale:-1;
|
|
19084
|
-
|
|
19085
|
-
|
|
19086
|
-
.annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker .dropdown{
|
|
18730
|
+
}
|
|
18731
|
+
.superdoc-viewer .annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker .dropdown{
|
|
19087
18732
|
position:absolute;
|
|
19088
18733
|
display:flex;
|
|
19089
18734
|
justify-content:center;
|
|
@@ -19097,9 +18742,8 @@ body {
|
|
|
19097
18742
|
box-shadow:var(--editor-toolbar-shadow);
|
|
19098
18743
|
inset-block-start:calc(100% + 4px);
|
|
19099
18744
|
width:calc(100% + 2 * var(--editor-toolbar-padding));
|
|
19100
|
-
|
|
19101
|
-
|
|
19102
|
-
.annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker .dropdown button{
|
|
18745
|
+
}
|
|
18746
|
+
.superdoc-viewer .annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker .dropdown button{
|
|
19103
18747
|
width:100%;
|
|
19104
18748
|
height:auto;
|
|
19105
18749
|
border:none;
|
|
@@ -19108,29 +18752,23 @@ body {
|
|
|
19108
18752
|
justify-content:center;
|
|
19109
18753
|
align-items:center;
|
|
19110
18754
|
background:none;
|
|
19111
|
-
|
|
19112
|
-
|
|
19113
|
-
.annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker .dropdown button:is(:active, :focus-visible){
|
|
18755
|
+
}
|
|
18756
|
+
.superdoc-viewer .annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker .dropdown button:is(:active, :focus-visible){
|
|
19114
18757
|
outline:none;
|
|
19115
|
-
|
|
19116
|
-
|
|
19117
|
-
.annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker .dropdown button > .swatch{
|
|
18758
|
+
}
|
|
18759
|
+
.superdoc-viewer .annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker .dropdown button > .swatch{
|
|
19118
18760
|
outline-offset:2px;
|
|
19119
|
-
|
|
19120
|
-
|
|
19121
|
-
.annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker .dropdown button[aria-selected="true"] > .swatch{
|
|
18761
|
+
}
|
|
18762
|
+
.superdoc-viewer .annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker .dropdown button[aria-selected="true"] > .swatch{
|
|
19122
18763
|
outline:2px solid var(--selected-outline-color);
|
|
19123
|
-
|
|
19124
|
-
|
|
19125
|
-
.annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker .dropdown button:is(:hover, :active, :focus-visible) > .swatch{
|
|
18764
|
+
}
|
|
18765
|
+
.superdoc-viewer .annotationEditorLayer .highlightEditor .editToolbar .buttons .colorPicker .dropdown button:is(:hover, :active, :focus-visible) > .swatch{
|
|
19126
18766
|
outline:2px solid var(--hover-outline-color);
|
|
19127
|
-
|
|
19128
|
-
|
|
19129
|
-
.editorParamsToolbar:has(#highlightParamsToolbarContainer){
|
|
18767
|
+
}
|
|
18768
|
+
.superdoc-viewer .editorParamsToolbar:has(#highlightParamsToolbarContainer){
|
|
19130
18769
|
padding:unset;
|
|
19131
18770
|
}
|
|
19132
|
-
|
|
19133
|
-
#highlightParamsToolbarContainer{
|
|
18771
|
+
.superdoc-viewer #highlightParamsToolbarContainer{
|
|
19134
18772
|
height:auto;
|
|
19135
18773
|
padding-inline:10px;
|
|
19136
18774
|
padding-block:10px 16px;
|
|
@@ -19139,28 +18777,24 @@ body {
|
|
|
19139
18777
|
flex-direction:column;
|
|
19140
18778
|
box-sizing:border-box;
|
|
19141
18779
|
}
|
|
19142
|
-
|
|
19143
|
-
#highlightParamsToolbarContainer .editorParamsLabel{
|
|
18780
|
+
.superdoc-viewer #highlightParamsToolbarContainer .editorParamsLabel{
|
|
19144
18781
|
width:-moz-fit-content;
|
|
19145
18782
|
width:fit-content;
|
|
19146
18783
|
inset-inline-start:0;
|
|
19147
|
-
|
|
19148
|
-
|
|
19149
|
-
#highlightParamsToolbarContainer .colorPicker{
|
|
18784
|
+
}
|
|
18785
|
+
.superdoc-viewer #highlightParamsToolbarContainer .colorPicker{
|
|
19150
18786
|
display:flex;
|
|
19151
18787
|
flex-direction:column;
|
|
19152
18788
|
gap:8px;
|
|
19153
|
-
|
|
19154
|
-
|
|
19155
|
-
#highlightParamsToolbarContainer .colorPicker .dropdown{
|
|
18789
|
+
}
|
|
18790
|
+
.superdoc-viewer #highlightParamsToolbarContainer .colorPicker .dropdown{
|
|
19156
18791
|
display:flex;
|
|
19157
18792
|
justify-content:space-between;
|
|
19158
18793
|
align-items:center;
|
|
19159
18794
|
flex-direction:row;
|
|
19160
18795
|
height:auto;
|
|
19161
|
-
|
|
19162
|
-
|
|
19163
|
-
#highlightParamsToolbarContainer .colorPicker .dropdown button{
|
|
18796
|
+
}
|
|
18797
|
+
.superdoc-viewer #highlightParamsToolbarContainer .colorPicker .dropdown button{
|
|
19164
18798
|
width:auto;
|
|
19165
18799
|
height:auto;
|
|
19166
18800
|
border:none;
|
|
@@ -19170,124 +18804,101 @@ body {
|
|
|
19170
18804
|
align-items:center;
|
|
19171
18805
|
background:none;
|
|
19172
18806
|
flex:0 0 auto;
|
|
19173
|
-
|
|
19174
|
-
|
|
19175
|
-
#highlightParamsToolbarContainer .colorPicker .dropdown button .swatch{
|
|
18807
|
+
}
|
|
18808
|
+
.superdoc-viewer #highlightParamsToolbarContainer .colorPicker .dropdown button .swatch{
|
|
19176
18809
|
width:24px;
|
|
19177
18810
|
height:24px;
|
|
19178
|
-
|
|
19179
|
-
|
|
19180
|
-
#highlightParamsToolbarContainer .colorPicker .dropdown button:is(:active, :focus-visible){
|
|
18811
|
+
}
|
|
18812
|
+
.superdoc-viewer #highlightParamsToolbarContainer .colorPicker .dropdown button:is(:active, :focus-visible){
|
|
19181
18813
|
outline:none;
|
|
19182
|
-
|
|
19183
|
-
|
|
19184
|
-
#highlightParamsToolbarContainer .colorPicker .dropdown button[aria-selected="true"] > .swatch{
|
|
18814
|
+
}
|
|
18815
|
+
.superdoc-viewer #highlightParamsToolbarContainer .colorPicker .dropdown button[aria-selected="true"] > .swatch{
|
|
19185
18816
|
outline:2px solid var(--selected-outline-color);
|
|
19186
|
-
|
|
19187
|
-
|
|
19188
|
-
#highlightParamsToolbarContainer .colorPicker .dropdown button:is(:hover, :active, :focus-visible) > .swatch{
|
|
18817
|
+
}
|
|
18818
|
+
.superdoc-viewer #highlightParamsToolbarContainer .colorPicker .dropdown button:is(:hover, :active, :focus-visible) > .swatch{
|
|
19189
18819
|
outline:2px solid var(--hover-outline-color);
|
|
19190
|
-
|
|
19191
|
-
|
|
19192
|
-
#highlightParamsToolbarContainer #editorHighlightThickness{
|
|
18820
|
+
}
|
|
18821
|
+
.superdoc-viewer #highlightParamsToolbarContainer #editorHighlightThickness{
|
|
19193
18822
|
display:flex;
|
|
19194
18823
|
flex-direction:column;
|
|
19195
18824
|
align-items:center;
|
|
19196
18825
|
gap:4px;
|
|
19197
18826
|
align-self:stretch;
|
|
19198
|
-
|
|
19199
|
-
|
|
19200
|
-
#highlightParamsToolbarContainer #editorHighlightThickness .editorParamsLabel{
|
|
18827
|
+
}
|
|
18828
|
+
.superdoc-viewer #highlightParamsToolbarContainer #editorHighlightThickness .editorParamsLabel{
|
|
19201
18829
|
width:100%;
|
|
19202
18830
|
height:auto;
|
|
19203
18831
|
align-self:stretch;
|
|
19204
|
-
|
|
19205
|
-
|
|
19206
|
-
#highlightParamsToolbarContainer #editorHighlightThickness .thicknessPicker{
|
|
18832
|
+
}
|
|
18833
|
+
.superdoc-viewer #highlightParamsToolbarContainer #editorHighlightThickness .thicknessPicker{
|
|
19207
18834
|
display:flex;
|
|
19208
18835
|
justify-content:space-between;
|
|
19209
18836
|
align-items:center;
|
|
19210
18837
|
align-self:stretch;
|
|
19211
18838
|
|
|
19212
18839
|
--example-color:#bfbfc9;
|
|
19213
|
-
|
|
19214
|
-
|
|
18840
|
+
}
|
|
19215
18841
|
@media (prefers-color-scheme: dark){
|
|
19216
|
-
|
|
19217
|
-
#highlightParamsToolbarContainer #editorHighlightThickness .thicknessPicker{
|
|
18842
|
+
.superdoc-viewer #highlightParamsToolbarContainer #editorHighlightThickness .thicknessPicker{
|
|
19218
18843
|
--example-color:#80808e;
|
|
19219
|
-
|
|
19220
|
-
|
|
19221
|
-
|
|
18844
|
+
}
|
|
18845
|
+
}
|
|
19222
18846
|
@media screen and (forced-colors: active){
|
|
19223
|
-
|
|
19224
|
-
#highlightParamsToolbarContainer #editorHighlightThickness .thicknessPicker{
|
|
18847
|
+
.superdoc-viewer #highlightParamsToolbarContainer #editorHighlightThickness .thicknessPicker{
|
|
19225
18848
|
--example-color:CanvasText;
|
|
19226
|
-
|
|
19227
|
-
|
|
19228
|
-
|
|
19229
|
-
:is(#highlightParamsToolbarContainer #editorHighlightThickness .thicknessPicker > .editorParamsSlider[disabled]){
|
|
18849
|
+
}
|
|
18850
|
+
}
|
|
18851
|
+
.superdoc-viewer :is(#highlightParamsToolbarContainer #editorHighlightThickness .thicknessPicker > .editorParamsSlider[disabled]){
|
|
19230
18852
|
opacity:0.4;
|
|
19231
|
-
|
|
19232
|
-
|
|
19233
|
-
#highlightParamsToolbarContainer #editorHighlightThickness .thicknessPicker::
|
|
19234
|
-
#highlightParamsToolbarContainer #editorHighlightThickness .thicknessPicker::after{
|
|
18853
|
+
}
|
|
18854
|
+
.superdoc-viewer #highlightParamsToolbarContainer #editorHighlightThickness .thicknessPicker::before,
|
|
18855
|
+
.superdoc-viewer #highlightParamsToolbarContainer #editorHighlightThickness .thicknessPicker::after{
|
|
19235
18856
|
content:"";
|
|
19236
18857
|
width:8px;
|
|
19237
18858
|
aspect-ratio:1;
|
|
19238
18859
|
display:block;
|
|
19239
18860
|
border-radius:100%;
|
|
19240
18861
|
background-color:var(--example-color);
|
|
19241
|
-
|
|
19242
|
-
|
|
19243
|
-
#highlightParamsToolbarContainer #editorHighlightThickness .thicknessPicker::after{
|
|
18862
|
+
}
|
|
18863
|
+
.superdoc-viewer #highlightParamsToolbarContainer #editorHighlightThickness .thicknessPicker::after{
|
|
19244
18864
|
width:24px;
|
|
19245
|
-
|
|
19246
|
-
|
|
19247
|
-
#highlightParamsToolbarContainer #editorHighlightThickness .thicknessPicker .editorParamsSlider{
|
|
18865
|
+
}
|
|
18866
|
+
.superdoc-viewer #highlightParamsToolbarContainer #editorHighlightThickness .thicknessPicker .editorParamsSlider{
|
|
19248
18867
|
width:unset;
|
|
19249
18868
|
height:14px;
|
|
19250
|
-
|
|
19251
|
-
|
|
19252
|
-
#highlightParamsToolbarContainer #editorHighlightVisibility{
|
|
18869
|
+
}
|
|
18870
|
+
.superdoc-viewer #highlightParamsToolbarContainer #editorHighlightVisibility{
|
|
19253
18871
|
display:flex;
|
|
19254
18872
|
flex-direction:column;
|
|
19255
18873
|
align-items:flex-start;
|
|
19256
18874
|
gap:8px;
|
|
19257
18875
|
align-self:stretch;
|
|
19258
|
-
|
|
19259
|
-
|
|
19260
|
-
#highlightParamsToolbarContainer #editorHighlightVisibility .divider{
|
|
18876
|
+
}
|
|
18877
|
+
.superdoc-viewer #highlightParamsToolbarContainer #editorHighlightVisibility .divider{
|
|
19261
18878
|
--divider-color:#d7d7db;
|
|
19262
18879
|
|
|
19263
18880
|
margin-block:4px;
|
|
19264
18881
|
width:100%;
|
|
19265
18882
|
height:1px;
|
|
19266
18883
|
background-color:var(--divider-color);
|
|
19267
|
-
|
|
19268
|
-
|
|
18884
|
+
}
|
|
19269
18885
|
@media (prefers-color-scheme: dark){
|
|
19270
|
-
|
|
19271
|
-
#highlightParamsToolbarContainer #editorHighlightVisibility .divider{
|
|
18886
|
+
.superdoc-viewer #highlightParamsToolbarContainer #editorHighlightVisibility .divider{
|
|
19272
18887
|
--divider-color:#8f8f9d;
|
|
19273
|
-
|
|
19274
|
-
|
|
19275
|
-
|
|
18888
|
+
}
|
|
18889
|
+
}
|
|
19276
18890
|
@media screen and (forced-colors: active){
|
|
19277
|
-
|
|
19278
|
-
#highlightParamsToolbarContainer #editorHighlightVisibility .divider{
|
|
18891
|
+
.superdoc-viewer #highlightParamsToolbarContainer #editorHighlightVisibility .divider{
|
|
19279
18892
|
--divider-color:CanvasText;
|
|
19280
|
-
|
|
19281
|
-
|
|
19282
|
-
|
|
19283
|
-
#highlightParamsToolbarContainer #editorHighlightVisibility .toggler{
|
|
18893
|
+
}
|
|
18894
|
+
}
|
|
18895
|
+
.superdoc-viewer #highlightParamsToolbarContainer #editorHighlightVisibility .toggler{
|
|
19284
18896
|
display:flex;
|
|
19285
18897
|
justify-content:space-between;
|
|
19286
18898
|
align-items:center;
|
|
19287
18899
|
align-self:stretch;
|
|
19288
|
-
|
|
19289
|
-
|
|
19290
|
-
:root{
|
|
18900
|
+
}
|
|
18901
|
+
.superdoc-viewer :root{
|
|
19291
18902
|
--viewer-container-height:0;
|
|
19292
18903
|
--pdfViewer-padding-bottom:0;
|
|
19293
18904
|
--page-margin:1px auto -8px;
|
|
@@ -19295,28 +18906,25 @@ body {
|
|
|
19295
18906
|
--spreadHorizontalWrapped-margin-LR:-3.5px;
|
|
19296
18907
|
--loading-icon-delay:400ms;
|
|
19297
18908
|
}
|
|
19298
|
-
|
|
19299
18909
|
@media screen and (forced-colors: active){
|
|
19300
|
-
|
|
18910
|
+
.superdoc-viewer :root{
|
|
19301
18911
|
--pdfViewer-padding-bottom:9px;
|
|
19302
18912
|
--page-margin:8px auto -1px;
|
|
19303
18913
|
--page-border:1px solid CanvasText;
|
|
19304
18914
|
--spreadHorizontalWrapped-margin-LR:3.5px;
|
|
19305
|
-
}
|
|
19306
18915
|
}
|
|
19307
|
-
|
|
19308
|
-
[data-main-rotation="90"]{
|
|
18916
|
+
}
|
|
18917
|
+
.superdoc-viewer [data-main-rotation="90"]{
|
|
19309
18918
|
transform:rotate(90deg) translateY(-100%);
|
|
19310
18919
|
}
|
|
19311
|
-
[data-main-rotation="180"]{
|
|
18920
|
+
.superdoc-viewer [data-main-rotation="180"]{
|
|
19312
18921
|
transform:rotate(180deg) translate(-100%, -100%);
|
|
19313
18922
|
}
|
|
19314
|
-
[data-main-rotation="270"]{
|
|
18923
|
+
.superdoc-viewer [data-main-rotation="270"]{
|
|
19315
18924
|
transform:rotate(270deg) translateX(-100%);
|
|
19316
18925
|
}
|
|
19317
|
-
|
|
19318
|
-
|
|
19319
|
-
.hiddenCanvasElement{
|
|
18926
|
+
.superdoc-viewer #hiddenCopyElement,
|
|
18927
|
+
.superdoc-viewer .hiddenCanvasElement{
|
|
19320
18928
|
position:absolute;
|
|
19321
18929
|
top:0;
|
|
19322
18930
|
left:0;
|
|
@@ -19324,8 +18932,7 @@ body {
|
|
|
19324
18932
|
height:0;
|
|
19325
18933
|
display:none;
|
|
19326
18934
|
}
|
|
19327
|
-
|
|
19328
|
-
.pdfViewer{
|
|
18935
|
+
.superdoc-viewer .pdfViewer{
|
|
19329
18936
|
--scale-factor:1;
|
|
19330
18937
|
|
|
19331
18938
|
padding-bottom:var(--pdfViewer-padding-bottom);
|
|
@@ -19333,39 +18940,31 @@ body {
|
|
|
19333
18940
|
--hcm-highlight-filter:none;
|
|
19334
18941
|
--hcm-highlight-selected-filter:none;
|
|
19335
18942
|
}
|
|
19336
|
-
|
|
19337
18943
|
@media screen and (forced-colors: active){
|
|
19338
|
-
|
|
19339
|
-
.pdfViewer{
|
|
18944
|
+
.superdoc-viewer .pdfViewer{
|
|
19340
18945
|
--hcm-highlight-filter:invert(100%);
|
|
19341
18946
|
}
|
|
19342
|
-
|
|
19343
|
-
|
|
19344
|
-
.pdfViewer .canvasWrapper{
|
|
18947
|
+
}
|
|
18948
|
+
.superdoc-viewer .pdfViewer .canvasWrapper{
|
|
19345
18949
|
overflow:hidden;
|
|
19346
18950
|
width:100%;
|
|
19347
18951
|
height:100%;
|
|
19348
|
-
|
|
19349
|
-
|
|
19350
|
-
.pdfViewer .canvasWrapper canvas{
|
|
18952
|
+
}
|
|
18953
|
+
.superdoc-viewer .pdfViewer .canvasWrapper canvas{
|
|
19351
18954
|
margin:0;
|
|
19352
18955
|
display:block;
|
|
19353
|
-
|
|
19354
|
-
|
|
19355
|
-
.pdfViewer .canvasWrapper canvas[hidden]{
|
|
18956
|
+
}
|
|
18957
|
+
.superdoc-viewer .pdfViewer .canvasWrapper canvas[hidden]{
|
|
19356
18958
|
display:none;
|
|
19357
|
-
|
|
19358
|
-
|
|
19359
|
-
.pdfViewer .canvasWrapper canvas[zooming]{
|
|
18959
|
+
}
|
|
18960
|
+
.superdoc-viewer .pdfViewer .canvasWrapper canvas[zooming]{
|
|
19360
18961
|
width:100%;
|
|
19361
18962
|
height:100%;
|
|
19362
|
-
|
|
19363
|
-
|
|
19364
|
-
.pdfViewer .canvasWrapper canvas .structTree{
|
|
18963
|
+
}
|
|
18964
|
+
.superdoc-viewer .pdfViewer .canvasWrapper canvas .structTree{
|
|
19365
18965
|
contain:strict;
|
|
19366
|
-
|
|
19367
|
-
|
|
19368
|
-
.pdfViewer .page{
|
|
18966
|
+
}
|
|
18967
|
+
.superdoc-viewer .pdfViewer .page{
|
|
19369
18968
|
direction:ltr;
|
|
19370
18969
|
width:816px;
|
|
19371
18970
|
height:1056px;
|
|
@@ -19376,135 +18975,114 @@ body {
|
|
|
19376
18975
|
background-clip:content-box;
|
|
19377
18976
|
background-color:rgb(255 255 255);
|
|
19378
18977
|
}
|
|
19379
|
-
|
|
19380
|
-
.pdfViewer .dummyPage{
|
|
18978
|
+
.superdoc-viewer .pdfViewer .dummyPage{
|
|
19381
18979
|
position:relative;
|
|
19382
18980
|
width:0;
|
|
19383
18981
|
height:var(--viewer-container-height);
|
|
19384
18982
|
}
|
|
19385
|
-
|
|
19386
|
-
.pdfViewer.noUserSelect{
|
|
18983
|
+
.superdoc-viewer .pdfViewer.noUserSelect{
|
|
19387
18984
|
-webkit-user-select:none;
|
|
19388
18985
|
-moz-user-select:none;
|
|
19389
18986
|
user-select:none;
|
|
19390
18987
|
}
|
|
19391
|
-
|
|
19392
|
-
.pdfViewer.removePageBorders .page{
|
|
18988
|
+
.superdoc-viewer .pdfViewer.removePageBorders .page{
|
|
19393
18989
|
margin:0 auto 10px;
|
|
19394
18990
|
border:none;
|
|
19395
18991
|
}
|
|
19396
|
-
|
|
19397
|
-
.pdfViewer.singlePageView{
|
|
18992
|
+
.superdoc-viewer .pdfViewer.singlePageView{
|
|
19398
18993
|
display:inline-block;
|
|
19399
18994
|
}
|
|
19400
|
-
|
|
19401
|
-
.pdfViewer.singlePageView .page{
|
|
18995
|
+
.superdoc-viewer .pdfViewer.singlePageView .page{
|
|
19402
18996
|
margin:0;
|
|
19403
18997
|
border:none;
|
|
19404
18998
|
}
|
|
19405
|
-
|
|
19406
|
-
.pdfViewer:is(.scrollHorizontal, .scrollWrapped),
|
|
19407
|
-
.spread{
|
|
18999
|
+
.superdoc-viewer .pdfViewer:is(.scrollHorizontal, .scrollWrapped), .superdoc-viewer .spread{
|
|
19408
19000
|
margin-inline:3.5px;
|
|
19409
19001
|
text-align:center;
|
|
19410
19002
|
}
|
|
19411
|
-
|
|
19412
|
-
.
|
|
19413
|
-
.spread{
|
|
19003
|
+
.superdoc-viewer .pdfViewer.scrollHorizontal,
|
|
19004
|
+
.superdoc-viewer .spread{
|
|
19414
19005
|
white-space:nowrap;
|
|
19415
19006
|
}
|
|
19416
|
-
|
|
19417
|
-
.pdfViewer.
|
|
19418
|
-
.pdfViewer:is(.scrollHorizontal, .scrollWrapped) .spread{
|
|
19007
|
+
.superdoc-viewer .pdfViewer.removePageBorders,
|
|
19008
|
+
.superdoc-viewer .pdfViewer:is(.scrollHorizontal, .scrollWrapped) .spread{
|
|
19419
19009
|
margin-inline:0;
|
|
19420
19010
|
}
|
|
19421
|
-
|
|
19422
|
-
.spread :is(.page, .dummyPage),
|
|
19423
|
-
.pdfViewer:is(.scrollHorizontal, .scrollWrapped) :is(.page, .spread){
|
|
19011
|
+
.superdoc-viewer .spread :is(.page, .dummyPage), .superdoc-viewer .pdfViewer:is(.scrollHorizontal, .scrollWrapped) :is(.page, .spread){
|
|
19424
19012
|
display:inline-block;
|
|
19425
19013
|
vertical-align:middle;
|
|
19426
19014
|
}
|
|
19427
|
-
|
|
19428
|
-
.
|
|
19429
|
-
.pdfViewer:is(.scrollHorizontal, .scrollWrapped) .page{
|
|
19015
|
+
.superdoc-viewer .spread .page,
|
|
19016
|
+
.superdoc-viewer .pdfViewer:is(.scrollHorizontal, .scrollWrapped) .page{
|
|
19430
19017
|
margin-inline:var(--spreadHorizontalWrapped-margin-LR);
|
|
19431
19018
|
}
|
|
19432
|
-
|
|
19433
|
-
.pdfViewer.removePageBorders .
|
|
19434
|
-
.pdfViewer.removePageBorders:is(.scrollHorizontal, .scrollWrapped) .page{
|
|
19019
|
+
.superdoc-viewer .pdfViewer.removePageBorders .spread .page,
|
|
19020
|
+
.superdoc-viewer .pdfViewer.removePageBorders:is(.scrollHorizontal, .scrollWrapped) .page{
|
|
19435
19021
|
margin-inline:5px;
|
|
19436
19022
|
}
|
|
19437
|
-
|
|
19438
|
-
.pdfViewer .page.loadingIcon::after{
|
|
19023
|
+
.superdoc-viewer .pdfViewer .page.loadingIcon::after{
|
|
19439
19024
|
position:absolute;
|
|
19440
19025
|
top:0;
|
|
19441
19026
|
left:0;
|
|
19442
19027
|
content:"";
|
|
19443
19028
|
width:100%;
|
|
19444
19029
|
height:100%;
|
|
19445
|
-
background:url("
|
|
19030
|
+
background:url("images/loading-icon.gif") center no-repeat;
|
|
19446
19031
|
display:none;
|
|
19447
19032
|
transition-property:display;
|
|
19448
19033
|
transition-delay:var(--loading-icon-delay);
|
|
19449
19034
|
z-index:5;
|
|
19450
19035
|
contain:strict;
|
|
19451
19036
|
}
|
|
19452
|
-
|
|
19453
|
-
.pdfViewer .page.loading::after{
|
|
19037
|
+
.superdoc-viewer .pdfViewer .page.loading::after{
|
|
19454
19038
|
display:block;
|
|
19455
19039
|
}
|
|
19456
|
-
|
|
19457
|
-
.pdfViewer .page:not(.loading)::after{
|
|
19040
|
+
.superdoc-viewer .pdfViewer .page:not(.loading)::after{
|
|
19458
19041
|
transition-property:none;
|
|
19459
19042
|
display:none;
|
|
19460
19043
|
}
|
|
19461
|
-
|
|
19462
|
-
.pdfPresentationMode .pdfViewer{
|
|
19044
|
+
.superdoc-viewer .pdfPresentationMode .pdfViewer{
|
|
19463
19045
|
padding-bottom:0;
|
|
19464
19046
|
}
|
|
19465
|
-
|
|
19466
|
-
.pdfPresentationMode .spread{
|
|
19047
|
+
.superdoc-viewer .pdfPresentationMode .spread{
|
|
19467
19048
|
margin:0;
|
|
19468
19049
|
}
|
|
19469
|
-
|
|
19470
|
-
.pdfPresentationMode .pdfViewer .page{
|
|
19050
|
+
.superdoc-viewer .pdfPresentationMode .pdfViewer .page{
|
|
19471
19051
|
margin:0 auto;
|
|
19472
19052
|
border:2px solid transparent;
|
|
19473
19053
|
}
|
|
19054
|
+
.superdoc-viewer{
|
|
19474
19055
|
|
|
19475
|
-
.pdf-page {
|
|
19476
19056
|
position: relative;
|
|
19477
|
-
|
|
19478
|
-
|
|
19479
|
-
width: fit-content;
|
|
19057
|
+
display: flex;
|
|
19058
|
+
flex-direction: column;
|
|
19480
19059
|
}
|
|
19481
|
-
.
|
|
19482
|
-
|
|
19060
|
+
.superdoc-viewer .pdf-page {
|
|
19061
|
+
border: 1px solid #DFDFDF;
|
|
19062
|
+
margin: 0 0 20px 0;
|
|
19063
|
+
position: relative;
|
|
19483
19064
|
}
|
|
19484
|
-
.viewer {
|
|
19485
|
-
|
|
19065
|
+
.superdoc-viewer .textLayer {
|
|
19066
|
+
z-index: 2;
|
|
19067
|
+
position: absolute;
|
|
19068
|
+
}
|
|
19069
|
+
.superdoc-viewer .textLayer ::selection {
|
|
19070
|
+
background-color: #1355ff66;
|
|
19071
|
+
mix-blend-mode: difference;
|
|
19486
19072
|
}
|
|
19487
19073
|
|
|
19488
|
-
.comment-doc[data-v-
|
|
19489
|
-
background-color: red;
|
|
19074
|
+
.comment-doc[data-v-73492d6f] {
|
|
19490
19075
|
position: relative;
|
|
19491
19076
|
}
|
|
19492
|
-
.comments-layer[data-v-
|
|
19077
|
+
.comments-layer[data-v-73492d6f] {
|
|
19493
19078
|
position: relative;
|
|
19494
19079
|
}
|
|
19495
|
-
.comment-anchor[data-v-
|
|
19080
|
+
.comment-anchor[data-v-73492d6f] {
|
|
19496
19081
|
position: absolute;
|
|
19497
19082
|
cursor: pointer;
|
|
19498
19083
|
z-index: 3;
|
|
19499
19084
|
border-radius: 4px;
|
|
19500
19085
|
transition: background-color 250ms ease;
|
|
19501
|
-
pointer-events: auto;
|
|
19502
|
-
}
|
|
19503
|
-
.comment-anchor[data-v-e21e7b14]:hover {
|
|
19504
|
-
background-color: #FFD70099;
|
|
19505
|
-
}
|
|
19506
|
-
.comments-container[data-v-e21e7b14] {
|
|
19507
|
-
pointer-events: none;
|
|
19508
19086
|
}
|
|
19509
19087
|
|
|
19510
19088
|
.ProseMirror {
|
|
@@ -19555,25 +19133,27 @@ span[data-v-36fffb56] {
|
|
|
19555
19133
|
}
|
|
19556
19134
|
|
|
19557
19135
|
|
|
19558
|
-
.comments-dialog[data-v-
|
|
19136
|
+
.comments-dialog[data-v-e7a86897] {
|
|
19559
19137
|
position: absolute;
|
|
19560
19138
|
display: flex;
|
|
19561
19139
|
flex-direction: column;
|
|
19562
|
-
|
|
19563
|
-
padding: 16px;
|
|
19140
|
+
padding: 12px;
|
|
19564
19141
|
border-radius: 12px;
|
|
19565
19142
|
background-color: #EDEDED;
|
|
19566
19143
|
transition: background-color 250ms ease;
|
|
19567
|
-
-webkit-box-shadow: 0px 0px
|
|
19568
|
-
-moz-box-shadow: 0px 0px
|
|
19569
|
-
box-shadow: 0px 0px
|
|
19144
|
+
-webkit-box-shadow: 0px 0px 1px 1px rgba(50, 50, 50, 0.15);
|
|
19145
|
+
-moz-box-shadow: 0px 0px 1px 1px rgba(50, 50, 50, 0.15);
|
|
19146
|
+
box-shadow: 0px 0px 1px 1px rgba(50, 50, 50, 0.15);
|
|
19570
19147
|
z-index: 5;
|
|
19571
19148
|
}
|
|
19572
|
-
.
|
|
19149
|
+
.is-active[data-v-e7a86897] {
|
|
19150
|
+
z-index: 10;
|
|
19151
|
+
}
|
|
19152
|
+
.overflow-menu[data-v-e7a86897] {
|
|
19573
19153
|
flex-shrink: 1;
|
|
19574
19154
|
display: flex;
|
|
19575
19155
|
}
|
|
19576
|
-
.overflow-menu i[data-v-
|
|
19156
|
+
.overflow-menu i[data-v-e7a86897] {
|
|
19577
19157
|
width: 20px;
|
|
19578
19158
|
height: 20px;
|
|
19579
19159
|
display: flex;
|
|
@@ -19585,68 +19165,85 @@ span[data-v-36fffb56] {
|
|
|
19585
19165
|
margin-left: 2px;
|
|
19586
19166
|
cursor: pointer;
|
|
19587
19167
|
}
|
|
19588
|
-
.overflow-menu i[data-v-
|
|
19168
|
+
.overflow-menu i[data-v-e7a86897]:hover {
|
|
19589
19169
|
background-color: #DBDBDB;
|
|
19590
19170
|
}
|
|
19591
|
-
.
|
|
19592
|
-
margin: 5px 0;
|
|
19593
|
-
}
|
|
19594
|
-
.comment-entry[data-v-62d37dc7] {
|
|
19171
|
+
.comment-entry[data-v-e7a86897] {
|
|
19595
19172
|
flex-grow: 1;
|
|
19173
|
+
margin: 5px 0;
|
|
19596
19174
|
}
|
|
19597
|
-
.comment-entry input[data-v-
|
|
19175
|
+
.comment-entry input[data-v-e7a86897] {
|
|
19598
19176
|
border-radius: 12px;
|
|
19599
|
-
padding: 10px
|
|
19177
|
+
padding: 6px 10px;
|
|
19600
19178
|
outline: none;
|
|
19601
19179
|
border: 1px solid #DBDBDB;
|
|
19602
19180
|
width: 100%;
|
|
19603
19181
|
}
|
|
19604
|
-
.comment-header[data-v-
|
|
19182
|
+
.comment-header[data-v-e7a86897] {
|
|
19605
19183
|
display: flex;
|
|
19606
19184
|
align-items: center;
|
|
19607
19185
|
justify-content: space-between;
|
|
19608
19186
|
}
|
|
19609
|
-
.
|
|
19187
|
+
.comment-header-left[data-v-e7a86897] {
|
|
19188
|
+
display: flex;
|
|
19189
|
+
justify-content: space-between;
|
|
19190
|
+
align-items: center;
|
|
19191
|
+
}
|
|
19192
|
+
.avatar[data-v-e7a86897] {
|
|
19610
19193
|
margin-right: 10px;
|
|
19611
19194
|
}
|
|
19612
|
-
.user-info[data-v-
|
|
19195
|
+
.user-info[data-v-e7a86897] {
|
|
19613
19196
|
display: flex;
|
|
19614
19197
|
flex-direction: column;
|
|
19615
19198
|
font-size: 12px;
|
|
19616
19199
|
}
|
|
19617
|
-
.user-name[data-v-
|
|
19200
|
+
.user-name[data-v-e7a86897] {
|
|
19618
19201
|
font-weight: 600;
|
|
19202
|
+
line-height: 1.2em;
|
|
19619
19203
|
}
|
|
19620
|
-
.user-timestamp[data-v-
|
|
19204
|
+
.user-timestamp[data-v-e7a86897] {
|
|
19205
|
+
line-height: 1.2em;
|
|
19621
19206
|
font-size: 12px;
|
|
19622
19207
|
color: #999;
|
|
19623
19208
|
}
|
|
19624
|
-
.sd-button[data-v-
|
|
19209
|
+
.sd-button[data-v-e7a86897] {
|
|
19625
19210
|
margin-right: 5px;
|
|
19211
|
+
font-size: 12px;
|
|
19626
19212
|
}
|
|
19627
|
-
.comment[data-v-
|
|
19213
|
+
.comment[data-v-e7a86897] {
|
|
19628
19214
|
font-size: 14px;
|
|
19629
|
-
margin:
|
|
19215
|
+
margin: 5px 0;
|
|
19630
19216
|
}
|
|
19631
|
-
.conversation-item[data-v-
|
|
19217
|
+
.conversation-item[data-v-e7a86897] {
|
|
19632
19218
|
border-bottom: 1px solid #DBDBDB;
|
|
19633
19219
|
padding-bottom: 10px;
|
|
19634
19220
|
}
|
|
19221
|
+
.comment-footer[data-v-e7a86897] {
|
|
19222
|
+
margin: 5px 0;
|
|
19223
|
+
}
|
|
19635
19224
|
|
|
19636
|
-
.
|
|
19225
|
+
.section-wrapper[data-v-6cfcb7d7] {
|
|
19226
|
+
position: relative;
|
|
19227
|
+
min-height: 100%;
|
|
19228
|
+
width: 300px;
|
|
19229
|
+
}
|
|
19230
|
+
.floating-comment[data-v-6cfcb7d7] {
|
|
19231
|
+
position: absolute;
|
|
19232
|
+
min-width: 300px;
|
|
19233
|
+
}
|
|
19234
|
+
|
|
19235
|
+
.text-field[data-v-f85784d6] {
|
|
19637
19236
|
white-space: nowrap;
|
|
19638
19237
|
height: 100%;
|
|
19639
19238
|
width: 100%;
|
|
19640
19239
|
border-radius: 2px;
|
|
19641
19240
|
margin: 0;
|
|
19642
|
-
margin-top: -13px;
|
|
19643
19241
|
display: flex;
|
|
19644
19242
|
align-items: center;
|
|
19645
19243
|
padding: 1px;
|
|
19646
19244
|
}
|
|
19647
19245
|
|
|
19648
|
-
.paragraph-field[data-v-
|
|
19649
|
-
overflow: hidden;
|
|
19246
|
+
.paragraph-field[data-v-7e3aecc8] {
|
|
19650
19247
|
margin: 0;
|
|
19651
19248
|
padding: 1px;
|
|
19652
19249
|
}
|
|
@@ -19669,70 +19266,66 @@ img[data-v-47d1dee5] {
|
|
|
19669
19266
|
margin-top: 5px;
|
|
19670
19267
|
}
|
|
19671
19268
|
|
|
19672
|
-
.select-container[data-v-
|
|
19269
|
+
.select-container[data-v-f9a43dfa] {
|
|
19673
19270
|
padding: 1px;
|
|
19674
|
-
margin-top: -13px;
|
|
19675
19271
|
}
|
|
19676
19272
|
|
|
19677
|
-
.field-container[data-v-
|
|
19273
|
+
.field-container[data-v-60099bb0] {
|
|
19678
19274
|
border-radius: 2px;
|
|
19679
|
-
background-color: #EFD0F0;
|
|
19275
|
+
background-color: #EFD0F0 !important;
|
|
19680
19276
|
border: 2px solid #B015B3;
|
|
19681
19277
|
}
|
|
19682
19278
|
|
|
19683
19279
|
/* Right sidebar drawer */
|
|
19684
|
-
.right-sidebar[data-v-
|
|
19280
|
+
.right-sidebar[data-v-e89145d7] {
|
|
19685
19281
|
width: 320px;
|
|
19686
|
-
padding: 10px;
|
|
19282
|
+
padding: 0 10px;
|
|
19283
|
+
min-height: 100%;
|
|
19687
19284
|
position: relative;
|
|
19688
19285
|
}
|
|
19689
19286
|
|
|
19690
19287
|
/* General Styles */
|
|
19691
|
-
.box-sizing[data-v-
|
|
19288
|
+
.box-sizing[data-v-e89145d7], .layers[data-v-e89145d7] {
|
|
19692
19289
|
box-sizing: border-box;
|
|
19693
19290
|
}
|
|
19694
|
-
.cursor-pointer[data-v-
|
|
19291
|
+
.cursor-pointer[data-v-e89145d7], .tools i[data-v-e89145d7], .toolbar-item[data-v-e89145d7] {
|
|
19695
19292
|
cursor: pointer;
|
|
19696
19293
|
}
|
|
19697
|
-
.flex[data-v-
|
|
19294
|
+
.flex[data-v-e89145d7] {
|
|
19698
19295
|
display: flex;
|
|
19699
19296
|
}
|
|
19700
|
-
.flex-column[data-v-
|
|
19297
|
+
.flex-column[data-v-e89145d7] {
|
|
19701
19298
|
flex-direction: column;
|
|
19702
19299
|
}
|
|
19703
|
-
.flex-center[data-v-
|
|
19300
|
+
.flex-center[data-v-e89145d7] {
|
|
19704
19301
|
display: flex;
|
|
19705
19302
|
align-items: center;
|
|
19706
19303
|
justify-content: center;
|
|
19707
19304
|
}
|
|
19708
19305
|
|
|
19709
19306
|
/* Layer Styles */
|
|
19710
|
-
.comments-layer[data-v-
|
|
19307
|
+
.comments-layer[data-v-e89145d7] {
|
|
19711
19308
|
position: absolute;
|
|
19712
19309
|
top: 0;
|
|
19713
19310
|
height: 100%;
|
|
19714
19311
|
}
|
|
19715
|
-
.layers[data-v-4f3423dd] {
|
|
19716
|
-
position: relative;
|
|
19717
|
-
display: inline-block;
|
|
19718
|
-
}
|
|
19719
19312
|
|
|
19720
19313
|
/* Document Styles */
|
|
19721
|
-
.docx[data-v-
|
|
19314
|
+
.docx[data-v-e89145d7] {
|
|
19722
19315
|
border: 1px solid #DFDFDF;
|
|
19723
19316
|
pointer-events: auto;
|
|
19724
19317
|
}
|
|
19725
|
-
.sub-document[data-v-
|
|
19318
|
+
.sub-document[data-v-e89145d7] {
|
|
19726
19319
|
position: relative;
|
|
19727
19320
|
}
|
|
19728
19321
|
|
|
19729
19322
|
/* Toolbar Styles */
|
|
19730
|
-
.toolbar[data-v-
|
|
19323
|
+
.toolbar[data-v-e89145d7] {
|
|
19731
19324
|
height: 25px;
|
|
19732
19325
|
background-color: #fff;
|
|
19733
19326
|
margin-bottom: 5px;
|
|
19734
19327
|
}
|
|
19735
|
-
.toolbar-item[data-v-
|
|
19328
|
+
.toolbar-item[data-v-e89145d7] {
|
|
19736
19329
|
width: 20px;
|
|
19737
19330
|
height: 20px;
|
|
19738
19331
|
border-radius: 8px;
|
|
@@ -19744,27 +19337,46 @@ img[data-v-47d1dee5] {
|
|
|
19744
19337
|
justify-content: center;
|
|
19745
19338
|
transition: all 250ms ease;
|
|
19746
19339
|
}
|
|
19747
|
-
.toolbar-item[data-v-
|
|
19340
|
+
.toolbar-item[data-v-e89145d7]:hover {
|
|
19748
19341
|
background-color: #DBDBDB;
|
|
19749
19342
|
}
|
|
19750
19343
|
|
|
19751
19344
|
/* Tools Styles */
|
|
19752
|
-
.tools[data-v-
|
|
19345
|
+
.tools[data-v-e89145d7] {
|
|
19753
19346
|
position: absolute;
|
|
19754
19347
|
width: 50px;
|
|
19755
19348
|
height: 50px;
|
|
19756
19349
|
background-color: rgba(219, 219, 219, 0.6);
|
|
19757
19350
|
border-radius: 12px;
|
|
19758
|
-
z-index:
|
|
19351
|
+
z-index: 11;
|
|
19759
19352
|
display: flex;
|
|
19760
19353
|
align-items: center;
|
|
19761
19354
|
justify-content: center;
|
|
19762
19355
|
}
|
|
19763
|
-
.tools i[data-v-
|
|
19356
|
+
.tools i[data-v-e89145d7] {
|
|
19764
19357
|
font-size: 20px;
|
|
19765
19358
|
border-radius: 12px;
|
|
19766
19359
|
border: none;
|
|
19767
19360
|
outline: none;
|
|
19768
19361
|
background-color: #DBDBDB;
|
|
19769
19362
|
}
|
|
19770
|
-
|
|
19363
|
+
.layers[data-v-e89145d7] {
|
|
19364
|
+
position: relative;
|
|
19365
|
+
height: 100%;
|
|
19366
|
+
width: 100%;
|
|
19367
|
+
overflow: auto;
|
|
19368
|
+
}
|
|
19369
|
+
.document[data-v-e89145d7] {
|
|
19370
|
+
position: relative;
|
|
19371
|
+
}
|
|
19372
|
+
@media (max-width: 768px) {
|
|
19373
|
+
.sub-document[data-v-e89145d7] {
|
|
19374
|
+
max-width: 100%;
|
|
19375
|
+
overflow: hidden;
|
|
19376
|
+
}
|
|
19377
|
+
.right-sidebar[data-v-e89145d7] {
|
|
19378
|
+
padding: 10px;
|
|
19379
|
+
width: 55px;
|
|
19380
|
+
position: relative;
|
|
19381
|
+
}
|
|
19382
|
+
}
|