about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/styles/components/metadata.scss
blob: fa1a4bc342502d661f59fff08777f3d59ae2530c (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
.account__header .account__header__fields {
  font-size: 15px;
  line-height: 20px;
  overflow: hidden;
  border-collapse: collapse;
  margin: 20px -10px -20px;
  border-bottom: 0;

  a {
    text-decoration: none;

    &:hover{
      text-decoration: underline;
    }
  }

  tr {
    border-top: 1px solid lighten($ui-base-color, 8%);
    text-align: center;
  }

  th, td {
    padding: 14px 20px;
    vertical-align: middle;

    & > div {
      max-height: 40px;
      overflow-y: auto;
      white-space: pre-wrap;
      text-overflow: ellipsis;
    }
  }

  th {
    color: $darker-text-color;
    background: lighten($ui-base-color, 13%);
    max-width: 120px;

    a {
      color: $primary-text-color;
    }
  }

  td {
    flex: auto;
    color: $primary-text-color;
    background: $ui-base-color;

    a {
      color: $highlight-text-color;
    }
  }
}