Only shows avatar until you hover the conversation list.
Minimized Conversation List Google Messages by shiirosan
Details
Authorshiirosan
LicenseMIT
Categorymessages.google.com
Created
Updated
Size742 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Only shows avatar until you hover the conversation list. Speed can be changed in source code.
Source code
/* ==UserStyle==
@name Minimized Conversation List Google Messages
@namespace github.com/shiirosan
@version 1.0.0
@description Only shows avatar until you hover the conversation list
@author ShiiroSan
==/UserStyle== */
@-moz-document domain("messages.google.com") {
:root {
--hover-animation-speed: 0.35s;
}
mw-main-nav.main-nav:hover {
width: 340px;
min-width: 340px;
transition: var(--hover-animation-speed);
-webkit-transition: var(--hover-animation-speed);
}
mw-main-nav.main-nav {
width: 90px;
min-width: 90px;
transition: var(--hover-animation-speed);
-webkit-transition: var(--hover-animation-speed);
}
}