ferngully-aurelia-tools
Version:
Ferngully Tools for Aurelia
60 lines (48 loc) • 1.28 kB
CSS
/**
these are just defaults, particularly the colors. Each application will want to override with customizations.
*/
ux-dialog-container {
text-align: center;
}
ux-dialog, ux-dialog-container > div > div {
width: inherit;
min-width: inherit;
}
ux-dialog {
max-width: 50%;
padding: 0 ;
border: none ;
}
ux-dialog > ux-dialog-header {
background-color: #941842;
color: white;
}
ux-dialog > ux-dialog-body, ux-dialog > ux-dialog-footer {
background-color: white;
}
ux-dialog > ux-dialog-footer {
padding-top: 0px;
padding-bottom: 0px;
}
ux-dialog > ux-dialog-footer button {
background-color: #72B531 ;
color: white ;
width: 70px ;
padding-top: 4px ;
padding-bottom: 4px ;
outline: none ;
}
ux-dialog > ux-dialog-footer button:hover:enabled {
background-color: #397302 ;
color: white ;
}
ux-dialog > ux-dialog-footer button:focus:enabled {
outline: double 2px #6e88b4 ;
}
ux-dialog > ux-dialog-body p {
font-weight: bold;
}
ux-dialog-overlay.active {
background-color: black;
opacity: .5 ;
}