You have activated the bootstrap.min.css from PD (again) and therefore the tooltip is OK. But no round buttons.fabio42 wrote: ↑21 Sep 2024, 14:53 I was obliged to switch to "tooltip" in the menu because if I choose "modal box" then I can't have the "rounded buttons" (they do not appear at all) along. Jan told me it was because the css was not loaded in Bootstrap 5 (so I'm obliged to load the bootstrap.min.css). I contacted Gantry support for the afore mentioned problems, so far, no answer.
I tried something. Of course it only went into the custom_38.css temporarily
a) of course deactivated bootstrap.min.css from PD.
b) put the following codes (temporarily) into the custom_38.css.
I can't do the compiling etc., I can only check whether various codes would fit:
Code: Select all
.btn-info {
background: #0dcaf0;
color: #fff;
text-shadow: none;
box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
&:hover {
background: lighten(#0dcaf0, 5%);
color: #fff;
}
&:active, &:focus {
background: darken(#0dcaf0, 5%);
box-shadow: inset -1px -1px 1px rgba(0,0,0,0.15);
color: #fff;
}
}
Code: Select all
.btn-success {
background: green;
color: #fff;
text-shadow: none;
box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
&:hover {
background: lighten(#0dcaf0, 5%);
color: #fff;
}
&:active, &:focus {
background: darken(#0dcaf0, 5%);
box-shadow: inset -1px -1px 1px rgba(0,0,0,0.15);
color: #fff;
}
}
Kind regards
Christine