46 lines
1.1 KiB
CSS
46 lines
1.1 KiB
CSS
/* Robot Info Panel Styles */
|
|
|
|
.robot-info-panel {
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
transition: width 0.3s ease-in-out;
|
|
background-color: var(--mud-palette-surface);
|
|
border-left: 1px solid var(--mud-palette-lines-default);
|
|
flex-shrink: 0;
|
|
width: 300px;
|
|
min-width: 200px;
|
|
max-width: 400px;
|
|
}
|
|
|
|
/* Info panel scrollbar styling */
|
|
.robot-info-panel::-webkit-scrollbar {
|
|
width: 8px;
|
|
}
|
|
|
|
.robot-info-panel::-webkit-scrollbar-track {
|
|
background: var(--mud-palette-background-grey);
|
|
}
|
|
|
|
.robot-info-panel::-webkit-scrollbar-thumb {
|
|
background: var(--mud-palette-text-disabled);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.robot-info-panel::-webkit-scrollbar-thumb:hover {
|
|
background: var(--mud-palette-text-secondary);
|
|
}
|
|
|
|
/* Responsive adjustments */
|
|
@media (max-width: 960px) {
|
|
.robot-info-panel {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
max-width: 400px;
|
|
z-index: 100;
|
|
box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
}
|