1
0
mirror of https://github.com/aquatix/digimarks.git synced 2025-12-06 22:05:09 +01:00

Moved tags to the metadata card reveal

This commit is contained in:
2018-03-17 14:56:38 +01:00
parent 45d44d3bdf
commit c6089f1caa
3 changed files with 9 additions and 9 deletions

View File

@@ -43,7 +43,7 @@ nav .sidenav-trigger i
/*display: block;*/ /*display: block;*/
} }
.card .digimark-card-content .card .digimark-card-header-tags
{ {
padding-top: 10px; padding-top: 10px;
} }

View File

@@ -33,7 +33,7 @@
color: {{ theme.TEXTHEX }} !important; color: {{ theme.TEXTHEX }} !important;
} }
</style> </style>
<link href="{{ url_for('static', filename='css/digimarks.css') }}?20171225" type="text/css" rel="stylesheet" media="screen,projection"/> <link href="{{ url_for('static', filename='css/digimarks.css') }}?20180317" type="text/css" rel="stylesheet" media="screen,projection"/>
</head> </head>
<body class="{{ theme.BODY }} {{ theme.TEXT }}"> <body class="{{ theme.BODY }} {{ theme.TEXT }}">
<nav class="{{ theme.NAV }}" role="navigation"> <nav class="{{ theme.NAV }}" role="navigation">

View File

@@ -19,13 +19,6 @@
<div class="card-stacked"> <div class="card-stacked">
<div class="card-content {{ theme.CARD_TEXT }}"> <div class="card-content {{ theme.CARD_TEXT }}">
<span class="digimark-card-header activator"> <span class="digimark-card-header activator">
<span class="digimark-card-header-tags">
{% for tag in bookmark.tags_list %}
<div class="chip">
<a href="{{ url_for('tag', userkey=userkey, tag=tag) }}">{{ tag }}</a>
</div>
{% endfor %}
</span>
<i class="material-icons right">more_vert</i> <i class="material-icons right">more_vert</i>
</span> </span>
<div class="digimark-card-content"> <div class="digimark-card-content">
@@ -45,6 +38,13 @@
<a href="{{ url_for('editbookmark', userkey=userkey, urlhash=bookmark.url_hash) }}" style="padding: 3px"><i class="tiny material-icons">mode_edit</i> EDIT</a> <a href="{{ url_for('editbookmark', userkey=userkey, urlhash=bookmark.url_hash) }}" style="padding: 3px"><i class="tiny material-icons">mode_edit</i> EDIT</a>
<a href="{{ url_for('deletingbookmark', userkey=userkey, urlhash=bookmark.url_hash) }}" style="padding: 3px" class="red-text"><i class="tiny material-icons">delete</i> DELETE</a> <a href="{{ url_for('deletingbookmark', userkey=userkey, urlhash=bookmark.url_hash) }}" style="padding: 3px" class="red-text"><i class="tiny material-icons">delete</i> DELETE</a>
</div> </div>
<div class="digimark-card-header-tags">
{% for tag in bookmark.tags_list %}
<div class="chip">
<a href="{{ url_for('tag', userkey=userkey, tag=tag) }}">{{ tag }}</a>
</div>
{% endfor %}
</div>
</div> </div>
</div> </div>
</div> </div>