96 lines
2.6 KiB
Plaintext
96 lines
2.6 KiB
Plaintext
/**
|
||
* 这里是uni-app内置的常用样式变量
|
||
*
|
||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||
*
|
||
*/
|
||
/**
|
||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||
*
|
||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||
*/
|
||
/* uni.scss */
|
||
/* 颜色变量 */
|
||
/* 行为相关颜色 */
|
||
/* 文字基本颜色 */
|
||
/* 背景颜色 */
|
||
/* 边框颜色 */
|
||
/* 尺寸变量 */
|
||
/* 文字尺寸 */
|
||
/* 图片尺寸 */
|
||
/* Border Radius */
|
||
/* 水平间距 */
|
||
/* 垂直间距 */
|
||
/* 透明度 */
|
||
/* 文章场景相关 */
|
||
.user-popup.data-v-2685d664 {
|
||
background: #fff;
|
||
}
|
||
.user-popup .popup-header.data-v-2685d664 {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
padding: 30rpx;
|
||
border-bottom: 1rpx solid #eee;
|
||
}
|
||
.user-popup .popup-header .popup-title.data-v-2685d664 {
|
||
font-size: 32rpx;
|
||
color: #333;
|
||
}
|
||
.user-popup .popup-header .popup-close.data-v-2685d664 {
|
||
font-size: 40rpx;
|
||
color: #999;
|
||
line-height: 1;
|
||
}
|
||
.user-popup .selected-summary.data-v-2685d664 {
|
||
padding: 16rpx 30rpx;
|
||
background: #f5f7fa;
|
||
border-bottom: 1rpx solid #eee;
|
||
font-size: 24rpx;
|
||
line-height: 1.5;
|
||
}
|
||
.user-popup .selected-summary .summary-label.data-v-2685d664 {
|
||
color: #909399;
|
||
}
|
||
.user-popup .selected-summary .summary-text.data-v-2685d664 {
|
||
color: #333;
|
||
}
|
||
.user-popup .user-list-scroll.data-v-2685d664 {
|
||
max-height: 600rpx;
|
||
box-sizing: border-box;
|
||
}
|
||
.user-popup .empty-tip.data-v-2685d664 {
|
||
padding: 80rpx 20rpx;
|
||
text-align: center;
|
||
color: #909399;
|
||
font-size: 26rpx;
|
||
}
|
||
.user-popup .popup-footer.data-v-2685d664 {
|
||
display: flex;
|
||
gap: 24rpx;
|
||
padding: 24rpx 30rpx;
|
||
padding-bottom: calc(24rpx + env(safe-area-inset-bottom));
|
||
background: #fff;
|
||
}
|
||
.user-popup .popup-footer button.data-v-2685d664 {
|
||
flex: 1;
|
||
height: 80rpx;
|
||
line-height: 80rpx;
|
||
border-radius: 40rpx;
|
||
font-size: 30rpx;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
.user-popup .popup-footer button.data-v-2685d664::after {
|
||
border: none;
|
||
}
|
||
.user-popup .popup-footer .btn-cancel.data-v-2685d664 {
|
||
background: #fff;
|
||
color: #2667E9;
|
||
border: 2rpx solid #2667E9;
|
||
}
|
||
.user-popup .popup-footer .btn-confirm.data-v-2685d664 {
|
||
color: #fff;
|
||
border: none;
|
||
} |