event-list.scss 2.86 KB
.event-list {
    position: relative;

    .contraste & {
        background-color: #262626;
    }

    .section-table {
        background-color: #e1e1e1;
    }

    .event-list--panel {
        height: 310px;
        padding: 0px;
        margin: 20px 0;
        line-height: 20px;
        transition: .3s linear all;
        overflow: hidden;

        &.ng-hide {
            height: 0;
            line-height: 0;
        }

        // .event-list--header {
        //     border-bottom: 1px solid #333333;
        // }

        // .event-list--icon {
        //     font-size: 25px;
        //     display: inline-block;
        // }

        // .event-list--title {
        //     margin: 0 10px;
        //     display: inline-block;
        // }

        // .event-list--minimize {
        //     display: inline-block;
        //     float: right;
        //     width: 100px;
        // }
    }

    &--table{
        margin-bottom: 0;
    }

    .event-tab--trigger {
        $event-tab-height: 130px;
        width: 150px;
        height: $event-tab-height;
        position: absolute;
        right: 0;
        top: $event-tab-height * (-1);
        padding: 5px;
        background-color: #eeeeee;
        border: 1px solid #333333;
        text-align: center;
        line-height: 20px;
        cursor: pointer;

        -webkit-transition: -webkit-transform 0.3s linear all;
        -moz-transition: -moz-transform 0.3s linear all;
        -o-transition: -o-transform 0.3s linear all;
        transition: transform 0.3s linear all;

        overflow: hidden;
        z-index: 100;

        &.ng-hide {
            height: 0px;
            line-height: 0px;
            top: -1px;
        }

        .contraste & {
            background-color: #262626;
        }
    }

    .event-bar--trigger {
        color: #fff;
        cursor: pointer;

        h1 {
            margin-bottom: 20px;
        }

        .icon-circle {
            font-size: 28px;
            border-radius: 100%;
            padding: 8px 8px 8px 10px;
            background-color: #fff;
        }

        &-toggle {
            .glyphicon {
                position: relative;
                top: 5px;
            }
        }
    }

    .table-responsive {
        width: 100%;
        height: 280px;
        overflow-y: scroll;

        .btn {
            color: #e1e1e1;
            text-transform: uppercase;
            font-weight: bold;
        }

        tr > td {
            border-top: 1px solid #ccc;
        }
        tr:last-child > td {
            border-bottom: 1px solid #ccc;
        }

        td {
            vertical-align: middle;
        }
    }

    .event-tab--icon {
        font-size: 25px;
    }

    .event-tab--title {
        font-weight: bold;
    }

    .event-tab--button {
        font-size: 12px;
        margin: 10px 0 0 0;
        padding: 0;
        width: 100%;
        white-space: normal;
    }
}