123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- .uni-date-x {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- padding: 0 10px;
- border-radius: 4px;
- background-color: #fff;
- color: #666;
- font-size: 14px;
- }
- .uni-date-x--border {
- box-sizing: border-box;
- border-radius: 4px;
- border: 1px solid #dcdfe6;
- }
- .uni-date-editor--x {
- position: relative;
- }
- .uni-date-editor--x .uni-date__icon-clear {
- position: absolute;
- top: 0;
- right: 0;
- display: inline-block;
- box-sizing: border-box;
- border: 9px solid transparent;
- }
- .uni-date__x-input {
- padding: 0 8px;
- height: 40px;
- width: 100%;
- line-height: 40px;
- font-size: 14px;
- }
- .t-c {
- text-align: center;
- }
- .uni-date__input {
- height: 40px;
- width: 100%;
- line-height: 40px;
- font-size: 14px;
- }
- .uni-date-range__input {
- text-align: center;
- max-width: 142px;
- }
- .uni-date-picker__container {
- position: relative;
- /* position: fixed;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- box-sizing: border-box;
- z-index: 996;
- font-size: 14px; */
- }
- .uni-date-mask {
- position: fixed;
- bottom: 0px;
- top: 0px;
- left: 0px;
- right: 0px;
- background-color: rgba(0, 0, 0, 0);
- transition-duration: 0.3s;
- z-index: 996;
- }
- .uni-date-single--x {
- /* padding: 0 8px; */
- background-color: #fff;
- position: absolute;
- top: 0;
- z-index: 999;
- border: 1px solid #EBEEF5;
- box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
- border-radius: 4px;
- }
- .uni-date-range--x {
- /* padding: 0 8px; */
- background-color: #fff;
- position: absolute;
- top: 0;
- z-index: 999;
- border: 1px solid #EBEEF5;
- box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
- border-radius: 4px;
- }
- .uni-date-editor--x__disabled {
- opacity: 0.4;
- cursor: default;
- }
- .uni-date-editor--logo {
- width: 16px;
- height: 16px;
- vertical-align: middle;
- }
- /* 添加时间 */
- .popup-x-header {
- display: flex;
- flex-direction: row;
- /* justify-content: space-between; */
- }
- .popup-x-header--datetime {
- display: flex;
- flex-direction: row;
- flex: 1;
- }
- .popup-x-body {
- display: flex;
- }
- .popup-x-footer {
- padding: 0 15px;
- border-top-color: #F1F1F1;
- border-top-style: solid;
- border-top-width: 1px;
- /* background-color: #fff; */
- line-height: 40px;
- text-align: right;
- color: #666;
- }
- .popup-x-footer text:hover {
- color: #007aff;
- cursor: pointer;
- opacity: 0.8;
- }
- .popup-x-footer .confirm {
- margin-left: 20px;
- color: #007aff;
- }
- .uni-date-changed {
- /* background-color: #fff; */
- text-align: center;
- color: #333;
- border-bottom-color: #F1F1F1;
- border-bottom-style: solid;
- border-bottom-width: 1px;
- /* padding: 0 50px; */
- }
- .uni-date-changed--time text {
- /* padding: 0 20px; */
- height: 50px;
- line-height: 50px;
- }
- .uni-date-changed .uni-date-changed--time {
- /* display: flex; */
- flex: 1;
- }
- .uni-date-changed--time-date {
- color: #333;
- opacity: 0.6;
- }
- .mr-50 {
- margin-right: 50px;
- }
- /* picker 弹出层通用的指示小三角, todo:扩展至上下左右方向定位 */
- .uni-popper__arrow,
- .uni-popper__arrow::after {
- position: absolute;
- display: block;
- width: 0;
- height: 0;
- border-color: transparent;
- border-style: solid;
- border-width: 6px;
- }
- .uni-popper__arrow {
- filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03));
- top: -6px;
- left: 10%;
- margin-right: 3px;
- border-top-width: 0;
- border-bottom-color: #EBEEF5;
- }
- .uni-popper__arrow::after {
- content: " ";
- top: 1px;
- margin-left: -6px;
- border-top-width: 0;
- border-bottom-color: #fff;
- }
|