uni-popup-dialog.wxss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. -webkit-border-radius: 15px;
  30. border-radius: 15px;
  31. background-color: #fff;
  32. }
  33. .uni-dialog-title.data-v-2fab037e {
  34. display: -webkit-box;
  35. display: -webkit-flex;
  36. display: flex;
  37. -webkit-box-orient: horizontal;
  38. -webkit-box-direction: normal;
  39. -webkit-flex-direction: row;
  40. flex-direction: row;
  41. -webkit-box-pack: center;
  42. -webkit-justify-content: center;
  43. justify-content: center;
  44. padding-top: 15px;
  45. padding-bottom: 5px;
  46. }
  47. .uni-dialog-title-text.data-v-2fab037e {
  48. font-size: 16px;
  49. font-weight: 500;
  50. }
  51. .uni-dialog-content.data-v-2fab037e {
  52. display: -webkit-box;
  53. display: -webkit-flex;
  54. display: flex;
  55. -webkit-box-orient: horizontal;
  56. -webkit-box-direction: normal;
  57. -webkit-flex-direction: row;
  58. flex-direction: row;
  59. -webkit-box-pack: center;
  60. -webkit-justify-content: center;
  61. justify-content: center;
  62. -webkit-box-align: center;
  63. -webkit-align-items: center;
  64. align-items: center;
  65. padding: 5px 15px 15px 15px;
  66. }
  67. .uni-dialog-content-text.data-v-2fab037e {
  68. font-size: 14px;
  69. color: #6e6e6e;
  70. }
  71. .uni-dialog-button-group.data-v-2fab037e {
  72. display: -webkit-box;
  73. display: -webkit-flex;
  74. display: flex;
  75. -webkit-box-orient: horizontal;
  76. -webkit-box-direction: normal;
  77. -webkit-flex-direction: row;
  78. flex-direction: row;
  79. border-top-color: #f5f5f5;
  80. border-top-style: solid;
  81. border-top-width: 1px;
  82. }
  83. .uni-dialog-button.data-v-2fab037e {
  84. display: -webkit-box;
  85. display: -webkit-flex;
  86. display: flex;
  87. -webkit-box-flex: 1;
  88. -webkit-flex: 1;
  89. flex: 1;
  90. -webkit-box-orient: horizontal;
  91. -webkit-box-direction: normal;
  92. -webkit-flex-direction: row;
  93. flex-direction: row;
  94. -webkit-box-pack: center;
  95. -webkit-justify-content: center;
  96. justify-content: center;
  97. -webkit-box-align: center;
  98. -webkit-align-items: center;
  99. align-items: center;
  100. height: 45px;
  101. }
  102. .uni-border-left.data-v-2fab037e {
  103. border-left-color: #f0f0f0;
  104. border-left-style: solid;
  105. border-left-width: 1px;
  106. }
  107. .uni-dialog-button-text.data-v-2fab037e {
  108. font-size: 14px;
  109. }
  110. .uni-button-color.data-v-2fab037e {
  111. color: #007aff;
  112. }
  113. .uni-dialog-input.data-v-2fab037e {
  114. -webkit-box-flex: 1;
  115. -webkit-flex: 1;
  116. flex: 1;
  117. font-size: 14px;
  118. }
  119. .uni-popup__success.data-v-2fab037e {
  120. color: #4cd964;
  121. }
  122. .uni-popup__warn.data-v-2fab037e {
  123. color: #f0ad4e;
  124. }
  125. .uni-popup__error.data-v-2fab037e {
  126. color: #dd524d;
  127. }
  128. .uni-popup__info.data-v-2fab037e {
  129. color: #909399;
  130. }