Fix PHP, CSS AND JS coding standards
This commit is contained in:
parent
2351bef6ca
commit
f94fc1e59b
42 changed files with 357 additions and 213 deletions
|
@ -5,6 +5,7 @@
|
|||
position: relative;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
||||
@include clearfix;
|
||||
|
||||
.cart-contents {
|
||||
|
@ -31,12 +32,12 @@
|
|||
line-height: 1.618;
|
||||
font-size: 1em;
|
||||
width: 5.3em;
|
||||
font-family: 'star';
|
||||
font-family: star;
|
||||
font-weight: 400;
|
||||
|
||||
&:before {
|
||||
&::before {
|
||||
content: "\53\53\53\53\53";
|
||||
opacity: .25;
|
||||
opacity: 0.25;
|
||||
float: left;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
@ -52,7 +53,7 @@
|
|||
padding-top: 1.5em;
|
||||
}
|
||||
|
||||
span:before {
|
||||
span::before {
|
||||
content: "\53\53\53\53\53";
|
||||
top: 0;
|
||||
position: absolute;
|
||||
|
@ -62,6 +63,7 @@
|
|||
}
|
||||
|
||||
p.stars {
|
||||
|
||||
a {
|
||||
position: relative;
|
||||
height: 1em;
|
||||
|
@ -72,7 +74,8 @@ p.stars {
|
|||
margin-right: 1px;
|
||||
font-weight: 400;
|
||||
|
||||
&:before {
|
||||
&::before {
|
||||
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
|
@ -80,25 +83,28 @@ p.stars {
|
|||
width: 1em;
|
||||
height: 1em;
|
||||
line-height: 1;
|
||||
font-family: "star";
|
||||
font-family: star;
|
||||
content: "\53";
|
||||
color: $color__text-main;
|
||||
text-indent: 0;
|
||||
opacity: .25;
|
||||
opacity: 0.25;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
~ a:before {
|
||||
|
||||
~ a::before {
|
||||
content: "\53";
|
||||
color: $color__text-main;
|
||||
opacity: .25;
|
||||
opacity: 0.25;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
||||
a {
|
||||
&:before {
|
||||
|
||||
&::before {
|
||||
content: "\53";
|
||||
color: $color__link;
|
||||
opacity: 1;
|
||||
|
@ -107,22 +113,25 @@ p.stars {
|
|||
}
|
||||
|
||||
&.selected {
|
||||
|
||||
a.active {
|
||||
&:before {
|
||||
|
||||
&::before {
|
||||
content: "\53";
|
||||
color: $color__link;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
~ a:before {
|
||||
~ a::before {
|
||||
content: "\53";
|
||||
color: $color__text-main;
|
||||
opacity: .25;
|
||||
opacity: 0.25;
|
||||
}
|
||||
}
|
||||
|
||||
a:not(.active) {
|
||||
&:before {
|
||||
|
||||
&::before {
|
||||
content: "\53";
|
||||
color: $color__link;
|
||||
opacity: 1;
|
||||
|
@ -135,6 +144,7 @@ p.stars {
|
|||
* Tabs
|
||||
*/
|
||||
.woocommerce-tabs {
|
||||
|
||||
ul.tabs {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
|
@ -154,6 +164,7 @@ p.stars {
|
|||
}
|
||||
|
||||
.panel {
|
||||
|
||||
h2:first-of-type {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
@ -187,13 +198,16 @@ p.stars {
|
|||
* Forms
|
||||
*/
|
||||
.form-row {
|
||||
|
||||
&.woocommerce-validated {
|
||||
|
||||
input.input-text {
|
||||
box-shadow: inset 2px 0 0 $woocommerce__color-success;
|
||||
}
|
||||
}
|
||||
|
||||
&.woocommerce-invalid {
|
||||
|
||||
input.input-text {
|
||||
box-shadow: inset 2px 0 0 $woocommerce__color-error;
|
||||
}
|
||||
|
@ -201,7 +215,7 @@ p.stars {
|
|||
}
|
||||
|
||||
.required {
|
||||
color: red;
|
||||
color: #f00;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -212,6 +226,7 @@ p.stars {
|
|||
.woocommerce-error,
|
||||
.woocommerce-noreviews,
|
||||
p.no-comments {
|
||||
|
||||
@include clearfix;
|
||||
background-color: $woocommerce__color-success;
|
||||
clear: both;
|
||||
|
@ -239,10 +254,12 @@ p.no-comments {
|
|||
}
|
||||
|
||||
@media screen and (min-width: 48em) {
|
||||
|
||||
/**
|
||||
* Header cart
|
||||
*/
|
||||
.site-header-cart {
|
||||
|
||||
.widget_shopping_cart {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
|
@ -255,6 +272,7 @@ p.no-comments {
|
|||
|
||||
&:hover,
|
||||
&.focus {
|
||||
|
||||
.widget_shopping_cart {
|
||||
left: 0;
|
||||
display: block;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue