Created
May 22, 2017 16:40
-
-
Save goto-bus-stop/a08c69c042b6a45abd9534babda96cd0 to your computer and use it in GitHub Desktop.
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
.is-guest { | |
& #header-panel-bar { | |
& #chat-button { | |
width: 33%; | |
& span { | |
display: none; | |
} | |
} | |
& #users-button { | |
left: 33%; | |
width: 34%; | |
} | |
& #waitlist-button { | |
left: 67%; | |
width: 33%; | |
} | |
& #friends-button { | |
display: none; | |
} | |
} | |
& #user-lists { | |
/* even the staff button doesn't work for guest users! */ | |
@nest & .button.staff, & .button.ignored { | |
display: none; | |
} | |
} | |
& #footer-user { | |
& .signup { | |
width: 40%; | |
} | |
& .signup.login { | |
margin-left: calc(40% + 1px); | |
width: calc(40% - 1px); | |
background: #555d70; | |
} | |
& .buttons { | |
display: block; | |
& .button { | |
display: none; | |
} | |
& .button.extplug-guest-settings { | |
display: block; | |
margin-left: 80%; | |
} | |
} | |
} | |
& #user-menu .item:not(.settings):not(.extplug-plugins) { | |
display: none; | |
} | |
& #room-bar { | |
& .extplug-room-bar-overlay { | |
height: inherit; | |
width: inherit; | |
position: absolute; | |
z-index: 10; | |
} | |
} | |
} |
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
.is-guest #header-panel-bar #friends-button { | |
display: none; | |
} | |
.is-guest #header-panel-bar #waitlist-button { | |
left: 67%; | |
width: 33%; | |
} | |
.is-guest #header-panel-bar #users-button { | |
left: 33%; | |
width: 34%; | |
} | |
.is-guest #room-bar { | |
& .extplug-room-bar-overlay { | |
height: inherit; | |
width: inherit; | |
position: absolute; | |
z-index: 10; | |
} | |
} | |
.is-guest #user-menu .item:not(.settings):not(.extplug-plugins) { | |
display: none; | |
} | |
.is-guest #footer-user { | |
& .signup { | |
width: 40%; | |
} | |
& .signup.login { | |
margin-left: calc(40% + 1px); | |
width: calc(40% - 1px); | |
background: #555d70; | |
} | |
& .buttons { | |
display: block; | |
& .button { | |
display: none; | |
} | |
& .button.extplug-guest-settings { | |
display: block; | |
margin-left: 80%; | |
} | |
} | |
} | |
.is-guest #user-lists { | |
/* even the staff button doesn't work for guest users! */ | |
@nest & .button.staff, & .button.ignored { | |
display: none; | |
} | |
}.is-guest { | |
} | |
.is-guest #header-panel-bar { | |
} | |
.is-guest #header-panel-bar #chat-button { | |
width: 33%; | |
} | |
.is-guest #header-panel-bar #chat-button span { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment