converse-desktop/resources/css/app.css

45 lines
892 B
CSS
Raw Normal View History

2020-05-09 15:07:42 +00:00
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
body {
background: #f8f8f8;
2020-05-12 15:06:16 +00:00
font: normal 14px "Helvetica Neue",Helvetica,Arial,sans-serif;
2020-05-09 21:06:57 +00:00
-webkit-text-size-adjust: 100%;
2020-05-09 15:07:42 +00:00
}
2020-05-11 18:26:51 +00:00
a {
color: #777;
}
2020-05-09 15:07:42 +00:00
.conversejs-adoption {
2020-05-17 18:12:36 +00:00
background: transparent;
pointer-events: none;
2020-05-09 15:07:42 +00:00
position: fixed;
left: 0;
top: 0;
2020-05-09 15:07:42 +00:00
width: 100%;
height: 100%;
2020-05-17 18:12:36 +00:00
}
#conversejs .converse-chatboxes {
pointer-events: none;
}
#conversejs .converse-chatboxes > * {
pointer-events: auto;
2021-02-13 02:59:16 +00:00
}
.chat-body {
overflow: hidden;
}
#conversejs.converse-embedded .chatbox {
flex-grow: 1 !important;
flex-shrink: 1 !important;
}