Skip to content

Commit

Permalink
Tidy up display of FullBeta
Browse files Browse the repository at this point in the history
  • Loading branch information
Dataliberate committed Sep 11, 2020
1 parent 1743459 commit a84d6d1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
5 changes: 3 additions & 2 deletions docs/detailTree/detailTree.css
Expand Up @@ -44,10 +44,11 @@
.dttLeaf > span::before{
content: url(dtt-bullet.png);
position: relative;
pading-right: 5px;
padding-right: 5px;
}

.ddtTree a{
.dttLabel>a:link,
.dttLeaf>a:link{
border-bottom: 0px !important;
}

Expand Down
6 changes: 0 additions & 6 deletions docs/detailTree/detailTree.js
Expand Up @@ -15,7 +15,6 @@
var child = children[j];
if(child.classList){
child.classList.add("dttFocusItem");
//child.tabIndex = 0;
child.addEventListener("keydown",dttLabelKey);
}
}
Expand All @@ -37,7 +36,6 @@
if(details.classList.contains("dttDetails")){
sum.addEventListener("keydown",dttSummaryKey);
sum.classList.add("dttFocusItem");
//sum.tabIndex = 0;
}
}

Expand Down Expand Up @@ -386,10 +384,6 @@
currentNode = null;
}
node.focus();
//node.tabIndex = 0;
//if(currentNode){
//currentNode.tabIndex = 0;
//}
}


Expand Down
4 changes: 2 additions & 2 deletions docs/schemaorg.css
Expand Up @@ -483,12 +483,12 @@ a.core:hover {
/* Extension links */
a.ext:link {
color: #0000aa !important;
border-bottom: dotted 1px #0000aa !important;
border-bottom-color:#0000aa !important;
text-decoration: none;
}
a.ext:visited {
color: #0000cc !important;
border-bottom: dotted 1px #0000cc !important;
border-bottom-color:#0000cc !important;
text-decoration: none;
}
a.ext:hover {
Expand Down

0 comments on commit a84d6d1

Please sign in to comment.