Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5150 | Rev 5168 | Ir a la última revisión | | Comparar con el anterior | 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;
5150 stevensc 8
    border: 0px;
9
 
10
    textarea,
11
    input,
12
    select {
13
        display: block;
14
        width: 100%;
15
        height: calc(1.5em + 0.75rem + 2px);
16
        padding: 0.375rem 0.75rem;
17
        font-size: 1rem;
18
        font-weight: 400;
19
        line-height: 1.5;
20
        color: #495057;
21
        background-color: #fff;
22
        background-clip: padding-box;
23
        border: 1px solid #ced4da;
24
        border-radius: 0.25rem;
25
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
26
    }
27
 
28
    select {
29
        height: 40px;
30
        padding-left: 15px;
31
        margin-bottom: 0;
32
        background-color: #fff;
33
    }
34
 
35
    .job_descp img,
36
    .job_descp video {
37
        object-fit: contain;
38
        height: auto;
39
        max-height: 600px;
40
    }
41
 
5095 stevensc 42
}
43
 
44
.modal-header {
45
    position: relative;
46
    border-bottom: none;
47
 
48
    h3 {
49
        font-size: 18px;
50
    }
51
 
52
    .close {
53
        z-index: 100;
54
        border: none;
55
        top: 1rem;
56
        right: 1rem;
57
    }
58
}
59
 
5151 stevensc 60
.modal-body {
61
    padding: 0 1rem;
62
}
63
 
5095 stevensc 64
.modal-footer {
65
    justify-content: flex-start;
66
    border-top: none;
67
 
68
    button {
69
        background-color: $button-bg;
70
        border: none;
71
        border-radius: $button-text-color;
72
        font-size: 15px;
73
        font-weight: 500;
74
        padding: 10px;
75
        border-radius: $border-radius;
76
 
77
        &:hover,
78
        &:active {
79
            background-color: $button-bg-hover;
80
        }
81
 
82
        &:nth-child(2) {
83
            color: $button-text-color-secondary !important;
84
            background-color: $button-bg-secondary;
85
            border: 1px solid $border-gray-primary;
86
 
87
            &:hover {
88
                background-color: $button-bg-secondary-hover;
89
            }
90
        }
91
 
92
        &.save {
93
            color: $button-text-color-secondary;
94
            background-color: $button-bg-secondary;
95
 
96
            &:hover {
97
                background-color: $button-bg-secondary-hover;
98
            }
99
        }
100
    }
101
}