Responsive button in new version moves up when the screen is too small

Responsive button in new version moves up when the screen is too small

MadBoyEvoMadBoyEvo Posts: 119Questions: 38Answers: 0

Link to test case:
- https://live.datatables.net/turiwaza/2/edit

Description of problem:
I've noticed that in newest version of DataTables the + sign for repsonsive extension was changed and is now an arrow.

I've noticed that the arrow when the width is fairly small will move on top of the word rather then keep to the left.

Is there a way to force it to stay to the left?
Also is there a way to change it to some other icon?

This question has an accepted answers - jump to answer

Answers

  • MadBoyEvoMadBoyEvo Posts: 119Questions: 38Answers: 0

    PS. When adding entry and you hit preview when in darkmode your text will be black on "black".

  • allanallan Posts: 63,262Questions: 1Answers: 10,423 Site admin
    Answer ✓

    PS. When adding entry and you hit preview when in darkmode your text will be black on "black".

    Thank you! I'll get that fixed :)

    Regarding your question:

    td:first-child {
      white-space: nowrap;
    }
    

    Will keep it on the same line (it is treated just the same way as regular text). This is the updated example.

    Allan

Sign In or Register to comment.