bge-ui 1.7.8 → 1.8.0
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/style.css +15 -1
- package/package.json +1 -1
- package/src/dialog/index.vue +16 -13
- package/src/tooltip/index.vue +1 -1
package/dist/style.css
CHANGED
|
@@ -1068,7 +1068,7 @@ to {
|
|
|
1068
1068
|
.bge-tabs__bordered .bge-tab__pane:hover, .bge-tabs__bordered .bge-tab__pane.active {
|
|
1069
1069
|
color: var(--tc-primary, #E0E0E0);
|
|
1070
1070
|
}.bge-popper-wrapper {
|
|
1071
|
-
z-index:
|
|
1071
|
+
z-index: 1001;
|
|
1072
1072
|
}
|
|
1073
1073
|
.bge-popper-wrapper[data-popper-placement^=top] > .popper-content > [data-popper-arrow] {
|
|
1074
1074
|
bottom: -4px;
|
|
@@ -1348,6 +1348,20 @@ to {
|
|
|
1348
1348
|
}
|
|
1349
1349
|
.bge-dialog .bge-dialog__body.full {
|
|
1350
1350
|
padding: 16px 0;
|
|
1351
|
+
}
|
|
1352
|
+
@media only screen and (max-width: 1023px) {
|
|
1353
|
+
.bge-dialog {
|
|
1354
|
+
width: 100%;
|
|
1355
|
+
position: absolute;
|
|
1356
|
+
left: 0;
|
|
1357
|
+
bottom: 0;
|
|
1358
|
+
margin: 0;
|
|
1359
|
+
border-radius: var(--radius-medium, 16px) var(--radius-medium, 16px) 0 0;
|
|
1360
|
+
}
|
|
1361
|
+
.bge-dialog .bge-dialog__header {
|
|
1362
|
+
font-size: 18px;
|
|
1363
|
+
line-height: 32px;
|
|
1364
|
+
}
|
|
1351
1365
|
}.bge-checkbox {
|
|
1352
1366
|
display: inline-flex;
|
|
1353
1367
|
justify-content: flex-start;
|
package/package.json
CHANGED
package/src/dialog/index.vue
CHANGED
|
@@ -217,18 +217,21 @@ defineExpose({
|
|
|
217
217
|
}
|
|
218
218
|
}
|
|
219
219
|
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
220
|
+
@include md {
|
|
221
|
+
.bge-dialog {
|
|
222
|
+
width: 100%;
|
|
223
|
+
position: absolute;
|
|
224
|
+
left: 0;
|
|
225
|
+
bottom: 0;
|
|
226
|
+
// transform: translate(0, -100%);
|
|
227
|
+
margin: 0;
|
|
228
|
+
border-radius: var(--radius-medium, 16px) var(--radius-medium, 16px) 0 0;
|
|
229
|
+
|
|
230
|
+
.bge-dialog__header {
|
|
231
|
+
font-size: 18px;
|
|
232
|
+
line-height: 32px;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
233
236
|
|
|
234
237
|
</style>
|