willianmano / moodle-theme_moove

A Moodle Boost child theme
GNU General Public License v3.0
171 stars 157 forks source link

Course options in "My coures" appear behind the course card from the row below #412

Open MagaliLC opened 1 year ago

MagaliLC commented 1 year ago

The course options ("Star this course" and "Remove from view") in "My courses" appear behind other course cards.

When there are two or more rows of courses:

  1. Go to "My courses"
  2. Click on the three dots on the right of a course card
  3. You can see that the options appear behind the card which is just below the course you want to remove from view or rate

The options should appear above the course card from the second row

image

patrickthibaudeau commented 1 year ago

If this can help anyone, as a quick fix, I added the following to _general.scss:

// Fix for Dropdown menu on dashboard cards // This puts the dropdown menu left of the button (dots) .card-deck.dashboard-card-deck { .dropdown-menu.dropdown-menu-right.show { will-change: transform !important; position: absolute !important; transform: translate3d(-190px, -25px, 0px) !important; top: 0px !important; left: 0px !important; } }