[ticket/15115] Fix errors

PHPBB3-15115
This commit is contained in:
hanakin 2017-03-19 16:15:33 -04:00
parent ae85c9e91d
commit 79f865bd56
5 changed files with 16 additions and 16 deletions

View file

@ -17,11 +17,11 @@
display: inline-block; display: inline-block;
padding: 2px 8px; padding: 2px 8px;
cursor: pointer; cursor: pointer;
touch-action: manipulation;
-moz-user-select: none; -moz-user-select: none;
-ms-user-select: none; -ms-user-select: none;
-webkit-user-select: none; -webkit-user-select: none;
user-select: none; user-select: none;
touch-action: manipulation;
} }
.button:focus, .button:focus,

View file

@ -1094,20 +1094,13 @@ ul.cplist {
color: #d31141; color: #d31141;
} }
/* This ID needs factored out */
@media only screen and (max-width: 900px), only screen and (max-device-width: 900px) { @media only screen and (max-width: 900px), only screen and (max-device-width: 900px) {
/* stylelint-disable selector-no-id */ .navigation a,
#navigation a, .rtl .navigation a {
.rtl #navigation a {
background: #b2c2cf; background: #b2c2cf;
} }
/* stylelint-enable */
} }
/* stylelint-disable selector-max-compound-selectors */
/* stylelint-disable selector-no-qualifying-type */
/* stylelint-disable no-indistinguishable-colors */
/* preferences pane layout */ /* preferences pane layout */
.panel-container h2 { .panel-container h2 {
color: #333333; color: #333333;

View file

@ -1055,12 +1055,14 @@ fieldset.fields1 dl.pmlist dd.recipients {
animation: rotator 1s linear infinite; animation: rotator 1s linear infinite;
} }
/* stylelint-disable no-unknown-animations */
.spinner-path { .spinner-path {
stroke-dasharray: 187;
stroke-dashoffset: 0;
transform-origin: center; transform-origin: center;
animation: dash 1s ease-in-out infinite, colors 4s ease-in-out infinite; animation: dash 1s ease-in-out infinite, colors 4s ease-in-out infinite;
stroke-dasharray: 187;
stroke-dashoffset: 0;
} }
/* stylelint-enable no-unknown-animations */
@keyframes rotator { @keyframes rotator {
0% { 0% {
@ -1078,13 +1080,13 @@ fieldset.fields1 dl.pmlist dd.recipients {
} }
50% { 50% {
stroke-dashoffset: 46.75;
transform: rotate(135deg); transform: rotate(135deg);
stroke-dashoffset: 46.75;
} }
100% { 100% {
stroke-dashoffset: 187;
transform: rotate(450deg); transform: rotate(450deg);
stroke-dashoffset: 187;
} }
} }

View file

@ -11,15 +11,17 @@
*/ */
.icon, .icon,
.button .icon { .button .icon {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: FontAwesome; font-family: FontAwesome;
font-size: 14px; font-size: 14px;
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
font-variant: normal; font-variant: normal;
-webkit-font-smoothing: antialiased;
line-height: 1; line-height: 1;
display: inline-block; display: inline-block;
/* stylelint-disable order/declaration-block-properties-specified-order */
-moz-osx-font-smoothing: grayscale;
/* stylelint-enable order/declaration-block-properties-specified-order */
text-rendering: auto; /* optimizelegibility throws things off #1094 */ text-rendering: auto; /* optimizelegibility throws things off #1094 */
} }

View file

@ -4,6 +4,7 @@
/* stylelint-disable selector-max-compound-selectors */ /* stylelint-disable selector-max-compound-selectors */
/* stylelint-disable declaration-property-unit-whitelist */ /* stylelint-disable declaration-property-unit-whitelist */
/* stylelint-disable declaration-property-unit-blacklist */
/* Lots still TODO here! */ /* Lots still TODO here! */
@ -222,4 +223,6 @@ ul {
height: 1em; height: 1em;
min-height: 18px; min-height: 18px;
} }
/* stylelint-enable selector-max-compound-selectors */
/* stylelint-enable declaration-property-unit-whitelist */ /* stylelint-enable declaration-property-unit-whitelist */
/* stylelint-enable declaration-property-unit-blacklist */