rails_modal_manager 1.0.18 → 1.0.19
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.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/rails_modal_manager.css +12 -2
- data/lib/rails_modal_manager/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cef668111af06b98cc1ee5627a3c331c3baeb67a8e5cc0254597644eaa7226c2
|
|
4
|
+
data.tar.gz: cc54b9eaec7112a06b40f722de1b2b3d2d799e9310f14632bbdfb9a33616134b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 38898bfe69ba690b37c5e58c960b21ba8c5b6405b1b6be9d547d568722a8e527a52ce14753667e78b38bfbb4f04647c76f1cfcd1cab2ccc62ccd42080d88affb
|
|
7
|
+
data.tar.gz: 4e5e50e11819160227ad23f5237a618f2812a762d0177f1045b387de9abd2a6aacf9d2945ea0d97e0d6c5841691f666a1162f8272de9ba7f2917d8df8e4d078b
|
|
@@ -1199,11 +1199,21 @@
|
|
|
1199
1199
|
}
|
|
1200
1200
|
|
|
1201
1201
|
.rmm-modal.rmm-position-center {
|
|
1202
|
-
top:
|
|
1203
|
-
bottom:
|
|
1202
|
+
top: 50% !important;
|
|
1203
|
+
bottom: auto !important;
|
|
1204
|
+
left: 50% !important;
|
|
1205
|
+
right: auto !important;
|
|
1206
|
+
width: calc(100% - 40px) !important;
|
|
1207
|
+
min-width: auto !important;
|
|
1208
|
+
max-width: none !important;
|
|
1209
|
+
transform: translate(-50%, -50%) !important;
|
|
1204
1210
|
max-height: calc(100% - 40px);
|
|
1205
1211
|
}
|
|
1206
1212
|
|
|
1213
|
+
.rmm-modal.rmm-position-center.rmm-active {
|
|
1214
|
+
transform: translate(-50%, -50%) scale(1) !important;
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1207
1217
|
.rmm-modal.rmm-size-full {
|
|
1208
1218
|
width: 100% !important;
|
|
1209
1219
|
height: 100% !important;
|