yonui-ys
Version:
319 lines (253 loc) • 4.17 kB
text/less
// ============================================
// base 基础样式
// ============================================
* {
font-family: /*西文*/-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Ubuntu,Helvetica Neue,Helvetica,Arial,
/*中文*/PingFang SC,Hiragino Sans GB,Microsoft YaHei UI,Microsoft YaHei,Source Han Sans CN,sans-serif;
outline: none;
&:focus {
outline: none;
}
}
::selection{
background: #588CE9;
}
body {
color: #333;
font-size: 12px;
height: 100% ;
}
a {
color: #333;
}
a:hover,
a.active {
color: #ee2223;
}
canvas {
cursor: pointer ;
}
.height-100 {
height: 100%;
}
.hide {
display: none ;
}
.show {
display: block ;
}
.no-border {
border: none ;
}
.p-10 {
padding: 10px;
}
.p-l-20 {
padding-left: 20px;
}
.p-t-0 {
padding-top: 0px;
}
.p-t-10 {
padding-top: 10px;
}
.p-lr-10 {
padding: 0 10px;
}
.m-t-0 {
margin-top: 0px;
}
.m-l-5 {
margin-left: 5px;
}
.m-r-5 {
margin-right: 5px;
}
.m-r-8 {
margin-right: 8px;
}
.m-r-10 {
margin-right: 10px;
}
.m-t-10 {
margin-top: 10px;
}
.m-b-15 {
margin-bottom: 15px;
}
.m-l-8 {
margin-left: 8px;
}
.m-l-10 {
margin-left: 10px ;
}
.m-l-40 {
margin-left: 40px;
}
.m-l-148 {
margin-left: 135px ;
}
.p-b-0 {
padding-bottom: 0px ;
}
.p-b-15 {
padding-bottom: 15px;
}
.p-b-20 {
padding-bottom: 20px;
}
// detail
.pull-left {
float: left
}
.pull-right {
float: right
}
// 自定义Col控件样式
.col-none {
display: none;
}
.col-all {
overflow: auto;
min-height: 1px;
}
.col-auto {
float: left;
width: auto;
}
.col-line {
width: 100%;
clear: both;
}
.col-float {
float: left;
display: block;
position: relative;
padding-left: 0;
}
.width-percent-25 {
width: 25% ;
}
.width-percent-40 {
width: 40% ;
}
.width-percent-50 {
width: 50% ;
}
.width-percent-75 {
width: 75% ;
}
.width-percent-100 {
width: 100% ;
}
.margin-top-16 {
margin-top: 16px;
}
.padd-top-45 {
padding-top: 45px;
}
.padd-bottom-60 {
padding-bottom: 60px ;
}
// fix: 滚动条影响工作台,且无法覆盖
// #yxyweb-support-container {
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0);
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
border-radius: 2em;
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
background-color: #fff;
}
::-webkit-scrollbar-thumb {
background-color: #CDD9E6 ;
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
border-radius: 2em;
}
::-webkit-scrollbar-thumb:hover {
background-color: #B0C0D0 ;
}
// }
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
color: #ccc;
}
[disabled] {
cursor: not-allowed;
}
input[disabled] + span {
.anticon {
cursor: no-drop;
}
}
// 暂无数据
.no-data-search {
padding-left: 8px;
color: #999;
}
.no-data {
height: 140px;
text-align: center;
color: #999;
font-size: 12px;
svg {
width: 80px;
height: 80px;
margin: 20px auto 5px auto;
display: block;
}
}
.u-popover-content .no-data svg{
width: 62px;
height: 62px;
margin:9px 2px 9px 0;
}
.in-grid {
.no-data {
display: flex;
align-items: center;
flex-direction: column;
padding: 0;
}
}
.has-error {
position: relative;
}
.react-draggable-transparent-selection * {
pointer-events: unset
}
/* 修改placeholder样式 */
input::-webkit-input-placeholder{
color:@base-input-placeholder-color;
}
input::-moz-placeholder{
color:@base-input-placeholder-color;
}
input:-moz-placeholder{
color:@base-input-placeholder-color;
}
input:-ms-input-placeholder{
color:@base-input-placeholder-color;
}
.clearfix:after {
content: '';
display: block;
clear: both;
}
.padding-bottom-none {
padding-bottom: 0;
}
.container-browse-mode{
height: 100%;
}
.bg-white {
background: #fff;
}