You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mojo 2.7.0.0 SQL and Mojo skin bootswatch-darkly v2.7
The Better Image Gallery Folder link text is not visible. I adjusted the style as below to correct it on my end..
Mojo 2.7.0.0 SQL and Mojo skin bootswatch-darkly v2.7
The Better Image Gallery Folder link text is not visible. I adjusted the style as below to correct it on my end..
Original Style
.big__folder a { -webkit-box-align: center; -ms-flex-align: center; align-items: center; border: 1px solid #ddd; border-radius: 3px; color: #222; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-flow: column; flex-flow: column; height: 100%; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; left: 15px; line-height: 100%; padding: 15px; position: absolute; right: 15px; }
Removing the color: #222 fixed it like below
.big__folder a { -webkit-box-align: center; -ms-flex-align: center; align-items: center; border: 1px solid #ddd; border-radius: 3px; /* color: #222; */ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-flow: column; flex-flow: column; height: 100%; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; left: 15px; line-height: 100%; padding: 15px; position: absolute; right: 15px; }
The text was updated successfully, but these errors were encountered: