aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/ConnectionContent.scss
blob: 8ee31ec833118573844b1a276d0dafe087d58790 (plain) (blame)
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
@import '../colors.scss';

.connection-content {
  background-color: $color-primary-0;
  padding: 10px 10px 0;
  height: 100%;

  pre {
    word-break: break-word;
    white-space: pre-wrap;
    overflow-x: hidden;
    height: calc(100% - 31px);
    padding: 0 10px;

    p {
      margin: 0;
      padding: 0;
    }
  }

  .connection-message {
    border: 4px solid $color-primary-3;
    border-top: 0;
    margin: 10px 0;
    position: relative;

    .connection-message-header {
      background-color: $color-primary-3;
      height: 25px;

      .connection-message-info {
        font-size: 11px;
        margin-left: -10px;
        margin-top: 6px;
      }

      .connection-message-actions {
        margin-right: -18px;
        display: none;

        button {
          margin: 0 3px;
          font-size: 11px;
          padding: 5px;
        }
      }
    }

    .message-content {
      padding: 10px;
    }

    &:hover .connection-message-actions {
      display: block;
    }

    .connection-message-label {
      position: absolute;
      background-color: $color-primary-3;
      top: 0;
      padding: 10px 0;
      font-size: 12px;

      writing-mode: vertical-rl;
      text-orientation: mixed;
    }

    &.from-client {
      color: $color-primary-4;
      margin-right: 100px;

      .connection-message-label {
        right: -22px;
      }
    }

    &.from-server {
      color: $color-primary-4;
      margin-left: 100px;

      .connection-message-label {
        left: -22px;
        transform: rotate(-180deg);
      }
    }

  }

  .connection-content-header {
    background-color: $color-primary-2;
    padding: 0;
    height: 31px;

    .header-info {
      padding-top: 5px;
      padding-left: 20px;
      font-size: 12px;
    }

    .header-actions {
      .dropdown {
        display: inline-block;
      }
    }
  }


}