File: 11-rtl.css

package info (click to toggle)
compass-toolkit-plugin 2.10.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 520 kB
  • sloc: ruby: 63; javascript: 49; makefile: 2; sh: 1
file content (36 lines) | stat: -rw-r--r-- 779 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
  * RTL
**/
.rtl--single-without {
  _test: "@include rtl(padding, 1.5em);";
  padding: 1.5em;
}
.rtl--single-right {
  _test: "@include rtl(padding-right, 1.5em);";
  padding-right: 1.5em;
}
[dir="rtl"] .rtl--single-right {
  padding-left: 1.5em;
}
.rtl--single-left {
  _test: "@include rtl(padding-left, 1.5em);";
  padding-left: 1.5em;
}
[dir="rtl"] .rtl--single-left {
  padding-right: 1.5em;
}
.rtl--double {
  _test: "@include rtl(padding, 1.5em 2.5em);";
  padding: 1.5em 2.5em;
}
.rtl--tripple {
  _test: "@include rtl(padding, 1.5em 2.5em 3.5em);";
  padding: 1.5em 2.5em 3.5em;
}
.rtl--quadruple {
  _test: "@include rtl(padding, 1.5em 2.5em 3.5em 4.5em);";
  padding: 1.5em 2.5em 3.5em 4.5em;
}
[dir="rtl"] .rtl--quadruple {
  padding: 1.5em 4.5em 3.5em 2.5em;
}