@charset "UTF-8";
|
/**
|
* 这里是uni-app内置的常用样式变量
|
*
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
*
|
*/
|
/**
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
*
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
*/
|
/* 颜色变量 */
|
/* 行为相关颜色 */
|
/* 文字基本颜色 */
|
/* 背景颜色 */
|
/* 边框颜色 */
|
/* 尺寸变量 */
|
/* 文字尺寸 */
|
/* 图片尺寸 */
|
/* Border Radius */
|
/* 水平间距 */
|
/* 垂直间距 */
|
/* 透明度 */
|
/* 文章场景相关 */
|
.flex-r {
|
display: flex;
|
flex-direction: row;
|
}
|
.flex-f {
|
flex: 1;
|
}
|
.a-i-c {
|
align-items: center;
|
}
|
.j-c-c {
|
justify-content: center;
|
}
|
.icon-select {
|
width: 14px;
|
height: 16px;
|
border: solid 6px transparent;
|
border-top: solid 6px #ddd;
|
border-bottom: none;
|
background-color: #ddd;
|
background-clip: content-box;
|
box-sizing: border-box;
|
}
|
.icon-select.active {
|
background-color: #1890ff;
|
border-top-color: #1890ff;
|
}
|
.icon-search {
|
width: 12px;
|
height: 16px;
|
position: relative;
|
}
|
.icon-search-0 {
|
border: 2px solid #ddd;
|
border-radius: 8px;
|
width: 7px;
|
height: 7px;
|
}
|
.icon-search-1 {
|
position: absolute;
|
top: 8px;
|
right: 0;
|
width: 1px;
|
height: 7px;
|
background-color: #ddd;
|
-webkit-transform: rotate(-45deg);
|
transform: rotate(-45deg);
|
}
|
.icon-search.active .icon-search-0 {
|
border-color: #1890ff;
|
}
|
.icon-search.active .icon-search-1 {
|
background-color: #1890ff;
|
}
|
.icon-calendar {
|
color: #ddd;
|
width: 14px;
|
height: 16px;
|
}
|
.icon-calendar-0 {
|
height: 4px;
|
margin-top: 3px;
|
margin-bottom: 1px;
|
background-color: #ddd;
|
border-radius: 2px 2px 1px 1px;
|
position: relative;
|
}
|
.icon-calendar-0:before, .icon-calendar-0:after {
|
content: '';
|
position: absolute;
|
top: -3px;
|
width: 4px;
|
height: 3px;
|
border-radius: 1px;
|
background-color: #ddd;
|
}
|
.icon-calendar-0:before {
|
left: 2px;
|
}
|
.icon-calendar-0:after {
|
right: 2px;
|
}
|
.icon-calendar-1 {
|
height: 9px;
|
background-color: #ddd;
|
border-radius: 1px 1px 2px 2px;
|
}
|
.icon-calendar.active {
|
color: #1890ff;
|
}
|
.icon-calendar.active .icon-calendar-0,
|
.icon-calendar.active .icon-calendar-1,
|
.icon-calendar.active .icon-calendar-0:before,
|
.icon-calendar.active .icon-calendar-0:after {
|
background-color: #1890ff;
|
}
|
.uni-filter-dropdown {
|
position: relative;
|
font-weight: normal;
|
}
|
.dropdown-popup {
|
position: absolute;
|
top: 100%;
|
background-color: #fff;
|
box-shadow: 0 3px 6px -4px #0000001f, 0 6px 16px #00000014, 0 9px 28px 8px #0000000d;
|
min-width: 150px;
|
z-index: 1000;
|
}
|
.dropdown-popup-left {
|
left: 0;
|
}
|
.dropdown-popup-right {
|
right: 0;
|
}
|
.uni-dropdown-cover {
|
position: fixed;
|
left: 0;
|
top: 0;
|
right: 0;
|
bottom: 0;
|
background-color: transparent;
|
z-index: 100;
|
}
|
.list {
|
margin-top: 5px;
|
margin-bottom: 5px;
|
}
|
.list-item {
|
padding: 5px 10px;
|
text-align: left;
|
}
|
.list-item:hover {
|
background-color: #f0f0f0;
|
}
|
.check {
|
margin-right: 5px;
|
}
|
.search-area {
|
padding: 10px;
|
}
|
.search-input {
|
font-size: 12px;
|
border: 1px solid #f0f0f0;
|
border-radius: 3px;
|
padding: 2px 5px;
|
min-width: 150px;
|
text-align: left;
|
}
|
.input-label {
|
margin: 10px 10px 5px 10px;
|
text-align: left;
|
}
|
.input {
|
font-size: 12px;
|
border: 1px solid #f0f0f0;
|
border-radius: 3px;
|
margin: 10px;
|
padding: 2px 5px;
|
min-width: 150px;
|
text-align: left;
|
}
|
.opera-area {
|
cursor: default;
|
border-top: 1px solid #ddd;
|
padding: 5px;
|
}
|
.opera-area .btn {
|
font-size: 12px;
|
border-radius: 3px;
|
margin: 5px;
|
padding: 4px 4px;
|
}
|
.btn-default {
|
border: 1px solid #ddd;
|
}
|
.btn-default.disable {
|
border-color: transparent;
|
}
|
.btn-submit {
|
background-color: #1890ff;
|
color: #ffffff;
|
}
|