AWBW: Color-Blinded-Friendly Status Icon

Make respective status icon unique shape that looks just like discord

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

/* ==UserStyle==
@name         AWBW: Color-Blinded-Friendly Status Icon
@version      20240130.19.14
@namespace    https://userstyles.world/user/hollen9
@description  Make respective status icon unique shape that looks just like discord
@author       hollen9
@license      MIT
==/UserStyle== */

@-moz-document domain("amarriner.com") {
span.dot_yellow::before {
    content: "" !important;
    height: 4px !important;
    width: 4px !important;
    border-radius: 50% !important;
    position: absolute !important;
    top: 10px !important;
    left: 12px !important;
    box-shadow: 2px 2px 0 0 #111 !important;
}


span.dot_yellow {
    height: 6px !important;
    width: 6px !important;
    background-color: yellow !important;
    border: solid 0px #000000 !important;
    border-radius: 50% !important;
    display: inline-block !important;
    box-shadow: 0px 0px 0 0.7px #111 !important;
}

span.dot_gray::before {
    content: "" !important;
    height: 4px !important;
    width: 4px !important;
    border-radius: 50% !important;
    position: absolute !important;
    top: 10px !important;
    left: 12px !important;
    box-shadow: 3px 3px 0 -0.3px #EEE !important;
}

span.dot_red::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 14px;
    width: 4px;
    height: 2px;
    background: #111;
    border-radius: 15%;
}

.player-activity-status.dot_yellow::before,
.player-activity-status.dot_gray::before,
.player-activity-status.dot_red::before{
    top: -2px !important;
    left: -2px !important;
}


}