Tencent / weui

A UI library by WeChat official design team, includes the most useful widgets/modules in mobile web applications.
https://weui.io
Other
27.18k stars 6.41k forks source link

2.4 Picker的深色模式好丑,是bug还就是这样的? #856

Closed SupZ6 closed 3 years ago

SupZ6 commented 4 years ago

weui io_(iPhone X)

BearJ commented 4 years ago

@heii 的确是bug,目前可以先加上这段css来fix:

@media (prefers-color-scheme: dark) {
  body:not([data-weui-theme='light']) .weui-picker__mask {
    background-image: linear-gradient(180deg, rgba(25, 25, 25, 0.95), rgba(25, 25, 25, 0.6)), linear-gradient(0deg, rgba(25, 25, 25, 0.95), rgba(25, 25, 25, 0.6));
  }
}