customized.scss 1.44 KB
Newer Older
1
/* resubmit confirm modal style */
2
3
.resubmit {
    .title {
4
5
        font-size: 16px;
        color: #000;
6
7
8

        .color-warn,
        .color-error {
9
10
            color: red;
        }
11
12

        i {
13
14
15
            margin-right: 10px;
        }
    }
16
17

    .hint {
18
19
20
21
        padding: 15px 0;
        color: #333;
        margin-left: 30px;
    }
22
23

    .color-succ {
24
25
26
        color: green;
    }
}
27
28

.hyper-box {
29
30
    padding: 16px 18px 16px 16px;
}
31
32

.hyper-form {
33
    margin-bottom: 10px;
34
35

    .title {
36
37
        font-size: 14px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
38
        line-height: 40px;
39
    }
40
41

    .inputs {
42
43
        height: 32px;
    }
44
45

    input {
46
        padding-left: 5px;
47
48
49
        height: 32px;
    }
}
50
51

.tag-input {
52
53
54
    margin-top: 25px;
}

55
56
/* submit & cancel buttons style */
.modal-button {
57
58
    text-align: right;
    height: 28px;
59
60
61

    /* cancel button style */
    .cancelSty {
62
63
64
65
66
        width: 80px;
        background-color: #dadada;
        border: none;
        color: #333;
    }
67
68
69
70

    .cancelSty:hover,
    .cancelSty:active,
    .cancelSty:focus {
71
72
        background-color: #dadada;
    }
73
74

    .distance {
75
76
77
78
        margin-right: 8px;
    }
}

79
.center {
80
81
    text-align: center;
}
82

83
84
.icon-color {
    i {
85
86
87
        color: green;
    }
}
88
89
90

.icon-error {
    i {
91
92
93
        color: red;
    }
}
94
95
96
97

.icon-color,
.icon-error {
    i {
98
99
100
101
102
        margin-right: 10px;
        position: relative;
        top: 5px;
    }
}
103
104

.ms-Dialog-subText {
105
    color: #333;
106
}