Last active
October 5, 2023 14:04
-
-
Save hogashi/51fd69f2ede034f839155a2d9795858b to your computer and use it in GitHub Desktop.
tweetdeck show card title css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* リンクカードにタイトル出す */ | |
article [data-testid*="card"] a[role="link"][aria-label]::after { | |
content: attr(aria-label); | |
border: 1px solid rgb(47, 51, 54); | |
border-top: 0; | |
padding: 7px; | |
color: rgb(220, 220, 220); | |
word-break: break-all; | |
font: 14px -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif; | |
} | |
article [data-testid*="card"] a[role="link"][aria-label] div:has([dir="ltr"]) { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment