aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/Connection.scss
blob: d27ebc890e58666c04dc45c27f9ccddc15b0d49d (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
@import '../colors.scss';

.connection {
  background-color: $color-primary-0;
  border-top: 3px solid $color-primary-3;
  border-bottom: 3px solid $color-primary-3;

  td {
    vertical-align: middle;
  }

  &.connection-marked {
    border-right: 5px solid $color-secondary-2;
  }

  .connection-service {
    .btn {
      width: 100%;
    }

    .btn:hover {
      background-color: $color-primary-1 !important;
      color: $color-primary-4;
    }
  }

  .connection-icon {
    font-weight: 600;
    font-size: 18px;
    margin-right: 6px;
    cursor: pointer;
  }

  &:hover {
    background-color: $color-primary-2;
  }

  &.connection-selected {
    background-color: $color-primary-2;
  }

}