roomsettings css fixes
This commit is contained in:
parent
82742f9f13
commit
6332e3908e
2 changed files with 26 additions and 7 deletions
|
@ -194,7 +194,7 @@ limitations under the License.
|
||||||
|
|
||||||
.mx_RoomHeader_editable {
|
.mx_RoomHeader_editable {
|
||||||
border-bottom: 1px solid #c7c7c7 ! important;
|
border-bottom: 1px solid #c7c7c7 ! important;
|
||||||
min-width: 70px;
|
min-width: 150px;
|
||||||
cursor: text;
|
cursor: text;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -60,7 +60,7 @@ limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.mx_RoomSettings .mx_RoomSettings_toggles label {
|
.mx_RoomSettings .mx_RoomSettings_toggles label {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 8px;
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -74,7 +74,7 @@ limitations under the License.
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomSettings .mx_RoomSettings_tags {
|
.mx_RoomSettings .mx_RoomSettings_tags {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomSettings .mx_RoomSettings_roomColor {
|
.mx_RoomSettings .mx_RoomSettings_roomColor {
|
||||||
|
@ -99,29 +99,48 @@ limitations under the License.
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_RoomSettings .mx_RoomSettings_aliasLabel {
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
.mx_RoomSettings .mx_RoomSettings_aliasesTable {
|
.mx_RoomSettings .mx_RoomSettings_aliasesTable {
|
||||||
margin-top: 12px;
|
margin-top: 12px;
|
||||||
margin-bottom: 12px;
|
margin-bottom: -16px;
|
||||||
margin-left: 56px;
|
margin-left: 56px;
|
||||||
display: table;
|
display: table;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomSettings .mx_RoomSettings_aliasesRow {
|
.mx_RoomSettings .mx_RoomSettings_aliasesTableRow {
|
||||||
display: table-row;
|
display: table-row;
|
||||||
|
margin-bottom: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomSettings .mx_RoomSettings_alias {
|
.mx_RoomSettings .mx_RoomSettings_alias {
|
||||||
display: table-cell;
|
max-width: 400px;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 16px;
|
||||||
|
/*
|
||||||
|
commented out so margin applies
|
||||||
|
display: table-cell; */
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomSettings .mx_RoomSettings_addAlias,
|
.mx_RoomSettings .mx_RoomSettings_addAlias,
|
||||||
.mx_RoomSettings .mx_RoomSettings_deleteAlias {
|
.mx_RoomSettings .mx_RoomSettings_deleteAlias {
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
padding-left: 0.5em;
|
padding-left: 0.5em;
|
||||||
|
position: relative;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_RoomSettings .mx_RoomSettings_addAlias img,
|
||||||
|
.mx_RoomSettings .mx_RoomSettings_deleteAlias img {
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_RoomSettings .mx_RoomSettings_aliasesTableRow:hover .mx_RoomSettings_addAlias img,
|
||||||
|
.mx_RoomSettings .mx_RoomSettings_aliasesTableRow:hover .mx_RoomSettings_deleteAlias img {
|
||||||
|
visibility: visible;
|
||||||
|
}
|
||||||
|
|
||||||
.mx_RoomSettings_editable {
|
.mx_RoomSettings_editable {
|
||||||
border: 0px;
|
border: 0px;
|
||||||
border-bottom: 1px solid #c7c7c7;
|
border-bottom: 1px solid #c7c7c7;
|
||||||
|
|
Loading…
Reference in a new issue