Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
519e292d
Commit
519e292d
authored
Jan 25, 2016
by
clrux
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #11294 from edx/clrux/ac-323
Adjusting .sr mixins for NVDA/JAWS on Windows
parents
8c26178d
a0a9617a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
16 deletions
+24
-16
common/static/sass/_mixins.scss
+12
-8
lms/static/sass/base/_mixins.scss
+12
-8
No files found.
common/static/sass/_mixins.scss
View file @
519e292d
...
@@ -404,14 +404,18 @@
...
@@ -404,14 +404,18 @@
// +Content - Screenreader Text - Extend
// +Content - Screenreader Text - Extend
// ====================
// ====================
%cont-text-sr
{
%cont-text-sr
{
border
:
0
;
// clip has been deprecated but is still supported
clip
:
rect
(
0
0
0
0
);
clip
:
rect
(
1px
1px
1px
1px
);
height
:
1px
;
clip
:
rect
(
1px
,
1px
,
1px
,
1px
);
margin
:
-1px
;
position
:
absolute
;
overflow
:
hidden
;
margin
:
-1px
;
padding
:
0
;
height
:
1px
;
position
:
absolute
;
width
:
1px
;
width
:
1px
;
border
:
0
;
padding
:
0
;
overflow
:
hidden
;
// ensure there are spaces in sr text
word-wrap
:
normal
;
}
}
// +Content - Text Wrap - Extend
// +Content - Text Wrap - Extend
...
...
lms/static/sass/base/_mixins.scss
View file @
519e292d
...
@@ -125,14 +125,18 @@
...
@@ -125,14 +125,18 @@
// extends -hidden elems - screenreaders
// extends -hidden elems - screenreaders
%text-sr
{
%text-sr
{
border
:
0
;
// clip has been deprecated but is still supported
clip
:
rect
(
1px
1px
1px
1px
);
clip
:
rect
(
1px
1px
1px
1px
);
height
:
1px
;
clip
:
rect
(
1px
,
1px
,
1px
,
1px
);
margin
:
-1px
;
position
:
absolute
;
overflow
:
hidden
;
margin
:
-1px
;
padding
:
0
;
height
:
1px
;
position
:
absolute
;
width
:
1px
;
width
:
1px
;
border
:
0
;
padding
:
0
;
overflow
:
hidden
;
// ensure there are spaces in sr text
word-wrap
:
normal
;
}
}
// extends - ensures proper contrast for automated checkers
// extends - ensures proper contrast for automated checkers
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment