@mdsfe/mds-ui 0.3.0-20 → 0.3.0-22
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/datepicker.js +356 -138
- package/dist/index.js +1 -1
- package/dist/mds-ui.min.css +1 -1
- package/dist/mds-ui.min.js +374 -158
- package/dist/style/datepicker.css +7 -0
- package/package.json +1 -1
|
@@ -7110,14 +7110,21 @@ samp {
|
|
|
7110
7110
|
width: 645px;
|
|
7111
7111
|
background: #fff;
|
|
7112
7112
|
}
|
|
7113
|
+
.mds-date-range-picker-panel:after {
|
|
7114
|
+
content: '';
|
|
7115
|
+
display: table;
|
|
7116
|
+
clear: both;
|
|
7117
|
+
}
|
|
7113
7118
|
.mds-date-range-picker-panel .is-left {
|
|
7114
7119
|
width: 50%;
|
|
7115
7120
|
float: left;
|
|
7116
7121
|
border-right: 1px solid #F0F2F5;
|
|
7122
|
+
box-sizing: border-box;
|
|
7117
7123
|
}
|
|
7118
7124
|
.mds-date-range-picker-panel .is-right {
|
|
7119
7125
|
width: 50%;
|
|
7120
7126
|
float: right;
|
|
7127
|
+
box-sizing: border-box;
|
|
7121
7128
|
}
|
|
7122
7129
|
.mds-date-table {
|
|
7123
7130
|
table-layout: fixed;
|