Lepší odlišení zmáčknutých a nezmáčknutých tagů
This commit is contained in:
parent
c004e4f6d2
commit
b872e6693e
2 changed files with 3 additions and 2 deletions
|
@ -168,7 +168,8 @@ form {
|
||||||
margin: 2px;
|
margin: 2px;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
|
|
||||||
&[data-selected="false"] { opacity: 0.7; }
|
&[data-selected="false"] { background: unset !important; }
|
||||||
|
/*&[data-selected="true"] { border-color: unset !important; }*/
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Šipky na posouvání korektur */
|
/* Šipky na posouvání korektur */
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<br/>
|
<br/>
|
||||||
<span id="commform-tagy">
|
<span id="commform-tagy">
|
||||||
{% for tag in tagy %}
|
{% for tag in tagy %}
|
||||||
<button type="button" class="korektury-tag" value="{{tag.id}}" data-selected="false" style="background: {{ tag.barva }};">{{tag.nazev}}</button>
|
<button type="button" class="korektury-tag" value="{{tag.id}}" data-selected="false" style="background: {{ tag.barva }}; border-color: {{ tag.barva }};">{{tag.nazev}}</button>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue