summaryrefslogtreecommitdiffstats
path: root/browser/components/pocket/content/panels/js/components/PopularTopics/PopularTopics.scss
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /browser/components/pocket/content/panels/js/components/PopularTopics/PopularTopics.scss
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/components/pocket/content/panels/js/components/PopularTopics/PopularTopics.scss')
-rw-r--r--browser/components/pocket/content/panels/js/components/PopularTopics/PopularTopics.scss54
1 files changed, 54 insertions, 0 deletions
diff --git a/browser/components/pocket/content/panels/js/components/PopularTopics/PopularTopics.scss b/browser/components/pocket/content/panels/js/components/PopularTopics/PopularTopics.scss
new file mode 100644
index 0000000000..bacd55ee42
--- /dev/null
+++ b/browser/components/pocket/content/panels/js/components/PopularTopics/PopularTopics.scss
@@ -0,0 +1,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;
+ }
+ }
+ }
+ }
+}