1
0
mirror of https://github.com/SuperBFG7/ympd synced 2024-12-23 01:20:27 +00:00

Merge remote-tracking branch 'eb041592/queue_nowrap'

This commit is contained in:
SuperBFG7 2018-04-22 18:59:05 +02:00
commit d08092b069

View File

@ -27,6 +27,13 @@ button {
margin-top: 2px; margin-top: 2px;
} }
#breadcrump {
display: block;
overflow: auto;
white-space: nowrap;
}
#counter { #counter {
font-size: 24px; font-size: 24px;
margin-top: -6px; margin-top: -6px;
@ -61,8 +68,24 @@ button {
} }
} }
#salamisandwich td:nth-last-child(2), th:nth-last-child(2) { h1 {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
td:nth-child(3), th:nth-child(3) {
/* This *has* to be placed before
any t[dh]:nth-last-child(2) for
the override to work. */
width: 50%;
}
td:nth-last-child(2), th:nth-last-child(2) {
text-align: right; text-align: right;
width: 6em;
} }
#salamisandwich td:nth-child(2) span { #salamisandwich td:nth-child(2) span {
@ -72,6 +95,14 @@ button {
display: block; display: block;
} }
td:nth-child(2), td:nth-last-child(3) {
max-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
tbody { tbody {
cursor: pointer; cursor: pointer;
} }
@ -85,7 +116,7 @@ td:last-child, td:first-child {
z-index: 9999; z-index: 9999;
} }
/* Positioning */ /* Positioning */
.notifications.top-right { .notifications.top-right {
right: 10px; right: 10px;
top: 60px; top: 60px;