mirror of
https://github.com/lxsang/antos-frontend.git
synced 2025-04-30 02:26:44 +02:00
- Redesign the core UI API and tags to support Mobile devices - Add new StackMenu tag - Support touch events handling on touch devices - Redesign File and Setting to work on mobile - Improve Anouncement API - Rework on default themes
41 lines
721 B
CSS
41 lines
721 B
CSS
afx-nspinner{
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
afx-nspinner ul{
|
|
padding:0;
|
|
margin: 0;
|
|
list-style: none;
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 40px;
|
|
}
|
|
afx-nspinner input{
|
|
margin: 0;
|
|
height: 100%;
|
|
width: calc(100% - 40px);
|
|
flex: 1;
|
|
}
|
|
afx-nspinner ul li{
|
|
display: flex;
|
|
padding:0;
|
|
margin: 0;
|
|
flex: 1;
|
|
width: 100%;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
afx-nspinner ul li.incr i:before{
|
|
content: "\f0d8";
|
|
font-family: "FontAwesome";
|
|
font-style: normal;
|
|
font-size: 20px;
|
|
|
|
}
|
|
afx-nspinner ul li.decr i:before{
|
|
content: "\f0d7";
|
|
font-family: "FontAwesome";
|
|
font-style: normal;
|
|
font-size: 20px;
|
|
} |