uni-data-pickerview.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. .uni-data-pickerview {
  2. position: relative;
  3. flex-direction: column;
  4. overflow: hidden;
  5. }
  6. .loading-cover {
  7. position: absolute;
  8. left: 0;
  9. top: 0;
  10. right: 0;
  11. bottom: 0;
  12. align-items: center;
  13. justify-content: center;
  14. background-color: rgba(150, 150, 150, .1);
  15. }
  16. .error {
  17. background-color: #fff;
  18. padding: 15px;
  19. }
  20. .error-text {
  21. color: #DD524D;
  22. }
  23. .selected-node-list {
  24. flex-direction: row;
  25. flex-wrap: nowrap;
  26. }
  27. .selected-node-item {
  28. margin-left: 10px;
  29. margin-right: 10px;
  30. padding: 8px 10px 8px 10px;
  31. border-bottom: 2px solid transparent;
  32. }
  33. .selected-node-item-active {
  34. color: #007aff;
  35. border-bottom-color: #007aff;
  36. }
  37. .list-view {
  38. flex: 1;
  39. }
  40. .list-item {
  41. flex-direction: row;
  42. justify-content: space-between;
  43. padding: 12px 15px;
  44. border-bottom: 1px solid #f0f0f0;
  45. }
  46. .item-text {
  47. color: #333333;
  48. }
  49. .item-text-disabled {
  50. opacity: .5;
  51. }
  52. .item-text-overflow {
  53. overflow: hidden;
  54. }
  55. .check {
  56. margin-right: 5px;
  57. border: 2px solid #007aff;
  58. border-left: 0;
  59. border-top: 0;
  60. height: 12px;
  61. width: 6px;
  62. transform-origin: center;
  63. transform: rotate(45deg);
  64. }