cms/app-client/app/styles/components/toolbar-component.scss
author ymh <ymh.work@gmail.com>
Tue, 20 Mar 2018 15:02:40 +0100
changeset 573 25f3d28f51b2
parent 449 5b0787f51d76
permissions -rw-r--r--
Added tag 0.0.25 for changeset 190ae1dee68d

.toolbar-component {
    height: 40px;
    width: 50%;
    line-height: 40px;
    text-transform: none;
    padding: 0px 15px;
    text-align: left;
    color: $light-white;
    font-size: 13px;
    background-color: $corpus-black;
    box-sizing: border-box;
    position: absolute;
    bottom: 0px;
    z-index: 1000; /* to get above the notice map */
}

.toolbar-component ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 0px;
}

.toolbar-component ul li {
    padding: 0 10px;
    display: inline-block;
    font-size: 12px;
    cursor: pointer;
    border-left: 1px solid transparent;
}

.toolbar-component ul li.active {
    border-left-color: $corpus-black;
    background-color: $corpus-white;
    color: $corpus-black;
}

.toolbar-component ul li.active:not(.video) {
    pointer-events: none;
}