- Show level 3 comments - Change header-tap to scroll top to a button instead (prevent accidental scroll top) - Show avatars in <summary> - Clean up CSS a bit
40 lines
683 B
CSS
40 lines
683 B
CSS
.status-deck header h1 {
|
|
grid-column: 1 / 3;
|
|
}
|
|
.status-deck header {
|
|
display: flex;
|
|
align-items: center;
|
|
white-space: nowrap;
|
|
}
|
|
.status-deck header h1 {
|
|
min-width: 0;
|
|
flex-grow: 1;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.status-deck header.inview h1 {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.hero-heading {
|
|
font-size: 16px;
|
|
display: inline-block;
|
|
margin-bottom: 0.25em;
|
|
}
|
|
.hero-heading .icon {
|
|
vertical-align: middle;
|
|
color: var(--text-insignificant-color);
|
|
}
|
|
.hero-heading .insignificant {
|
|
font-weight: normal;
|
|
}
|
|
|
|
.ancestors-indicator {
|
|
font-size: 70% !important;
|
|
}
|
|
.ancestors-indicator[hidden] {
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|