summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass/partials/_command-box.scss
blob: f1aa4dca2d0edf253e746636cebb164f26e29a46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
.command-box {
    position: absolute;
    background-color: #fff;
    width: 100%;
    border: $border-gray;
    bottom: 38px;
    overflow: auto;
    @extend %popover-box-shadow;
    .sidebar--right & {
        bottom: 100px;
    }
}

.command-name {
    position: relative;
    width: 100%;
    line-height: 24px;
    padding: 5px 10px 8px;
    z-index: 101;
    font-size: 0.95em;
    border-bottom: 1px solid #ddd;
    &:hover {
        background-color: #e8eaed;
    }
    .command__desc {
        margin-left: 5px;
        @include opacity(0.5);
        line-height: normal;
    }
}

.command-desc {
    color: #a7a8ab;
}