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
Unable to click on radio toggle switch due to the default radio button css being a minimum of 100 Width. Changing this value to 15 works great and allows me to have proper functionality of the Radio Toggle Switch
This did not happen on my instance until i started added more tabs and randomly broke. Redeploying on docker including image removal did not do anything. Unsure what specific action trigged this CSS field to be set to a minimum 100 width. I did try disabling the plex integration on homepage to see if that caused this.
The text was updated successfully, but these errors were encountered:
Unable to click on radio toggle switch due to the default radio button css being a minimum of 100 Width. Changing this value to 15 works great and allows me to have proper functionality of the Radio Toggle Switch
.form-control, .form-material .form-control, .input-group .form-control, .select2-container--default .select2-search--dropdown .select2-search__field, input, select, span.select2-selection.select2-selection--multiple, span.select2-selection.select2-selection--single {
color: #eee;
margin: 0;
border: 0;
height: 36px;
min-width: 100px;
font-size: 15px;
font-weight: 600;
line-height: 1.5;
padding: 0 12px;
border-radius: 3px;
vertical-align: middle;
background: rgba(255, 255, 255, .25);
transition: background .2s;
}
This did not happen on my instance until i started added more tabs and randomly broke. Redeploying on docker including image removal did not do anything. Unsure what specific action trigged this CSS field to be set to a minimum 100 width. I did try disabling the plex integration on homepage to see if that caused this.
The text was updated successfully, but these errors were encountered: