-
Notifications
You must be signed in to change notification settings - Fork 271
A couple of fixes for Morning and Zenburn themes #605
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
/* | ||
Darker theme for Shout. | ||
Has a bit more eye-friendly color scheme and hides some IMO unnecessary features such as | ||
"Leave" and "Submit" buttons. | ||
Morning theme for Shout. | ||
Has a bit more eye-friendly color scheme. | ||
|
||
Installation instructions can be found here | ||
http://shout-irc.com/docs/server/configuration.html#theme | ||
|
@@ -19,7 +18,10 @@ BORDERS #2a323d | |
QUIT #d0907d | ||
*/ | ||
|
||
#windows .chan, #windows .window { | ||
#main, | ||
#chat .sidebar, | ||
#windows .chan, | ||
#windows .window { | ||
background: #333c4a; | ||
} | ||
|
||
|
@@ -36,10 +38,6 @@ QUIT #d0907d | |
color: #cccccc; | ||
} | ||
|
||
#chat .sidebar { | ||
background: #333c4a; | ||
} | ||
|
||
#chat .count { | ||
background-color: #2e3642; | ||
} | ||
|
@@ -114,31 +112,36 @@ QUIT #d0907d | |
border-color: #242a33; | ||
} | ||
|
||
#form .input { | ||
margin-right: 0; | ||
} | ||
|
||
#form #input { | ||
background-color: #2e3642; | ||
border-color: #242a33; | ||
color: #cccccc; | ||
padding-left: 1em !important; | ||
} | ||
|
||
#form #nick { | ||
display: none; | ||
background: #242a33; | ||
color: #CCC; | ||
} | ||
|
||
/* Buttons */ | ||
#chat .show-more-button, | ||
#form #submit, | ||
#windows .header .button { | ||
background: #2e3642; | ||
border-color: #242a33; | ||
color: #CCC; | ||
} | ||
|
||
#chat .show-more-button:hover, | ||
#form #submit:hover, | ||
#windows .header .button:hover { | ||
color: #FFF; | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, I agree with this. It's confusing if a user changes a theme and then can't leave any rooms on mobile. took me ages to figure out this is why there wasn't a leave button. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👏 |
||
|
||
|
||
#chat .header { | ||
color: #99a2b4; | ||
} | ||
/* Hide unnecessary buttons */ | ||
#windows .header .button, | ||
#form #submit { | ||
display: none; | ||
} | ||
|
||
|
||
/* Setup text colors */ | ||
#chat .msg { | ||
|
@@ -197,6 +200,9 @@ QUIT #d0907d | |
} | ||
|
||
@media (max-width: 768px) { | ||
#main { | ||
left: 0; | ||
} | ||
#footer { | ||
left: -220px; | ||
width: 225px; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,10 @@ body { | |
background: #2b2b2b; | ||
} | ||
|
||
#windows .chan, #windows .window { | ||
#main, | ||
#chat .sidebar, | ||
#windows .chan, | ||
#windows .window { | ||
background: #3f3f3f; | ||
} | ||
|
||
|
@@ -57,10 +60,6 @@ body { | |
border-top: 1px solid #000; | ||
} | ||
|
||
#chat .sidebar { | ||
background: #3f3f3f; | ||
} | ||
|
||
#chat .count { | ||
background-color: #434443; | ||
} | ||
|
@@ -134,29 +133,35 @@ body { | |
border-color: #101010; | ||
} | ||
|
||
#form .input { | ||
margin-right: 0; | ||
} | ||
|
||
#form #input { | ||
background-color: #434443; | ||
border-color: #101010; | ||
color: #dcdccc; | ||
padding-left: 1em !important; | ||
} | ||
|
||
#form #nick { | ||
display: none; | ||
background: #101010; | ||
color: #dcdccc; | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Well, it had to be important because javascript sets padding-left directly on the element :D |
||
|
||
#chat .header { | ||
color: #d2d39b; | ||
/* Buttons */ | ||
#chat .show-more-button, | ||
#form #submit, | ||
#windows .header .button { | ||
background: #434443; | ||
border-color: #101010; | ||
color: #dcdccc; | ||
} | ||
|
||
/* Hide unnecessary buttons */ | ||
#windows .header .button, | ||
#form #submit { | ||
display: none; | ||
#chat .show-more-button:hover, | ||
#form #submit:hover, | ||
#windows .header .button:hover { | ||
color: #FFF; | ||
} | ||
|
||
|
||
#chat .header { | ||
color: #d2d39b; | ||
} | ||
|
||
/* Setup text colors */ | ||
|
@@ -212,6 +217,9 @@ body { | |
} | ||
|
||
@media (max-width: 768px) { | ||
#main { | ||
left: 0; | ||
} | ||
#footer { | ||
left: -220px; | ||
width: 225px; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.