apply only when maximized

This commit is contained in:
nicfreeman1209 2021-04-01 22:37:48 +01:00
parent b936cd2286
commit 3c849942fe
1 changed files with 8 additions and 1 deletions

View File

@ -231,7 +231,7 @@ ul {
}
ul {
li {
.icon { width: 5.1vh; }
.icon { width: 6vh; }
.role { line-height: 100%; }
.name { font-size: 100%; }
.player { font-size: 100%; }
@ -240,6 +240,13 @@ ul {
}
}
/** trim icon size on maximized one-column sheet **/
@media screen and (max-width: 991.98px) {
.characters .modal.maximized ul li .icon {
width: 5.1vh;
}
}
/** hide players when town square is set to "public" **/
#townsquare.public ~ .characters .modal .player {
display: none;