Help needed about "Login as User (LAU2)" Addon

gumya

Well-known member
Registered
Joined
Oct 9, 2019
Messages
131
Points
53

Reputation:

How can i minimize the height of this? I can't find a template regarding this:
impersonate.PNG


I can see only two templates for this addon, but neither of them can control this>>>
template.PNG

@DareDevil
 

thomsa

Moderator
Staff member
Moderator
S.V.I.P Member
Collaborate
Registered
Joined
Jun 22, 2019
Messages
1,067
Points
173

Reputation:

to edit template app_staffbar.less

ok i fail :p

to edit at /admin.php?template-modifications - PAGE_CONTAINER LAU Login Info
 
Last edited:

gumya

Well-known member
Registered
Joined
Oct 9, 2019
Messages
131
Points
53

Reputation:

Code:
// ######################################### STAFF BAR #################################

.p-staffBar
{
    .xf-publicStaffBar();

    a { color: inherit;    }

    .hScroller-action
    {
        .m-hScrollerActionColorVariation(
            xf-default(@xf-publicStaffBar--background-color, transparent),
            xf-default(@xf-publicStaffBar--color, ~""),
            xf-intensify(@xf-publicStaffBar--color, 10%)
        );
    }
}

.p-staffBar-inner
{
    .m-pageWidth();
    .m-pageInset();
    .m-clearFix();

    padding-top: 4px;
    padding-bottom: 4px;
}

.p-staffBar-link
{
    display: inline-block;
    vertical-align: top;
    color: inherit;
    padding: 4px @xf-paddingMedium;
    margin-right: .35em;

    &:last-child
    {
        margin-right: 0;
    }

    &:hover
    {
        text-decoration: none;
        background: xf-diminish(@xf-publicStaffBar--background-color, 6%);
        border-radius: @xf-borderRadiusSmall;
    }
}
 

gumya

Well-known member
Registered
Joined
Oct 9, 2019
Messages
131
Points
53

Reputation:

Seems like i can't find it here, can you help please
 

gumya

Well-known member
Registered
Joined
Oct 9, 2019
Messages
131
Points
53

Reputation:

I sent you a pm, but am running it on localhost
 

thomsa

Moderator
Staff member
Moderator
S.V.I.P Member
Collaborate
Registered
Joined
Jun 22, 2019
Messages
1,067
Points
173

Reputation:

to edit template app_staffbar.less

ok i fail :p

to edit at /admin.php?template-modifications - PAGE_CONTAINER LAU Login Info

2020-08-11_14-20-34.png
 

gumya

Well-known member
Registered
Joined
Oct 9, 2019
Messages
131
Points
53

Reputation:

@thomsa Which line should i modify and what are dimension of this sample of yours, I like it.
 

BattleKing

Spirit of darkness
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P Member
Collaborate
Registered
Joined
May 24, 2020
Messages
3,514
Points
523

Reputation:

The text came from the phrases.xml
XML:
  <phrase title="lau_username_x_you_are_currently_using_username_y_account_click_here_to_go_back_to_your_account" version_id="20001" version_string="1.1.0."><![CDATA[<b>{from_username}</b>, you are currently using <b>{to_username}</b> account. Click <a href="{link}">here</a> to go back to your account.]]></phrase>
This will be used here:

1597135736600.png

Hope this help you!

What do you want to do?
 
Last edited:

Levi

Member
Registered
Joined
May 10, 2020
Messages
18
Points
13

Reputation:

add this to extra.less
CSS:
.blockMessage--important.blockMessage--iconic::before {
    width: 1em !important;
    font-size: xx-large !important;
}
.blockMessage--iconic, .block-rowMessage--iconic {
    min-height: auto !important;
}
Note: This will also reduce the size of all block notices.
 

thomsa

Moderator
Staff member
Moderator
S.V.I.P Member
Collaborate
Registered
Joined
Jun 22, 2019
Messages
1,067
Points
173

Reputation:

@gumya edit at field replace

replace with
HTML:
<xf:if is="{$xf.session.lau_id}">
    <div class="blockMessage blockMessage--important">
        {{ phrase('lau_username_x_you_are_currently_using_username_y_account_click_here_to_go_back_to_your_account',
        {
        'from_username': $xf.session.lau_from_name,
        'to_username': $xf.session.lau_to_name,
        'link': link('logout/lauout')
        }) }}
    </div>
</xf:if>

$0
 

thomsa

Moderator
Staff member
Moderator
S.V.I.P Member
Collaborate
Registered
Joined
Jun 22, 2019
Messages
1,067
Points
173

Reputation:

@gumya login with admin for edit.
 
Top