32 lines
501 B
CSS
32 lines
501 B
CSS
/* Default application styles and icon */
|
|
window {
|
|
/* Icon can be set via CSS if needed */
|
|
}
|
|
|
|
.small-entry {
|
|
font-size: 9px;
|
|
min-height: 0;
|
|
min-width: 0;
|
|
padding: 0px 1px;
|
|
margin: 0;
|
|
border: none;
|
|
background: transparent;
|
|
}
|
|
|
|
.small-entry:focus {
|
|
background: rgba(255,255,255,0.1);
|
|
}
|
|
|
|
.temp-label-small {
|
|
font-size: 9px;
|
|
font-weight: bold;
|
|
margin-left: 1px;
|
|
color: #ccc;
|
|
}
|
|
|
|
/* Compact box items */
|
|
.legend-item {
|
|
margin: 0 4px;
|
|
padding: 0;
|
|
}
|