12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- uni-button[disabled], button[disabled] {
- color: white;
- background-color: #7798f0;
- }
- uni-button::after, button::after {
- border: 0 none;
- }
- /** 设置内容占满全屏 */
- uni-page-body {
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- uni-tabbar {
- // border-top: 1rpx solid #F8F8F8;
- border-top: 1rpx solid #eeeeee;
- }
- uni-view,
- uni-text,
- uni-input,
- uni-textarea,
- uni-button,
- view,
- text,
- input,
- textarea,
- button {
- box-sizing: border-box;
- }
- ::after,
- ::before {
- box-sizing: border-box;
- }
- input {
- font: inherit;
- margin: 0;
- padding: 0;
- color: inherit;
- border-style: none;
- outline-style: none;
- background: 0 0;
- -webkit-appearance: none;
- }
- /* #ifdef H5 */
- input:-webkit-autofill {
- -webkit-box-shadow: 0 0 0 1000px white inset !important;
- }
- input:focus, input:hover:focus {
- background-color: white !important;
- border: 0 none;
- }
- /* #endif */
|