summaryrefslogtreecommitdiffstats
path: root/browser/components/pocket/content/panels/js/components/PopularTopics/PopularTopics.scss
blob: bacd55ee4289d6ae9547e57523c09c6c7a610eea (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
.stp_popular_topics {
  padding: 0;

  .stp_popular_topic {
    display: inline-block;

    .stp_popular_topic_link {
      display: inline-block;
      background: #F0F0F4;
      border-radius: 4px;
      font-size: 0.85rem;
      line-height: 1rem;
      font-style: normal;
      font-weight: 600;
      margin-inline-end: 8px;
      margin-bottom: 8px;
      padding: 4px 8px;
      color: #000;

      &:focus {
        text-decoration: none;
        background: #F0F0F4;
        outline: 2px solid #0060df;
        outline-offset: 2px;
      }

      &:hover {
        background: #E0E0E6;
        text-decoration: none;
      }

      &:active {
        background: #CFCFD8;
      }

      &::after {
        content: " >";
      }

      @include theme_dark {
        background: #2B2A33;
        color: #FBFBFE;
      
        &:focus {
          outline: 2px solid #00DDFF;
        }

        &:hover {
          background: #53535d;
        }
      }
    }
  }
}