@charset "UTF-8";
@import url("styleguide/colors-ERZxLLE.css");

#notifications hr {
    margin: 0;
}
#notifications .notification-item {
    color: var(--color-dark);
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: background-color var(--hover-speed-fast) ease;
}
#notifications .notification-item:hover {
    background-color: var(--color-light);
}
/* The row is an anchor, so Bootstrap underlines the date and the message; the hover
   background already marks the row as clickable. */
#notifications .notification-item,
#notifications .notification-item:hover,
#notifications .notification-item:focus {
    text-decoration: none;
}

#notifications .notification-item .notification-type {
    min-width: 2em;
    margin-right: 1em;
    display: inline-block;
}

#notifications .notification-item .notification-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

#notifications .notification-item .notification-date {
    font-size: var(--text-xs);
    color: var(--color-mid-grey, #666);
    display: block;
    margin-bottom: 3px;
}

#notifications .notification-item .message {
    display: block;
}
