Skip to content

Commit

Permalink
Merge pull request #5549 from vector-im/rxl881/roomTopic
Browse files Browse the repository at this point in the history
Fix wrapping of long room topics (and overlap with apps)
  • Loading branch information
lukebarnard1 authored Nov 9, 2017
2 parents 88cd46b + 092ec1c commit a0b0b6f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

.mx_AppsDrawer {
margin-bottom: 3px;
}
// .mx_AppsDrawer {
// }

.mx_AppsContainer {
display: flex;
Expand Down Expand Up @@ -69,6 +68,10 @@ limitations under the License.
// display: inline-block;
}

.mx_AppTile, .mx_AppTileFullWidth {
margin-bottom: 3px;
}

.mx_AppTileMenuBar {
// height: 15px;
margin: 0;
Expand Down Expand Up @@ -116,8 +119,8 @@ limitations under the License.
display: block;
}

.mx_CloseAppWidget {
}
// .mx_CloseAppWidget {
// }

.mx_AppTileMenuBarWidgetPadding {
margin-right: 5px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ limitations under the License.
.mx_RoomHeader_topic {
vertical-align: bottom;
float: left;
max-height: 42px;
max-height: 38px;
color: $settings-grey-fg-color;
font-weight: 300;
font-size: 13px;
Expand All @@ -185,6 +185,7 @@ limitations under the License.
overflow: hidden;
text-overflow: ellipsis;
border-bottom: 1px solid transparent;
column-width: 960px;
}

.mx_RoomHeader_avatar {
Expand Down

0 comments on commit a0b0b6f

Please sign in to comment.