Skip to content

Commit

Permalink
Merge pull request #7316 from craftcms/hotfix/remove-period-content-css
Browse files Browse the repository at this point in the history
Stop screen reader from announcing random periods
  • Loading branch information
brandonkelly committed Jan 1, 2021
2 parents 5fc40fd + 7f43d62 commit 922e7af
Show file tree
Hide file tree
Showing 39 changed files with 71 additions and 71 deletions.
2 changes: 1 addition & 1 deletion src/web/assets/cp/dist/css/charts.css.map

Large diffs are not rendered by default.

46 changes: 23 additions & 23 deletions src/web/assets/cp/dist/css/craft.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/web/assets/cp/dist/css/craft.css.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/web/assets/cp/src/css/_cp.scss
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ $systemInfoHoverBgColor: darken($grey800, 10%);

&:after {
display: block;
content: '.';
content: '';
font-size: 0;
position: absolute;
top: 0;
Expand Down Expand Up @@ -346,7 +346,7 @@ $systemInfoHoverBgColor: darken($grey800, 10%);
display: block;
position: absolute;
top: 0;
content: '.';
content: '';
font-size: 0;
width: 0;
height: 0;
Expand Down
2 changes: 1 addition & 1 deletion src/web/assets/cp/src/css/_fld.scss
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ body.dragging {
left: 10px;
width: calc(100% - 20px);
height: 4px;
content: '.';
content: '';
font-size: 0;
background-color: $grey100;
border-radius: 2px;
Expand Down
4 changes: 2 additions & 2 deletions src/web/assets/cp/src/css/_image_editor.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ html.noscroll, html.noscroll body {
margin-top: -4px;
margin-left: -3px;
display: inline-block;
content: ' ';
content: '';
}

.modal.imageeditor .icon.rotate-left::before {
Expand Down Expand Up @@ -281,7 +281,7 @@ html.noscroll, html.noscroll body {
position: relative;

&:after {
content: "";
content: '';
display: block;
position: absolute;
right: -24px;
Expand Down
18 changes: 9 additions & 9 deletions src/web/assets/cp/src/css/_main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1171,7 +1171,7 @@ ul.icons {

.btn.icon.add.loading:after {
position: absolute;
content: '.';
content: '';
font-size: 0;
display: block;
width: 24px;
Expand Down Expand Up @@ -2252,7 +2252,7 @@ $elementInnerSpacing: 5px;
@include padding-right($baseElementSidePadding + 24);

&:after {
content: '.';
content: '';
font-size: 0;
position: absolute;
bottom: 0;
Expand All @@ -2277,7 +2277,7 @@ $checkboxPadding: $checkboxSize + 4;

&:after {
display: block;
content: '.';
content: '';
font-size: 0;
position: absolute;
top: 0;
Expand Down Expand Up @@ -2713,7 +2713,7 @@ table.editable {
opacity: 1;

&:after {
content: '.';
content: '';
font-size: 0;
position: absolute;
top: 0;
Expand Down Expand Up @@ -3072,7 +3072,7 @@ ul.tree,

&:after {
display: block;
content: '.';
content: '';
font-size: 0;
position: absolute;
top: 0;
Expand Down Expand Up @@ -3557,7 +3557,7 @@ ul.tree,

&.loading {
&:after {
content: '.';
content: '';
font-size: 0;
display: block;
position: absolute;
Expand Down Expand Up @@ -4383,7 +4383,7 @@ div.checkbox:empty {

input.checkbox + label:empty:after,
div.checkbox:empty:after {
content: '.';
content: '';
font-size: 0;
}

Expand All @@ -4397,7 +4397,7 @@ div.checkbox:before {
width: $checkboxSize !important;
height: $checkboxSize;
box-sizing: border-box;;
content: '.';
content: '';
font-size: 0;
background-color: hsl(212, 50%, 99%);
border: 1px solid transparentize($inputColor, 0.6);
Expand Down Expand Up @@ -5097,7 +5097,7 @@ ul.errors li {
width: 100%;
height: 100%;
visibility: visible;
content: '.';
content: '';
font-size: 0;
border-radius: $smallBorderRadius;
box-shadow: inset 0 1px 3px -1px darken($grey200, 10%);
Expand Down
2 changes: 1 addition & 1 deletion src/web/assets/craftsupport/dist/CraftSupportWidget.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/web/assets/craftsupport/src/CraftSupportWidget.scss
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@

&:before {
display: block;
content: '.';
content: '';
font-size: 0;
position: absolute;
top: 0;
Expand Down
2 changes: 1 addition & 1 deletion src/web/assets/dashboard/dist/Dashboard.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/web/assets/dashboard/dist/dashboard.css.map

Large diffs are not rendered by default.

0 comments on commit 922e7af

Please sign in to comment.