From f16416d53602e3463cb992de8296a3124241fa4a Mon Sep 17 00:00:00 2001 From: kovacsv Date: Sat, 26 Jun 2021 23:59:47 +0200 Subject: [PATCH 1/2] Ellipsis in case of long property group names. --- website/o3dv/website.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/website/o3dv/website.css b/website/o3dv/website.css index 3e94910..ef784d3 100644 --- a/website/o3dv/website.css +++ b/website/o3dv/website.css @@ -677,6 +677,9 @@ div.ov_property_table div.ov_property_table_row div.ov_property_table div.ov_property_table_row.group { padding: 4px 0px; + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; } div.ov_property_table div.ov_property_table_row.ingroup From a0e84d016cfc8974fe31d79036ef805bda81282d Mon Sep 17 00:00:00 2001 From: kovacsv Date: Sun, 27 Jun 2021 00:00:31 +0200 Subject: [PATCH 2/2] Add boolean property type. --- source/model/property.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/model/property.js b/source/model/property.js index 7b42be3..d28bf8d 100644 --- a/source/model/property.js +++ b/source/model/property.js @@ -3,8 +3,9 @@ OV.PropertyType = Text : 1, Integer : 2, Number : 3, - Percent : 4, - Color : 5 + Boolean : 4, + Percent : 5, + Color : 6 }; OV.Property = class