mirror of https://github.com/vector-im/riot-web
fix editing visuals
parent
e5c128fcb8
commit
6e24f4ba09
|
@ -54,6 +54,23 @@ limitations under the License.
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_GroupView_editable {
|
||||||
|
border-bottom: 1px solid $strong-input-border-color ! important;
|
||||||
|
min-width: 150px;
|
||||||
|
cursor: text;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_GroupView_editable:focus {
|
||||||
|
border-bottom: 1px solid $accent-color ! important;
|
||||||
|
outline: none;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_GroupView_header_name:hover div:not(.mx_GroupView_editable) {
|
||||||
|
color: $accent-color;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
.mx_GroupView_avatarPicker {
|
.mx_GroupView_avatarPicker {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
@ -103,10 +120,6 @@ limitations under the License.
|
||||||
border-bottom: 1px solid transparent;
|
border-bottom: 1px solid transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_GroupView_header_name input, .mx_GroupView_header_shortDesc input {
|
|
||||||
width: 400px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mx_GroupView_header_shortDesc {
|
.mx_GroupView_header_shortDesc {
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
float: left;
|
float: left;
|
||||||
|
|
Loading…
Reference in New Issue