Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
.search-results .result {
2
    margin-left: 0;
3
    margin-right: 0;
4
}
5
 
6
.search-results .result .result-content {
7
    margin: 7px 0;
8
}
9
 
10
.search-results .result .filename {
11
    font-style: italic;
12
}
13
 
14
.simplesearchform {
15
    @if $enable-rounded {
16
        .input-group input.form-control {
17
            border-top-left-radius: $border-radius;
18
            border-bottom-left-radius: $border-radius;
19
        }
20
    }
21
    .btn {
22
        padding-left: 0.5rem;
23
        padding-right: 0.5rem;
24
    }
25
    .btn .icon {
26
        margin: 0;
27
    }
28
    .btn-submit {
29
        border-color: $input-border-color;
30
        color: $gray-600;
31
    }
32
    .btn-close,
33
    .btn-clear {
34
        position: absolute;
35
        top: 0;
36
        right: 0;
37
        color: $gray-600;
38
        z-index: 4;
39
    }
40
    .btn-close {
41
        right: 2.2rem;
42
    }
43
    .btn-submit {
44
        background-color: $gray-100;
45
    }
46
    .withclear {
47
        padding-right: 2rem;
48
    }
49
    .searchinput {
50
        display: flex;
51
        flex: 1 1 auto;
52
    }
53
    .collapsing {
54
        height: inherit;
55
        transition: none;
56
        width: inherit;
57
    }
58
}
59
 
60
.simplesearchform .collapse.show,
61
.simplesearchform .collapsing {
62
    position: absolute;
63
    left: 0;
64
    top: 0;
65
    width: 100%;
66
    display: flex;
67
    background-color: $white;
68
    z-index: $zindex-popover;
69
    height: $navbar-height;
70
    .searchform-navbar {
71
        width: auto;
72
        margin-left: auto;
73
        margin-right: auto;
74
    }
75
}
76
 
77
.search-areas-actions {
78
    margin-bottom: $spacer;
79
}
80
 
81
.search-areas-actions > div {
82
    margin-right: $spacer;
83
    display: inline-block;
84
}
85
 
86
#core-search-areas .lastcol li {
87
    margin-left: 24px;
88
    text-indent: -24px;
89
}
90
#core-search-areas .lastcol li > i {
91
    text-indent: 0;
92
}