aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/formattedText/FormattedTextBoxComment.scss
blob: 7af209842ac832f5e1f57657ad61c9a2d1b28ec1 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
.FormattedTextBox-tooltip {
    position: absolute;
    pointer-events: none;
    z-index: 20;
    background: white;
    border: 1px solid silver;
    border-radius: 7px;
    margin-bottom: 7px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    box-shadow: 3px 3px 1.5px grey;

    .FormattedTextBoxComment-title {
        background-color: white;
        border: 8px solid white;

        .FormattedTextBoxComment-button {
            display: inline;
            padding-left: 6px;
            padding-right: 6px;
            padding-top: 2.5px;
            padding-bottom: 2.5px;
            width: 20px;
            height: 20px;
            margin: 0;
            margin-right: 6px;
            border-radius: 50%;
            pointer-events: auto;
            background-color: rgb(0, 0, 0);
            color: rgb(255, 255, 255);
            transition: transform 0.2s;
            text-align: center;
            position: relative;
            font: 10px;

            &:hover {
                background-color: rgb(77, 77, 77);
                cursor: grab;
            }
        }

        .FormattedTextBoxComment-preview-wrapper {
            width: 170px;
            height: 170px;
            overflow: hidden;
            //padding-top: 5px;
            margin-top: 10px;
            margin-bottom: 8px;
            align-content: center;
            justify-content: center;
            background-color: rgb(160, 160, 160);
        }
    }
}

.FormattedTextBox-tooltip:before {
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    left: 50%;
    margin-left: -5px;
    bottom: -6px;
    border: 5px solid transparent;
    border-bottom-width: 0;
    border-top-color: silver;
}

.FormattedTextBox-tooltip:after {
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    left: 50%;
    margin-left: -5px;
    bottom: -4.5px;
    border: 5px solid transparent;
    border-bottom-width: 0;
    border-top-color: white;
}

.FormattedTextBoxComment-buttons {
    display: none;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}