Skip to content

Commit

Permalink
Upgrade to version 12
Browse files Browse the repository at this point in the history
  • Loading branch information
kcaran committed Aug 29, 2020
1 parent 84fac5a commit 4e56670
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 4 deletions.
10 changes: 10 additions & 0 deletions css/shaarli.css
Original file line number Diff line number Diff line change
Expand Up @@ -4472,6 +4472,16 @@ pre {
padding: 4px 12px; }
.linklist-item-infos-controls-item a:hover {
border: 1px solid #0b5ea6; }
.linklist-item-infos-controls-item a.fold-button {
border: none; }
.linklist-item-infos-controls-item a.fold-button .fa {
display: inline-block;
border-radius: 3px;
border: 1px solid #fff;
font-size: 24px;
padding: 4px 12px; }
.linklist-item-infos-controls-item a.fold-button .fa:hover {
border: 1px solid #0b5ea6; }

.linkqrcode a:before {
font-family: "ForkAwesome";
Expand Down
1 change: 1 addition & 0 deletions js/markdown.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion js/shaarli.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/thumbnails_update.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion linklist.html
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ <h2 class="pure-u-3-5">
</div>

<span class="linklist-item-infos-controls-item">
<a href="#" aria-label="{$strFold}" title="{$strFold}" class="fold-button fa fa-chevron-up" aria-hidden="true"></a>
<a href="#" aria-label="{$strFold}" title="{$strFold}" class="fold-button" aria-hidden="true"><i class="fa fa-chevron-up" aria-hidden="true"></i></a>
</span>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion page.header.html
Original file line number Diff line number Diff line change
Expand Up @@ -201,4 +201,4 @@
</div>
{/if}

<div class="clear"></div>
<div class="clear">KAC {$links_per_page}</div>
16 changes: 16 additions & 0 deletions sass/shaarli.scss
Original file line number Diff line number Diff line change
Expand Up @@ -936,6 +936,22 @@ pre {
border: 1px solid $blue;
}
}

// This is needed for the js to work correctly
a.fold-button {
border: none;
.fa {
display: inline-block;
border-radius: 3px;
border: 1px solid $white;
font-size: 24px;
padding: 4px 12px;

&:hover {
border: 1px solid $blue;
}
}
}
}

// Replace QR Code png with icon
Expand Down

0 comments on commit 4e56670

Please sign in to comment.