0
0
mirror of https://github.com/Maks1mS/userscripts.git synced 2024-12-23 16:22:59 +03:00

[VKBigChatStickers] Increase size inside sticker menu

This commit is contained in:
Maxim Slipenko 2023-08-31 18:24:27 +03:00 committed by GitHub
parent 15f1bfbfd3
commit 290120ba09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
// ==UserScript== // ==UserScript==
// @name VK Big Chat Stickers // @name VK Big Chat Stickers
// @namespace https://github.com/Maks1mS/userscripts // @namespace https://github.com/Maks1mS/userscripts
// @version 0.1 // @version 0.2
// @description Increases size of chat stickers // @description Increases size of chat stickers
// @author Maxim Slipenko // @author Maxim Slipenko
// @match https://vk.com/* // @match https://vk.com/*
@ -17,6 +17,17 @@
width: 256px; width: 256px;
height: 256px; height: 256px;
} }
.StickersEmojiKeyboard-module__in--GCR5_:has(.StickersKeyboardGroupItem-module__in--CKjkC.StickersKeyboardGroupItem-module__inActive--iqstp > div[aria-label="Стикеры чата"]) .StickersKeyboard-module__keyboard--HhSGu.View-module__panel--WNKKi.View-module__panelSwitched--hg3jP {
--stickers-columns: 2 !important;
--stickers-size: 172px !important;
}
.StickersEmojiKeyboard-module__in--GCR5_:has(.StickersKeyboardGroupItem-module__in--CKjkC.StickersKeyboardGroupItem-module__inActive--iqstp > div[aria-label="Стикеры чата"]) .Sticker-module__sticker--CtZU6.Sticker-module__tappable--M4lob.StickersKeyboardRow-module__sticker--m7W0R {
--sticker-size: 172px !important;
--sticker-scale: 2 !important;
width: 172px !important;
height: 172px !important;
}
`; `;
GM_addStyle(style) GM_addStyle(style)