Changes the notification popup width in the top right corner when updating show progress via the dramalist tab. No more waiting for the notifications to pop!
Narrow MyDramaList notification popup by shelxor
Details
Authorshelxor
LicenseNo License
Categoryhttps://mydramalist.com
Created
Updated
Size986 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Narrow MyDramaList notification popup
@version 20230718.04.53
@namespace ?
==/UserStyle== */
@-moz-document domain("mydramalist.com") {
.el-notification.right {
right: 16px;
}
.el-notification {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 175px;
padding: 14px 26px 14px 13px;
border-radius: 8px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border: 1px solid #ebeef5;
position: fixed;
background-color: #fff;
-webkit-box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
-webkit-transition: opacity .3s,left .3s,right .3s,top .4s,bottom .3s,-webkit-transform .3s;
transition: opacity .3s,left .3s,right .3s,top .4s,bottom .3s,-webkit-transform .3s;
transition: opacity .3s,transform .3s,left .3s,right .3s,top .4s,bottom .3s;
transition: opacity .3s,transform .3s,left .3s,right .3s,top .4s,bottom .3s,-webkit-transform .3s;
overflow: hidden;
}
}