lviguier 1 год назад
Родитель
Сommit
108456c314
3 измененных файлов с 8 добавлено и 4 удалено
  1. 3 0
      bin/style.css
  2. 3 0
      bin/style.less
  3. 2 4
      hide/comp/cdb/Cell.hx

+ 3 - 0
bin/style.css

@@ -1305,8 +1305,10 @@ input[type=checkbox]:checked:after {
   border-style: solid;
   border-width: 1px;
   border-color: #474747;
+  cursor: pointer;
 }
 .cdb-types select {
+  cursor: pointer;
   min-width: 100px;
   width: auto!important;
 }
@@ -1317,6 +1319,7 @@ input[type=checkbox]:checked:after {
   display: flex;
 }
 .cdb-types input {
+  cursor: pointer;
   width: 50px;
 }
 .cdb-types input[type="checkbox"] {

+ 3 - 0
bin/style.less

@@ -1425,8 +1425,10 @@ input[type=checkbox] {
 	border-style: solid;
 	border-width: 1px;
 	border-color: #474747;
+	cursor:pointer;
 
 	select {
+		cursor:pointer;
 		min-width: 100px;
 		width: auto!important;
 	}
@@ -1440,6 +1442,7 @@ input[type=checkbox] {
 	}
 
 	input {
+		cursor:pointer;
 		width: 50px;
 	}
 

+ 2 - 4
hide/comp/cdb/Cell.hx

@@ -1397,15 +1397,13 @@ class Cell {
 
 			if (selected != null && selected.args.length > 0) {
 				for (idx in 0...selected.args.length) {
-					new Element('<p>${idx == 0 ? '(' : ''}${selected.args[idx].name}&nbsp:&nbsp</p>').appendTo(paramsContent);
+					new Element('<p>&nbsp${selected.args[idx].name}&nbsp:</p>').appendTo(paramsContent);
 
 					var paramVal = cast currentValue;
 					getHtml(currentValue != null ? currentValue[idx + 1] : null, selected.args[idx]).addClass("value").appendTo(paramsContent);
 
 					if (idx != selected.args.length - 1)
-						new Element('<p>&nbsp,&nbsp</p>').appendTo(paramsContent);
-					else
-						new Element('<p>&nbsp)</p>').appendTo(paramsContent);
+						new Element('<p>,&nbsp</p>').appendTo(paramsContent);
 				}
 			}
 		}