changing view for group_order_invoices
testing ui of goi restructuring
This commit is contained in:
parent
de6643722a
commit
90c5450525
52 changed files with 783 additions and 57 deletions
46
app/assets/stylesheets/group_order_invoices.css
Normal file
46
app/assets/stylesheets/group_order_invoices.css
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
.checkbox-icon {
|
||||
display: inline-block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.checkbox-icon::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: 1px solid #000;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.checkbox-icon.checked::before {
|
||||
content: "\2713"; /* Unicode checkmark symbol */
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
line-height: 20px; /* Align the checkmark vertically */
|
||||
color: #00ff00; /* Change the color to represent a checked state */
|
||||
}
|
||||
|
||||
|
||||
.table.group-order-invoices-table tr{
|
||||
background-color: rgb(255, 255, 233);
|
||||
}
|
||||
.table.group-order-invoices-table thead tr{
|
||||
background-color: lightgoldenrodyellow;
|
||||
}
|
||||
|
||||
.table.group-order-invoices-table tr:nth-child(odd) > td,
|
||||
.table.group-order-invoices-table tr:nth-child(even) > td{
|
||||
background-color: rgb(255, 255, 233);
|
||||
padding-right: 0;
|
||||
.group-order-checkbox {
|
||||
margin-left: 20px;
|
||||
}
|
||||
.form-check-input{
|
||||
margin-left: 20px;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue