<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

.verticalbar {
    background-color: rgba(255, 255, 255, .6);
    border-radius: 2px;
}

.verticalbar a {
    text-decoration: none;
}

.verticalbar a,
.verticalbar span {
    color: #444;
}

.verticalbar vbar-item {
    font-family: "webdesk_icon" !important;
    display: block;
    font-size: 18px;
    width: 100%;
    height: 100%;
    line-height: 100%;
    color: #666;
    text-align: center;
    margin-right: 6px;
    cursor: pointer;
    user-select: none;
}

.verticalbar vbar-item:hover,
.verticalbar vbar-item.hover {
    color: #eee;
    text-shadow: 1px 1px 2px #666;
    background-color: rgba(255, 255, 255, .4);
}

vbar-panel {
    display: block;
    position: absolute;
    width: auto;
    height: auto;
    cursor: default;
    background-color: rgba(255, 255, 255, 1);
    padding: 3px 6px 3px 6px;
    border-radius: 5px;
    font-size: 14px;
    color: #666;
    display: none;
    border: solid 1px #999;
    box-shadow: 1px 1px 1px rgba(160, 160, 160, 0.9);
}

vbar-panel:before {
    content: '\20';
    width: 8px;
    height: 8px;
    display: block;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid #999;
    border-width: 1px 1px 0 0;
    transform: rotate(45deg);
    float: right;
    margin-right: -11px;
    margin-top: 5px;
}

vbar-panel[direction='left']:before {
    content: '\20';
    width: 8px;
    height: 8px;
    display: block;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid #999;
    border-width: 1px 1px 0 0;
    transform: rotate(-135deg);
    float: left;
    margin-left: -11px;
    margin-top: 5px;
}

vbar-panel.child {
    padding: 0px;
    min-width: 80px;
}

vbar-panel.child:before {
    margin-right: -5px;
    margin-top: 8px;
}

vbar-panel[direction='left'].child:before {
    margin-left: -5px;
    margin-top: 8px;
}

vbar-panel vbar-node {
    display: block;
    width: auto;
    height: 30px;
    padding-right: 10px;
    line-height: 30px;
    position: relative;
}

vbar-panel&gt;hr {
    height: 1px;
    border: 0px;
    margin: 0px;
    margin-left: 30px;
    background: #ddd;
}

vbar-panel vbar-node ico {
    font-family: "webdesk_icon" !important;
    display: inline-block;
    height: 100%;
    font-size: 18px;
    width: 25px;
    border-right: 1px solid #ddd;
    float: left;
    color: #666;
    text-align: center;
    margin-right: 6px;
}

vbar-panel vbar-node a {
    width: calc(100% - 30px);
    display: block;
    position: absolute;
    z-index: 2;
    top: 0px;
    left: 35px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

vbar-panel vbar-node:hover {
    box-shadow: rgb(255, 255, 255) 0px 0px 3px inset;
    text-shadow: 1px 1px 2px #666;
}

vbar-panel vbar-node:hover:after {
    content: '';
    display: block;
    width: calc(100% - 5px);
    height: calc(100% - 5px);
    border: solid 1px rgba(200, 200, 200, 0.8);
    position: absolute;
    left: 2px;
    top: 2px;
    z-index: 1;
    border-radius: 3px;
    background-color: rgba(200, 200, 200, 0.3);
    --background: linear-gradient(to bottom, rgba(161, 197, 247, 0.3) 1%, rgba(255, 255, 255, 0.3) 5%, rgba(161, 197, 247, 0.1) 50%, rgba(161, 197, 247, 0.3) 55%);
}</pre></body></html>