xrk-components 0.4.2-beta.9 → 0.4.3-beta.1

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/lib/index.css CHANGED
@@ -18533,6 +18533,173 @@
18533
18533
  .base-form-item[data-v-17eda5db] .xrk-form-item__label {
18534
18534
  font-weight: 700;
18535
18535
  }
18536
+ .el-popup-parent--hidden {
18537
+ overflow: hidden;
18538
+ }
18539
+ ._base-dialog {
18540
+ --xrk-dialog-border-radius: 4px !important;
18541
+ max-height: 80vh;
18542
+ overflow: hidden;
18543
+ margin-top: 0 !important;
18544
+ margin-bottom: 0 !important;
18545
+ top: 50%;
18546
+ -webkit-transform: translateY(-50%);
18547
+ transform: translateY(-50%);
18548
+ display: -webkit-box;
18549
+ display: -webkit-flex;
18550
+ display: -ms-flexbox;
18551
+ display: flex;
18552
+ -webkit-box-orient: vertical;
18553
+ -webkit-box-direction: normal;
18554
+ -webkit-flex-direction: column;
18555
+ -ms-flex-direction: column;
18556
+ flex-direction: column;
18557
+ }
18558
+ ._base-dialog .xrk-dialog__header {
18559
+ font-size: 20px;
18560
+ color: #303133;
18561
+ line-height: 1.4;
18562
+ margin-right: 0;
18563
+ }
18564
+ ._base-dialog .xrk-dialog__body {
18565
+ height: 100%;
18566
+ overflow-y: auto;
18567
+ padding: 25px var(--xrk-dialog-padding-primary) !important;
18568
+ }
18569
+ ._base-dialog .xrk-dialog__body::-webkit-scrollbar {
18570
+ width: 6px;
18571
+ }
18572
+ ._base-dialog .xrk-dialog__body::-webkit-scrollbar-thumb {
18573
+ background-color: rgba(0, 0, 0, 0.2);
18574
+ border-radius: 10px;
18575
+ -webkit-transition: all 0.2s ease-in-out;
18576
+ transition: all 0.2s ease-in-out;
18577
+ }
18578
+ ._base-dialog .xrk-dialog__body::-webkit-scrollbar-track {
18579
+ border-radius: 10px;
18580
+ }
18581
+ ._base-dialog.hide-footer .xrk-dialog__footer {
18582
+ display: none !important;
18583
+ }
18584
+ .xrk-upload__list[data-v-75b461d5] {
18585
+ margin-top: 6px;
18586
+ }
18587
+ .xrk-upload__list.picture[data-v-75b461d5] {
18588
+ display: -webkit-box;
18589
+ display: -webkit-flex;
18590
+ display: -ms-flexbox;
18591
+ display: flex;
18592
+ -webkit-flex-wrap: wrap;
18593
+ -ms-flex-wrap: wrap;
18594
+ flex-wrap: wrap;
18595
+ }
18596
+ .xrk-upload__item[data-v-75b461d5] {
18597
+ display: -webkit-box;
18598
+ display: -webkit-flex;
18599
+ display: -ms-flexbox;
18600
+ display: flex;
18601
+ -webkit-box-align: center;
18602
+ -webkit-align-items: center;
18603
+ -ms-flex-align: center;
18604
+ align-items: center;
18605
+ -webkit-transition: all 0.3s;
18606
+ transition: all 0.3s;
18607
+ cursor: pointer;
18608
+ padding: 6px 4px;
18609
+ }
18610
+ .xrk-upload__item[data-v-75b461d5]:hover {
18611
+ background: var(--xrk-fill-color-light);
18612
+ }
18613
+ .xrk-upload__item:hover .xrk-upload__item_name[data-v-75b461d5] {
18614
+ color: var(--xrk-color-primary);
18615
+ }
18616
+ .xrk-upload__item:hover .xrk-upload__item_icon__del[data-v-75b461d5] {
18617
+ opacity: 0.7;
18618
+ pointer-events: inherit;
18619
+ }
18620
+ .xrk-upload__item_icon[data-v-75b461d5] {
18621
+ -webkit-flex-shrink: 0;
18622
+ -ms-flex-negative: 0;
18623
+ flex-shrink: 0;
18624
+ line-height: 1;
18625
+ }
18626
+ .xrk-upload__item_icon__del[data-v-75b461d5] {
18627
+ line-height: 1;
18628
+ -webkit-transition: all 0.3s;
18629
+ transition: all 0.3s;
18630
+ opacity: 0;
18631
+ pointer-events: none;
18632
+ }
18633
+ .xrk-upload__item_icon__del[data-v-75b461d5]:hover {
18634
+ opacity: 1;
18635
+ }
18636
+ .xrk-upload__item_name[data-v-75b461d5] {
18637
+ font-size: 14px;
18638
+ -webkit-box-flex: 1;
18639
+ -webkit-flex-grow: 1;
18640
+ -ms-flex-positive: 1;
18641
+ flex-grow: 1;
18642
+ padding: 0 4px;
18643
+ -webkit-user-select: none;
18644
+ -moz-user-select: none;
18645
+ -ms-user-select: none;
18646
+ user-select: none;
18647
+ }
18648
+ .xrk-upload__item_name[data-v-75b461d5] .xrk-tooltip__trigger {
18649
+ overflow: hidden;
18650
+ text-overflow: ellipsis;
18651
+ -webkit-box-orient: vertical;
18652
+ display: -webkit-box;
18653
+ -webkit-line-clamp: 1;
18654
+ white-space: initial;
18655
+ word-break: break-all;
18656
+ }
18657
+ .xrk-upload__item_img[data-v-75b461d5] {
18658
+ width: 140px;
18659
+ height: 140px;
18660
+ position: relative;
18661
+ overflow: hidden;
18662
+ border-radius: 4px;
18663
+ border: 1px dashed var(--xrk-border-color);
18664
+ margin: 0 8px 8px 0;
18665
+ }
18666
+ .xrk-upload__item_img > img[data-v-75b461d5] {
18667
+ width: 100%;
18668
+ height: 100%;
18669
+ -o-object-fit: cover;
18670
+ object-fit: cover;
18671
+ }
18672
+ .xrk-upload__item_img:hover .xrk-upload__item_img_operate[data-v-75b461d5] {
18673
+ pointer-events: initial;
18674
+ opacity: 1;
18675
+ background: rgba(0, 0, 0, 0.5);
18676
+ }
18677
+ .xrk-upload__item_img_operate[data-v-75b461d5] {
18678
+ position: absolute;
18679
+ left: 0;
18680
+ top: 0;
18681
+ width: 100%;
18682
+ height: 100%;
18683
+ opacity: 0;
18684
+ pointer-events: none;
18685
+ -webkit-transition: all 0.3s;
18686
+ transition: all 0.3s;
18687
+ display: -webkit-box;
18688
+ display: -webkit-flex;
18689
+ display: -ms-flexbox;
18690
+ display: flex;
18691
+ -webkit-box-align: center;
18692
+ -webkit-align-items: center;
18693
+ -ms-flex-align: center;
18694
+ align-items: center;
18695
+ -webkit-box-pack: center;
18696
+ -webkit-justify-content: center;
18697
+ -ms-flex-pack: center;
18698
+ justify-content: center;
18699
+ }
18700
+ .xrk-upload__item_img_operate > div[data-v-75b461d5] {
18701
+ cursor: pointer;
18702
+ }
18536
18703
  .xrk-search[data-v-a1781a06] > .xrk-form {
18537
18704
  display: -webkit-box;
18538
18705
  display: -webkit-flex;
@@ -18622,52 +18789,4 @@
18622
18789
  }
