Last active
April 10, 2024 18:35
-
-
Save fabricionaweb/48d5fc6377bfc3d5eef26a70ac7de898 to your computer and use it in GitHub Desktop.
some css for thelounge, small changes
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
/* remove shadow */ | |
.window { | |
box-shadow: none; | |
} | |
/* remove logo */ | |
.logo-container { | |
display: none; | |
} | |
/* fix search position after remove logo */ | |
.jump-to-input { | |
margin-top: 2px; | |
} | |
/* clock at right */ | |
#chat .time { | |
order: 2; opacity: 0.4; | |
} | |
/* even spaces after move clock */ | |
#chat .time, #chat .from, #chat .content { | |
padding: 3px 6px; | |
} | |
/* disable line between names and message */ | |
#chat .content { | |
border-left: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment