jodit-pro-react 5.4.25 → 5.4.27
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.
|
@@ -9394,6 +9394,79 @@ svg.jodit-icon {
|
|
|
9394
9394
|
text-overflow: ellipsis;
|
|
9395
9395
|
white-space: nowrap;
|
|
9396
9396
|
}
|
|
9397
|
+
.jodit-templates-popup {
|
|
9398
|
+
max-height: 470px;
|
|
9399
|
+
min-width: 300px;
|
|
9400
|
+
overflow-y: auto;
|
|
9401
|
+
padding: 8px;
|
|
9402
|
+
}
|
|
9403
|
+
.jodit-templates-popup__card {
|
|
9404
|
+
align-items: stretch;
|
|
9405
|
+
background: none;
|
|
9406
|
+
border: 1px solid #ddd;
|
|
9407
|
+
border-radius: 6px;
|
|
9408
|
+
color: inherit;
|
|
9409
|
+
cursor: pointer;
|
|
9410
|
+
display: flex;
|
|
9411
|
+
flex-direction: row;
|
|
9412
|
+
margin-bottom: 8px;
|
|
9413
|
+
overflow: hidden;
|
|
9414
|
+
padding: 0;
|
|
9415
|
+
text-align: left;
|
|
9416
|
+
width: 100%;
|
|
9417
|
+
}
|
|
9418
|
+
.jodit-templates-popup__card:last-child {
|
|
9419
|
+
margin-bottom: 0;
|
|
9420
|
+
}
|
|
9421
|
+
.jodit-templates-popup__card:hover {
|
|
9422
|
+
border-color: var(--jd-color-border-active,#4a6cf6);
|
|
9423
|
+
}
|
|
9424
|
+
.jodit-templates-popup__card-preview {
|
|
9425
|
+
background: #f8f8f8;
|
|
9426
|
+
flex-shrink: 0;
|
|
9427
|
+
height: 96px;
|
|
9428
|
+
overflow: hidden;
|
|
9429
|
+
pointer-events: none;
|
|
9430
|
+
position: relative;
|
|
9431
|
+
width: 140px;
|
|
9432
|
+
}
|
|
9433
|
+
.jodit-templates-popup__card-preview img {
|
|
9434
|
+
display: block;
|
|
9435
|
+
height: 100%;
|
|
9436
|
+
object-fit: cover;
|
|
9437
|
+
width: 100%;
|
|
9438
|
+
}
|
|
9439
|
+
.jodit-templates-popup__card-preview-inner {
|
|
9440
|
+
left: 0;
|
|
9441
|
+
position: absolute;
|
|
9442
|
+
top: 0;
|
|
9443
|
+
transform: scale(.28);
|
|
9444
|
+
transform-origin: top left;
|
|
9445
|
+
width: 500px;
|
|
9446
|
+
}
|
|
9447
|
+
.jodit-templates-popup__card-info {
|
|
9448
|
+
display: flex;
|
|
9449
|
+
flex: 1;
|
|
9450
|
+
flex-direction: column;
|
|
9451
|
+
justify-content: center;
|
|
9452
|
+
min-width: 0;
|
|
9453
|
+
padding: 8px 12px;
|
|
9454
|
+
}
|
|
9455
|
+
.jodit-templates-popup__card-title {
|
|
9456
|
+
font-size: 13px;
|
|
9457
|
+
font-weight: 600;
|
|
9458
|
+
line-height: 1.3;
|
|
9459
|
+
overflow: hidden;
|
|
9460
|
+
text-overflow: ellipsis;
|
|
9461
|
+
white-space: nowrap;
|
|
9462
|
+
}
|
|
9463
|
+
.jodit-templates-popup__card-description {
|
|
9464
|
+
color: #888;
|
|
9465
|
+
font-size: 11px;
|
|
9466
|
+
line-height: 1.4;
|
|
9467
|
+
margin-top: 4px;
|
|
9468
|
+
overflow: hidden;
|
|
9469
|
+
}
|
|
9397
9470
|
:root {
|
|
9398
9471
|
--jd-todo-color-checkbox-border:#333;
|
|
9399
9472
|
--jd-todo-color-checkbox-border-checked:#25ab33;
|