boundless-dialog
Version:
A non-blocking, focus-stealing container.
29 lines (23 loc) • 479 B
text/stylus
// Demo-specific styles go here. Skin-specific styles go in ../style.styl.
.dialog-demo-close-button {
background: none ;
border: 0;
color: #CCC;
cursor: pointer;
line-height: 1;
padding: 0.5rem;
position: absolute;
top: 0;
right: 0;
transition: color 200ms ease;
&:hover,
&:focus {
color: #555;
}
&:active {
color: body-color;
}
}
.dialog-demo-close-button::before {
content: 'X';
}