diff --git a/interface/resources/fonts/hifi-glyphs.ttf b/interface/resources/fonts/hifi-glyphs.ttf index 89d4767012..1c98f4e6f3 100644 Binary files a/interface/resources/fonts/hifi-glyphs.ttf and b/interface/resources/fonts/hifi-glyphs.ttf differ diff --git a/scripts/system/html/css/edit-style.css b/scripts/system/html/css/edit-style.css index b402d482f0..a5807ff025 100644 --- a/scripts/system/html/css/edit-style.css +++ b/scripts/system/html/css/edit-style.css @@ -998,6 +998,18 @@ textarea:enabled[scrolling="true"]::-webkit-resizer { left: -2px; } +th#entity-hasTransparent .glyph { + font-weight: normal; + font-size: 24px !important; + margin: -6px; + position: relative; + top: -6px; +} +th#entity-hasTransparent .sort-order { + position: relative; + top: -4px; +} + #entity-table td { box-sizing: border-box; } @@ -1006,6 +1018,11 @@ textarea:enabled[scrolling="true"]::-webkit-resizer { text-align: center; padding: 0; } +#entity-table td.hasTransparent.glyph { + font-size: 22px; + position: relative; + top: -1px; +} #entity-table tfoot { box-sizing: border-box; diff --git a/scripts/system/html/entityList.html b/scripts/system/html/entityList.html index 6f2f3533a2..13b00fa505 100644 --- a/scripts/system/html/entityList.html +++ b/scripts/system/html/entityList.html @@ -60,7 +60,7 @@ Verts Texts T Size - ' + Draws k diff --git a/scripts/system/html/js/entityList.js b/scripts/system/html/js/entityList.js index 7471e171fc..1b5d82fd96 100644 --- a/scripts/system/html/js/entityList.js +++ b/scripts/system/html/js/entityList.js @@ -16,7 +16,7 @@ const ASCENDING_STRING = '▴'; const DESCENDING_STRING = '▾'; const LOCKED_GLYPH = ""; const VISIBLE_GLYPH = ""; -const TRANSPARENCY_GLYPH = "'"; +const TRANSPARENCY_GLYPH = ""; const SCRIPT_GLYPH = "k"; const DELETE = 46; // Key code for the delete key. const MAX_ITEMS = Number.MAX_VALUE; // Used to set the max length of the list of discovered entities.