Diff: STRATO-apps/wordpress_03/app/wp-content/themes/blocksy/static/sass/backend/options/options-rtl.scss

Keine Baseline-Datei – Diff nur gegen leer.
Zur Liste
1 -
1 + body.rtl {
2 +
3 +
4 + // customizer panel
5 + .ct-customizer-panel-option {
6 + button {
7 + &:after {
8 + content: '\f341';
9 + }
10 + }
11 +
12 + .ct-option-switch + button {
13 + transform: translate3d(7px, 0, 0);
14 + }
15 + }
16 +
17 + .ct-panel.ct-click-allowed .ct-customizer-panel-option button {
18 + transform: translate3d(0, 0, 0);
19 + }
20 +
21 + .ct-panel-open {
22 + transform: translateX(100%) !important;
23 + }
24 +
25 + .customize-panel-actions button {
26 + &:before {
27 + content: '\f345';
28 + }
29 + }
30 +
31 +
32 + // switch
33 + .ct-option-switch {
34 +
35 + &.ct-active span {
36 + transform: translate3d(-12px, 0, 0);
37 + }
38 + }
39 +
40 + // alignment
41 + .ct-radio-option[data-type*=alignment] li {
42 +
43 + &:first-child:before {
44 + transform: rotateY(180deg);
45 + }
46 +
47 + &:last-child:before {
48 + transform: rotateY(0deg);
49 + }
50 + }
51 + }