Best Answer

Change buttons via CSS

  • 26 August 2022
  • 3 replies
  • 160 views

Our IT team managed to change the radius of the custom buttons on the Dashboard.

.mdl-button {
border-radius: 2.625rem;
}

However, it seems that the ‘fixed’ buttons (which are visible in the learning plans/courses), are somehow secured, because we were not able to change anything.

Do you know if there is any other way to change those buttons as well, or do we need to leave it like it is?

icon

Best answer by gstager 26 August 2022, 15:44

View original

3 replies

Userlevel 7
Badge +5

Do you mean buttons in a course like this one?

That could be addressed as follows. 

button.button-rectangular {
border-radius: 20px;
}

Of course - be sure to test other areas to make sure this does not have an unintended effect.

 

YES this is exactly what I meant, and it works as expected!

Thanks a lot for the help 

Userlevel 7
Badge +5

YES this is exactly what I meant, and it works as expected!

Thanks a lot for the help 

Glad to hear it!

Reply