Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | 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;
1441 ariadna 38
        z-index: 6;
1 efrain 39
    }
40
    .btn-close {
1441 ariadna 41
        right: 2.5rem;
42
        top: .4rem;
43
        font-size: inherit;
44
        line-height: inherit;
1 efrain 45
    }
46
    .btn-submit {
47
        background-color: $gray-100;
48
    }
49
    .withclear {
50
        padding-right: 2rem;
51
    }
52
    .searchinput {
53
        display: flex;
54
        flex: 1 1 auto;
55
    }
56
    .collapsing {
57
        height: inherit;
58
        transition: none;
59
        width: inherit;
60
    }
61
}
62
 
63
.simplesearchform .collapse.show,
64
.simplesearchform .collapsing {
65
    position: absolute;
66
    left: 0;
67
    top: 0;
68
    width: 100%;
69
    display: flex;
70
    background-color: $white;
71
    z-index: $zindex-popover;
72
    height: $navbar-height;
73
    .searchform-navbar {
74
        width: auto;
75
        margin-left: auto;
76
        margin-right: auto;
77
    }
78
}
79
 
80
.search-areas-actions {
81
    margin-bottom: $spacer;
82
}
83
 
84
.search-areas-actions > div {
85
    margin-right: $spacer;
86
    display: inline-block;
87
}
88
 
89
#core-search-areas .lastcol li {
90
    margin-left: 24px;
91
    text-indent: -24px;
92
}
93
#core-search-areas .lastcol li > i {
94
    text-indent: 0;
95
}