mirror of
https://github.com/ankitects/anki.git
synced 2025-12-08 12:26:55 -05:00
Users can now mark individual cards with one of four different coloured flags, instead of relying on a tag that applied to the whole note. - replaced marking functionality in reviewer and browser with new flag options - added flag:x search - marked and leech tags now show in normal tag list in filter screen, instead of being treated specially - the other clients will need updating to set and shown the flags, but flags set in the beta should be preserved by the other clients
10 lines
315 B
CSS
10 lines
315 B
CSS
hr { background-color:#ccc; margin: 1em; }
|
|
body { margin:1.5em; }
|
|
img { max-width: 95%; max-height: 95%; }
|
|
#_flag {
|
|
position:fixed; right: 7px; top: 0px; font-size: 30px; display: none;
|
|
}
|
|
#typeans { width: 100%; }
|
|
.typeGood { background: #0f0; }
|
|
.typeBad { background: #f00; }
|
|
.typeMissed { background: #ccc; }
|