18623
18790
  .slot-after {
18624
18791
  margin-bottom: 12px;
18625
- }
18626
- .el-popup-parent--hidden {
18627
- overflow: hidden;
18628
- }
18629
- ._base-dialog {
18630
- --xrk-dialog-border-radius: 4px !important;
18631
- max-height: 80vh;
18632
- overflow: hidden;
18633
- margin-top: 0 !important;
18634
- margin-bottom: 0 !important;
18635
- top: 50%;
18636
- -webkit-transform: translateY(-50%);
18637
- transform: translateY(-50%);
18638
- display: -webkit-box;
18639
- display: -webkit-flex;
18640
- display: -ms-flexbox;
18641
- display: flex;
18642
- -webkit-box-orient: vertical;
18643
- -webkit-box-direction: normal;
18644
- -webkit-flex-direction: column;
18645
- -ms-flex-direction: column;
18646
- flex-direction: column;
18647
- }
18648
- ._base-dialog .xrk-dialog__header {
18649
- font-size: 20px;
18650
- color: #303133;
18651
- line-height: 1.4;
18652
- margin-right: 0;
18653
- }
18654
- ._base-dialog .xrk-dialog__body {
18655
- height: 100%;
18656
- overflow-y: auto;
18657
- padding: 25px var(--xrk-dialog-padding-primary) !important;
18658
- }
18659
- ._base-dialog .xrk-dialog__body::-webkit-scrollbar {
18660
- width: 6px;
18661
- }
18662
- ._base-dialog .xrk-dialog__body::-webkit-scrollbar-thumb {
18663
- background-color: rgba(0, 0, 0, 0.2);
18664
- border-radius: 10px;
18665
- -webkit-transition: all 0.2s ease-in-out;
18666
- transition: all 0.2s ease-in-out;
18667
- }
18668
- ._base-dialog .xrk-dialog__body::-webkit-scrollbar-track {
18669
- border-radius: 10px;
18670
- }
18671
- ._base-dialog.hide-footer .xrk-dialog__footer {
18672
- display: none !important;
18673
18792
  }