mirror of https://github.com/vector-im/riot-web
Merge pull request #5549 from vector-im/rxl881/roomTopic
Fix wrapping of long room topics (and overlap with apps)pull/5561/head
commit
a0b0b6f053
|
@ -14,9 +14,8 @@ See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.mx_AppsDrawer {
|
// .mx_AppsDrawer {
|
||||||
margin-bottom: 3px;
|
// }
|
||||||
}
|
|
||||||
|
|
||||||
.mx_AppsContainer {
|
.mx_AppsContainer {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -69,6 +68,10 @@ limitations under the License.
|
||||||
// display: inline-block;
|
// display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_AppTile, .mx_AppTileFullWidth {
|
||||||
|
margin-bottom: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
.mx_AppTileMenuBar {
|
.mx_AppTileMenuBar {
|
||||||
// height: 15px;
|
// height: 15px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -116,8 +119,8 @@ limitations under the License.
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_CloseAppWidget {
|
// .mx_CloseAppWidget {
|
||||||
}
|
// }
|
||||||
|
|
||||||
.mx_AppTileMenuBarWidgetPadding {
|
.mx_AppTileMenuBarWidgetPadding {
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
|
|
|
@ -176,7 +176,7 @@ limitations under the License.
|
||||||
.mx_RoomHeader_topic {
|
.mx_RoomHeader_topic {
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
float: left;
|
float: left;
|
||||||
max-height: 42px;
|
max-height: 38px;
|
||||||
color: $settings-grey-fg-color;
|
color: $settings-grey-fg-color;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
|
@ -185,6 +185,7 @@ limitations under the License.
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
border-bottom: 1px solid transparent;
|
border-bottom: 1px solid transparent;
|
||||||
|
column-width: 960px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomHeader_avatar {
|
.mx_RoomHeader_avatar {
|
||||||
|
|
Loading…
Reference in New Issue