123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- @import './handle.scss';
- //全局按钮样式修改
- uni-button[type='primary'] {
- @include font_color('fontColor');
- @include background_color('backgroundColor');
- border-width: 0px !important;
- }
- .u-button--primary {
- @include background_color('backgroundColor');
- @include border_color('backgroundColor');
- }
- //全局背景样式修改
- .theme-back {
- @include background_color('backgroundColor');
- }
- /*
- * 页面样式 开始
- * @/pages/xunJian/plan/components/siteDetails.vue
- * @/pages/xunJian/plan/components/content.vue
- */
- .siteHeader {
- .u-icon__icon {
- font-size: 14px !important;
- line-height: 14px !important;
- margin: auto !important;
- }
- }
- /*
- * 页面样式 结束
- * @/pages/xunJian/plan/components/siteDetails.vue
- * @/pages/xunJian/plan/components/content.vue
- */
- //标题栏样式 开始
- .uni-section .uni-section-header {
- padding: 0 !important;
- .uni-section-header__decoration {
- height: 14px !important;
- @include background_color('backgroundColor');
- }
- .uni-section-header__content {
- uni-text {
- font-size: 15px !important;
- // color: #149eff !important;
- @include font_color('backgroundColor');
- font-weight: 600 !important;
- }
- }
- }
- //标题栏样式 结束
- //复选框样式 开始
- .u-checkbox-group {}
- //复选框样式 结束
- //日历样式 开始
- .uni-calendar {
- .uni-calendar__content {
- .uni-calendar__box {
- .uni-calendar__weeks {
- .uni-calendar__weeks-item {
- .uni-calendar-item--isDay-text {
- @include font_color('backgroundColor');
- }
- .uni-calendar-item--isDay {
- @include background_color('backgroundColor');
- @include font_color('fontColor');
- }
- .uni-calendar-item--checked {
- @include background_color('backgroundColor');
- }
- }
- }
- }
- }
- }
- //日历样式 结束
- .deviceManage {
- @include background_color('backgroundColor');
- @include font_color('fontColor');
- }
- //自定义头部导航样式 开始
- .u-navbar {
- .u-navbar--fixed {
- .u-navbar__content {
- @include background_color('backgroundColor');
- }
- }
- }
- //自定义头部导航样式 结束
- //iconfont样式 开始
- .menu-list .menu-item-box .menu-icon {
- @include font_color('backgroundColor');
- }
- //iconfont样式 结束
|