mirror of https://github.com/vector-im/riot-web
fix color of location share caret (#7917)
Signed-off-by: Kerry Archibald <kerrya@element.io>pull/21833/head
parent
4bf42babc7
commit
36adba101c
|
@ -58,7 +58,22 @@ limitations under the License.
|
||||||
.mx_MLocationBody_pointer {
|
.mx_MLocationBody_pointer {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: -3px;
|
bottom: -3px;
|
||||||
left: 12px;
|
left: 11px;
|
||||||
|
width: 9px;
|
||||||
|
height: 5px;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
mask-image: url('$(res)/img/location/pointer.svg');
|
||||||
|
mask-position: center;
|
||||||
|
mask-repeat: no-repeat;
|
||||||
|
mask-size: 9px;
|
||||||
|
content: '';
|
||||||
|
display: inline-block;
|
||||||
|
width: 9px;
|
||||||
|
height: 5px;
|
||||||
|
position: absolute;
|
||||||
|
background-color: $accent;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,22 @@ limitations under the License.
|
||||||
.mx_MLocationBody_pointer {
|
.mx_MLocationBody_pointer {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: -3px;
|
bottom: -3px;
|
||||||
left: 12px;
|
left: 11px;
|
||||||
|
width: 9px;
|
||||||
|
height: 5px;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
mask-image: url('$(res)/img/location/pointer.svg');
|
||||||
|
mask-position: center;
|
||||||
|
mask-repeat: no-repeat;
|
||||||
|
mask-size: 9px;
|
||||||
|
content: '';
|
||||||
|
display: inline-block;
|
||||||
|
width: 9px;
|
||||||
|
height: 5px;
|
||||||
|
position: absolute;
|
||||||
|
background-color: $accent;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_MLocationBody_markerContents {
|
.mx_MLocationBody_markerContents {
|
||||||
|
|
|
@ -197,11 +197,8 @@ class LocationPicker extends React.Component<IProps, IState> {
|
||||||
viewUserOnClick={false}
|
viewUserOnClick={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<img
|
<div
|
||||||
className="mx_MLocationBody_pointer"
|
className="mx_MLocationBody_pointer"
|
||||||
src={require("../../../../res/img/location/pointer.svg")}
|
|
||||||
width="9"
|
|
||||||
height="5"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -188,11 +188,8 @@ export function LocationBodyContent(props: ILocationBodyContentProps):
|
||||||
<div className="mx_MLocationBody_markerBorder">
|
<div className="mx_MLocationBody_markerBorder">
|
||||||
{ markerContents }
|
{ markerContents }
|
||||||
</div>
|
</div>
|
||||||
<img
|
<div
|
||||||
className="mx_MLocationBody_pointer"
|
className="mx_MLocationBody_pointer"
|
||||||
src={require("../../../../res/img/location/pointer.svg")}
|
|
||||||
width="9"
|
|
||||||
height="5"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue