question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

The checkbox is too big. How do I make it smaller

See original GitHub issue

I only added in the setting, selectMode: ‘multi’, How do I control the size of the checkbox? please help me! 20191012153619 my settings: settings = { selectMode: 'multi', add: { addButtonContent: '<i class="nb-plus"></i>', createButtonContent: '<i class="nb-checkmark"></i>', cancelButtonContent: '<i class="nb-close"></i>', }, edit: { editButtonContent: '<i class="nb-edit"></i>', saveButtonContent: '<i class="nb-checkmark"></i>', cancelButtonContent: '<i class="nb-close"></i>', }, delete: { deleteButtonContent: '<i class="nb-trash"></i>', confirmDelete: true, }, columns: { id: { title: 'ID', type: 'number', }, firstName: { title: 'First Name', type: 'string', }, lastName: { title: 'Last Name', type: 'string', }, username: { title: 'Username', type: 'string', }, email: { title: 'E-mail', type: 'string', }, age: { title: 'Age', type: 'number', }, }, };

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:6

github_iconTop GitHub Comments

12reactions
hope4555commented, Oct 19, 2019

add this to your SCSS

:host /deep/ .ng2-smart-action-multiple-select{ text-align: center; }

:host /deep/ .ng2-smart-action-multiple-select > input{ width:25px; height:25px; display: unset; }

0reactions
NomanKadercommented, Dec 7, 2022

I have added the above code that have been mentioned above by @hope4555 into the theme.scss file and it work well . 🎉

Read more comments on GitHub >

github_iconTop Results From Across the Web

Can I change the checkbox size using CSS? - Stack Overflow
You can change the font size to make the checkbox slightly larger: font-size: x-large;. Then, you can align the checkbox properly by doing:...
Read more >
How to set checkbox size in HTML/CSS? - GeeksforGeeks
Method 1: The checkbox size can be set by using height and width property. The height property sets the height of checkbox and...
Read more >
Adjusting the SIze of a Format Control Check Box
Right-click the selection, and then click Format Control. On the Size tab, enter measurements for the height and width of the control, or...
Read more >
how do I make the check boxes smaller when creating a form
Then you just grab one of the corners (your mouse cursor will change) and resize the checkbox. If you hold down the shift...
Read more >
How to Make Checkboxes Bigger With CSS
When you create checkboxes on your website forms, browsers automatically display them in a particular size. You have the option to change these...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found