Add input tag and update all base dialogs to support mobile devices

This commit is contained in:
DanyLE
2022-12-09 18:20:31 +01:00
parent 0819fb664a
commit aeb50cfca4
18 changed files with 725 additions and 315 deletions

View File

@ -6,5 +6,15 @@ afx-calendar-view afx-grid-view .grid_row_header afx-grid-cell{
border-right: 0;
}
afx-calendar-view afx-label {
display: inline-block;
flex-direction: row;
justify-content: center;
}
afx-calendar-view > div {
display: flex;
flex-direction: row;
}
afx-calendar-view > div > afx-label
{
flex:1;
}

View File

@ -0,0 +1,29 @@
afx-input {
display: flex;
flex-direction: column;
}
afx-input textarea
{
flex: 1;
padding-left: 5px;
padding-right: 5px;
}
afx-input > div
{
flex: 1;
}
afx-input[verbose] > div {
flex: none;
height: 0;
}
afx-input input{
height: 30px;
padding-left: 5px;
padding-right: 5px;
}
afx-input afx-label
{
padding-left: 3px;
padding-top: 5px;
}

View File

@ -6,6 +6,7 @@ html,body{
overflow: hidden;
touch-action: none;
font-size: 14px;
font-family: "Ubuntu";
}
#desktop > div > ul afx-list-item {
width: 70px;
@ -73,6 +74,16 @@ body
#systooltip {
z-index: 1000000;
}
input {
font-size: 14px;
height: 35px;
font-family: "Ubuntu";
}
textarea {
font-family: "Ubuntu";
font-size: 14px;
}
#login_form{
width:300px;