Files
airport-chengdu-web/src/app/pages/main.scss
T

98 lines
1.3 KiB
SCSS
Raw Normal View History

2018-11-19 20:58:55 +08:00
/* 基础样式 */
.mr10{
margin-right: 10px;
}
.red{
2018-11-21 17:58:12 +08:00
color: #f5222d;
2018-11-19 20:58:55 +08:00
}
.orange{
color: orange;
}
2018-12-10 09:35:55 +08:00
.danger{
color: #f86c6b;
}
2018-11-29 18:08:54 +08:00
.left{
float: left;
}
.right{
float: right;
}
2018-12-17 17:54:22 +08:00
.navigation{
margin-bottom: 10px;
}
2018-11-15 18:29:55 +08:00
.system-main-container {
2018-11-19 20:58:55 +08:00
position: relative;
2018-11-15 18:29:55 +08:00
padding: 20px 20px;
width: 100%;
height: 100%;
min-height: 300px;
background-color: #f0f0f0;
2018-11-19 20:58:55 +08:00
.system-main-content{
2018-11-15 18:29:55 +08:00
height: 100%;
2018-11-19 20:58:55 +08:00
.search-box{
2018-11-29 18:08:54 +08:00
}
2018-11-19 20:58:55 +08:00
.table-box{
}
2018-11-15 18:29:55 +08:00
}
}
.card{
height: 100%;
background: #fff;
padding: 20px;
box-shadow: 1px 1px 4px 1px rgba(0,0,0,0.15);
2018-11-19 20:58:55 +08:00
border-radius: 0;
2018-11-15 18:29:55 +08:00
}
.tree-box{
2018-11-19 20:58:55 +08:00
position: relative;
min-width: 300px;
2018-11-29 18:08:54 +08:00
margin-right: 20px;
2018-11-15 18:29:55 +08:00
float: left;
padding: 20px;
height: 100%;
background: #fff;
box-shadow: 1px 1px 4px 1px rgba(0,0,0,0.15);
}
2018-11-19 20:58:55 +08:00
.page-box{
text-align: center;
margin-top: 30px;
margin-bottom: 10px;
}
.table-operation-box{
margin-bottom: 16px;
}
2018-11-20 18:29:13 +08:00
/* 表格样式 */
.table-box {
.table-operation-btn {
padding-left: 2px;
padding-right: 2px;
cursor: pointer;
font-size: 20px;
}
.edit{
color: #40a9ff;
}
.danger{
color: #f86c6b;
}
}
2018-11-15 18:29:55 +08:00
/* 目录树样式 */
:host /deep/ ul.tree{
padding-left: 25px;
line-height: 30px;
list-style: none;
}
:host /deep/ .node-value{
display: inline-block;
padding: 0 10px;
border-radius:3px;
cursor: pointer;
}
:host /deep/ .node-selected{
background-color: #dcdcdc
}