Skip to content

Commit

Permalink
Mobile view fixes, update to Shaarli v0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kcaran committed Nov 28, 2023
1 parent 0cf3699 commit f34204c
Show file tree
Hide file tree
Showing 10 changed files with 82 additions and 50 deletions.
56 changes: 35 additions & 21 deletions css/shaarli.css
Original file line number Diff line number Diff line change
Expand Up @@ -4228,17 +4228,18 @@ pre {
right: 22px; }
.linklist-filters a {
display: inline-block;
margin: 3px 4px;
padding: 5px 8px;
margin: 0 6px;
padding: 2px 8px;
font-size: 20px;
text-decoration: none; }
.linklist-filters a:hover {
background-color: #fff; }
.linklist-filters .filter-off {
background: #f5f5f5;
color: #252525; }
.linklist-filters .filter-on {
background: #b0ddce;
color: var(--main-color); }
background: #d28314;
color: #252525; }
.linklist-filters .filter-block {
background: #ac2925;
color: #f5f5f5; }
Expand Down Expand Up @@ -4322,14 +4323,15 @@ pre {
text-align: center; }

.linklist-item-tags {
margin: 1em 0 1em 24px;
margin: 1em 0;
position: relative; }
.linklist-item-tags .ctrl-checkbox {
position: absolute;
left: -24px;
position: relative;
top: 7px;
margin-right: 8px; }
.linklist-item-tags .label-tag {
margin-bottom: 12px; }
.linklist-item-tags .ctrl-checkbox input[type="checkbox"] {
width: 24px;
height: 24px; }

h2.linklist-item-title {
position: relative;
Expand Down Expand Up @@ -4483,14 +4485,21 @@ h2.linklist-item-title {
.linklist-item-infos-controls-item a.fold-button .fa:hover {
border: 1px solid #0b5ea6; }

.linkqrcode a:before {
font-family: "ForkAwesome";
content: "\f029";
font-size: 24px;
padding: 4px 12px; }
.linkqrcode {
display: initial !important;
position: initial !important; }
.linkqrcode a:before {
font-family: "ForkAwesome";
content: "\f029";
font-size: 24px;
padding: 4px 12px; }
.linkqrcode a img {
display: none; }

.linkqrcode a img {
display: none; }
#permalinkQrcode {
width: 240px !important;
height: 260px !important;
left: calc( 50% - 120px) !important; }

.footer-container {
margin: 20px 0;
Expand Down Expand Up @@ -5002,19 +5011,24 @@ form[name='linkform'].page-form {
.page-form .submit-buttons .button {
margin: auto; }
.subheader-form {
padding-top: 32px;
padding-bottom: 32px;
height: 84px; }
height: 104px; }
.subheader-form div > div {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 12px 8px; }
.linklist-item {
padding: 0 1em; }
.linklist-paging {
padding: 0; }
padding: 0;
min-height: 48px; }
.linklist-pages span:first-child {
margin-left: 8px; }
.linklist-item-infos {
position: relative;
top: 6px;
right: -16px;
right: 16px;
min-width: calc( 100% + 32px);
display: flex;
justify-content: flex-end; }
.linklist-filters {
Expand Down
2 changes: 1 addition & 1 deletion editlink.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ <h2 class="window-title">
<p class="{if="$retrieve_description"}{$asyncLoadClass}{/if}">
<label for="lf_tags{$batchId}">{'Tags'|t}
<input type="text" name="lf_tags" id="lf_tags{$batchId}" value="{$link.tags}" class="lf_input autofocus"
data-list="{loop="$tags"}{$key}, {/loop}" data-multiple data-autofirst autocomplete="off" >
data-list="{loop="$tags"}{$key}, {/loop}" data-multiple data-autofirst autocomplete="off" autocapitalize="off">
</label>
</p>

Expand Down
2 changes: 1 addition & 1 deletion js/pluginsadmin.min.js

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

Loading

0 comments on commit f34204c

Please sign in to comment.