mirror of
https://github.com/ankitects/anki.git
synced 2025-11-11 07:07:13 -05:00
tweak layout
This commit is contained in:
parent
19af7ef67e
commit
3b085c486e
2 changed files with 12 additions and 6 deletions
|
|
@ -10,20 +10,20 @@ from anki.utils import fmtTimeSpan
|
|||
from anki.hooks import addHook
|
||||
|
||||
_css = """
|
||||
body { background-color: #ddd; }
|
||||
td { border-bottom: 1px solid #000;}
|
||||
body { background-color: #eee; }
|
||||
#outer { margin-top: 1em; }
|
||||
.sub { color: #555; }
|
||||
hr { margin: 5 0 5 0; }
|
||||
"""
|
||||
|
||||
_body = """
|
||||
<center>
|
||||
<div id="outer">
|
||||
<h1>%s</h1>
|
||||
<table cellspacing=0 width=90%%>
|
||||
<table cellspacing=0 cellpadding=0 width=90%%>
|
||||
%s
|
||||
</table>
|
||||
<br>
|
||||
<br><br>
|
||||
%s
|
||||
</div>
|
||||
"""
|
||||
|
|
@ -58,8 +58,9 @@ class DeckBrowser(object):
|
|||
self._reorderDecks()
|
||||
if self._decks:
|
||||
buf = ""
|
||||
max=len(self._decks)-1
|
||||
for c, deck in enumerate(self._decks):
|
||||
buf += self._deckRow(c, deck)
|
||||
buf += self._deckRow(c, max, deck)
|
||||
self.web.stdHtml(_body%(_("Decks"), buf, self._summary()), _css)
|
||||
else:
|
||||
buf = ("""\
|
||||
|
|
@ -88,7 +89,7 @@ later by using File>Close.
|
|||
d['time'] = self.deck._dailyStats.reviewTime
|
||||
d['reps'] = self.deck._dailyStats.reps
|
||||
|
||||
def _deckRow(self, c, deck):
|
||||
def _deckRow(self, c, max, deck):
|
||||
buf = "<tr>"
|
||||
# name and status
|
||||
ok = deck['state'] == 'ok'
|
||||
|
|
@ -153,6 +154,8 @@ later by using File>Close.
|
|||
# self.moreMenus.append(moreMenu)
|
||||
# layout.addWidget(moreButton, c+1, 6)
|
||||
buf += "</tr>"
|
||||
if c != max:
|
||||
buf += "<tr><td colspan=3><hr noshade></td></tr>"
|
||||
return buf
|
||||
|
||||
def _buttons(self):
|
||||
|
|
|
|||
|
|
@ -383,6 +383,9 @@ Please do not file a bug report with Anki.<br>""")
|
|||
|
||||
def keyPressEvent(self, evt):
|
||||
"Show answer on RET or register answer."
|
||||
print "keypressevent"
|
||||
evt.ignore()
|
||||
return
|
||||
if evt.key() in (Qt.Key_Up,Qt.Key_Down,Qt.Key_Left,Qt.Key_Right,
|
||||
Qt.Key_PageUp,Qt.Key_PageDown):
|
||||
mf = self.bodyView.body.page().currentFrame()
|
||||
|
|
|
|||
Loading…
Reference in a new issue