fix: Keep charts as it is

- Frappe Charts do not support RTL and rtlcss does not work on SVG...
Setting direction as ltr to keep charts as it is
This commit is contained in:
Suraj Shetty 2021-07-12 10:06:06 +05:30
parent 5bea9dbdb7
commit fe21efb76f

View file

@ -302,15 +302,6 @@ select.input-xs {
}
}
/*!rtl:raw:
.dropdown-menu {
right: auto;
}
.popover {
right: auto;
}
*/
.custom-control.custom-switch {
font-size: var(--text-md);
line-height: 1.6;
@ -583,3 +574,15 @@ details > summary:focus {
// font-family: 'Octicons';
// content: "\f00b";
// }
/*rtl:raw:
.dropdown-menu {
right: auto;
}
.popover {
right: auto;
}
.chart-container {
direction: ltr;
}
*/