/* Fix very weird bottom hr on schedules. */
.fc-time-grid-container {
    height: initial !important;
}

/* Fix weird margins in p:message */
div.ui-messages > div > ul > li {
    margin: 0;
}

/* Fix weird scrollbar on Firefox.
 *
 * See Redmine #36709 for further details.
 */
.fc-time-grid-container {
    overflow: initial !important;
}

/* Fix tooltip icon inside labels.
 *
 * At the time of writing, labels are 20px high, tooltip icons only 16px. This looks weird.
 */
label > .tissTooltip > .tooltipIcon {
    margin-bottom: -2px;
}

/* Fix #64512: Select overflows on mobile.
 *
 * At the time of writing, select has a max-width of 350px (from content.css) - to much for mobiles.
 */
@media only screen and (max-width: 949px) {
    select {
        max-width: 320px;
    }
}
