Toggle menu
209
926
189
6.3K
Dovedale Railway Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
.mbox {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: var( --space-xs );
    margin-bottom: var( --space-md );
    background-color: var( --color-surface-2 );
    border: 1px solid var( --border-color-base );
    border-radius: var( --border-radius-medium );
    color: var( --color-subtle );
    font-size: var( --font-size-small );
    line-height: var( --line-height-xxx-small );
}

.mbox.mbox-high {
    /* FIXME: Update back to Citzen CSS var when patched */
    background-color: rgba( 221, 51, 51, 0.1 );
}

.mbox.mbox-med {
    /* FIXME: Update back to Citzen CSS var when patched */
    background-color: rgba( 255, 204, 51, 0.1 );
}

.mbox-title {
    display: flex;
    align-items: center;
    padding: var( --space-sm ) var( --space-md );
}

.mbox-icon img {
    display: block;
    width: var( --font-size-small );
    height: auto;
    margin-right: var( --space-xs );
    opacity: var( --opacity-icon-base );
}

.mbox-text {
    position: absolute;
    top: 100%;
    z-index: 10;
    padding: var( --space-md );
    width: 100%;
    box-sizing: border-box;
    background-color: var( --color-surface-1 );
    border-bottom-left-radius: var( --border-radius-medium );
    border-bottom-right-radius: var( --border-radius-medium );
    box-shadow: var( --box-shadow-drop-xx-large );
    opacity: 0;
    visibility: hidden;
}

.mbox:hover {
    /* Merge with popup */
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: var( --box-shadow-drop-xx-large );
}

.mbox:hover .mbox-text {
    opacity: 1;
    visibility: visible;
}

/* Apply icon size to icons created using pseudo-elements */
.mbox-icon::before {
  width: 14px;
}
🍪 Yum Yum Yum! Cookies help us better deliver our services. By using our site, you agree to our use of cookies.