aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/pdf/PDFMenu.scss
blob: a4624b1f6efc281ff338c26b60657d6a83f62291 (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
.pdfMenu-cont {
    position: absolute;
    z-index: 10000;
    height: 35px;
    background: #323232;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25);
    border-radius: 0px 6px 6px 6px;
    overflow: hidden;
    display: flex;

    .pdfMenu-button {
        background-color: transparent;
        width: 35px;
        height: 35px;
    }

    .pdfMenu-button:hover {
        background-color: #121212;
    }

    .pdfMenu-dragger {
        height: 100%;
        transition: width .2s;
    }

    .pdfMenu-addTag {
        display: grid;
        width: 200px;
        padding: 5px;
        grid-template-columns: 90px 20px 90px;
    }
}