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

Keine Baseline-Datei – Diff nur gegen leer.
Zur Liste
1 -
1 + $customizer-width: 320px;
2 +
3 + body.rtl {
4 +
5 + .wp-full-overlay.expanded,
6 + #customize-header-actions .ct-revert,
7 + .wp-full-overlay.collapsed .wp-full-overlay-sidebar {
8 + margin-left: 0 !important;
9 + }
10 +
11 + .wp-full-overlay.expanded {
12 + @media screen and (max-width: 1666px) {
13 + margin-right: $customizer-width;
14 + }
15 +
16 + @media screen and (min-width: 1667px) {
17 + margin-right: $customizer-width;
18 + }
19 + }
20 +
21 + .wp-full-overlay.collapsed .wp-full-overlay-sidebar {
22 + margin-right: -#{$customizer-width};
23 + }
24 +
25 +
26 + // customizer controls
27 + #customize-controls .control-section > h3.accordion-section-title {
28 + border-right: none;
29 +
30 + &:after {
31 + right: initial;
32 + left: 23px;
33 + }
34 + }
35 +
36 + #customize-controls .control-section-child > h3 {
37 + &:before {
38 + border-left: none;
39 + border-right: 1px solid;
40 + margin-right: 0;
41 + margin-left: 7px;
42 + }
43 + }
44 +
45 +
46 + // revert button
47 + #customize-header-actions .ct-revert {
48 + margin-right: 33px;
49 + border-right: none;
50 + border-left: 1px solid #ddd;
51 + }
52 +
53 + // dark mode switch
54 + .ct-dark-mode-switch {
55 + left: initial;
56 + right: 48px;
57 + }
58 +
59 + .ct-dark-mode {
60 + #customize-controls {
61 + border-left-color: #47484b;
62 + }
63 +
64 + &.expanded .wp-full-overlay-footer .devices {
65 + box-shadow: 20px 0 10px -5px #38393c;
66 +
67 + &:before {
68 + left: initial;
69 + right: -5px;
70 + }
71 + }
72 +
73 + #customize-controls .wp-full-overlay-header .ct-revert,
74 + #customize-controls .wp-full-overlay-header .customize-controls-close {
75 + border-left-color: #47484b;
76 + }
77 +
78 + .ct-view-switch li.ct-builder-toggle {
79 + border-right-color: #47484b !important;
80 + }
81 + }
82 +
83 +
84 + // header builder
85 + // .ct-view-switch li {
86 + // border-right: none;
87 + // border-left: 1px solid #ddd;
88 + // }
89 +
90 + .ct-available-items .ct-item-in-builder:after {
91 + content: "\f341";
92 + }
93 +
94 + .ct-builder-toggle {
95 + // --ui-margin: 0 auto 0 0;
96 + // border-left: none !important;
97 + // border-right: 1px solid #ddd !important;
98 +
99 + // &:before {
100 + // margin-right: initial;
101 + // margin-left: 10px;
102 + // }
103 + }
104 +
105 + .ct-row-actions {
106 + left: initial;
107 + right: -2px;
108 +
109 + &:before {
110 + margin-right: initial;
111 + margin-left: 7px;
112 + }
113 + }
114 +
115 + .offcanvas-container {
116 + margin: 0 0 0 20px;
117 + }
118 +
119 + .ct-btn-remove {
120 + // margin-right: initial;
121 + // margin-left: -12px;
122 + right: initial;
123 + left: 0px;
124 + }
125 +
126 + // footer builder
127 + [data-builder='footer'] .builder-column:not(:last-child) {
128 + border-right: none;
129 + border-left: 1px dashed #ccc;
130 +
131 + &:after {
132 + right: initial;
133 + left: -1px;
134 + }
135 + }
136 + }
137 +
138 +
139 +