uni-popup-dialog.wxss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. .content {
  2. display: flex;
  3. flex-direction: column;
  4. box-sizing: border-box;
  5. width: 100vw;
  6. height: 100vh;
  7. }
  8. .uni-popup-dialog {
  9. width: 300px;
  10. border-radius: 11px;
  11. background-color: #fff;
  12. }
  13. .uni-dialog-title {
  14. display: flex;
  15. flex-direction: row;
  16. justify-content: center;
  17. padding-top: 25px;
  18. }
  19. .uni-dialog-title-text {
  20. font-size: 16px;
  21. font-weight: 500;
  22. }
  23. .uni-dialog-content {
  24. display: flex;
  25. flex-direction: row;
  26. justify-content: center;
  27. align-items: center;
  28. padding: 20px;
  29. }
  30. .uni-dialog-content-text {
  31. font-size: 14px;
  32. color: #6C6C6C;
  33. }
  34. .uni-dialog-button-group {
  35. display: flex;
  36. flex-direction: row;
  37. border-top-color: #f5f5f5;
  38. border-top-style: solid;
  39. border-top-width: 1px;
  40. }
  41. .uni-dialog-button {
  42. display: flex;
  43. flex: 1;
  44. flex-direction: row;
  45. justify-content: center;
  46. align-items: center;
  47. height: 45px;
  48. }
  49. .uni-border-left {
  50. border-left-color: #f0f0f0;
  51. border-left-style: solid;
  52. border-left-width: 1px;
  53. }
  54. .uni-dialog-button-text {
  55. font-size: 16px;
  56. color: #333;
  57. }
  58. .uni-button-color {
  59. color: #007aff;
  60. }
  61. .uni-dialog-input {
  62. flex: 1;
  63. font-size: 14px;
  64. border: 1px #eee solid;
  65. height: 40px;
  66. padding: 0 10px;
  67. border-radius: 5px;
  68. color: #555;
  69. }
  70. .uni-popup__success {
  71. color: #4cd964;
  72. }
  73. .uni-popup__warn {
  74. color: #f0ad4e;
  75. }
  76. .uni-popup__error {
  77. color: #dd524d;
  78. }
  79. .uni-popup__info {
  80. color: #909399;
  81. }