uni-popup-dialog.wxss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .uni-popup-dialog.data-v-2fab037e {
  28. width: 300px;
  29. border-radius: 15px;
  30. background-color: #fff;
  31. }
  32. .uni-dialog-title.data-v-2fab037e {
  33. display: -webkit-box;
  34. display: -webkit-flex;
  35. display: flex;
  36. -webkit-box-orient: horizontal;
  37. -webkit-box-direction: normal;
  38. -webkit-flex-direction: row;
  39. flex-direction: row;
  40. -webkit-box-pack: center;
  41. -webkit-justify-content: center;
  42. justify-content: center;
  43. padding-top: 15px;
  44. padding-bottom: 5px;
  45. }
  46. .uni-dialog-title-text.data-v-2fab037e {
  47. font-size: 16px;
  48. font-weight: 500;
  49. }
  50. .uni-dialog-content.data-v-2fab037e {
  51. display: -webkit-box;
  52. display: -webkit-flex;
  53. display: flex;
  54. -webkit-box-orient: horizontal;
  55. -webkit-box-direction: normal;
  56. -webkit-flex-direction: row;
  57. flex-direction: row;
  58. -webkit-box-pack: center;
  59. -webkit-justify-content: center;
  60. justify-content: center;
  61. -webkit-box-align: center;
  62. -webkit-align-items: center;
  63. align-items: center;
  64. padding: 5px 15px 15px 15px;
  65. }
  66. .uni-dialog-content-text.data-v-2fab037e {
  67. font-size: 14px;
  68. color: #6e6e6e;
  69. }
  70. .uni-dialog-button-group.data-v-2fab037e {
  71. display: -webkit-box;
  72. display: -webkit-flex;
  73. display: flex;
  74. -webkit-box-orient: horizontal;
  75. -webkit-box-direction: normal;
  76. -webkit-flex-direction: row;
  77. flex-direction: row;
  78. border-top-color: #f5f5f5;
  79. border-top-style: solid;
  80. border-top-width: 1px;
  81. }
  82. .uni-dialog-button.data-v-2fab037e {
  83. display: -webkit-box;
  84. display: -webkit-flex;
  85. display: flex;
  86. -webkit-box-flex: 1;
  87. -webkit-flex: 1;
  88. flex: 1;
  89. -webkit-box-orient: horizontal;
  90. -webkit-box-direction: normal;
  91. -webkit-flex-direction: row;
  92. flex-direction: row;
  93. -webkit-box-pack: center;
  94. -webkit-justify-content: center;
  95. justify-content: center;
  96. -webkit-box-align: center;
  97. -webkit-align-items: center;
  98. align-items: center;
  99. height: 45px;
  100. }
  101. .uni-border-left.data-v-2fab037e {
  102. border-left-color: #f0f0f0;
  103. border-left-style: solid;
  104. border-left-width: 1px;
  105. }
  106. .uni-dialog-button-text.data-v-2fab037e {
  107. font-size: 14px;
  108. }
  109. .uni-button-color.data-v-2fab037e {
  110. color: #007aff;
  111. }
  112. .uni-dialog-input.data-v-2fab037e {
  113. -webkit-box-flex: 1;
  114. -webkit-flex: 1;
  115. flex: 1;
  116. font-size: 14px;
  117. }
  118. .uni-popup__success.data-v-2fab037e {
  119. color: #4cd964;
  120. }
  121. .uni-popup__warn.data-v-2fab037e {
  122. color: #f0ad4e;
  123. }
  124. .uni-popup__error.data-v-2fab037e {
  125. color: #dd524d;
  126. }
  127. .uni-popup__info.data-v-2fab037e {
  128. color: #909399;
  129. }