aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/msteams/service.css
diff options
context:
space:
mode:
authorLibravatar Bennett <hello@vantezzen.io>2020-09-22 20:56:48 +0200
committerLibravatar GitHub <noreply@github.com>2020-09-22 19:56:48 +0100
commit6f5e4a00588aefdda7a5a1cfe70935870e7e234a (patch)
tree9e29aa7aa0620a1a4a968ff8739b4b8ba96791a9 /recipes/msteams/service.css
parentUpdated logos for Outlook/OWA (diff)
downloadferdium-recipes-6f5e4a00588aefdda7a5a1cfe70935870e7e234a.tar.gz
ferdium-recipes-6f5e4a00588aefdda7a5a1cfe70935870e7e234a.tar.zst
ferdium-recipes-6f5e4a00588aefdda7a5a1cfe70935870e7e234a.zip
Unpack recipes and update recipes icons (#292)
Co-authored-by: Amine Mouafik <amine@mouafik.fr>
Diffstat (limited to 'recipes/msteams/service.css')
-rw-r--r--recipes/msteams/service.css63
1 files changed, 63 insertions, 0 deletions
diff --git a/recipes/msteams/service.css b/recipes/msteams/service.css
new file mode 100644
index 0000000..fdaeac6
--- /dev/null
+++ b/recipes/msteams/service.css
@@ -0,0 +1,63 @@
1notification-banner {
2 display: none !important;
3}
4.desktop-capturer-selection {
5 position: fixed;
6 top: 0;
7 left: 0;
8 width: 100%;
9 height: 100vh;
10 background: rgba(30,30,30,.75);
11 color: #fff;
12 z-index: 10000000;
13 display: flex;
14 align-items: center;
15 justify-content: center;
16}
17.desktop-capturer-selection__scroller {
18 width: 100%;
19 max-height: 100vh;
20 overflow-y: auto;
21}
22.desktop-capturer-selection__list {
23 max-width: calc(100% - 100px);
24 margin: 50px;
25 padding: 0;
26 display: flex;
27 flex-wrap: wrap;
28 list-style: none;
29 overflow: hidden;
30 justify-content: center;
31}
32.desktop-capturer-selection__item {
33 display: flex;
34 margin: 4px;
35}
36.desktop-capturer-selection__btn {
37 display: flex;
38 flex-direction: column;
39 align-items: stretch;
40 width: 145px;
41 margin: 0;
42 border: 0;
43 border-radius: 3px;
44 padding: 4px;
45 background: #252626;
46 text-align: left;
47 transition: background-color .15s, box-shadow .15s;
48}
49.desktop-capturer-selection__btn:hover,
50.desktop-capturer-selection__btn:focus {
51 background: rgba(98,100,167,.8);
52}
53.desktop-capturer-selection__thumbnail {
54 width: 100%;
55 height: 81px;
56 object-fit: cover;
57}
58.desktop-capturer-selection__name {
59 margin: 6px 0 6px;
60 white-space: nowrap;
61 text-overflow: ellipsis;
62 overflow: hidden;
63} \ No newline at end of file