EzerIT / BibleOL

Web-based instruction in Biblical Hebrew and Greek
Other
26 stars 16 forks source link

Hide Yellow Shadow on Exercises Panel and My View Panel #31

Closed tmccormack165 closed 11 months ago

tmccormack165 commented 11 months ago

There are yellow shadows in two places on the system that need to be removed.

The first occurrence is when an exercise is being created:

Screenshot 2023-12-24 at 1 21 43 PM

The second occurrence is when a student is taking an exam or exercise and clicks on "My View":

Screenshot 2023-12-24 at 1 25 47 PM

To remove these shadows I changed the padding-right attribute of .ui-tabs in ol.css:401 and ol.css:405 from 5px to 0px:

.ui-tabs .ui-tabs-nav .ui-state-default {
  border: none;
  padding-right: 0px;
}
.ui-tabs .ui-tabs-nav .ui-state-active {
  border: none;
  padding-right: 0px;
}

The edit deletes the yellow shadows:

Screenshot 2023-12-24 at 1 29 23 PM Screenshot 2023-12-24 at 1 28 39 PM