Created
July 7, 2017 21:27
-
-
Save NickCraver/7bad45b449019599bfd119038ff59ed9 to your computer and use it in GitHub Desktop.
My Stylus theme for Stack Exchange MiniProfiler and Chat
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
@-moz-document domain("stackoverflow.com"), domain("stackexchange.com"), domain("serverfault.com"), domain("askubuntu.com"), domain("stackapps.com"), domain("superuser.com") { | |
.profiler-result tr[style*='display: block;'] { | |
display: table-row !important; | |
} | |
.profiler-result th[style*='display: block;'], .profiler-result td[style*='display: block;'] { | |
display: table-cell!important; | |
} | |
} | |
@-moz-document domain("chat.meta.stackexchange.com"), domain("chat.stackexchange.com"), domain("chat.stackoverflow.com") { | |
body { | |
background: #222; | |
} | |
#debug-message-container { | |
display: none; | |
} | |
#chat-body .profiler-results { | |
display: none; | |
} | |
#chat { | |
padding-bottom: 80px; | |
} | |
#chat-body #searchbox, #transcript-body #searchbox { | |
width: 150px; | |
padding: 3px; | |
} | |
#room-tags { | |
margin-bottom: 3px; | |
} | |
.tag { | |
border-radius: 5px; | |
} | |
div.message.reply-parent, div.message.reply-child { | |
background-color: #666; | |
border-radius: 10px; | |
} | |
.messages { | |
border: none; | |
color: #eee; | |
border-radius: 10px; | |
padding: 5px 0px 5px 0px; | |
background-color: #444; /*#f0f0f0;*/ | |
} | |
.mine .messages { | |
border: none; | |
background-color: #32445d; | |
} | |
.message.pending, .message.posted, .message.neworedit { | |
color: #fff; | |
} | |
.mention { | |
background-color: #dc5d5d; | |
border-radius: 5px; | |
padding: 0 4px; | |
} | |
a.signature { | |
color: #eee; | |
} | |
.username.moderator { | |
color: rgb(105, 162, 202); | |
} | |
.flair { | |
color: #eee; | |
} | |
#footer-logo { | |
display: none; | |
} | |
#input-area { | |
background: #282828; | |
padding-top: 0px !important; | |
padding-bottom: 0px !important; | |
height: 75px; | |
} | |
#input { | |
box-shadow: none; | |
border: none; | |
background-color: #888; | |
border-radius: 5px; | |
} | |
#input:focus { | |
outline: none; | |
} | |
a, #input-area a, .more, .roomcard h3, .usercard h3 { | |
color: rgb(79, 178, 247); | |
} | |
.button { | |
background: #005999; | |
color: white; | |
border-radius: 5px; | |
} | |
.button:not(.disabled) { | |
box-shadow: none; | |
text-shadow: none; | |
} | |
.monologue.catchup-marker-1 { | |
border-top-color: transparent; | |
} | |
.monologue .timestamp { | |
border-radius: 15px; | |
} | |
div.message:hover, .timestamp:hover+div.message { | |
border: 1px dotted #ccc; | |
} | |
.avatar img { | |
border-radius: 15px; | |
} | |
.present-user .user-gravatar32 { | |
height: 24px; | |
width: 24px; | |
} | |
div#room-files>div>ul>li.file-thumbnail { | |
background: #444; | |
border: solid 1px #444; | |
} | |
div#room-files>div>ul>li.file-thumbnail .quick-delete { | |
background: #444; | |
} | |
ul#my-rooms>li>a { | |
font-weight: normal; | |
font-size: 13px; | |
} | |
#sidebar { | |
color: #eee; | |
} | |
#sidebar #info #sidebar-menu, #present-users, ul#my-rooms, div#starred-posts>div>ul>li { | |
border-bottom: 1px solid #f5f5f5; | |
} | |
#sidebar #info #roomtitle { | |
text-shadow: none; | |
} | |
#sidebar #info #roomdesc { | |
font-style: normal; | |
font-size: 10px; | |
} | |
.sidebar-widget > a[href="#"] { | |
display: none; | |
} | |
.sidebar-widget > iframe { | |
width: 60%; | |
float: left; | |
} | |
#submit-room-file-upload, #reset-room-file-upload { | |
margin: 0; | |
} | |
.system-message-container .system-message { | |
color: #aaa !important; | |
font-weight: normal; | |
} | |
ul#my-rooms>li.activity-0, ul#my-rooms>li.activity-1, ul#my-rooms>li.activity-2, ul#my-rooms>li.activity-3 { | |
color: #fff; | |
} | |
ul#my-rooms .last-message { | |
color: #ddd; | |
} | |
#active-user img { | |
opacity: 0.5; | |
} | |
.ob-post { | |
border-radius: 10px; | |
} | |
#input:focus { | |
background: #bbb; | |
} | |
div.message .meta { | |
background-color: #555; | |
border-radius: 10px; | |
padding: 0 5px; | |
} | |
div.message:hover, .timestamp:hover+div.message { | |
border: solid 1px transparent; | |
border-radius: 10px; | |
background: #666; | |
} | |
.ob-wikipedia, .ob-amazon, .ob-gist, .ob-message, .ob-lpadbug, .ob-manpage, .ob-blog, .ob-exception, .ob-anime, .ob-github { | |
border-radius: 10px; | |
} | |
.msg-small { | |
color: #888; | |
} | |
.username.owner { | |
font-style: normal; | |
} | |
.monologue .timestamp { | |
margin-right: 5px; | |
} | |
.monologue.catchup-marker-1, .monologue.catchup-marker-2, .monologue.catchup-marker-3 { | |
border-top-color: #282828; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment