Skip to content
This repository was archived by the owner on Oct 21, 2021. It is now read-only.

Commit e3313e7

Browse files
committed
1.5.0
1 parent 203c34d commit e3313e7

13 files changed

+122
-1
lines changed

dist/_locales/en/messages.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

dist/background.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/content.css

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
.MattermostUno--hide {
2+
display: none;
3+
}
4+
5+
.MattermostUno-counter {
6+
align-items: baseline;
7+
background-color: rgba(0, 0, 0, 0.05);
8+
border: solid 1px rgba(0, 0, 0, 0.1);
9+
border-radius: 0.5rem;
10+
cursor: pointer;
11+
display: flex;
12+
font-size: 1.2rem;
13+
margin: 0.5rem 0 0.6rem;
14+
max-width: 600px;
15+
padding: 0.4rem 0.75rem 0.35rem;
16+
}
17+
body.MattermostUno--dark .MattermostUno-counter {
18+
background-color: rgba(0, 0, 0, 0.1);
19+
border: solid 1px rgba(255, 255, 255, 0.1);
20+
}
21+
.MattermostUno-counter:hover {
22+
background-color: rgba(0, 0, 0, 0.1);
23+
border: solid 1px rgba(0, 0, 0, 0.25);
24+
}
25+
body.MattermostUno--dark .MattermostUno-counter:hover {
26+
background-color: rgba(0, 0, 0, 0.25);
27+
border: solid 1px rgba(255, 255, 255, 0.5);
28+
}
29+
30+
.MattermostUno-counterAuthors {
31+
margin-right: 0.25rem;
32+
}
33+
.MattermostUno-counterAuthors > img {
34+
border-radius: 0.25rem;
35+
height: 2rem;
36+
margin-right: 0.5rem;
37+
width: 2rem;
38+
}
39+
40+
.MattermostUno-counterLink {
41+
color: rgb(17, 83, 171) !important;
42+
font-weight: 700;
43+
margin-left: 0.25rem;
44+
}
45+
body.MattermostUno--dark .MattermostUno-counterLink {
46+
color: #f1f200 !important;
47+
}
48+
49+
.MattermostUno-counterDescription {
50+
flex-grow: 1;
51+
margin-left: 1rem;
52+
position: relative;
53+
}
54+
.MattermostUno-counterDescriptionOff {
55+
opacity: 0.8;
56+
transition: opacity 0.2s;
57+
}
58+
.MattermostUno-counter:hover .MattermostUno-counterDescriptionOff {
59+
opacity: 0;
60+
}
61+
.MattermostUno-counterDescriptionOn {
62+
bottom: 0;
63+
left: 0;
64+
opacity: 0;
65+
overflow: hidden;
66+
position: absolute;
67+
right: 0;
68+
text-overflow: ellipsis;
69+
top: 0;
70+
transition: opacity 0.2s;
71+
white-space: nowrap;
72+
}
73+
.MattermostUno-counter:hover .MattermostUno-counterDescriptionOn {
74+
opacity: 0.8;
75+
}
76+
77+
.MattermostUno-counterIcon {
78+
color: transparent;
79+
margin: 0 0 0.45rem;
80+
}
81+
.MattermostUno-counter:hover .MattermostUno-counterIcon {
82+
color: rgb(44, 44, 44);
83+
}
84+
body.MattermostUno--dark .MattermostUno-counter:hover .MattermostUno-counterIcon {
85+
color: rgb(211, 211, 211);
86+
}

dist/content.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/icons/icon-128x128.png

75.6 KB
Loading

dist/icons/icon-16x16.png

7.17 KB
Loading

dist/icons/icon-32x32-bw.png

8.25 KB
Loading

dist/icons/icon-32x32.png

11.4 KB
Loading

dist/icons/icon-48x48.png

18.6 KB
Loading

dist/icons/icon-501x501.png

994 KB
Loading

dist/icons/icon-96x96.png

46.9 KB
Loading

dist/manifest.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"manifest_version": 2,
3+
"name": "Mattermost Uno",
4+
"version": "1.5.0",
5+
"description": "Unofficial extension bringing some Slack-like features into Mattermost.",
6+
"background": {
7+
"persistent": false,
8+
"scripts": [
9+
"background.js"
10+
]
11+
},
12+
"browser_action": {
13+
"default_title": "Enable Mattermost Uno",
14+
"default_icon": "icons/icon-32x32-bw.png"
15+
},
16+
"permissions": [
17+
"activeTab"
18+
],
19+
"icons": {
20+
"16": "icons/icon-16x16.png",
21+
"32": "icons/icon-32x32.png",
22+
"48": "icons/icon-48x48.png",
23+
"96": "icons/icon-96x96.png",
24+
"128": "icons/icon-128x128.png"
25+
},
26+
"default_locale": "en",
27+
"homepage_url": "https://github.com/ivangabriele/mattermost-browser-extension",
28+
"author": {
29+
"name": "Ivan Gabriele",
30+
"email": "[email protected]"
31+
}
32+
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mattermost-browser-extension",
3-
"version": "1.4.4",
3+
"version": "1.5.0",
44
"description": "Mattermost Uno browsers extension.",
55
"license": "MIT",
66
"private": true,

0 commit comments

Comments
 (0)