@diplodoc/transform 4.24.0-beta2 → 4.24.0-beta3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/print.css.map +1 -1
- package/dist/css/yfm.css +2 -4
- package/dist/css/yfm.css.map +3 -3
- package/dist/css/yfm.min.css +1 -1
- package/dist/css/yfm.min.css.map +3 -3
- package/dist/js/yfm.js +1 -1
- package/dist/js/yfm.js.map +2 -2
- package/dist/js/yfm.min.js +1 -1
- package/dist/js/yfm.min.js.map +2 -2
- package/package.json +1 -1
- package/src/js/wide-mode/apply.ts +1 -1
- package/src/scss/_modal.scss +2 -6
package/src/scss/_modal.scss
CHANGED
|
@@ -78,28 +78,25 @@
|
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
.wide-element-wrapper {
|
|
81
|
-
display:
|
|
81
|
+
display: flex;
|
|
82
|
+
gap: 30px;
|
|
82
83
|
position: relative;
|
|
83
|
-
padding-right: 30px;
|
|
84
84
|
|
|
85
85
|
&:hover > .wide-content-viewer {
|
|
86
86
|
visibility: visible;
|
|
87
87
|
}
|
|
88
88
|
|
|
89
|
-
|
|
90
89
|
.wide-inner-element {
|
|
91
90
|
max-width: 700px;
|
|
92
91
|
}
|
|
93
92
|
}
|
|
94
93
|
|
|
95
94
|
.wide-content-viewer {
|
|
96
|
-
position: absolute;
|
|
97
95
|
visibility: hidden;
|
|
98
96
|
width: 30px;
|
|
99
97
|
height: 30px;
|
|
100
98
|
z-index: 100;
|
|
101
99
|
padding: 6px;
|
|
102
|
-
right: -20px;
|
|
103
100
|
box-sizing: content-box;
|
|
104
101
|
color: var(--g-color-text-primary);
|
|
105
102
|
cursor: pointer;
|
|
@@ -110,7 +107,6 @@
|
|
|
110
107
|
}
|
|
111
108
|
}
|
|
112
109
|
|
|
113
|
-
|
|
114
110
|
.wide-content-overlay {
|
|
115
111
|
z-index: 100;
|
|
116
112
|
width: 100vw;
|