Initial commit
This commit is contained in:
82
api-wiaas/client/js/components/bids/bids.less
Normal file
82
api-wiaas/client/js/components/bids/bids.less
Normal file
@@ -0,0 +1,82 @@
|
||||
@background-layer: rgba(255, 255, 255, 0.8);
|
||||
|
||||
.module-layer {
|
||||
background: @background-layer;
|
||||
margin-top: 1%;
|
||||
margin-bottom: 2%;
|
||||
}
|
||||
|
||||
#bids-view{
|
||||
.module-layer;
|
||||
|
||||
.bid-item{
|
||||
position: relative;
|
||||
display: block;
|
||||
padding: 1rem;
|
||||
border: 1px solid #3bb9ff;
|
||||
border-radius: 5px;
|
||||
min-height: 36rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.bid-header{
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.bid-date{
|
||||
font-size: 70%;
|
||||
}
|
||||
|
||||
.bid-number{
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.add-bid-margin-btn, .remove-bid-btn{
|
||||
position: absolute;
|
||||
margin-top: 1rem;
|
||||
bottom: 1rem;
|
||||
left: 2rem;
|
||||
}
|
||||
|
||||
.expired {
|
||||
background: rgba(217, 83, 79, 0.1);
|
||||
}
|
||||
|
||||
.used-status {
|
||||
color: rgb(31, 97, 141);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.expired-status{
|
||||
color: rgb(217, 83, 79);
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
|
||||
#add-bid{
|
||||
.module-layer;
|
||||
}
|
||||
|
||||
#link-supplier-bids{
|
||||
.supplier-bid-header{
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.supplier-bid{
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.supplier-bid:hover{
|
||||
background: rgba(255, 255, 0, 0.5);
|
||||
|
||||
}
|
||||
|
||||
.supplier-bids-list{
|
||||
height: 25rem;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.selected-bid{
|
||||
background: rgba(59, 185, 255, 0.2);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user