【Misskey】フォローボタンとメニューを離すカスタムCSS

  1. /* フォローボタンとメニューを離す */
  2. .ftskorzw > .main > .profile > .main > .banner-container {
  3. .actions {
  4. width: 100%;
  5. height: 100%;
  6. position: relative;
  7. top: 0 !important;
  8. left: 0 !important;
  9. padding: 0 !important;
  10. background: transparent !important;
  11. backdrop-filter: none !important;
  12.  
  13. button.menu._button,
  14. button._button.x88qx.xfS58.koudoku {
  15. position: absolute;
  16. right: 12px;
  17. }
  18. button.menu._button {
  19. bottom: 12px;
  20. -webkit-backdrop-filter: var(--blur, blur(8px));
  21. backdrop-filter: var(--blur, blur(8px));
  22. background: rgba(0,0,0,.2);
  23. border-radius: 50%;
  24. }
  25. button._button.x88qx.xfS58.koudoku {
  26. top: 12px;
  27. }
  28. }
  29. }