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

fix overlapping buttons #651

Merged
merged 2 commits into from
Dec 20, 2021
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions js/firstrunwizard-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/firstrunwizard-main.js.map

Large diffs are not rendered by default.

30 changes: 18 additions & 12 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -203,19 +203,25 @@
max-width: 100% !important;
width: 100%;
}
.page #wizard-values li {
min-width: 100%;
overflow: hidden;
display: flex;
span {
width: 44px !important;
padding-right: 20px;
flex-grow: 0;
.page {
#wizard-values li {
min-width: 100%;
overflow: hidden;
display: flex;
span {
width: 44px !important;
padding-right: 20px;
flex-grow: 0;
}
h3 {
font-size: 12px;
text-align: left;
flex-grow: 1;
}
}
h3 {
font-size: 12px;
text-align: left;
flex-grow: 1;

&.content-final {
padding-bottom: 50px;
}
}
}
Expand Down
24 changes: 12 additions & 12 deletions templates/page.final.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@
?>

<div class="page content-final" data-title="<?php p($l->t('Get help')); ?>" data-subtitle="">
<div class="description">
<div class="description-block">
<h3 class="icon-user"><?php p($l->t('Start contributing')); ?></h3>
<p><?php p($l->t('Do you want to get a certain improvement in Nextcloud? Did you find a problem? Do you want to help translate, promote or document Nextcloud?')); ?></p>
<a href="https://nextcloud.com/contribute/" class="button" target="_blank" rel="noreferrer noopener"><?php p($l->t('Become part of the Community')); ?></a>
</div>
<div class="description-block">
<h3 class="icon-link"><?php p($l->t('Enterprise support')); ?></h3>
<p><?php p($l->t('If you run Nextcloud in a mission critical environment with large numbers of users and big amounts of data and need the certainty of support from the experts behind the Nextcloud technology, an Enterprise Subscription from Nextcloud is available with email and phone support.')); ?></p>
<a href="https://nextcloud.com/enterprise/buy" class="button"target="_blank" rel="noreferrer noopener" ><?php p($l->t('Get enterprise support')); ?></a>
</div>
</div>
<div class="description">
<div class="description-block">
<h3 class="icon-info"><?php p($l->t('Get more information')); ?></h3>
Expand All @@ -23,16 +35,4 @@
</ul>
</div>
</div>
<div class="description">
<div class="description-block">
<h3 class="icon-user"><?php p($l->t('Start contributing')); ?></h3>
<p><?php p($l->t('Do you want to get a certain improvement in Nextcloud? Did you find a problem? Do you want to help translate, promote or document Nextcloud?')); ?></p>
<a href="https://nextcloud.com/contribute/" class="button" target="_blank" rel="noreferrer noopener"><?php p($l->t('Become part of the Community')); ?></a>
</div>
<div class="description-block">
<h3 class="icon-link"><?php p($l->t('Enterprise support')); ?></h3>
<p><?php p($l->t('If you run Nextcloud in a mission critical environment with large numbers of users and big amounts of data and need the certainty of support from the experts behind the Nextcloud technology, an Enterprise Subscription from Nextcloud is available with email and phone support.')); ?></p>
<a href="https://nextcloud.com/enterprise/buy" class="button"target="_blank" rel="noreferrer noopener" ><?php p($l->t('Get enterprise support')); ?></a>
</div>
</div>
</div>