From b900fcbbf0cf62ea5305368db449a1bb5860cd02 Mon Sep 17 00:00:00 2001 From: David Rowe Date: Fri, 1 Apr 2016 12:43:30 +1300 Subject: [PATCH] Back out attempt at fixing OSX styling --- examples/html/entityProperties.html | 6 ------ 1 file changed, 6 deletions(-) diff --git a/examples/html/entityProperties.html b/examples/html/entityProperties.html index 976a65a8db..bd8abb9a91 100644 --- a/examples/html/entityProperties.html +++ b/examples/html/entityProperties.html @@ -1244,8 +1244,6 @@ var div = elDropdowns[i].parentNode; var dl = document.createElement("dl"); - // FIXME: Test with Qt 5.6 and remove li.style setting if no longer needed; style is set in CSS. - dl.style = "font-family:FiraSans-SemiBold;" // For OSX div.appendChild(dl); var dt = document.createElement("dt"); @@ -1260,8 +1258,6 @@ dt.appendChild(span); var span = document.createElement("span"); - // FIXME: Test with Qt 5.6 and remove li.style setting if no longer needed; style is set in CSS. - span.style = "font-family:HiFi-Glyphs"; // For OSX span.textContent = "5"; // caratDn dt.appendChild(span); @@ -1273,8 +1269,6 @@ for (var j = 0; j < options.length; j++) { var li = document.createElement("li"); - li.style = "font-family:FiraSans-SemiBold;" // For OSX - // FIXME: Test with Qt 5.6 and remove li.style setting if no longer needed; style is set in CSS. li.setAttribute("value", options[j].value); li.textContent = options[j].firstChild.textContent; li.addEventListener("click", setDropdownValue);