【Misskey】ピン留めされたノートを横スクロール表示するカスタムCSS

  1. /* ピン留めされたノートを横スクロール表示 */
  2. .contents._gaps > div._gaps {
  3. display: flex;
  4. flex-direction: row;
  5. align-items: start;
  6. overflow-x: auto;
  7. -webkit-overflow-scrolling: touch;
  8. scroll-snap-type: x mandatory;
  9. div.xcSej {
  10. min-width: 93% !important;
  11. scroll-snap-align: start;
  12. /* 高さを制限
  13. div.xDn7E {
  14. header + div > div {
  15. overflow-y: auto;
  16. max-height: 200px;
  17. }
  18. }*/
  19. /* リアクションを非表示 */
  20. div.xlT1y { display: none; }
  21. }
  22. }