nodebb-theme-harmony 1.0.0-beta.113 → 1.0.0-beta.114

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodebb-theme-harmony",
3
- "version": "1.0.0-beta.113",
3
+ "version": "1.0.0-beta.114",
4
4
  "nbbpm": {
5
5
  "compatibility": "^3.0.0"
6
6
  },
package/scss/chats.scss CHANGED
@@ -79,7 +79,16 @@ body.page-user-chats {
79
79
  }
80
80
 
81
81
  /* Mobile handling of chat page */
82
+ @include media-breakpoint-down(lg) {
83
+ .page-user-chats.chat-loaded {
84
+ padding-bottom: 4.75rem;
85
+ }
86
+ }
87
+
82
88
  @include media-breakpoint-down(md) {
89
+ .page-user-chats.chat-loaded {
90
+ padding-bottom: initial;
91
+ }
83
92
  [component="chat/nav-wrapper"] {
84
93
  width: 100%;
85
94
  }
package/scss/topic.scss CHANGED
@@ -53,6 +53,9 @@
53
53
  pre {
54
54
  max-height: calc($font-size-base * 24);
55
55
  }
56
+ table { // text-break breaks table formatting
57
+ word-break:initial!important;
58
+ }
56
59
  }
57
60
 
58
61
  > [component="post/footer"] {
@@ -24,7 +24,7 @@
24
24
  <div component="chat/composer" class="d-flex flex-column flex-md-row gap-2 border-top pt-2 align-items-start align-items-md-end">
25
25
  <div class="w-100 flex-grow-1 position-relative input-group">
26
26
  <button component="chat/upload/button" class="btn btn-outline-primary btn-sm align-self-stretch px-3 px-md-2" type="button"><i class="fa fa-fw fa-upload"></i></button>
27
- <textarea component="chat/input" placeholder="[[modules:chat.placeholder.mobile]]" class="form-control chat-input mousetrap" style="height:0;resize:none;"></textarea>
27
+ <textarea component="chat/input" placeholder="[[modules:chat.placeholder.mobile]]" class="form-control chat-input mousetrap" style="height:0;max-height:30vh;resize:none;"></textarea>
28
28
  <span component="chat/message/remaining" class="text-xs text-muted position-absolute me-5 mb-1 end-0 bottom-0">{maximumChatMessageLength}</span>
29
29
  <button class="btn btn-primary btn-sm align-self-stretch px-3 px-md-2" type="button" data-action="send"><i class="fa fa-fw fa-paper-plane"></i></button>
30
30
  </div>