uni.theme.scss 861 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. uni-button[disabled], button[disabled] {
  2. color: white;
  3. background-color: #7798f0;
  4. }
  5. uni-button::after, button::after {
  6. border: 0 none;
  7. }
  8. /** 设置内容占满全屏 */
  9. uni-page-body {
  10. width: 100%;
  11. height: 100%;
  12. overflow: hidden;
  13. }
  14. uni-tabbar {
  15. // border-top: 1rpx solid #F8F8F8;
  16. border-top: 1rpx solid #eeeeee;
  17. }
  18. uni-view,
  19. uni-text,
  20. uni-input,
  21. uni-textarea,
  22. uni-button,
  23. view,
  24. text,
  25. input,
  26. textarea,
  27. button {
  28. box-sizing: border-box;
  29. }
  30. ::after,
  31. ::before {
  32. box-sizing: border-box;
  33. }
  34. input {
  35. font: inherit;
  36. margin: 0;
  37. padding: 0;
  38. color: inherit;
  39. border-style: none;
  40. outline-style: none;
  41. background: 0 0;
  42. -webkit-appearance: none;
  43. }
  44. /* #ifdef H5 */
  45. input:-webkit-autofill {
  46. -webkit-box-shadow: 0 0 0 1000px white inset !important;
  47. }
  48. input:focus, input:hover:focus {
  49. background-color: white !important;
  50. border: 0 none;
  51. }
  52. /* #endif */