customized.scss 642 Bytes
Newer Older
1
/* resubmit confirm modal style */
2
.hyper-box {
3
4
    padding: 16px 18px 16px 16px;
}
5
6

.hyper-form {
7
    margin-bottom: 10px;
8
9

    .title {
10
11
        font-size: 14px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
12
        line-height: 40px;
13
    }
14
15

    .inputs {
16
17
        height: 32px;
    }
18
19

    input {
20
        padding-left: 5px;
21
22
23
        height: 32px;
    }
}
24
25
26

.icon-color {
    i {
27
28
29
        color: green;
    }
}
30
31
32

.icon-error {
    i {
33
34
35
        color: red;
    }
}
36
37
38
39

.icon-color,
.icon-error {
    i {
40
41
42
43
44
        margin-right: 10px;
        position: relative;
        top: 5px;
    }
}
45
46

.ms-Dialog-subText {
47
    color: #333;
48
}