Browse Source

CSS fix. Lock icon wasn't showing.

JC Brand 8 years ago
parent
commit
8c3c70c17e
3 changed files with 3 additions and 6 deletions
  1. 1 4
      css/converse.css
  2. 1 0
      docs/CHANGES.md
  3. 1 2
      sass/_fonts.scss

+ 1 - 4
css/converse.css

@@ -166,12 +166,9 @@
 #converse-embedded-chat .icon-legal:before,
 #conversejs .icon-legal:before {
   content: "\f0e3"; }
-#converse-embedded-chat .icon-lock-2:before,
-#conversejs .icon-lock-2:before {
-  content: "\e027"; }
 #converse-embedded-chat .icon-lock:before,
 #conversejs .icon-lock:before {
-  content: "\e026"; }
+  content: "\e027"; }
 #converse-embedded-chat .icon-logout:before,
 #conversejs .icon-logout:before {
   content: "\e601"; }

+ 1 - 0
docs/CHANGES.md

@@ -10,6 +10,7 @@
 - eslint 3.19.0
 
 - Bugfix. MUC user's nickname wasn't being shown in HTML5 notification messages. [jcbrand]
+- CSS fix. Icon lock wasn't showing. [jcbrand]
 - #842 Persistent muc room creation not working [jcbrand]
 - #849 `TypeError: _converse.i18n.locale_data is undefined` when reconnecting. [jcbrand]
 

+ 1 - 2
sass/_fonts.scss

@@ -73,8 +73,7 @@
     .icon-key-2:before              { content: "\e029"; }
     .icon-key:before                { content: "\e028"; }
     .icon-legal:before              { content: "\f0e3"; }
-    .icon-lock-2:before             { content: "\e027"; }
-    .icon-lock:before               { content: "\e026"; }
+    .icon-lock:before               { content: "\e027"; }
     .icon-logout:before             { content: "\e601"; }
     .icon-minus:before              { content: "\e05a"; }
     .icon-music:before              { content: "\266b"; }