Files
edx-platform/lms/static/sass/course/_textbook.scss
Giulio Gratta 5a46177a5e A11Y changes: better :focus styling, increased contrast, and added image alt texts
- Doubled up :hover and :focus styling to improve a11y
- Increase contrast of certain UI elements for improved a11y
- Added some image alt text for a11y
- Changed video caption styling to blue and made them underline on hover and added a skip link before video for screenreaders.

Fixes Bugs:
- LMS-1336
2013-10-24 12:47:19 -07:00

261 lines
4.5 KiB
SCSS
Executable File

div.book-wrapper {
max-width: 1150px;
margin: 0 auto;
width: 100%;
background-color: $white;
#toolbarViewer {
padding: 0 ($baseline/2);
#toolbarViewerLeft {
display: inline-block;
}
.outerCenter {
display: inline-block;
position: absolute;
right: ($baseline/2);
.innerCenter {
right: auto;
}
.dropdownToolbarButton {
margin: 3px 2px 4px 0;
}
}
}
#open_close_accordion {
display: none;
}
.pdfbook-wrap {
display: table;
width: 100%;
}
.pdfbook-wrap-inner {
display: table-row;
}
section.book-sidebar {
@extend .sidebar;
@extend .tran;
@include box-sizing(border-box);
padding: 10px 0;
border-radius: 3px 0 0 3px;
border: 1px solid #ccc;
border-right: none;
width: 250px;
ul#booknav {
font-size: em(14);
.chapter-number {
}
.chapter {
float: left;
width: 87%;
line-height: 1.4em;
}
.page-number {
float: right;
width: 12%;
font-size: .8em;
line-height: 2.1em;
text-align: right;
color: #9a9a9a;
opacity: 0.0;
@include transition(opacity .15s linear 0s);
}
li {
background: none;
border-bottom: 0;
padding-left: ($baseline/2);
a {
@include clearfix;
padding: 0;
color: $link-color;
cursor: pointer;
&:hover, &:focus {
background-color: transparent;
color: $link-hover;
.page-number {
opacity: 1.0;
}
}
}
div.hitarea {
background-image: url('../images/treeview-default.gif');
position: relative;
top: 4px;
&:hover, &:focus {
filter: alpha(opacity=60);
opacity: 0.6;
}
}
ul {
background: none;
margin-top: lh(.25);
padding-top: lh(.25);
li {
padding-bottom: 10px;
}
}
}
> li {
padding: 5px 6px;
margin: ($baseline/4) ($baseline/2);
}
}
}
section.book {
@extend .content;
padding: 0;
width:76%;
nav {
@extend .clearfix;
a {
@extend .block-link;
padding: 0 lh();
}
ul {
@extend .clearfix;
li {
position: absolute;
height: 100%;
width: flex-grid(2, 8);
z-index: 1;
a {
background-color: rgba(#000, .7);
background-position: center;
background-repeat: no-repeat;
@include box-sizing(border-box);
display: table;
height: 100%;
opacity: 0.0;
filter: alpha(opacity=0);
text-indent: -9999px;
@include transition(none);
vertical-align: middle;
width: 100%;
&:hover, &:focus {
opacity: 1.0;
}
&.is-disabled {
display:none;
}
}
&.last {
left: 0;
a {
background-image: url('../images/textbook/textbook-left.png');
}
}
&.next {
right: 0;
a {
background-image: url('../images/textbook/textbook-right.png');
}
}
}
}
&.bottom-nav {
border-bottom: 0;
margin-bottom: -(lh());
margin-top: lh();
}
}
section.page {
border-left: 1px solid $border-color;
background-color: #fff;
position: relative;
text-align: center;
border-radius: 0 3px 3px 0;
img {
max-width: 100%;
}
#viewer {
padding: $baseline;
}
div {
text-align: left;
line-height: 1.6em;
margin: 5px;
.Paragraph, h2 {
margin-top: 10px;
}
}
}
}
&.closed {
section.book-sidebar {
width: flex-grid(.6);
header#open_close_accordion {
padding: 0;
a {
background-image: url('../images/slide-right-icon.png');
}
h2 {
padding: 0;
visibility: hidden;
width: 10px;
}
}
ul#booknav {
max-height: 100px;
overflow: hidden;
padding: 0;
visibility: hidden;
width: 10px;
}
}
section.course-content {
width: flex-grid(11.5) + flex-gutter();
}
}
}