-
Notifications
You must be signed in to change notification settings - Fork 9
/
sidebar-pocket.css
88 lines (87 loc) · 1.8 KB
/
sidebar-pocket.css
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
.logout #root-folder,
.logout #pocket-logout,
.logout #controls-bottom,
.logout #controls-button,
.logout #pocket-username,
.logout #pocket-username::before,
#pocket-login,
.type .domain-view,
.domain .type-view {
display: none;
}
.logout #pocket-login {
display: block;
}
.logout #controls-user {
justify-content: center;
}
#pocket-username {
padding-left: 1.5rem;
position: relative;
}
#pocket-username::before {
content: '';
display: inline-block;
position: absolute;
left: .2rem;
-webkit-mask-image: url(/icons/user.svg);
-webkit-mask-repeat: no-repeat;
-webkit-mask-size: 100% 100%;
-webkit-mask-position: center;
-webkit-mask-mode: alpha;
mask-image: url(/icons/user.svg);
mask-repeat: no-repeat;
mask-size: 100% 100%;
mask-position: center;
mask-mode: alpha;
background-color: var(--font-color);
width: 1rem;
height: 1rem;
}
#pocket-logout {
display: inline-flex;
margin-left: .4rem;
}
.item #pocket-edit,
.item #pocket-delete,
.domain .folder-name #pocket-folderDelete,
.item #pocket-fav,
.item #pocket-archive,
.domain .folder-name #pocket-folderArchive,
.type-archives.item #pocket-unarchive,
.type .folder-name #pocket-move,
.domain .folder-name #pocket-move {
display: inline-flex;
}
.domain-articles {
background-image: url(icons/article.svg);
}
.domain-pictures {
background-image: url(icons/picture.svg);
}
.domain-videos {
background-image: url(icons/video.svg);
}
.domain-other {
background-image: url(icons/default.svg);
}
.domain-archives {
background-image: url(icons/archive.svg);
}
.favorite {
background-color: var(--background-color-active);
}
.favorite #pocket-fav,
.type-archives #pocket-archive {
display: none;
}
.favorite #pocket-unfav {
display: inline-block;
}
.type-archives {
text-decoration: line-through;
}
.plain .type-archives,
.domain .type-archives {
display: none;
}