19 lines
394 B
CSS
19 lines
394 B
CSS
.message_input_scroll_window > * {
|
|
box-shadow: none;
|
|
border-width: 0;
|
|
}
|
|
.message_text_view {
|
|
background-color: rgba(0,0,0,0);
|
|
}
|
|
.chat_image_button {
|
|
padding: 0;
|
|
}
|
|
.editing_message_textview {
|
|
border-radius: 5px;
|
|
padding: 5px;
|
|
}
|
|
.chat_row:selected {
|
|
background: mix(@theme_bg_color, @theme_selected_bg_color, 0.3);
|
|
color: mix(@window_fg_color, @theme_selected_bg_color, 0.5);
|
|
}
|