Page 1 of 1
Vertical Line appears in Back end icon of Phoca cart - With RTL
Posted: 07 Sep 2019, 20:03
by aboola
A vertical line appears on the Phoca Cart backend icons just RTL. This line is from Border Left
The picture shows what I mean.
https://ibb.co/y0cHvqD
Re: Vertical Line appears in Back end icon of Phoca cart - With RTL
Posted: 07 Sep 2019, 23:04
by christine
Hi,
I think, it belongs to the default administrator/templates/xxx/css/template-rtl.css
Code: Select all
#toolbar [class^="icon-"],
#toolbar [class*=" icon-"] {
border-radius: 0 3px 3px 0;
border-right: 0;
border-left: 1px solid #b3b3b3;
margin: 0 -10px 0 6px;
}
try to change to: border: none;
Kind regards
Christine
Re: Vertical Line appears in Back end icon of Phoca cart - With RTL
Posted: 08 Sep 2019, 10:11
by aboola
thanks for help
Yes, it seems. But I tried this beforehand and it didn't work.
it looks like Another file overwriting a "template-rtl.css" file
Re: Vertical Line appears in Back end icon of Phoca cart - With RTL
Posted: 08 Sep 2019, 11:00
by christine
Hi,
Speaking about isis template? If yes, it seems that the template.css will be loaded after the template-rtl.css.
Try to put above (changed) code into template.css of /administrator. Or: Create custom.css for admin template.
E.g. administrator/templates/isis/css/custom.css. The template will load this css file last, so any css rules declared there, will override the core ones.
Kind regards
Christine
Re: Vertical Line appears in Back end icon of Phoca cart - With RTL
Posted: 08 Sep 2019, 13:41
by aboola
Thank you christine,
solved
A file custom.css has been created
at path: administrator\templates\isis\css
#toolbar [class^="icon-"],
#toolbar [class*=" icon-"] {
border-left: none;
}
Re: Vertical Line appears in Back end icon of Phoca cart - With RTL
Posted: 08 Sep 2019, 13:57
by christine
Hi aboola,
That's fine. Thanks for your feedback!
Kind regards
Christine
Re: Vertical Line appears in Back end icon of Phoca cart - With RTL
Posted: 08 Sep 2019, 15:43
by Jan
Hi, thank you for the info, I will take a look at it for next version.
Jan