若依 2.4

This commit is contained in:
RuoYi
2018-09-03 08:45:08 +08:00
parent a4c1912ab2
commit 4fe158fa94
112 changed files with 1687 additions and 4035 deletions

View File

@ -1,10 +1,9 @@
/*!
* ruoyi.css
* Author: Ruoyi
/**
* 通用css样式布局处理
* Copyright (c) 2018 ruoyi
*/
/** 用户管理 样式布局 */
.box {
position: relative;
border-radius: 3px;
@ -25,15 +24,15 @@
}
.btn-box-tool {
padding: 5px;
font-size: 12px;
background: transparent;
color: #97a0b3;
padding: 5px;
font-size: 12px;
background: transparent;
color: #97a0b3;
}
.open .btn-box-tool,
.btn-box-tool:hover {
color: #606c84;
color: #606c84;
}
.box-main {
@ -50,10 +49,10 @@
}
.box-header .box-title {
display: inline-block;
font-size: 18px;
margin: 0;
line-height: 1;
display: inline-block;
font-size: 18px;
margin: 0;
line-height: 1;
}
.box-main>.box-header .box-title {
@ -137,85 +136,149 @@ label.error {
}
.i-checks label.error, .check-box label.error, .radio-box label.error {
right:auto;
width:150px;
left:210px;
top:1px;
max-width: none;
right: auto;
width: 150px;
left: 210px;
top: 1px;
max-width: none;
}
/** 内联复选框&单选框 */
/** 复选框&单选框 */
.check-box,.radio-box {
display:inline-block;
box-sizing:border-box;
cursor:pointer;
position:relative;
padding-right:20px;
padding-top:7px;
display: inline-block;
box-sizing: border-box;
cursor: pointer;
position: relative;
padding-left: 25px;
padding-right: 15px;
padding-top: 8px;
}
.icheckbox, .icheckbox-blue, .iradio, .iradio-blue, .iradio-purple {
position: absolute;
top: 8px;
left: 0
}
/* iCheck */
.icheckbox-blue,.iradio-blue {
display: block;
margin: 0;
padding: 0;
width: 18px;
height: 18px;
background: url(/img/blue.png) no-repeat;
border: none;
cursor: pointer
}
.icheckbox-blue,.icheckbox-blue.static:hover {
background-position: 0 0
}
.icheckbox-blue.hover,.icheckbox-blue:hover {
background-position: -20px 0
}
.icheckbox-blue.checked {
background-position: -40px 0
}
.icheckbox-blue.disabled {
background-position: -60px 0;
cursor: default
}
.icheckbox-blue.checked.disabled {
background-position: -80px 0
}
.iradio-blue,.iradio-blue.static:hover {
background-position: -100px 0
}
.iradio-blue.hover,.iradio-blue:hover {
background-position: -120px 0
}
.iradio-blue.checked {
background-position: -140px 0
}
.iradio-blue.disabled {
background-position: -160px 0;
cursor: default
}
.iradio-blue.checked.disabled {
background-position: -180px 0
}
/** 遮罩层 */
.loaderbox {
display: inline-block;
min-width: 125px;
padding: 10px;
margin: 0 auto;
color: #000 !important;
font-size: 13px;
font-weight: 400;
text-align: center;
vertical-align: middle;
border: 1px solid #ddd;
background-color: #eee;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
display: inline-block;
min-width: 125px;
padding: 10px;
margin: 0 auto;
color: #000 !important;
font-size: 13px;
font-weight: 400;
text-align: center;
vertical-align: middle;
border: 1px solid #ddd;
background-color: #eee;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}
.loaderbox .loading-activity {
float: left;
width: 18px;
height: 18px;
border: solid 2px transparent;
border-top-color: #000;
border-left-color: #000;
border-radius: 10px;
-webkit-animation: pace-spinner 400ms linear infinite;
-moz-animation: pace-spinner 400ms linear infinite;
-ms-animation: pace-spinner 400ms linear infinite;
-o-animation: pace-spinner 400ms linear infinite;
animation: pace-spinner 400ms linear infinite;
float: left;
width: 18px;
height: 18px;
border: solid 2px transparent;
border-top-color: #000;
border-left-color: #000;
border-radius: 10px;
-webkit-animation: pace-spinner 400ms linear infinite;
-moz-animation: pace-spinner 400ms linear infinite;
-ms-animation: pace-spinner 400ms linear infinite;
-o-animation: pace-spinner 400ms linear infinite;
animation: pace-spinner 400ms linear infinite;
}
@media (max-width: 767px) {
.loading-activity {
width: 18px;
height: 18px;
}
.loading-activity {
width: 18px;
height: 18px;
}
}
@-ms-keyframes pace-spinner {
0% {
-ms-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
0% {
-ms-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes pace-spinner {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/** 表单查询条件 */
@ -236,12 +299,12 @@ li {
}
label {
font-weight: normal;
font-weight: normal;
}
.container-div {
padding:10px 35px;
height:100%;
padding: 10px 35px;
height: 100%;
}
.container-div .row {
@ -249,13 +312,13 @@ label {
}
.select-info,.select-table {
width:100%;
width: 100%;
background: #fff;
border-radius: 6px;
margin-top:10px;
padding-top: 5px;
padding-bottom: 13px;
box-shadow: 1px 1px 3px rgba(0,0,0,.2);
border-radius: 6px;
margin-top: 10px;
padding-top: 5px;
padding-bottom: 13px;
box-shadow: 1px 1px 3px rgba(0,0,0,.2);
}
.select-info {
@ -263,97 +326,108 @@ label {
}
.select-info .col-sm-6 .control-label {
color:#333;
color: #333;
}
@media ( max-width : 768px) {
.select-info {
display: none;
}
.select-info {
display: none;
}
}
.select-list li{
float:left;
color:#333;
.select-list li {
float: left;
color: #333;
margin: 5px 15px 5px 0px;
}
.select-list li input{
border:1px solid #ddd;
.select-list li input {
border: 1px solid #ddd;
border-radius: 4px;
background: transparent;
outline: none;
height: 30px;
width:280px;
padding-left:5px;
width: 280px;
padding-left: 5px;
}
.select-list li .submit-btn{
border:0px;
.select-list li .submit-btn {
border: 0px;
border-radius: 4px;
background: transparent;
outline: none;
width: 40px;
height: 23px;
height: 23px;
}
.select-list li select{
border:1px solid #ddd;
.select-list li select {
border: 1px solid #ddd;
border-radius: 4px;
background: transparent;
outline: none;
height: 30px;
width:280px;
width: 280px;
}
.select-list .select-time input{
width:133px;
.select-list .select-time input {
width: 133px;
}
.select-time label,.select-time span,.select-time input{
float:left;
.select-time label,.select-time span,.select-time input {
float: left;
}
.select-time label{
margin-top: 5px;
.select-time label {
margin-top: 5px;
}
.select-time span{
display: block;
margin: 5px 5px;
.select-time span {
display: block;
margin: 5px 5px;
}
.search-btn{
.search-btn {
background-color: #1ab394;
border-color: #1ab394;
color: #FFF;
margin-bottom: 5px;
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
border-radius: 3px;
vertical-align: middle;
cursor: pointer;
border-color: #1ab394;
color: #FFF;
margin-bottom: 5px;
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
border-radius: 3px;
vertical-align: middle;
cursor: pointer;
}
/** 表格查询数据 */
.table-striped{
min-height:75%;
.table-striped {
min-height: 75%;
}
.table-striped .bootstrap-table{
border:0px!important;
.table-striped .bootstrap-table {
border: 0px!important;
}
.table-striped .table, .fixed-table-container, table, .table-striped .table, .table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td{
border-bottom: 1px solid #e7eaec!important;
background-color: transparent!important;
border: 0px;
.table-striped .table, .fixed-table-container, table, .table-striped .table, .table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
border-bottom: 1px solid #e7eaec!important;
background-color: transparent!important;
border: 0px;
}
.table-striped .table>thead>tr>th, .table-striped .table>tbody>tr>th{
.table-striped .table>thead>tr>th, .table-striped .table>tbody>tr>th {
border-bottom: 1px solid #ccc!important;
border-top: 0px!important;
}
.table-striped .table>thead:first-child>tr:first-child>th{
color:#333;
.table-striped .table>thead:first-child>tr:first-child>th {
color: #333;
}
.table-bordered td,.table-bordered th {
border: 1px solid #ddd!important
}