Merge branch 'imransobir-newbmarkstyle'
This commit is contained in:
commit
392809c423
@ -165,11 +165,11 @@ Contributors, sorted by the number of commits in descending order:
|
|||||||
* Corentin Julé
|
* Corentin Julé
|
||||||
* meles5
|
* meles5
|
||||||
* Philipp Hansch
|
* Philipp Hansch
|
||||||
|
* Imran Sobir
|
||||||
* Panagiotis Ktistakis
|
* Panagiotis Ktistakis
|
||||||
* Artur Shaik
|
* Artur Shaik
|
||||||
* Nathan Isom
|
* Nathan Isom
|
||||||
* Thorsten Wißmann
|
* Thorsten Wißmann
|
||||||
* Imran Sobir
|
|
||||||
* Austin Anderson
|
* Austin Anderson
|
||||||
* Fritz Reichwald
|
* Fritz Reichwald
|
||||||
* Jimmy
|
* Jimmy
|
||||||
|
@ -1,34 +1,66 @@
|
|||||||
{% extends "base.html" %}
|
{% extends "styled.html" %}
|
||||||
|
|
||||||
{% block style %}
|
{% block style %}
|
||||||
table { border: 1px solid grey; border-collapse: collapse; width: 100%;}
|
{{super()}}
|
||||||
th, td { border: 1px solid grey; padding: 0px 5px; }
|
h1 {
|
||||||
th { background: lightgrey; }
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.url a {
|
||||||
|
color: #444;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.qmarks .name {
|
||||||
|
padding-left: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.empty-msg {
|
||||||
|
background-color: #f8f8f8;
|
||||||
|
color: #444;
|
||||||
|
display: inline-block;
|
||||||
|
text-align: center;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<table>
|
<h1>Quickmarks</h1>
|
||||||
<tr>
|
|
||||||
<th><h3>Bookmark</h3></th>
|
{% if quickmarks|length %}
|
||||||
<th><h3>URL</h3></th>
|
<table class="qmarks">
|
||||||
</tr>
|
<tbody>
|
||||||
{% for url, title in bookmarks %}
|
|
||||||
<tr>
|
|
||||||
<td><a href="{{url}}">{{title}}</a></td>
|
|
||||||
<td>{{url}}</td>
|
|
||||||
</tr>
|
|
||||||
{% endfor %}
|
|
||||||
<tr>
|
|
||||||
<th><h3>Quickmark</h3></th>
|
|
||||||
<th><h3>URL</h3></th>
|
|
||||||
</tr>
|
|
||||||
{% for name, url in quickmarks %}
|
{% for name, url in quickmarks %}
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="{{url}}">{{name}}</a></td>
|
<td class="name"><a href="{{url}}">{{name}}</a></td>
|
||||||
<td>{{url}}</td>
|
<td class="url"><a href="{{url}}">{{url}}</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
{% else %}
|
||||||
|
<span class="empty-msg">You have no quickmarks</span>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<h1>Bookmarks</h1>
|
||||||
|
|
||||||
|
{% if bookmarks|length %}
|
||||||
|
<table class="bmarks">
|
||||||
|
<tbody>
|
||||||
|
{% for url, title in bookmarks %}
|
||||||
|
<tr>
|
||||||
|
<td class="name"><a href="{{url}}">{{title | default(url, true)}}</a></td>
|
||||||
|
<td class="url"><a href="{{url}}">{{url}}</a></td>
|
||||||
|
</tr>
|
||||||
|
{% endfor %}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
{% else %}
|
||||||
|
<span class="empty-msg">You have no bookmarks</span>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -1,29 +1,9 @@
|
|||||||
{% extends "base.html" %}
|
{% extends "styled.html" %}
|
||||||
|
|
||||||
{% block style %}
|
{% block style %}
|
||||||
|
{{super()}}
|
||||||
body {
|
body {
|
||||||
background: #fefefe;
|
|
||||||
font-family: sans-serif;
|
|
||||||
margin: 0 auto;
|
|
||||||
max-width: 1440px;
|
max-width: 1440px;
|
||||||
padding-left: 20px;
|
|
||||||
padding-right: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
color: #444;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
table {
|
|
||||||
border-collapse: collapse;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
td {
|
|
||||||
max-width: 50%;
|
|
||||||
padding: 2px 5px;
|
|
||||||
text-align: left;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
td.title {
|
td.title {
|
||||||
@ -36,19 +16,6 @@ td.time {
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
color: #2562dc
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr:nth-child(odd) {
|
|
||||||
background-color: #f8f8f8;
|
|
||||||
}
|
|
||||||
|
|
||||||
.date {
|
.date {
|
||||||
color: #888;
|
color: #888;
|
||||||
font-size: 14pt;
|
font-size: 14pt;
|
||||||
@ -66,7 +33,6 @@ tr:nth-child(odd) {
|
|||||||
color: #333;
|
color: #333;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
41
qutebrowser/html/styled.html
Normal file
41
qutebrowser/html/styled.html
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
|
||||||
|
{% block style %}
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #2562dc
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background: #fefefe;
|
||||||
|
font-family: sans-serif;
|
||||||
|
margin: 0 auto;
|
||||||
|
max-width: 1280px;
|
||||||
|
padding-left: 20px;
|
||||||
|
padding-right: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
color: #444;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
tbody tr:nth-child(odd) {
|
||||||
|
background-color: #f8f8f8;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
max-width: 50%;
|
||||||
|
padding: 2px 5px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
{% endblock %}
|
Loading…
Reference in New Issue
Block a user