Advertisement
Guest User

Untitled

a guest
Oct 28th, 2024
9
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. /* hide scrollbar */
  2. .deck-row.svelte-y0gsq3.svelte-y0gsq3 {
  3. scrollbar-width: none;
  4. }
  5.  
  6. /* hide translate button */
  7. .timeline-translate-button {
  8. display: none;
  9. }
  10.  
  11. /* hide separator (·) after the date */
  12. .timeline__date:not(:last-child):after {
  13. display: none;
  14. }
  15.  
  16. /* hide notification tab filters */
  17. .notifications-filter-display {
  18. display: none;
  19. }
  20.  
  21. /* adds a border between the header and the first tweet */
  22. .deck-heading {
  23. border-bottom: 1px solid #4c5669 !important;
  24. }
  25.  
  26. /* eliminates a 1px border the columns have for some reason */
  27. .deck-row {
  28. border: 0 !important;
  29. }
  30.  
  31. /* compose button styling */
  32. .publish-sp-open {
  33. right: unset;
  34. left: 72px;
  35. }
  36.  
  37. /* hides the content of the tweet that's being replied */
  38. .timeline__column--reply .timeline-warn-wrap {
  39. display: none;
  40. }
  41.  
  42. /* hides pinned post in columns */
  43. .timeline__item.timeline__item--compact:has(.sticky-text) {
  44. display: none;
  45. }
  46.  
  47. /* unhides pinned post in profile view */
  48. .profile .timeline__item.timeline__item--compact:has(.sticky-text) {
  49. display: block;
  50. }
  51.  
  52. /* hides modal scrollbars */
  53. .decks .modal-page-content {
  54. scrollbar-width: none;
  55. border-radius: 10px;
  56. }
  57.  
  58. /* decreases the space between tab header and the first tweet */
  59. .timeline {
  60. padding-top: 8px
  61. }
  62.  
  63. /* compose box styling */
  64. .publish-wrap {
  65. border: 1px solid var(--border-color-1);
  66. padding: 16px;
  67. border-radius: 10px;
  68. max-width: 600px;
  69. }
  70.  
  71. /* compose box styling */
  72. .publish-group {
  73. left: 136px;
  74. bottom: 20px;
  75. }
  76.  
  77. /* hides the refresh animation */
  78. .refresher {
  79. display: none !important;
  80. }
  81.  
  82. /* fixes missing right padding in composer box */
  83. .editor-column.svelte-12ph8td.svelte-12ph8td {
  84. padding: 12px;
  85. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement