|
@@ -86,7 +86,27 @@
|
|
|
transition: transform $transition-speed linear;
|
|
|
}
|
|
|
&[aria-expanded="true"] {
|
|
|
- td i.expandable-table-caret {
|
|
|
+ i.expandable-table-caret {
|
|
|
+ // stylelint-disable selector-max-attribute
|
|
|
+ &[class*="right"] {
|
|
|
+ transform: rotate(90deg);
|
|
|
+ }
|
|
|
+ &[class*="left"] {
|
|
|
+ transform: rotate(-90deg);
|
|
|
+ }
|
|
|
+ // stylelint-enable selector-max-attribute
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+[aria-expanded="true"] {
|
|
|
+ cursor: pointer;
|
|
|
+
|
|
|
+ i.expandable-table-caret {
|
|
|
+ transition: transform $transition-speed linear;
|
|
|
+ }
|
|
|
+ [data-widget="expandable-table"] {
|
|
|
+ i.expandable-table-caret {
|
|
|
// stylelint-disable selector-max-attribute
|
|
|
&[class*="right"] {
|
|
|
transform: rotate(90deg);
|