Skip to content

Commit c5fcd81

Browse files
General CSS improvements to the Fetch Metadata UI
1 parent 534c289 commit c5fcd81

File tree

7 files changed

+30
-18
lines changed

7 files changed

+30
-18
lines changed
103 KB
Loading

root/app/calibre-web/cps/static/css/caliBlur.css

Lines changed: 20 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

root/app/calibre-web/cps/static/css/caliBlur_cwa.css

Whitespace-only changes.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/* Truncates a books description if if spans more than 8 lines */
2+
dd.meta_description {
3+
display: -webkit-box;
4+
-webkit-line-clamp: 15;
5+
-webkit-box-orient: vertical;
6+
overflow: hidden;
7+
}

root/app/calibre-web/cps/static/css/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ input.pill:not(:checked) + label .glyphicon {
569569
}
570570

571571
.padded-bottom {
572-
margin-bottom: 15px;
572+
/* margin-bottom: 15px; */
573573
}
574574
.upload-format-input-text {
575575
display: initial;

root/app/calibre-web/cps/templates/layout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
{% if g.current_theme == 1 %}
2323
<link href="{{ url_for('static', filename='css/caliBlur.css') }}" rel="stylesheet" media="screen">
2424
<link href="{{ url_for('static', filename='css/caliBlur_override.css') }}" rel="stylesheet" media="screen">
25-
<link href="{{ url_for('static', filename='css/caliBlur_cwa.css') }}" rel="stylesheet" media="screen">
2625
{% endif %}
26+
<link href="{{ url_for('static', filename='css/cwa.css') }}" rel="stylesheet" media="screen">
2727
<script>
2828
let checkMessagesInterval = null; // Store interval ID
2929

root/app/calibre-web/cps/templates/profile_pictures.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,8 @@
1818
{% if g.current_theme == 1 %}
1919
<link href="{{ url_for('static', filename='css/caliBlur.css') }}" rel="stylesheet" media="screen">
2020
<link href="{{ url_for('static', filename='css/caliBlur_override.css') }}" rel="stylesheet" media="screen">
21-
<link href="{{ url_for('static', filename='css/caliBlur_cwa.css') }}" rel="stylesheet" media="screen">
2221
{% endif %}
23-
22+
<link href="{{ url_for('static', filename='css/cwa.css') }}" rel="stylesheet" media="screen">
2423
</head>
2524

2625
<style>

0 commit comments

Comments
 (0)