fix #1008, create folder from card and auto flag it

This commit is contained in:
2021-03-08 22:04:50 +01:00
parent d1e54b72b3
commit 1ec8a371b5
6 changed files with 133 additions and 9 deletions

View File

@ -1973,6 +1973,25 @@ article.card {
transition: color 0.3s ease-in-out; }
article.card nav.tools .tool.flags span.flag:hover, article.card nav.tools .tool.flags span.flag.isActive {
color: #1a1a1a; }
article.card nav.tools .tool.flags li.create-flag {
margin-top: 0.2em;
padding: 0; }
article.card nav.tools .tool.flags li.create-flag input {
align-self: flex-end;
border: 1px solid #bbb;
border-radius: 5px;
width: calc(100% - 2em);
font-size: 0.8em; }
article.card nav.tools .tool.flags li.create-flag span.add-btn {
align-self: flex-end;
color: #bbb;
font-size: 1em;
transition: all 0.2s ease-in-out; }
article.card nav.tools .tool.flags li.create-flag span.add-btn.active {
cursor: pointer;
color: #1a1a1a; }
article.card nav.tools .tool.flags li.create-flag span.add-btn.loading:before {
animation: rotating 2s linear infinite; }
article.card:hover nav.tools {
opacity: 1; }
article.card section.images {

File diff suppressed because one or more lines are too long