Skip to content

Commit

Permalink
#1015 Fixes/changes to crossword page including:
Browse files Browse the repository at this point in the history
 - New text position optional property
 - Improved moving around page with keyboard (so you don't get stuck in crossword when tabbed to)
 - Shift-Tab in crossword now works
 - Improved way marking is done when > 1 attempts allowed
 - Reworded some strings in xwd & added hints
  • Loading branch information
FayCross committed Mar 3, 2022
1 parent 8fa8f69 commit 5aa7442
Show file tree
Hide file tree
Showing 5 changed files with 227 additions and 191 deletions.
Expand Up @@ -73,6 +73,10 @@
padding-left: 0;
}

#Across, #Down {
padding-left: .3em;
}

#x_pageDiv table td, #x_pageDiv table th{
padding: 0;
}
Expand Down Expand Up @@ -117,16 +121,22 @@
}

#pageContents-innerContainer{
display: flex ;
display: flex;
justify-content: center;
}

#clues-container{
width: 100%;
margin-top: 1em;
}

#clues-container th {
text-decoration: underline;
#clues-container table {
width: 100%;
}

#x_pageDiv #clues-container table th, #x_pageDiv #clues th {
border-bottom: 2px solid black;
padding: .2em;
}

#pageContents-innerContainer.crosswordLeft #clues-container {
Expand Down Expand Up @@ -178,6 +188,10 @@
margin-top: 1em;
float: right;
}

.panel #showButton{
float: none;
}

.li-clue{
cursor: pointer;
Expand Down

0 comments on commit 5aa7442

Please sign in to comment.