﻿/* 代表未登入的網頁頂部輸入條件表格 */
/* border-color : cbs.allColorsArray[3].hexString */

.condition {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-top: solid 1px;
    border-bottom: solid 1px;
}

    .condition .input
    {
        display: block;
        padding: 0.5rem 1rem;
        box-sizing: border-box;
        border-style: solid;
        border-width: 1px;
        border-radius: 5px;
        background-color: #ffffff;
        margin-bottom: 0.5rem;
        cursor: pointer;
    }

        .condition .input[type="text"]
        {
            cursor : text;
        }

        .condition .fillLength
        {
            flex-grow: 1;
        }

    .condition .noBorder {
        border-style : none;
    }

    /* 用於 UpdatePanel */
    .condition .flexRow {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }


