mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-01 13:06:45 +00:00
Using library bootstrap-treeview - part category tree - stock location tree - Currenly is functional but looks terrible
88 lines
1.4 KiB
CSS
88 lines
1.4 KiB
CSS
.navbar-brand {
|
|
float: left;
|
|
}
|
|
|
|
.badge {
|
|
float: right;
|
|
background-color: #777;
|
|
color: #fff;
|
|
border-radius: 5px;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.part-thumb {
|
|
width: 150px;
|
|
height: 150px;
|
|
border: 1px black solid;
|
|
margin: 5px;
|
|
padding: 5px;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.checkbox {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.checkboxinput {
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
}
|
|
|
|
.media {
|
|
padding-top: 15px;
|
|
}
|
|
|
|
.media-body {
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.navigation {
|
|
padding-left: 15px;
|
|
}
|
|
|
|
.inventree-content {
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
padding-top: 15px;
|
|
margin-right: 50px;
|
|
margin-left: 50px;
|
|
width: 100%;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.body {
|
|
padding-top: 70px;
|
|
}
|
|
|
|
.modal {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.modal-content h3 {
|
|
margin-top: 3px;
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.modal-form-content {
|
|
border-radius: 0;
|
|
position:relative;
|
|
height: auto !important;
|
|
max-height: calc(100vh - 200px) !important;
|
|
overflow-y: scroll;
|
|
padding: 10px;
|
|
}
|
|
|
|
/* The side navigation menu */
|
|
.sidenav {
|
|
height: 100%; /* 100% Full-height */
|
|
width: 0px; /* 0 width - change this with JavaScript */
|
|
position: fixed; /* Stay in place */
|
|
background-color: #fff; /* Black*/
|
|
overflow-x: hidden; /* Disable horizontal scroll */
|
|
transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
|
|
}
|
|
|
|
.wrapper {
|
|
align-items: stretch;
|
|
display: flex;
|
|
} |