etherpad-lite/src/static/css/pad/gritter.css

34 lines
554 B
CSS
Raw Normal View History

#gritter-container {
position: absolute;
bottom: 0;
right: 50%;
transform: translateX(50%);
text-align: center;
z-index: 9999;
}
2020-04-06 11:11:08 +02:00
.gritter-item.popup {
position: relative;
max-width: 450px;
2020-04-06 11:11:08 +02:00
visibility: visible;
right: auto;
left: auto;
2020-04-06 11:11:08 +02:00
top: auto;
bottom: auto;
2020-04-06 11:11:08 +02:00
}
.gritter-item .popup-content {
display: flex;
}
.gritter-item .gritter-content {
flex: 1 auto;
text-align: center;
}
.gritter-item .gritter-close {
align-self: center;
}
2020-04-06 11:11:08 +02:00
.gritter-item.error .popup-content {
color: #a84341;
background-color: #eed3d4;
}