summaryrefslogtreecommitdiffstats
path: root/browser/components/pocket/content/panels/js/components/ArticleList/ArticleList.scss
blob: 261367433d1cc5dfcf1842326533435da3700569 (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
55
56
57
58
59
60
61
62
63
64
65
.stp_article_list {
  padding: 0;
  list-style: none;

  .stp_article_list_saved_article,
  .stp_article_list_link {
    display: flex;
    border-radius: 4px;
    padding: 8px;
    margin: 0 -8px;
  }

  .stp_article_list_link {
    &:hover, &:focus {
      text-decoration: none;
      background-color: #ECECEE;

      @include theme_dark {
        background-color: #2B2A33;
      }
    }
  }

  .stp_article_list_thumb,
  .stp_article_list_thumb_placeholder {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    margin-inline-end: 8px;
    background-color: #ECECEE;
    flex-shrink: 0;
  }

  .stp_article_list_header {
    font-style: normal;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.18rem;
    color: #15141A;
    margin: 0 0 4px;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    word-break: break-word;

    @include theme_dark {
      color: #FBFBFE;
    }
  }

  .stp_article_list_publisher {
    font-style: normal;
    font-weight: normal;
    font-size: 0.95rem;
    line-height: 1.18rem;
    color: #52525E;
    margin: 4px 0 0;

    @include theme_dark {
      color: #CFCFD8;
    }
  }
}