cms/app-client/app/styles/components/toolbar-component.scss
author Chloe Laisne <chloe.laisne@gmail.com>
Fri, 14 Oct 2016 18:50:43 +0200
changeset 332 7f5fd48fa6c2
parent 315 e3217b6adea3
child 338 4a3899b6a7ed
permissions -rw-r--r--
Change bars to text icon for transcript

.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: $dark-blue;
    box-sizing: border-box;
    position: absolute;
    bottom: 0px;
}

.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: $dark-blue;
    background-color: $light-white;
    color: $dark-blue;
}