forked from Gitlink/forgeplus-react
68 lines
1.2 KiB
SCSS
68 lines
1.2 KiB
SCSS
.screenWrap{
|
|
background:rgba(250,250,250,1);
|
|
border-top:1px solid rgba(221,221,221,1);
|
|
border-bottom:1px solid rgba(221,221,221,1);
|
|
padding-left: 20px;
|
|
box-sizing: border-box;
|
|
}
|
|
.attachment-list-div:hover {
|
|
background-color: #e6f7ff;
|
|
}
|
|
|
|
.searchBanner{
|
|
display: flex;
|
|
height: 50px;
|
|
line-height: 50px;
|
|
li{
|
|
margin-right: 15px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
li > label{
|
|
position: relative;
|
|
cursor: pointer;
|
|
}
|
|
li > span{
|
|
display: block;
|
|
padding:0px 8px;
|
|
border-radius: 10px;
|
|
background-color: #eee;
|
|
margin-left: 5px;
|
|
cursor: pointer;
|
|
height: 20px;
|
|
line-height: 20px;
|
|
}
|
|
li.active > label::after{
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 2px;
|
|
content: '';
|
|
left: 0px;
|
|
bottom:0px;
|
|
background-color:$primary-color;
|
|
}
|
|
}
|
|
.milepostleft{
|
|
&>div{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center
|
|
}
|
|
}
|
|
.updateBtn{
|
|
display: block;
|
|
width:60px;
|
|
text-align: center;
|
|
height: 26px;
|
|
line-height: 26px;
|
|
background-color: #fff;
|
|
border-radius: 5px;
|
|
}
|
|
.updateBtn.blue{
|
|
border:1px solid #5091FF;
|
|
color: #5091FF;
|
|
}
|
|
.updateBtn.red{
|
|
border:1px solid #F73030;
|
|
color: #F73030;
|
|
} |