mirror of
https://github.com/hkalexling/Mango.git
synced 2025-08-02 19:05:32 -04:00
Break words in modal title and path to handle long text
This commit is contained in:
parent
88b16445e2
commit
750a28eccb
@ -20,7 +20,7 @@
|
||||
#scan-status {
|
||||
cursor: auto;
|
||||
}
|
||||
.uk-card-title {
|
||||
.break-word {
|
||||
word-wrap: break-word;
|
||||
}
|
||||
.uk-logo > img {
|
||||
|
@ -36,7 +36,7 @@
|
||||
<%- if t.entries.size > 0 -%>
|
||||
<div class="uk-card-badge uk-label"><%= (percentage[i] * 100).round(1) %>%</div>
|
||||
<%- end -%>
|
||||
<h3 class="uk-card-title"><%= t.title %></h3>
|
||||
<h3 class="uk-card-title break-word"><%= t.title %></h3>
|
||||
<p><%= t.size %> entries</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -45,7 +45,7 @@
|
||||
<%- if t.entries.size > 0 -%>
|
||||
<div class="uk-card-badge uk-label"><%= (titles_percentage[i] * 100).round(1) %>%</div>
|
||||
<%- end -%>
|
||||
<h3 class="uk-card-title"><%= t.title %></h3>
|
||||
<h3 class="uk-card-title break-word"><%= t.title %></h3>
|
||||
<p><%= t.size %> entries</p>
|
||||
</div>
|
||||
</div>
|
||||
@ -73,8 +73,8 @@
|
||||
<div class="uk-modal-dialog uk-margin-auto-vertical">
|
||||
<button class="uk-modal-close-default" type="button" uk-close></button>
|
||||
<div class="uk-modal-header">
|
||||
<h3 class="uk-modal-title" id="modal-title"></h3>
|
||||
<p class="uk-text-meta uk-margin-remove-bottom" id="path-text"></p>
|
||||
<h3 class="uk-modal-title break-word" id="modal-title"></h3>
|
||||
<p class="uk-text-meta uk-margin-remove-bottom break-word" id="path-text"></p>
|
||||
<p class="uk-text-meta uk-margin-remove-top" id="pages-text"></p>
|
||||
</div>
|
||||
<div class="uk-modal-body">
|
||||
|
Loading…
x
Reference in New Issue
Block a user