mirror of https://github.com/vector-im/riot-web
Merge pull request #5411 from aaronraimist/searchbox-fix-width
Allow SearchBox to expand to fill widthpull/21833/head
commit
083fecbddb
|
@ -170,7 +170,6 @@ input[type=text]:focus, input[type=password]:focus, textarea:focus {
|
||||||
border: 1px solid rgba($primary-fg-color, .1);
|
border: 1px solid rgba($primary-fg-color, .1);
|
||||||
// these things should probably not be defined globally
|
// these things should probably not be defined globally
|
||||||
margin: 9px;
|
margin: 9px;
|
||||||
flex: 0 0 auto;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_textinput {
|
.mx_textinput {
|
||||||
|
|
|
@ -46,6 +46,11 @@ limitations under the License.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_GroupMemberList_query,
|
||||||
|
.mx_GroupRoomList_query {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
.mx_MemberList_chevron {
|
.mx_MemberList_chevron {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 35px;
|
right: 35px;
|
||||||
|
@ -59,10 +64,8 @@ limitations under the License.
|
||||||
flex: 1 1 0px;
|
flex: 1 1 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_MemberList_query,
|
.mx_MemberList_query {
|
||||||
.mx_GroupMemberList_query,
|
height: 16px;
|
||||||
.mx_GroupRoomList_query {
|
|
||||||
flex: 1 1 0;
|
|
||||||
|
|
||||||
// stricter rule to override the one in _common.scss
|
// stricter rule to override the one in _common.scss
|
||||||
&[type="text"] {
|
&[type="text"] {
|
||||||
|
@ -70,10 +73,6 @@ limitations under the License.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_MemberList_query {
|
|
||||||
height: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mx_MemberList_wrapper {
|
.mx_MemberList_wrapper {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue