Skip to content

Commit 72321aa

Browse files
committed
fix #488 fieldsets bug.
1 parent 39ad319 commit 72321aa

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

simpleui/static/admin/simpleui-x/css/base.css

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,16 @@ tbody tr:hover th {
107107
}
108108
.form-row {
109109
border-bottom: none !important;
110+
display: flex;
111+
align-items: center;
112+
}
113+
.form-row div {
114+
display: flex;
115+
gap: 10px;
116+
align-items: center;
117+
}
118+
.form-row .fileBox {
119+
flex: 1;
110120
}
111121
.submit-row {
112122
padding-bottom: 20px!important;
@@ -255,4 +265,3 @@ body,
255265
--close-button-hover-bg: inherit;
256266
}
257267
}
258-
/*# sourceMappingURL=base.css.map */

simpleui/static/admin/simpleui-x/css/base.less

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,16 @@ tbody tr:hover td, tbody tr:hover th {
127127

128128
.form-row {
129129
border-bottom: none !important;
130+
display:flex;
131+
align-items: center;
132+
div{
133+
display:flex;
134+
gap: 10px;
135+
align-items: center;
136+
}
137+
.fileBox{
138+
flex:1;
139+
}
130140
}
131141
.submit-row{
132142
padding-bottom: 20px!important;

0 commit comments

Comments
 (0)