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 +5 -0
- package/dist/tryton-sao.css +15 -0
- package/package.json +1 -1
- package/src/sao.less +14 -0
- package/dist/tryton-sao.min.css +0 -10525
package/CHANGELOG
CHANGED
package/dist/tryton-sao.css
CHANGED
|
@@ -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
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
|
}
|