ICQ Gallery Expander

view more video and photos

目前為 2021-10-25 提交的版本,檢視 最新版本

  1. /* ==UserStyle==
  2. @name ICQ Gallery Expander
  3. @namespace greasyfork.org/en/users/781396-yad
  4. @version 1.0.0
  5. @description view more video and photos
  6. @author YAD
  7. @advanced dropdown time "Time/Label" {
  8. 1 "ON*" <<<EOT 1 EOT;
  9. 2 "OFF" <<<EOT 0 EOT;
  10. }
  11. @var range trans "Thumbnail Size" [96,40,296,2,"px"]
  12. ==/UserStyle== */
  13. @-moz-document domain("web.icq.com") {
  14. .im-gallery {
  15. position: fixed;
  16. }
  17. .im-gallery-preview__info {
  18. opacity: /*[[time]]*/
  19. }
  20. .im-gallery-preview {
  21. width: var(--size);
  22. height:var(--size);
  23. }
  24. :root {
  25. --size:/*[[trans]]*/!important;
  26. }
  27. }