@cgjgh/node-red-dashboard-2-ui-scheduler
Version:
A UI scheduler node that integrates with Node-RED Dashboard 2.0
81 lines (66 loc) • 1.73 kB
CSS
.main {
min-width: 100%;
/* Allows content to shrink */
max-width: fit-content;
/* Limits container width to parent width */
overflow: auto;
/* Adds scrollbar if content overflows */
display: inline-block;
/* Ensure content is scrollable if it overflows */
}
/* even rows color */
.v-data-table tbody tr:nth-of-type(even) {
background-color: rgba(0, 0, 0, 0.03);
}
/* end column */
.v-data-table__td.v-data-table-column--align-center {
margin-right: 0 ;
padding-right: 0 ;
}
/* start column */
.v-data-table__td.v-data-table-column--align-start {
margin-right: 0 ;
padding-right: 0 ;
}
.truncate-text {
overflow: hidden ;
text-overflow: ellipsis ;
white-space: nowrap ;
}
.bordered-card {
border: 1px solid var(--v-theme-group-outline);
}
.border-none {
border: none;
}
.text-green {
color: green;
}
.text-red {
color: red;
}
.centered-input .v-field__input {
text-align: center;
}
.centered-subheader .v-list-subheader__text {
margin-left: auto ;
margin-right: auto ;
}
.prepend-icon-spacing .v-list-item__spacer {
width: 15px ;
}
.no-padding-start .v-list-group__items .v-list-item {
padding-inline-start: 0px ;
}
.scheduler-button .v-btn--density-compact {
--widget-row-height: 32px ;
max-height: 32px ;
}
.scheduler-button .v-btn--density-comfortable {
--widget-row-height: 38px ;
max-height: 38px ;
}
.scheduler-button .v-btn--density-default {
--widget-row-height: 48px ;
max-height: 48px ;
}