f3f90842dc
- stdHtml() css= arg now takes a list of files like js= - the files are loaded in the head of the document so that styling that comes later in the document can easily override it fixes: https://anki.tenderapp.com/discussions/beta-testing/661-anki-210-beta-7/page/1#comment_43164447 https://anki.tenderapp.com/discussions/beta-testing/661-anki-210-beta-7#comment_43177130
60 lines
735 B
CSS
60 lines
735 B
CSS
a.deck {
|
|
color: #000;
|
|
text-decoration: none;
|
|
min-width: 5em;
|
|
display: inline-block;
|
|
}
|
|
|
|
a.deck:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
tr.deck td {
|
|
border-bottom: 1px solid #e7e7e7;
|
|
}
|
|
|
|
tr.top-level-drag-row td {
|
|
border-bottom: 1px solid transparent;
|
|
}
|
|
|
|
td {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
tr.drag-hover td {
|
|
border-bottom: 1px solid #aaa;
|
|
}
|
|
|
|
body {
|
|
margin: 1em;
|
|
-webkit-user-select: none;
|
|
}
|
|
|
|
.current {
|
|
background-color: #e7e7e7;
|
|
}
|
|
|
|
.decktd {
|
|
min-width: 15em;
|
|
}
|
|
|
|
.count {
|
|
min-width: 4em;
|
|
text-align: right;
|
|
}
|
|
|
|
.optscol {
|
|
width: 2em;
|
|
}
|
|
|
|
.collapse {
|
|
color: #000;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
width: 1em;
|
|
}
|
|
|
|
.filtered {
|
|
color: #00a !important;
|
|
}
|