1 files changed, 33 insertions, 1 deletions
diff --git a/webclient/app.css b/webclient/app.css
index bdf475d635..5ab8e2b8fd 100755
--- a/webclient/app.css
+++ b/webclient/app.css
@@ -403,6 +403,7 @@ textarea, input {
}
.roomNameSection, .roomTopicSection {
+ text-align: right;
float: right;
width: 100%;
}
@@ -412,9 +413,40 @@ textarea, input {
}
.roomHeaderInfo {
+ text-align: right;
float: right;
margin-top: 15px;
- width: 50%;
+}
+
+/*** Room Info Dialog ***/
+
+.room-info {
+ border-collapse: collapse;
+ width: 100%;
+}
+
+.room-info-event {
+ border-bottom: 1pt solid black;
+}
+
+.room-info-event-meta {
+ padding-top: 1em;
+ padding-bottom: 1em;
+}
+
+.room-info-event-content {
+ padding-top: 1em;
+ padding-bottom: 1em;
+}
+
+.monospace {
+ font-family: monospace;
+}
+
+.room-info-textarea-content {
+ height: auto;
+ width: 100%;
+ resize: vertical;
}
/*** Participant list ***/
|