notification-bubble.less
Home
/
codeeditor-app /
elements /
notification-bubbles /
notification-bubble.less
notification-bubble {
margin: 10px;
padding: 10px;
color: black;
background-color: #a0ffa7;
border: 1px solid #8ddf92;
display: block;
position: relative;
box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.19);
border-radius: 4px;
}
notification-bubble.log {
background-color: #ffffff;
border-color: #dfdfdf;
}
notification-bubble.info {
background-color: #e7e7b3;
border-color: #d4d4a9;
}
notification-bubble.warn {
background-color: #fff9a0;
border-color: #e6e094;
}
notification-bubble.error {
background-color: #ffa0a0;
border-color: #df8e8e;
}
notification-bubble.syntax-error {
background-color: #ff6262;
background-color: #d15353;
font-size: 22px;
padding: 30px;
}
@media (prefers-color-scheme: dark) {
notification-bubble {
color: white;
}
notification-bubble.log {
background-color: #242424;
border-color: #202020;
}
notification-bubble.info {
background-color: #77772e;
border-color: #66662f;
}
notification-bubble.warn {
background-color: #928800;
border-color: #857c00;
}
notification-bubble.error {
background-color: #920000;
border-color: #7c0000;
}
notification-bubble.syntax-error {
background-color: #470000;
background-color: #2b0000;
}
}