Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6737 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6737 Rev 6871
Línea 7... Línea 7...
7
.btn-primary {
7
.btn-primary {
8
    background-color: $button-bg;
8
    background-color: $button-bg;
9
    border-radius: $border-radius;
9
    border-radius: $border-radius;
10
    color: $button-text-color !important;
10
    color: $button-text-color !important;
11
    border: none !important;
11
    border: none !important;
-
 
12
 
12
    &:hover {
13
    &:hover {
13
        background-color: $button-bg-hover;
14
        background-color: $button-bg-hover;
14
    }
15
    }
15
}
16
}
Línea 16... Línea 17...
16
 
17
 
17
.btn-secondary {
18
.btn-secondary {
18
    background: $button-bg-secondary;
19
    background: $button-bg-secondary;
19
    border: 1px solid $border-primary;
20
    border: 1px solid $border-primary;
20
    border-radius: $border-radius;
21
    border-radius: $border-radius;
-
 
22
    color: $button-text-color-secondary !important;
21
    color: $button-text-color-secondary !important;
23
 
22
    &:hover {
24
    &:hover {
23
        background-color: $button-bg-secondary-hover;
25
        background-color: $button-bg-secondary-hover;
24
        border-color: $border-trasnparent;
26
        border-color: $border-trasnparent;
25
    }
27
    }
Línea 28... Línea 30...
28
.btn-tertiary {
30
.btn-tertiary {
29
    background-color: $button-bg-tertiary;
31
    background-color: $button-bg-tertiary;
30
    border-radius: $border-radius;
32
    border-radius: $border-radius;
31
    border-color: #f4f4f4;
33
    border-color: #f4f4f4;
32
    color: $button-text-color-tertiary !important;
34
    color: $button-text-color-tertiary !important;
-
 
35
 
33
    &:hover {
36
    &:hover {
34
        background: #d4d4d4;
37
        background: #d4d4d4;
35
        border: 1px solid $border-primary;
38
        border: 1px solid $border-primary;
36
        color: $border-primary !important;
39
        color: $border-primary !important;
37
    }
40
    }
38
}
41
}
-
 
42
 
-
 
43
.btn-secondary:disabled,
-
 
44
.btn-primary:disabled,
-
 
45
.btn-tertiary:disabled {
-
 
46
    cursor: no-drop;
-
 
47
}
39
48