antos-frontend/src/themes/antos_dark/afx-app-window.css
DanyLE 92e27b653f Rework on AntOS core to provide support to both mobile and desktop devices (experimental):
- 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
2022-12-08 14:56:05 +01:00

46 lines
977 B
CSS

afx-app-window div.afx-window-wrapper{
border:1px solid #262626;
box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.65);
border-radius: 0px;
background-color:#363636;
}
afx-app-window.unactive > div.afx-window-wrapper{
/*background-color: #464646;*/
box-shadow: none;
}
afx-app-window ul.afx-window-top{
border-bottom: 1px solid #262626;
}
/*
afx-app-window ul li.afx-window-close{
background-color: #Fc605b;
}
afx-app-window ul li.afx-window-minimize{
background-color: #fec041;
}
afx-app-window ul li.afx-window-maximize{
background-color: #35cc4b;
}*/
afx-app-window ul li.afx-window-title{
text-align: left;
}
afx-app-window div.afx-window-content
{
background-color:#363636;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
/*
afx-app-window.unactive div.afx-window-content
{
background-color:#464646;
}*/
afx-app-window ul.afx-window-top button:hover
{
background-color: #464646;
color: white;
}