mirror of
https://github.com/lxsang/antos-frontend.git
synced 2025-07-15 13:30:01 +02:00
Add input tag and update all base dialogs to support mobile devices
This commit is contained in:
@ -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;
|
||||
}
|
29
src/themes/system/afx-input.css
Normal file
29
src/themes/system/afx-input.css
Normal 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;
|
||||
}
|
@ -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;
|
||||
|
Reference in New Issue
Block a user