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

Commit

Permalink
1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ivangabriele committed Sep 8, 2019
1 parent 203c34d commit e3313e7
Show file tree
Hide file tree
Showing 13 changed files with 122 additions and 1 deletion.
1 change: 1 addition & 0 deletions dist/_locales/en/messages.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
1 change: 1 addition & 0 deletions dist/background.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

86 changes: 86 additions & 0 deletions dist/content.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
.MattermostUno--hide {
display: none;
}

.MattermostUno-counter {
align-items: baseline;
background-color: rgba(0, 0, 0, 0.05);
border: solid 1px rgba(0, 0, 0, 0.1);
border-radius: 0.5rem;
cursor: pointer;
display: flex;
font-size: 1.2rem;
margin: 0.5rem 0 0.6rem;
max-width: 600px;
padding: 0.4rem 0.75rem 0.35rem;
}
body.MattermostUno--dark .MattermostUno-counter {
background-color: rgba(0, 0, 0, 0.1);
border: solid 1px rgba(255, 255, 255, 0.1);
}
.MattermostUno-counter:hover {
background-color: rgba(0, 0, 0, 0.1);
border: solid 1px rgba(0, 0, 0, 0.25);
}
body.MattermostUno--dark .MattermostUno-counter:hover {
background-color: rgba(0, 0, 0, 0.25);
border: solid 1px rgba(255, 255, 255, 0.5);
}

.MattermostUno-counterAuthors {
margin-right: 0.25rem;
}
.MattermostUno-counterAuthors > img {
border-radius: 0.25rem;
height: 2rem;
margin-right: 0.5rem;
width: 2rem;
}

.MattermostUno-counterLink {
color: rgb(17, 83, 171) !important;
font-weight: 700;
margin-left: 0.25rem;
}
body.MattermostUno--dark .MattermostUno-counterLink {
color: #f1f200 !important;
}

.MattermostUno-counterDescription {
flex-grow: 1;
margin-left: 1rem;
position: relative;
}
.MattermostUno-counterDescriptionOff {
opacity: 0.8;
transition: opacity 0.2s;
}
.MattermostUno-counter:hover .MattermostUno-counterDescriptionOff {
opacity: 0;
}
.MattermostUno-counterDescriptionOn {
bottom: 0;
left: 0;
opacity: 0;
overflow: hidden;
position: absolute;
right: 0;
text-overflow: ellipsis;
top: 0;
transition: opacity 0.2s;
white-space: nowrap;
}
.MattermostUno-counter:hover .MattermostUno-counterDescriptionOn {
opacity: 0.8;
}

.MattermostUno-counterIcon {
color: transparent;
margin: 0 0 0.45rem;
}
.MattermostUno-counter:hover .MattermostUno-counterIcon {
color: rgb(44, 44, 44);
}
body.MattermostUno--dark .MattermostUno-counter:hover .MattermostUno-counterIcon {
color: rgb(211, 211, 211);
}
1 change: 1 addition & 0 deletions dist/content.js

Large diffs are not rendered by default.

Binary file added dist/icons/icon-128x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/icons/icon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/icons/icon-32x32-bw.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/icons/icon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/icons/icon-48x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/icons/icon-501x501.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/icons/icon-96x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions dist/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"manifest_version": 2,
"name": "Mattermost Uno",
"version": "1.5.0",
"description": "Unofficial extension bringing some Slack-like features into Mattermost.",
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"browser_action": {
"default_title": "Enable Mattermost Uno",
"default_icon": "icons/icon-32x32-bw.png"
},
"permissions": [
"activeTab"
],
"icons": {
"16": "icons/icon-16x16.png",
"32": "icons/icon-32x32.png",
"48": "icons/icon-48x48.png",
"96": "icons/icon-96x96.png",
"128": "icons/icon-128x128.png"
},
"default_locale": "en",
"homepage_url": "https://github.com/ivangabriele/mattermost-browser-extension",
"author": {
"name": "Ivan Gabriele",
"email": "ivan.gabriele@gmail.com"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mattermost-browser-extension",
"version": "1.4.4",
"version": "1.5.0",
"description": "Mattermost Uno browsers extension.",
"license": "MIT",
"private": true,
Expand Down

0 comments on commit e3313e7

Please sign in to comment.