Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes: Library - Connection state's position when there are no libraries around #11442 #12948

Open
wants to merge 7 commits into
base: develop
Choose a base branch
from
Open
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<KGrid
gutter="0"
class="grid"
style="margin-bottom: -25px"
>
<KGridItem
:layout12="{ span: 6 }"
Expand All @@ -13,12 +14,13 @@
<h1 :style="{ marginLeft: '-8px' }">
{{ injectedtr('otherLibraries') }}
</h1>
</KGridItem>
<KGridItem
LianaHarris360 marked this conversation as resolved.
Show resolved Hide resolved
:layout12="{ span: 6 }"
:layout8="{ span: 4 }"
:layout4="{ span: 4 }"
>

<KGridItem
:layout12="{ span:12}"
:layout8="{ span:8}"
:layout4="{span:4 }"
class="connection-status">

<div class="sync-status">
<span
v-show="searchingOtherLibraries"
Expand Down Expand Up @@ -63,10 +65,12 @@
<KIcon icon="disconnected" />
</span>
&nbsp;&nbsp;
<span data-test="no-other-label">{{ injectedtr('noOtherLibraries') }}</span>
<span data-test="no-other-label">{{ injectedtr('noOtherLibraries') }}</span>
</span>
</div>
</KGridItem>
</KGridItem>
LianaHarris360 marked this conversation as resolved.
Show resolved Hide resolved

</KGrid>

<h2
Expand Down Expand Up @@ -233,14 +237,13 @@

<style lang="scss" scoped>

.sync-status {
.sync-status {
display: flex;
justify-content: flex-end;
margin: 30px 0 10px;

span {
display: inline-flex;
vertical-align: bottom;

}
}

Expand All @@ -257,4 +260,11 @@
margin-left: 0.75em;
}

</style>
.connection-status{
margin-bottom: 30px;
margin-top: -15px;
LianaHarris360 marked this conversation as resolved.
Show resolved Hide resolved
margin-left: -8px;
}


</style>
Loading