Show long broadcast messages in text color

pull/1/head
David Benqué 2021-03-16 10:51:28 +00:00
parent 9fd0402585
commit a608d6ca6c
2 changed files with 5 additions and 1 deletions

View File

@ -64,6 +64,10 @@
color: @cryptpad_text_col;
}
.cp-admin-message {
color: @cryptpad_text_col;
}
.cp-inline-alert-text {
flex: 1;
}

View File

@ -477,7 +477,7 @@ define([
// XXX Allow markdown (sanitized)?
var content = h('div', [
h('h4', Messages.broadcast_newCustom),
h('div', toShow)
h('div.cp-admin-message', toShow)
]);
UI.alert(content);
// XXX Dismiss on click?