Skip to content
Closed
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
13 changes: 2 additions & 11 deletions css/firstrunwizard.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
@import 'colorbox.scss';

#cboxLoadedContent {
background-color: var(--color-main-background) !important;
border-radius: var(--border-radius-large);
overflow: hidden !important;
}
Expand Down Expand Up @@ -39,13 +40,6 @@
padding: 0;
}

.clientslinks .appsmall {
height: 32px;
width: 32px;
position: relative;
opacity: .5;
vertical-align: middle;
}
.clientslinks .button {
display: inline-block;
padding: 8px;
Expand Down Expand Up @@ -232,11 +226,8 @@
text-align: center;
}

.icon-source {
background-image: url('../img/source.svg');
}
.icon-world {
background-image: url('../img/world.svg');
background-image: var(--icon-link-000);
}

@media only screen and (max-width: 680px) {
Expand Down
6 changes: 3 additions & 3 deletions templates/page.clients.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,17 @@
<h3><?php p($l->t('Connect your desktop apps to %s', array($theme->getName()))); ?></h3>
<a target="_blank" class="button"
href="<?php p(link_to_docs('user-sync-calendars')) ?>" rel="noreferrer noopener">
<span class="icon icon-calendar-dark"></span>
<span class="icon-calendar-dark"></span>
<?php p($l->t('Connect your calendar')); ?>
</a>
<a target="_blank" class="button"
href="<?php p(link_to_docs('user-sync-contacts')) ?>" rel="noreferrer noopener">
<span class="icon icon-contacts-dark"></span>
<span class="icon-contacts-dark"></span>
<?php p($l->t('Connect your contacts')); ?>
</a>
<a target="_blank" class="button"
href="<?php p(link_to_docs('user-webdav')); ?>" rel="noreferrer noopener">
<span class="icon icon-files-dark"></span>
<span class="icon-files-dark"></span>
<?php p($l->t('Access files via WebDAV')); ?>
</a>
</div>
Expand Down
9 changes: 3 additions & 6 deletions templates/personal-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,15 @@

<div class="clientslinks">
<a target="_blank" class="button" href="<?php p(link_to_docs('user-sync-calendars')) ?>" rel="noreferrer noopener">
<img class="appsmall appsmall-calendar svg" alt=""
src="<?php p(image_path('core', 'places/calendar.svg')); ?>" />
<span class="icon-calendar-dark"></span>
<?php p($l->t('Connect your calendar'));?>
</a>
<a target="_blank" class="button" href="<?php p(link_to_docs('user-sync-contacts')) ?>" rel="noreferrer noopener">
<img class="appsmall appsmall-contacts svg" alt=""
src="<?php p(image_path('core', 'places/contacts.svg')); ?>" />
<span class="icon-contacts-dark"></span>
<?php p($l->t('Connect your contacts'));?>
</a>
<a target="_blank" class="button" href="<?php p(link_to_docs('user-webdav')); ?>" rel="noreferrer noopener">
<img class="appsmall svg" alt=""
src="<?php p(image_path('files', 'folder.svg')); ?>" />
<span class="icon-files-dark"></span>
<?php p($l->t('Access files via WebDAV'));?>
</a>
</div>
Expand Down