// ==UserScript==
// @name LZT transparent chat
// @namespace http://tampermonkey.net/
// @version 1.5
// @description Данное расширение делает прозрачный фон чата
// @author ChatGPT , aff
// @match *https://zelenka.guru/*
// @match *https://lzt.market/*
// @grant GM_addStyle
// @license MIT
// ==/UserScript==
(function() {
'use strict';
GM_addStyle(`
.chat2-message-fromSelf.lztng-1hpx4rn .chat2-message-block.lztng-1hpx4rn {
background: #373737;
background-color: rgba(0, 0, 0, .2);
}
.chat2-floating.lztng-1w079ak {
border: 1px solid #363636;
box-shadow: 0 5px 26px 0 rgba(30, 30, 30, 0);
border-radius: 10px;
background: rgba(0, 0, 0, .1);
position: fixed;
z-index: 5666;
}
.chat2-input.lztng-62tbes.lztng-62tbes {
background-color: rgba(0, 0, 0, .01);
height: 38px;
line-height: 38px;
border: 0 none black;
color: rgb(214, 214, 214);
padding: 0 75px 0 13px;
border-radius: 0 0 10px 10px;
width: calc(100% - 88px);
}
.chat2-message-block.lztng-1hpx4rn.lztng-1hpx4rn {
background: #2e2e2e;
border-radius: 13px;
background-color: rgba(0, 0, 0, .1);
padding: 8px 12px;
display: flex;
flex-direction: column;
min-width: 0;
}
.chat2-message-tagged.lztng-1hpx4rn .chat2-message-block.lztng-1hpx4rn {
background: linear-gradient(90deg, rgb(0 0 0 / 20%) 0%, rgb(18, 76, 50) 100%);
}
.chat2-button.lztng-co1g7o {
position: fixed;
bottom: 15px;
right: 15px;
width: 60px;
height: 60px;
background: rgb(48 48 48);
border-radius: 50%;
background-color: rgba(0, 0, 0, .0);
text-align: center;
cursor: pointer;
}
.chat2-widget-inner.lztng-1nmmi2z .chat2-header.lztng-1nmmi2z {
background: #303030;
border-radius: 9px 9px 0 0;
background-color: rgba(0, 0, 0, .01);
}
.chat2-input.lztng-1nmmi2z.lztng-1nmmi2z {
height: 38px;
line-height: 38px;
background: rgb(39, 39, 39);
border: 0 none black;
color: rgb(214, 214, 214);
padding: 0 75px 0 13px;
background-color: rgba(0, 0, 0, .01);
border-radius: 0 0 10px 10px;
width: calc(100% - 88px);
}
.chat2-button.lztng-1a57w7i {
position: fixed;
bottom: 15px;
right: 15px;
width: 60px;
height: 60px;
background: rgba(0, 0, 0, .0);
border-radius: 50%;
text-align: center;
cursor: pointer;
}
.chat2-widget-inner.lztng-1oj7jre .chat2-header.lztng-1oj7jre {
background: #303030;
border-radius: 9px 9px 0 0;
background-color: rgba(0, 0, 0, .0);
}
.chat2-input.lztng-1oj7jre.lztng-1oj7jre {
height: 38px;
line-height: 38px;
background: rgb(39, 39, 39);
border: 0 none black;
color: rgb(214, 214, 214);
padding: 0 75px 0 13px;
border-radius: 0 0 10px 10px;
width: calc(100% - 88px);
outline: none;
background-color: rgba(0, 0, 0, .0);
}
`);
})();