Make the date selector properly keyboard accessible

This commit is contained in:
Alex Kilgour
2016-01-29 14:37:02 +00:00
parent b3b2cd21da
commit 27cdf51258
8 changed files with 59 additions and 55 deletions

View File

@@ -252,7 +252,7 @@
word-wrap:break-word;
}
.h4 {
margin-bottom:22px;
margin-bottom:6px;
}
}
.date {
@@ -347,18 +347,31 @@ ul.date-links {
z-index:10;
}
.date-selector {
margin-top:-125px;
margin-bottom:5px;
.btn-group > .btn {
float:none;
.show-stats {
margin-top: 0;
}
&.single-result {
margin-top:-52px;
h2 {
margin-top: 0;
}
.show-stats {
display:none;
}
.dates-list {
margin: 0;
padding: 0;
list-style-type: none;
}
.dates-list > li {
list-style-type: none;
padding: 0;
margin: 0;
}
.dates-list a {
color: #fff;
text-decoration: underline;
}
}
@@ -368,11 +381,11 @@ ul.date-links {
width:100%;
}
.graph-spacer {
margin-bottom:60px;
padding-bottom:60px;
margin-bottom:30px;
padding-bottom:30px;
}
.graph-table {
margin-bottom:50px;
margin-bottom:0;
td {
width:25%;

View File

@@ -545,6 +545,7 @@
// Wells
// -------------------------
@well-bg: #f5f5f5;
@well-bg-drk: #2c3e50;
// Badges

View File

@@ -27,3 +27,11 @@
padding: 9px;
border-radius: @border-radius-small;
}
// Dark well
.dark-well {
background-color: @well-bg-drk;
border-color: darken(@well-bg-drk, 7%);
color: #fff;
}