?
avatar brianteeman
brianteeman
16 Sep 2019

Is it the intended behaviour that as soon as the screen width drops below 1200px that the option and help buttons are no longer separated from the other toolbar buttons and floated right?

image

avatar brianteeman brianteeman - open - 16 Sep 2019
avatar joomla-cms-bot joomla-cms-bot - change - 16 Sep 2019
Labels Added: ?
avatar joomla-cms-bot joomla-cms-bot - labeled - 16 Sep 2019
avatar brianteeman
brianteeman - comment - 16 Sep 2019

and the same question for search and filters
image

avatar brianteeman
brianteeman - comment - 14 Oct 2019

anyone?

avatar infograf768
infograf768 - comment - 16 Oct 2019

For Options/Help, CSS is

@media (max-width: 1199.98px) {
  .btn-toolbar > joomla-toolbar-button,
  .btn-toolbar > .btn-group {
    margin-left: 0 !important;
    margin-right: 0.75rem;
    margin-bottom: 0.75rem; } }

which margin-left overrides ml-auto

For Search and Filters it is

@media (max-width: 1199.98px) {
  .js-stools {
    justify-content: flex-start; }. // Instead of flex-end
    .js-stools .js-stools-container-bar .btn-toolbar {
      /*! justify-content: flex-start; */ } }

Looks like we have no intermediary max-width between 1199.98px and 575.98px (for example 991.98px)

One aspect to consider and makes it hard to decide the max-width is the change in available width when the admin menu is toggled.

avatar brianteeman brianteeman - change - 11 Apr 2020
Status New Closed
Closed_Date 0000-00-00 00:00:00 2020-04-11 18:22:44
Closed_By brianteeman
avatar brianteeman brianteeman - close - 11 Apr 2020
avatar brianteeman
brianteeman - comment - 11 Apr 2020

Closed as no longer an issue

Add a Comment

Login with GitHub to post a comment