nodebb-theme-harmony 1.0.13 → 1.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/scss/sidebar.scss +17 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodebb-theme-harmony",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "nbbpm": {
5
5
  "compatibility": "^3.0.0"
6
6
  },
package/scss/sidebar.scss CHANGED
@@ -103,6 +103,23 @@
103
103
  }
104
104
  }
105
105
 
106
+ /*rtl:begin:ignore*/
107
+ html[data-dir="rtl"] {
108
+ .sidebar {
109
+ &.open {
110
+ .sidebar-toggle {
111
+ .fa-angles-right { display: none; }
112
+ .fa-angles-left { display: inline-block; }
113
+ }
114
+ }
115
+ .sidebar-toggle {
116
+ .fa-angles-right { display: inline-block; }
117
+ .fa-angles-left { display: none; }
118
+ }
119
+ }
120
+ }
121
+ /*rtl:end:ignore*/
122
+
106
123
  .bottombar {
107
124
  transition: bottom 150ms linear;
108
125