u-radio.wxss 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. @charset "UTF-8";
  2. /**
  3. * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
  4. * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
  5. * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
  6. */
  7. .u-radio.data-v-da6758f0 {
  8. display: -webkit-inline-box;
  9. display: -webkit-inline-flex;
  10. display: inline-flex;
  11. -webkit-box-align: center;
  12. -webkit-align-items: center;
  13. align-items: center;
  14. overflow: hidden;
  15. -webkit-user-select: none;
  16. user-select: none;
  17. line-height: 1.8;
  18. }
  19. .u-radio__icon-wrap.data-v-da6758f0 {
  20. color: #606266;
  21. display: -webkit-box;
  22. display: -webkit-flex;
  23. display: flex;
  24. -webkit-box-orient: horizontal;
  25. -webkit-box-direction: normal;
  26. -webkit-flex-direction: row;
  27. flex-direction: row;
  28. -webkit-box-flex: 0;
  29. -webkit-flex: none;
  30. flex: none;
  31. -webkit-box-align: center;
  32. -webkit-align-items: center;
  33. align-items: center;
  34. -webkit-box-pack: center;
  35. -webkit-justify-content: center;
  36. justify-content: center;
  37. box-sizing: border-box;
  38. width: 42rpx;
  39. height: 42rpx;
  40. color: transparent;
  41. text-align: center;
  42. -webkit-transition-property: color, border-color, background-color;
  43. transition-property: color, border-color, background-color;
  44. font-size: 20px;
  45. border: 1px solid #c8c9cc;
  46. -webkit-transition-duration: 0.2s;
  47. transition-duration: 0.2s;
  48. }
  49. .u-radio__icon-wrap--circle.data-v-da6758f0 {
  50. border-radius: 100%;
  51. }
  52. .u-radio__icon-wrap--square.data-v-da6758f0 {
  53. border-radius: 3px;
  54. }
  55. .u-radio__icon-wrap--checked.data-v-da6758f0 {
  56. color: #fff;
  57. background-color: #2979ff;
  58. border-color: #2979ff;
  59. }
  60. .u-radio__icon-wrap--disabled.data-v-da6758f0 {
  61. background-color: #ebedf0;
  62. border-color: #c8c9cc;
  63. }
  64. .u-radio__icon-wrap--disabled--checked.data-v-da6758f0 {
  65. color: #c8c9cc !important;
  66. }
  67. .u-radio__label.data-v-da6758f0 {
  68. word-wrap: break-word;
  69. margin-left: 10rpx;
  70. margin-right: 24rpx;
  71. color: #606266;
  72. font-size: 30rpx;
  73. }
  74. .u-radio__label--disabled.data-v-da6758f0 {
  75. color: #c8c9cc;
  76. }