Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5150 | Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
5095 stevensc 1
.modal-md {
2
    max-width: 55vw;
3
}
4
 
5
.modal-content {
6
    background-color: $bg-color !important;
7
    color: $font-color !important;
8
}
9
 
10
.modal-header {
11
    position: relative;
12
    border-bottom: none;
13
 
14
    h3 {
15
        font-size: 18px;
16
    }
17
 
18
    .close {
19
        z-index: 100;
20
        border: none;
21
        top: 1rem;
22
        right: 1rem;
23
    }
24
}
25
 
26
.modal-footer {
27
    justify-content: flex-start;
28
    border-top: none;
29
 
30
    button {
31
        background-color: $button-bg;
32
        border: none;
33
        border-radius: $button-text-color;
34
        font-size: 15px;
35
        font-weight: 500;
36
        padding: 10px;
37
        border-radius: $border-radius;
38
 
39
        &:hover,
40
        &:active {
41
            background-color: $button-bg-hover;
42
        }
43
 
44
        &:nth-child(2) {
45
            color: $button-text-color-secondary !important;
46
            background-color: $button-bg-secondary;
47
            border: 1px solid $border-gray-primary;
48
 
49
            &:hover {
50
                background-color: $button-bg-secondary-hover;
51
            }
52
        }
53
 
54
        &.save {
55
            color: $button-text-color-secondary;
56
            background-color: $button-bg-secondary;
57
 
58
            &:hover {
59
                background-color: $button-bg-secondary-hover;
60
            }
61
        }
62
    }
63
}