You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
669 B
CSS
42 lines
669 B
CSS
.message {
|
|
margin: 10px 0;
|
|
padding: 5px 10px;
|
|
border-radius: 3px 3px 3px 3px;
|
|
}
|
|
.message.information, .message.info {
|
|
/* color: #059; */
|
|
color: #000;
|
|
background-color: #DDF6FF;
|
|
}
|
|
.message.warning {
|
|
color: #9F6000;
|
|
background-color: #FEEFB3;
|
|
}
|
|
.message.error {
|
|
color: #D8000C;
|
|
background-color: #FFBABA;
|
|
}
|
|
|
|
.message.deleted-hint {
|
|
background-color: #EEE;
|
|
color: #777;
|
|
box-shadow: .0em .0em .5em .2em #EEE;
|
|
}
|
|
|
|
.message.success {
|
|
color: #000;
|
|
background-color: #E5FFDD;
|
|
}
|
|
|
|
|
|
.button-row > *:not(:last-child) {
|
|
/* display: block; */
|
|
margin-right: .2rem;
|
|
}
|
|
|
|
.button-row .btn-placeholder {
|
|
display: inline-block;
|
|
flex: 1;
|
|
margin: 0;
|
|
}
|