mirror of
https://github.com/rickbarrette/redmine_qbo_vehicles.git
synced 2026-02-14 01:43:58 -05:00
Changed display format of vehicle lists
This commit is contained in:
23
assets/stylesheets/style.css
Normal file
23
assets/stylesheets/style.css
Normal file
@@ -0,0 +1,23 @@
|
||||
.container {
|
||||
display: grid;
|
||||
/* Column 1 for checkbox, Column 2 for text */
|
||||
grid-template-columns: auto 1fr;
|
||||
/* Row 1 for 'Vehicle', Row 2 for 'VIN' */
|
||||
grid-template-rows: auto auto;
|
||||
align-items: center;
|
||||
gap: 0 10px; /* Adjust spacing between checkbox and text */
|
||||
}
|
||||
|
||||
.checkbox {
|
||||
/* This makes the checkbox take up both rows */
|
||||
grid-row: span 2;
|
||||
}
|
||||
|
||||
.label-main {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.label-sub {
|
||||
font-size: 0.85em;
|
||||
color: #666;
|
||||
}
|
||||
Reference in New Issue
Block a user