summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass/partials/_command-box.scss
blob: 44eb9b8df753d90c47dfe8b11e0d3cf8fa984e4b (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
.command-box {
    position: absolute;
    background-color: #fff;
    width: 100%;
    border: $border-gray;
    bottom: 38px;
    @extend %popover-box-shadow;
}

.command-name {
    position: relative;
    width: 100%;
    background-color: #fff;
    height: 37px;
    line-height: 37px;
    padding: 2px 10px 2px 5px;
    z-index: 101;
    &:hover {
        background-color: #e8eaed;
    }
}

.command-desc {
    color: #a7a8ab;
}