tryton-sao 8.0.0 → 8.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG CHANGED
@@ -1,4 +1,9 @@
1
1
 
2
+ Version 8.0.1 - 2026-04-22
3
+ --------------------------
4
+ * Bug fixes (see mercurial logs for details)
5
+
6
+
2
7
  Version 8.0.0 - 2026-04-20
3
8
  --------------------------
4
9
  * Bug fixes (see mercurial logs for details)
@@ -9974,6 +9974,9 @@ img.icon {
9974
9974
  display: flex;
9975
9975
  overflow: hidden;
9976
9976
  }
9977
+ .treeview > table.tree > thead > tr > th > div.dropdown {
9978
+ overflow: visible;
9979
+ }
9977
9980
  .treeview > table.tree > thead > tr > th > div > label {
9978
9981
  margin: 0;
9979
9982
  overflow: hidden;
@@ -10893,6 +10896,18 @@ input.column-boolean {
10893
10896
  .form .form-hcontainer,
10894
10897
  .form .form-vcontainer {
10895
10898
  display: block;
10899
+ margin-left: 0;
10900
+ }
10901
+ .form .form-container > *,
10902
+ .form .form-hcontainer > *,
10903
+ .form .form-vcontainer > * {
10904
+ padding-left: 0;
10905
+ }
10906
+ .form .form-container > * + *,
10907
+ .form .form-hcontainer > * + *,
10908
+ .form .form-vcontainer > * + * {
10909
+ margin-top: 0;
10910
+ margin-left: 0;
10896
10911
  }
10897
10912
  .form .form-container .form-item,
10898
10913
  .form .form-hcontainer .form-item,
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "tryton-sao",
3
3
  "title": "sao",
4
4
  "description": "Tryton webclient",
5
- "version": "8.0.0",
5
+ "version": "8.0.1",
6
6
  "homepage": "https://www.tryton.org/",
7
7
  "author": {
8
8
  "name": "Tryton"
package/src/sao.less CHANGED
@@ -923,6 +923,10 @@ img.icon {
923
923
  display: flex;
924
924
  overflow: hidden;
925
925
 
926
+ &.dropdown {
927
+ overflow: visible;
928
+ }
929
+
926
930
  > label {
927
931
  margin: 0;
928
932
  overflow: hidden;
@@ -1608,6 +1612,16 @@ input.column-boolean {
1608
1612
  .form-container, .form-hcontainer, .form-vcontainer {
1609
1613
  display: block;
1610
1614
 
1615
+ // remove fake gap
1616
+ margin-left: 0;
1617
+ > * {
1618
+ padding-left: 0;
1619
+ }
1620
+ > * + * {
1621
+ margin-top: 0;
1622
+ margin-left: 0;
1623
+ }
1624
+
1611
1625
  .form-item {
1612
1626
  padding: 2px 0;
1613
1627
  }