ba16b8714b
- the bulk of image use is in webviews, so we move almost all used images to web/imgs, as it's easier to manage - change AnkiWebView to always use the local media server as a base, as much of the UI has come to depend on it - remove images from a few areas, as they felt dated - delete a bunch of unused images - href=# links were being opened in a browser window, so the code now ignores them - the HTML should really be updated to return false in the onclick handler - update a few icons
67 lines
821 B
CSS
67 lines
821 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;
|
|
}
|
|
|
|
.gears {
|
|
width: 1em;
|
|
height: 1em;
|
|
opacity: .5;
|
|
padding-top: 0.2em;
|
|
}
|