about summary refs log tree commit diff
path: root/app/assets/stylesheets/components.scss
blob: f17160161fa7ce396a9081541a24c4d1ea2e542e (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
.button {
  background-color: #2b90d9;

  &:hover {
    background-color: #489fde;
  }

  &:disabled {
    background-color: #9baec8;
  }
}

.icon-button {
  color: #616b86;
  cursor: pointer;

  &:hover {
    color: #717b98;
  }

  &.disabled {
    color: #535b72;
    cursor: default;
  }

  &.active {
    color: #2b90d9;
  }
}

.compose-drawer__textarea {
  background: #fff;

  &:disabled {
    background: #d9e1e8;
  }
}

.status__content, .reply-indicator__content {
  font-size: 15px;
  line-height: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-weight: 300;

  a {
    color: #d9e1e8;
    text-decoration: none;

    &:hover {
      text-decoration: underline;
    }

    &.mention {
      &:hover {
        text-decoration: none;

        span {
          text-decoration: underline;
        }
      }
    }
  }
}

.reply-indicator__content {
  color: #282c37;
  font-size: 14px;

  a {
    color: #535b72;
  }
}

.status__display-name, .status__relative-time {
  text-decoration: none;
}

.status__display-name {
  strong {
    color: #fff;
  }
}

.status__display-name, .reply-indicator__display-name {
  &:hover {
    strong {
      text-decoration: underline;
    }
  }
}

.status__relative-time {
  &:hover {
    text-decoration: underline;
  }
}