Blame view

src/styles/public.scss 1.89 KB
jiaozeping@pashanhoo.com committed
1
//*****start*通用表单查询条件,列表样式******//
2
.from-clues {
任超 committed
3
    width: 100%;
4 5
    min-width: 1000px;
    height: 100%;
任超 committed
6
    box-sizing: border-box;
7

任超 committed
8 9
    &-header {
        width: 100%;
任超 committed
10
        padding: 10px;
任超 committed
11 12
        box-sizing: border-box;
        background: #FFFFFF;
1  
jiaozeping@pashanhoo.com committed
13
        border-radius: 2px;
任超 committed
14 15
        border: 1px solid #e8edf3;
    }
16

任超 committed
17 18 19 20
    .advanced-search {
        display: flex;
        font-size: 12px;
        flex-wrap: wrap;
任超 committed
21 22
        padding-top: 5px;
        height: 30px;
任超 committed
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43

        span {
            display: flex;
            align-items: center;
        }

        i {
            color: $light-blue;
            margin-left: 5px;
            cursor: pointer;
        }

        ul {
            display: flex;
            align-items: center;

            li {
                color: $light-blue;
                border: 1px solid $light-blue;
                border-radius: 10px;
                padding: 2px 8px;
任超 committed
44
                line-height: 16px;
任超 committed
45 46 47 48 49 50 51
            }
        }

        .clean-btn {
            margin-left: 10px;
        }
    }
任超 committed
52

任超 committed
53 54
    &-content {
        width: 100%;
55
        padding: 10px;
任超 committed
56 57
        box-sizing: border-box;
        background: #FFFFFF;
1  
jiaozeping@pashanhoo.com committed
58
        border-radius: 2px;
59
        margin-top: 5px;
任超 committed
60 61 62 63 64 65 66 67 68 69 70
        border: 1px solid #e8edf3;
    }

    .el-form--inline .el-form-item {
        width: auto;
        margin-right: 0px;

        .el-form-item__content {
            width: auto;
        }
    }
jiaozeping@pashanhoo.com committed
71

任超 committed
72
    .el-form-item--small.el-form-item {
1  
jiaozeping@pashanhoo.com committed
73
        margin-bottom: 5px;
jiaozeping@pashanhoo.com committed
74
    }
1  
jiaozeping@pashanhoo.com committed
75
}
任超 committed
76

jiaozeping@pashanhoo.com committed
77
//*****end*通用表单查询条件,列表样式******//
任超 committed
78 79 80
/deep/.el-range-separator {
    line-height: 28px !important;
}
1  
jiaozeping@pashanhoo.com committed
81

任超 committed
82
.width200px {
1  
jiaozeping@pashanhoo.com committed
83
    width: 200px;
jiaozeping@pashanhoo.com committed
84 85 86 87
}

.width300px {
    width: 300px;
jiaozeping@pashanhoo.com committed
88 89 90 91 92 93 94 95 96 97 98 99
}


.slxx_title {
    border-bottom: 1px solid $borderColor;
    padding-left: 10px;
    padding-bottom: 5px;
    margin-bottom: 10px;
    margin-top: 5px;
    font-size: 16px;
    font-weight: 500;
    color: #4a4a4a;
任超 committed
100
}