ls-pro-common 3.0.40 → 3.0.41
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/common.css +31 -0
- package/dist/common.js +1 -1
- package/dist/common.min.css +31 -0
- package/dist/common.min.js +1 -1
- package/es/components/antd-custom.less +37 -0
- package/lib/components/antd-custom.less +37 -0
- package/package.json +1 -1
package/dist/common.min.css
CHANGED
|
@@ -719,6 +719,37 @@ a:hover {
|
|
|
719
719
|
.ant-table-filter-dropdown .ant-dropdown-menu-item .ant-checkbox + span {
|
|
720
720
|
width: 230px;
|
|
721
721
|
}
|
|
722
|
+
.ant-picker-panel-container .ant-picker-panel-layout {
|
|
723
|
+
display: flex;
|
|
724
|
+
flex-wrap: nowrap;
|
|
725
|
+
align-items: stretch;
|
|
726
|
+
}
|
|
727
|
+
.ant-picker-panel-container .ant-picker-presets {
|
|
728
|
+
display: flex;
|
|
729
|
+
flex-direction: column;
|
|
730
|
+
min-width: 120px;
|
|
731
|
+
max-width: 200px;
|
|
732
|
+
}
|
|
733
|
+
.ant-picker-panel-container .ant-picker-presets ul {
|
|
734
|
+
height: 0;
|
|
735
|
+
flex: auto;
|
|
736
|
+
list-style: none;
|
|
737
|
+
overflow: auto;
|
|
738
|
+
margin: 0;
|
|
739
|
+
padding: 8px;
|
|
740
|
+
border-inline-end: 1px solid rgba(5, 5, 5, 0.06);
|
|
741
|
+
}
|
|
742
|
+
.ant-picker-panel-container .ant-picker-presets ul li {
|
|
743
|
+
overflow: hidden;
|
|
744
|
+
white-space: nowrap;
|
|
745
|
+
text-overflow: ellipsis;
|
|
746
|
+
border-radius: 4px;
|
|
747
|
+
padding-inline: 8px;
|
|
748
|
+
padding-block: 1px;
|
|
749
|
+
cursor: pointer;
|
|
750
|
+
transition: all 0.3s;
|
|
751
|
+
margin-top: 8px;
|
|
752
|
+
}
|
|
722
753
|
|
|
723
754
|
.pro-table-tooltip-text span {
|
|
724
755
|
color: #fff;
|