fix #1008, create folder from card and auto flag it
This commit is contained in:
@@ -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
@@ -1119,6 +1119,31 @@ article.card{
|
||||
color:#1a1a1a;
|
||||
}
|
||||
}
|
||||
li.create-flag{
|
||||
margin-top: 0.2em;
|
||||
padding:0;
|
||||
input{
|
||||
align-self: flex-end;
|
||||
border: 1px solid #bbb;
|
||||
border-radius:5px;
|
||||
width: calc(100% - 2em);
|
||||
font-size:0.8em;
|
||||
}
|
||||
span.add-btn{
|
||||
align-self: flex-end;
|
||||
color: #bbb;
|
||||
font-size: 1em;
|
||||
// padding: 0 0 0 .5em;
|
||||
transition: all 0.2s ease-in-out;
|
||||
&.active{
|
||||
cursor: pointer;
|
||||
color:#1a1a1a;
|
||||
}
|
||||
&.loading:before{
|
||||
animation: rotating 2s linear infinite;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
opacity: 0;
|
||||
transition: opacity 0.2s ease-in-out;
|
||||
|
Reference in New Issue
Block a user