Osclass Support Forums

Osclass plugin support => Attributes Plugins => Topic started by: kriskoyk on September 26, 2022, 09:31:28 PM

Title: Scrollbar for "checkboxes" type attributes
Post by: kriskoyk on September 26, 2022, 09:31:28 PM
Scrollbar can be inserted into "checkboxes" type  attributes?
Title: Re: Scrollbar for "checkboxes" type attributes
Post by: MB Themes on September 27, 2022, 01:48:20 PM
@kriskoyk
Probably yes by setting max-height and overflow-y
Title: Re: Scrollbar for "checkboxes" type attributes
Post by: kriskoyk on September 27, 2022, 07:44:27 PM
In which file are these settings located?
Title: Re: Scrollbar for "checkboxes" type attributes
Post by: MB Themes on September 28, 2022, 09:58:34 AM
It's css / stylesheet.
Title: Re: Scrollbar for "checkboxes" type attributes
Post by: kriskoyk on September 28, 2022, 04:53:19 PM
I added to user.css on line 10 here: #atr-search > :not(.atr-subtype-boxed) ul.atr-ul {display:block!important;border: 1px solid #aaa;  padding: 6px 8px 6px 8px;max-height:200px;overflow-y:auto;}  the " border: 1px solid #aaa; padding: 6px 8px 6px 8px;max-height:200px;overflow-y:auto; "

and on line 82 here: #atr-form .control-group > .controls {display:inline-block;max-width:72%;margin:0;position:relative;border: 1px solid #aaa;  max-height:200px;overflow-y:auto;} the "border: 1px solid #aaa; max-height:200px;overflow-y:auto; which was not there and now works fine

Are these movements correct?

How can I make this box popup?
Title: Re: Scrollbar for "checkboxes" type attributes
Post by: MB Themes on September 28, 2022, 05:05:46 PM
This cannot be done just from paper reading your CSS and from head just guessing what should be done.
Title: Re: Scrollbar for "checkboxes" type attributes
Post by: kriskoyk on September 28, 2022, 06:04:15 PM
Are you talking about the popup box?

Are the other moves I made correct?
Title: Re: Scrollbar for "checkboxes" type attributes
Post by: Tango on September 28, 2022, 07:55:27 PM
@kriskoyk
Lol dude, you need to apply those changes to your live website and see if it works as you want...

CSS = visual design. You can't just write it here and expect anybody to understand what it does or what you mean.