account.scss 2.8 KB
Newer Older
Y
Your Name 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
.account-setting-common-scss {
    display: block;
    padding: $PLATE_PADDING;

    article {
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 3px;
        font-size: 14px;
        
        .disabled-btn {
            cursor: not-allowed;
        }

        .title-p {
            border-bottom: 1px solid #e5e5e5;
            padding-bottom: 10px;
        }

        .warning-span {
            color: red;
            margin-left: 5px;
            font-size: 13px;
        }

        .open-alert-btn {
            display: inline-block;
            text-align: center;
            margin-left: 10px;
            font-size: 20px;
            padding: 0;
            min-width: auto;
        }

        .icon-huadongkaiguan-dakai {
            color: $buttonSuccessBgColor;
        }

        .btn-group-li {

            button,
            input[type=button] {
                min-width: 60px;
                padding: 0 10px;
            }

            button,
            input[type=button] {
                &:disabled {
                    background-color: #b7b7b7;
                    color: #fff;
                    border-color: #b7b7b7;
                    cursor: not-allowed;

                    &:hover {
                        background-color: #b7b7b7;
                        color: #fff;
                        border-color: #b7b7b7;
                        cursor: not-allowed;
                    }
                }
            }

            button {
                margin-right: 5px;
            }

            margin-top: 30px;

            .list-div {
                display: inline-grid;

                p {
                    line-height: 40px;
                }

                button {
                    width: 80px;
                }
            }
        }

        &:nth-child(n+2) {
            margin-top: 10px;
        }

        .tips-span {
            color: #999;
            font-size: 13px;
            margin-left: 10px;
            display: inline-block;
        }

        input[type=text]:disabled,
        select:disabled {
            background-color: #fafafa;
            cursor: not-allowed;
        }

        .icon-shanchu {
            width: 25px;
            height: 25px;
            line-height: 25px;
            border-radius: 3px;
            background-color: #f2f2f2;
            color: #9e9e9e;
            display: inline-block;
            text-align: center;
            border: 1px solid #ddd;
            margin-left: 10px;

            &:hover {
                background-color: $buttonDangerBgColor;
                color: #fff;
                border: 1px solid $buttonDangerFocusBgColor;
            }
        }

        tr:nth-child(n+2) {
            td {
                padding-top: 10px;
            }
        }
    }
}