2019-04-30 11:11:25 +08:00
|
|
|
|
/*
|
|
|
|
|
* utilities
|
|
|
|
|
*/
|
|
|
|
|
|
2019-05-15 16:10:20 +08:00
|
|
|
|
// background
|
2020-11-25 20:07:42 +08:00
|
|
|
|
@import './utilities/background/background-color';
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
2020-11-25 20:07:42 +08:00
|
|
|
|
@import './utilities/border/border-color';
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2020-11-25 23:47:36 +08:00
|
|
|
|
@import './utilities/layout/box-sizing';
|
2020-11-26 19:43:32 +08:00
|
|
|
|
@import './utilities/layout/clear';
|
2020-11-25 23:47:36 +08:00
|
|
|
|
@import './utilities/layout/display';
|
|
|
|
|
@import './utilities/layout/float';
|
2020-11-26 19:43:32 +08:00
|
|
|
|
@import './utilities/layout/overflow';
|
|
|
|
|
@import './utilities/layout/position';
|
|
|
|
|
@import './utilities/layout/top-right-bottom-left';
|
|
|
|
|
@import './utilities/layout/visibility';
|
|
|
|
|
@import './utilities/layout/z-index';
|
|
|
|
|
|
|
|
|
|
@import './utilities/flex/direction';
|
|
|
|
|
@import './utilities/flex/flex';
|
|
|
|
|
@import './utilities/flex/grow';
|
|
|
|
|
@import './utilities/flex/order';
|
|
|
|
|
@import './utilities/flex/shrink';
|
|
|
|
|
@import './utilities/flex/wrap';
|
|
|
|
|
|
|
|
|
|
@import './utilities/grid/auto-columns';
|
|
|
|
|
@import './utilities/grid/auto-flow';
|
|
|
|
|
@import './utilities/grid/auto-rows';
|
|
|
|
|
@import './utilities/grid/column-start-end';
|
|
|
|
|
@import './utilities/grid/columns';
|
|
|
|
|
@import './utilities/grid/gap';
|
|
|
|
|
@import './utilities/grid/row-start-end';
|
|
|
|
|
@import './utilities/grid/rows';
|
2020-11-25 23:47:36 +08:00
|
|
|
|
|
2020-11-27 00:11:42 +08:00
|
|
|
|
@import './utilities/box-alignment/align-content';
|
|
|
|
|
@import './utilities/box-alignment/align-items';
|
|
|
|
|
@import './utilities/box-alignment/align-self';
|
|
|
|
|
@import './utilities/box-alignment/justify-content';
|
|
|
|
|
@import './utilities/box-alignment/justify-items';
|
|
|
|
|
@import './utilities/box-alignment/justify-self';
|
|
|
|
|
@import './utilities/box-alignment/place-content';
|
|
|
|
|
@import './utilities/box-alignment/place-items';
|
|
|
|
|
@import './utilities/box-alignment/place-self';
|
|
|
|
|
|
2020-11-25 20:07:42 +08:00
|
|
|
|
@import './utilities/spacing/margin';
|
|
|
|
|
@import './utilities/spacing/padding';
|
|
|
|
|
@import './utilities/spacing/space-between';
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
2020-11-25 20:07:42 +08:00
|
|
|
|
@import './utilities/sizing/width';
|
|
|
|
|
@import './utilities/sizing/height';
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
2020-11-27 00:11:42 +08:00
|
|
|
|
@import './utilities/typography/font-size';
|
|
|
|
|
@import './utilities/typography/font-weight';
|
|
|
|
|
@import './utilities/typography/line-height';
|
|
|
|
|
@import './utilities/typography/text-align';
|
2020-11-25 20:07:42 +08:00
|
|
|
|
@import './utilities/typography/text-color';
|
2019-10-30 13:09:44 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.clearfix {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
@include clearfix();
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.show {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
visibility: visible;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.line {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
// width: 100%; 不要设置 100%, 否则跟 pull-in 配合使用时候,宽度为不对。
|
|
|
|
|
height: 2px;
|
|
|
|
|
margin: 10px 0;
|
|
|
|
|
font-size: 0;
|
|
|
|
|
overflow: hidden;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.line-xs {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
margin: 0;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.line-lg {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
margin-top: 15px;
|
|
|
|
|
margin-bottom: 15px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.line-dashed {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-style: dashed !important;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
border-width: 0;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.no-line {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-width: 0;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
|
|
|
|
.no-border,
|
|
|
|
|
.no-borders {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-color: transparent;
|
|
|
|
|
border-width: 0;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.no-b-t {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-top-width: 0;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.no-b-r {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-right-width: 0;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.no-b-b {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-bottom-width: 0;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.no-b-l {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-left-width: 0;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.no-radius {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-radius: 0;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.rounded {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-radius: 500px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.clear {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
display: block;
|
|
|
|
|
overflow: hidden;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.no-bg {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
background-color: transparent;
|
|
|
|
|
color: inherit;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.no-select {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
user-select: none;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.l-h {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
line-height: $lineHeightBase;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.l-h-0x {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
line-height: 0;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.l-h-1x {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
line-height: 1.2;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.l-h-2x {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
line-height: 2em;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.l-s-1x {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
letter-spacing: 1;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.l-s-2x {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
letter-spacing: 2;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.l-s-3x {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
letter-spacing: 3;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.font-normal {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
font-weight: normal;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.font-thin {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
font-weight: 300;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.font-bold {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
font-weight: 700;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.text-ellipsis {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
display: block;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.text-u-c {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
text-transform: uppercase;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.text-l-t {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
text-decoration: line-through;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.text-u-l {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
text-decoration: underline;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-09 17:52:15 +08:00
|
|
|
|
.text-left {
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-center {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-right {
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.box-shadow {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.box-shadow-lg {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.text-shadow {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
font-size: 170px;
|
|
|
|
|
text-shadow: 0 1px 0 $borderColor, 0 2px 0 lighten($borderColor, 10%),
|
|
|
|
|
0 5px 10px rgba(0, 0, 0, 0.125), 0 10px 20px rgba(0, 0, 0, 0.2);
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.no-shadow {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
box-shadow: none !important;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.wrapper-xs {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
padding: 5px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.wrapper-sm {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
padding: 10px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.wrapper {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
padding: 15px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.wrapper-md {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
padding: 20px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.wrapper-lg {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
padding: 30px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.wrapper-xl {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
padding: 50px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.padder-lg {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
padding-left: 30px;
|
|
|
|
|
padding-right: 30px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.padder-md {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
padding-left: 20px;
|
|
|
|
|
padding-right: 20px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.padder {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
padding-left: 15px;
|
|
|
|
|
padding-right: 15px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.padder-v-xs {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
padding-top: 5px;
|
|
|
|
|
padding-bottom: 5px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.padder-v-sm {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
padding-top: 10px;
|
|
|
|
|
padding-bottom: 10px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.padder-v {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
padding-top: 15px;
|
|
|
|
|
padding-bottom: 15px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.padder-v-md {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
padding-top: 20px;
|
|
|
|
|
padding-bottom: 20px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.padder-v-lg {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
padding-top: 30px;
|
|
|
|
|
padding-bottom: 30px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.no-padder {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
padding: 0 !important;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.pull-in {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
margin-left: -15px;
|
|
|
|
|
margin-right: -15px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-11-13 09:47:02 +08:00
|
|
|
|
.pull-in-md {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
margin-left: -20px;
|
|
|
|
|
margin-right: -20px;
|
2019-11-13 09:47:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pull-in-sm {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
margin-left: -10px;
|
|
|
|
|
margin-right: -10px;
|
2019-11-13 09:47:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.pull-out {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
margin: -10px -15px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border: 1px solid rgba(0, 0, 0, 0.05);
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-a {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border: 1px solid $borderColor;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-t {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-top: 1px solid $borderColor;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-t-none {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-top-width: 0;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-r {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-right: 1px solid $borderColor;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-r-none {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-right-width: 0;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-b {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-bottom: 1px solid $borderColor;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-b-none {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-bottom-width: 0;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-l {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-left: 1px solid $borderColor;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-l-none {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-left-width: 0;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-light {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-color: $light;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-dark {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-color: $dark;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-black {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-color: $dark;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-primary {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-color: $primary;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-success {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-color: $success;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-info {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-color: $info;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-warning {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-color: $warning;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-danger {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-color: $danger;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-white {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-color: #fff;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-dashed {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-style: dashed !important;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-l-light {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-left-color: $light;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-l-dark {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-left-color: $dark;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-l-black {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-left-color: $dark;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-l-primary {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-left-color: $primary;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-l-success {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-left-color: $success;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-l-info {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-left-color: $info;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-l-warning {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-left-color: $warning;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-l-danger {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-left-color: $danger;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-l-white {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-left-color: #fff;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-l-2x {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-left-width: 2px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-l-3x {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-left-width: 3px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-l-4x {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-left-width: 4px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-l-5x {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-left-width: 5px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-2x {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-width: 2px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-3x {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-width: 3px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-4x {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-width: 4px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.b-5x {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-width: 5px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.r {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-radius: $borderRadius $borderRadius $borderRadius $borderRadius;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.r-2x {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-radius: $borderRadiusMd;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.r-3x {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-radius: $borderRadiusLg;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.r-l {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-radius: $borderRadius 0 0 $borderRadius;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.r-r {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-radius: 0 $borderRadius $borderRadius 0;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.r-t {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-radius: $borderRadius $borderRadius 0 0;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.r-b {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
border-radius: 0 0 $borderRadius $borderRadius;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.avatar {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
display: block;
|
|
|
|
|
border-radius: 500px;
|
|
|
|
|
white-space: nowrap;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
& img {
|
|
|
|
|
border-radius: 500px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
& i {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
width: 10px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
margin: 2px;
|
|
|
|
|
border-width: 2px;
|
|
|
|
|
border-style: solid;
|
|
|
|
|
border-radius: 100%;
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
&.right {
|
|
|
|
|
left: auto;
|
|
|
|
|
right: 0;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
&.bottom {
|
|
|
|
|
left: auto;
|
|
|
|
|
top: auto;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
&.left {
|
|
|
|
|
top: auto;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
&.on {
|
|
|
|
|
background-color: $success;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
&.off {
|
|
|
|
|
background-color: $text--muted-color;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
&.busy {
|
|
|
|
|
background-color: $danger;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
&.away {
|
|
|
|
|
background-color: $warning;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-12-06 09:58:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.thumb-md i {
|
|
|
|
|
width: 12px;
|
|
|
|
|
height: 12px;
|
|
|
|
|
margin: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.thumb-sm i {
|
|
|
|
|
margin: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.thumb-xs i {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-07-11 12:11:47 +08:00
|
|
|
|
.no-grow {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
flex-grow: unset !important;
|
2020-05-11 20:27:33 +08:00
|
|
|
|
flex-basis: unset !important;
|
2019-07-11 12:11:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-14 21:17:51 +08:00
|
|
|
|
.nowrap {
|
|
|
|
|
white-space: nowrap;
|
2020-10-14 15:57:36 +08:00
|
|
|
|
flex-wrap: nowrap;
|
2020-02-14 21:17:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
@include media-breakpoint-up(sm) {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.#{$ns}Form-col {
|
|
|
|
|
&.w,
|
|
|
|
|
&.w-xs,
|
2020-01-06 17:25:17 +08:00
|
|
|
|
&.w-sm,
|
|
|
|
|
&.w-md,
|
|
|
|
|
&.w-lg {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
flex-basis: unset;
|
|
|
|
|
flex-grow: unset;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-12-06 09:58:08 +08:00
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.thumb-xl {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
width: 128px;
|
|
|
|
|
display: inline-block;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.thumb-lg {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
width: 96px;
|
|
|
|
|
display: inline-block;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.thumb-md {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
width: 64px;
|
|
|
|
|
display: inline-block;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.thumb {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
width: 50px;
|
|
|
|
|
display: inline-block;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.thumb-sm {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
width: 40px;
|
|
|
|
|
display: inline-block;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.thumb-xs {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
width: 34px;
|
|
|
|
|
display: inline-block;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.thumb-xxs {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
width: 30px;
|
|
|
|
|
display: inline-block;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.thumb-wrapper {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
padding: 2px;
|
|
|
|
|
border: 1px solid $borderColor;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
|
|
|
|
.thumb,
|
|
|
|
|
.thumb-xxs,
|
|
|
|
|
.thumb-xs,
|
|
|
|
|
.thumb-sm,
|
|
|
|
|
.thumb-md,
|
|
|
|
|
.thumb-lg,
|
|
|
|
|
.thumb-btn,
|
|
|
|
|
.thumb-xl {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
& img {
|
|
|
|
|
height: auto;
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.img-full {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
width: 100%;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
& img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2020-06-09 20:28:07 +08:00
|
|
|
|
.v-top {
|
|
|
|
|
vertical-align: top !important;
|
|
|
|
|
align-self: flex-start;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.v-middle {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
vertical-align: middle !important;
|
2020-05-11 20:20:10 +08:00
|
|
|
|
align-self: center;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2020-06-09 20:28:07 +08:00
|
|
|
|
.v-bottom {
|
|
|
|
|
vertical-align: bottom !important;
|
|
|
|
|
align-self: flex-end;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.scrollable {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
|
|
|
|
|
|
&.hover {
|
|
|
|
|
&,
|
|
|
|
|
& > .cell-inner {
|
|
|
|
|
overflow-y: hidden !important;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
&:hover,
|
|
|
|
|
&:focus,
|
|
|
|
|
&:active {
|
|
|
|
|
overflow: visible;
|
|
|
|
|
overflow-y: auto;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
& > .cell-inner {
|
|
|
|
|
overflow-y: auto !important;
|
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-12-06 09:58:08 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.smart & {
|
|
|
|
|
&,
|
|
|
|
|
& > .cell-inner {
|
|
|
|
|
overflow-y: auto !important;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-12-06 09:58:08 +08:00
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
|
|
|
|
.scroll-x,
|
|
|
|
|
.scroll-y {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
overflow: hidden;
|
|
|
|
|
-webkit-overflow-scrolling: touch;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.scroll-y {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
overflow-y: auto;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.scroll-x {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
overflow-x: auto;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.hover-action {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
display: none;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.hover-rotate {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
transition: all 0.2s ease-in-out 0.1s;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
|
|
|
|
.hover-anchor:hover,
|
|
|
|
|
.hover-anchor:focus,
|
|
|
|
|
.hover-anchor:active {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
& > .hover-action {
|
|
|
|
|
display: inherit;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
& > .hover-rotate {
|
|
|
|
|
transform: rotate(90deg);
|
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.backdrop {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
z-index: 1050;
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
&.fade {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
&.in {
|
|
|
|
|
opacity: 0.8;
|
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.col-xs-2-4,
|
|
|
|
|
.col-sm-2-4,
|
|
|
|
|
.col-md-2-4,
|
|
|
|
|
.col-lg-2-4,
|
|
|
|
|
.col-xs-1-5,
|
|
|
|
|
.col-sm-1-5,
|
|
|
|
|
.col-md-1-5,
|
|
|
|
|
.col-lg-1-5 {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
min-height: 1px;
|
|
|
|
|
padding-right: 15px;
|
|
|
|
|
padding-left: 15px;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 5/12 = 2.4
|
|
|
|
|
.col-xs-2-4 {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
width: 20%;
|
|
|
|
|
float: left;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
// 8 / 12 = 1.5
|
|
|
|
|
.col-xs-1-5 {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
width: 12.5%;
|
|
|
|
|
float: left;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.invisible {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
position: absolute !important;
|
|
|
|
|
clip: rect(1px 1px 1px 1px);
|
|
|
|
|
clip: rect(1px, 1px, 1px, 1px);
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-10 17:59:17 +08:00
|
|
|
|
.invisible2 {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
visibility: hidden;
|
2019-09-10 17:59:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
.hbox {
|
2020-07-29 13:54:11 +08:00
|
|
|
|
display: table;
|
|
|
|
|
table-layout: fixed;
|
|
|
|
|
border-spacing: 0;
|
2019-12-06 09:58:08 +08:00
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
|
|
& > .col {
|
2020-07-29 13:54:11 +08:00
|
|
|
|
display: table-cell;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
height: 100%;
|
|
|
|
|
float: none;
|
2019-12-06 09:58:08 +08:00
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.vbox {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
display: table;
|
|
|
|
|
border-spacing: 0;
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
min-height: 240px;
|
|
|
|
|
|
|
|
|
|
& .row-row {
|
|
|
|
|
display: table-row;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
height: 100%;
|
2019-12-06 09:58:08 +08:00
|
|
|
|
|
|
|
|
|
& .cell {
|
|
|
|
|
position: relative;
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
|
|
.ie & {
|
|
|
|
|
display: table-cell;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
|
|
|
|
|
& .cell-inner {
|
|
|
|
|
overflow: visible !important;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-12-06 09:58:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
& .cell-inner {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-12-06 09:58:08 +08:00
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.word-break {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
white-space: normal;
|
|
|
|
|
word-break: break-all;
|
|
|
|
|
word-wrap: break-word;
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-04 22:56:58 +08:00
|
|
|
|
//
|
|
|
|
|
// Labels
|
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
|
.label {
|
|
|
|
|
display: inline;
|
|
|
|
|
padding: 0.2em 0.6em 0.3em;
|
|
|
|
|
font-size: 75%;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
color: $label-color;
|
|
|
|
|
text-align: center;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
vertical-align: baseline;
|
|
|
|
|
border-radius: 0.25em;
|
|
|
|
|
|
|
|
|
|
// Empty labels collapse automatically (not available in IE8)
|
|
|
|
|
&:empty {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Quick fix for labels in buttons
|
|
|
|
|
.btn & {
|
|
|
|
|
position: relative;
|
|
|
|
|
top: -1px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
a.label {
|
|
|
|
|
&:hover,
|
|
|
|
|
&:focus {
|
|
|
|
|
color: $label-link--hover-color;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Colors
|
|
|
|
|
// Contextual variations (linked labels get darker on :hover)
|
|
|
|
|
|
|
|
|
|
.label-default {
|
|
|
|
|
@include label-variant($label--default-bg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.label-primary {
|
|
|
|
|
@include label-variant($label--primary-bg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.label-success {
|
|
|
|
|
@include label-variant($label--success-bg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.label-info {
|
|
|
|
|
@include label-variant($label--info-bg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.label-warning {
|
|
|
|
|
@include label-variant($label--warning-bg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.label-danger {
|
|
|
|
|
@include label-variant($label--danger-bg);
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-27 00:11:42 +08:00
|
|
|
|
// js 功能依赖这个
|
2019-11-13 17:21:12 +08:00
|
|
|
|
@keyframes apearSensor {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
from {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
2019-11-13 16:42:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
@media (min-width: 768px) {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.col-sm-2-4 {
|
|
|
|
|
width: 20%;
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.col-sm-1-5 {
|
|
|
|
|
width: 12.5%;
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
@media (min-width: 992px) {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.col-md-2-4 {
|
|
|
|
|
width: 20%;
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.col-md-1-5 {
|
|
|
|
|
width: 12.5%;
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
@media (min-width: 1200px) {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.col-lg-2-4 {
|
|
|
|
|
width: 20%;
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.col-lg-1-5 {
|
|
|
|
|
width: 12.5%;
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// sm
|
2019-05-15 16:10:20 +08:00
|
|
|
|
@media (min-width: 768px) and (max-width: 991px) {
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.hidden-sm.show {
|
|
|
|
|
display: inherit !important;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.no-m-sm {
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.no-padder-sm {
|
|
|
|
|
padding: 0 !important;
|
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-08 10:17:28 +08:00
|
|
|
|
.visible-xs {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-30 11:11:25 +08:00
|
|
|
|
/*phone*/
|
2019-05-15 16:10:20 +08:00
|
|
|
|
@media (max-width: 767px) {
|
2020-06-08 10:17:28 +08:00
|
|
|
|
.visible-xs {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.w-auto-xs {
|
|
|
|
|
width: auto;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.shift {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.shift.in {
|
|
|
|
|
display: block !important;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.row-2 [class*='col'] {
|
|
|
|
|
width: 50%;
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.row-2 .col-0 {
|
|
|
|
|
clear: none;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.row-2 li:nth-child(odd) {
|
|
|
|
|
clear: left;
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.text-center-xs {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.text-left-xs {
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.text-right-xs {
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.no-border-xs {
|
|
|
|
|
border-width: 0;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.pull-none-xs {
|
|
|
|
|
float: none !important;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.pull-right-xs {
|
|
|
|
|
float: right !important;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.pull-left-xs {
|
|
|
|
|
float: left !important;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.dropdown-menu.pull-none-xs {
|
|
|
|
|
left: 0;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.hidden-xs.show {
|
|
|
|
|
display: inherit !important;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.wrapper-lg,
|
|
|
|
|
.wrapper-md {
|
|
|
|
|
padding: 15px;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.padder-lg,
|
|
|
|
|
.padder-md {
|
|
|
|
|
padding-left: 15px;
|
|
|
|
|
padding-right: 15px;
|
|
|
|
|
}
|
2019-05-15 16:10:20 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.no-m-xs {
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
2019-12-06 09:58:08 +08:00
|
|
|
|
.no-padder-xs {
|
|
|
|
|
padding: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
}
|