mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
377 lines
6.8 KiB
Plaintext
377 lines
6.8 KiB
Plaintext
@charset "UTF-8";
|
||
@import "_config.less";
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: http://demo.thinkadmin.top
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
|
||
fieldset {
|
||
margin: 0 0 10px 0;
|
||
border: 1px solid @BoxBorderColor;
|
||
padding: 10px 20px 5px 20px;
|
||
background: #fff;
|
||
border-radius: @BoxBorderRadius;
|
||
|
||
legend {
|
||
color: #666;
|
||
padding: 0 10px;
|
||
font-size: 12px;
|
||
letter-spacing: 1px;
|
||
}
|
||
}
|
||
|
||
.layui-tab,
|
||
.layui-card {
|
||
border-radius: @BoxBorderRadius;
|
||
}
|
||
|
||
.layui-tab {
|
||
.layui-tab-title {
|
||
border-top-left-radius: @BoxBorderRadius;
|
||
border-top-right-radius: @BoxBorderRadius;
|
||
|
||
> li:first-child {
|
||
padding: 0 15px 0 17px;
|
||
margin-left: 0 !important;
|
||
border-top-left-radius: @BoxBorderRadius;
|
||
|
||
&:after {
|
||
border-left: none
|
||
}
|
||
}
|
||
}
|
||
|
||
.layui-tab-content {
|
||
border-bottom-left-radius: @BoxBorderRadius;
|
||
border-bottom-right-radius: @BoxBorderRadius;
|
||
}
|
||
|
||
> .layui-tab-content {
|
||
padding: 20px;
|
||
background: #fff;
|
||
}
|
||
}
|
||
|
||
.layui-btn {
|
||
border: 1px solid #009688;
|
||
|
||
&:hover:not(.layui-btn-disabled) {
|
||
box-shadow: @ShadowMaxInset;
|
||
}
|
||
|
||
&-warm {
|
||
border: 1px solid #FFB800;
|
||
}
|
||
|
||
&-danger {
|
||
border: 1px solid #FF5722;
|
||
}
|
||
|
||
&-normal {
|
||
border: 1px solid #1E9FFF;
|
||
}
|
||
|
||
&-disabled {
|
||
border: 1px solid @BoxBorderColor;
|
||
}
|
||
|
||
&-primary {
|
||
background: #fff;
|
||
}
|
||
|
||
&-group {
|
||
border: 1px solid #098;
|
||
overflow: hidden;
|
||
background: #009688;
|
||
line-height: 28px;
|
||
border-radius: 2px;
|
||
|
||
+ .layui-btn {
|
||
margin-left: 8px;
|
||
}
|
||
|
||
.layui-btn {
|
||
height: 28px;
|
||
line-height: 28px;
|
||
border-width: 0 !important;
|
||
border-radius: 0 !important;
|
||
|
||
+ .layui-btn {
|
||
margin-left: 1px !important;
|
||
}
|
||
|
||
&-primary:hover {
|
||
border-color: #009688;
|
||
}
|
||
}
|
||
}
|
||
|
||
& + .layui-btn {
|
||
margin-left: 8px;
|
||
}
|
||
}
|
||
|
||
.layui-code {
|
||
border-radius: @BoxBorderRadius;
|
||
}
|
||
|
||
.layui-badge {
|
||
margin-right: 5px;
|
||
|
||
&-middle {
|
||
width: 1em;
|
||
height: auto;
|
||
padding: 5px;
|
||
line-height: 16px;
|
||
white-space: normal;
|
||
vertical-align: middle;
|
||
}
|
||
}
|
||
|
||
.layui-input,
|
||
.layui-select {
|
||
line-height: 38px;
|
||
border-color: @InputBorderNormalColor;
|
||
|
||
&:hover, &:active, &:focus {
|
||
border-color: @InputBorderActiveColor;
|
||
}
|
||
}
|
||
|
||
.layui-disabled,
|
||
.layui-disabled:hover {
|
||
color: #333 !important;
|
||
background: #EEE !important;
|
||
}
|
||
|
||
.layui-nav {
|
||
.layui-nav-item {
|
||
.layui-nav-more {
|
||
top: 0;
|
||
right: 15px;
|
||
width: auto;
|
||
height: auto;
|
||
border: none;
|
||
padding: 0 !important;
|
||
font-size: 14px !important;
|
||
font-style: normal;
|
||
font-family: "layui-icon" !important;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
-webkit-font-smoothing: antialiased;
|
||
|
||
&::before {
|
||
content: "\e619"
|
||
}
|
||
}
|
||
|
||
& .layui-nav-mored, &ed .layui-nav-more {
|
||
border: none;
|
||
transform: rotate(180deg);
|
||
-o-transform: rotate(180deg);
|
||
-ms-transform: rotate(180deg);
|
||
-moz-transform: rotate(180deg);
|
||
-webkit-transform: rotate(180deg)
|
||
}
|
||
}
|
||
}
|
||
|
||
.layui-tags {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
vertical-align: middle;
|
||
|
||
.layui-tag {
|
||
color: #FFF;
|
||
height: 38px;
|
||
margin: 3px 4px 3px 0;
|
||
padding: 0 4px 0 10px;
|
||
display: inline-block;
|
||
font-size: 14px;
|
||
line-height: 38px;
|
||
border-radius: 2px;
|
||
white-space: nowrap;
|
||
background: #1E9FFF !important;
|
||
user-select: none;
|
||
-ms-user-select: none;
|
||
-moz-user-select: none;
|
||
-webkit-user-select: none;
|
||
|
||
.layui-icon {
|
||
font-size: 14px;
|
||
font-weight: 700;
|
||
margin-left: 5px;
|
||
|
||
&:hover {
|
||
cursor: pointer;
|
||
color: #FF5722;
|
||
}
|
||
}
|
||
|
||
&-input {
|
||
width: 100px;
|
||
resize: none;
|
||
margin: 3px 8px 3px 0;
|
||
overflow: hidden;
|
||
white-space: nowrap;
|
||
}
|
||
}
|
||
}
|
||
|
||
.layui-table {
|
||
td, th {
|
||
font-size: 12px;
|
||
}
|
||
|
||
td.list-table-check-td + td,
|
||
th.list-table-check-td + th {
|
||
padding-left: 5px;
|
||
}
|
||
|
||
input.layui-input,
|
||
.layui-btn.layui-btn-sm {
|
||
height: 28px;
|
||
line-height: 28px;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
.layui-btn.layui-btn-sm {
|
||
margin-top: -1px;
|
||
}
|
||
|
||
&[lay-size="lg"] {
|
||
input.layui-input, .layui-btn.layui-btn-sm {
|
||
height: 38px;
|
||
box-sizing: border-box;
|
||
line-height: 38px;
|
||
}
|
||
}
|
||
|
||
.list-table-sort-td {
|
||
width: 10px !important;
|
||
text-align: center !important;
|
||
padding-left: 5px !important;
|
||
padding-right: 5px !important;
|
||
|
||
button {
|
||
width: 56px;
|
||
background: #009688
|
||
}
|
||
|
||
input {
|
||
width: 50px;
|
||
color: #666;
|
||
padding: 2px;
|
||
font-size: 9pt;
|
||
border: 1px solid @InputBorderNormalColor;
|
||
text-align: center;
|
||
line-height: 18px
|
||
}
|
||
}
|
||
|
||
.list-table-check-td {
|
||
width: 10px !important;
|
||
text-align: center !important;
|
||
padding-left: 15px !important;
|
||
padding-right: 15px !important;
|
||
|
||
input {
|
||
margin: 0 !important;
|
||
vertical-align: middle
|
||
}
|
||
}
|
||
}
|
||
|
||
.tableSelect {
|
||
.layui-table-view {
|
||
margin: 10px 0;
|
||
}
|
||
}
|
||
|
||
.layui-table-view {
|
||
margin: 0;
|
||
|
||
.layui-table-page {
|
||
.layui-laypage {
|
||
.layui-laypage-prev,
|
||
.layui-laypage-next {
|
||
padding: 0 8px;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
.layui-laypage-prev {
|
||
margin-left: 0 !important;
|
||
}
|
||
|
||
.layui-laypage-next {
|
||
margin-right: 6px !important;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
.layui-layer-tips {
|
||
&.layui-layer-image {
|
||
width: auto !important;
|
||
|
||
.layui-layer-content {
|
||
width: auto !important;
|
||
padding: 4px !important;
|
||
|
||
img {
|
||
z-index: 2;
|
||
position: relative;
|
||
}
|
||
|
||
i.layui-layer-TipsR {
|
||
z-index: 1;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
.layui-layer-content {
|
||
.layui-form.layui-card {
|
||
margin: 0;
|
||
box-shadow: none !important;
|
||
|
||
.layui-card-body {
|
||
padding: 20px 40px 0 0;
|
||
}
|
||
}
|
||
}
|
||
|
||
.layui-layer-dialog {
|
||
.layui-layer-content {
|
||
.layui-layer-ico {
|
||
top: 50% !important;
|
||
margin-top: -15px !important
|
||
}
|
||
}
|
||
}
|
||
|
||
.laydate-footer-btns {
|
||
span {
|
||
line-height: 24px !important
|
||
}
|
||
}
|
||
|
||
.layui-form-select dl {
|
||
top: 37px;
|
||
padding: 0;
|
||
border-color: @InputBorderActiveColor;
|
||
}
|
||
|
||
.layui-form-checkbox.layui-form-checked {
|
||
i {
|
||
border-color: #5FB878;
|
||
}
|
||
} |