fix(css): convert stray SCSS // line comments to CSS /* */ in praxis.css
The hand-edited live theme stylesheet uses // for line comments in
several places — valid in SCSS, invalid in CSS. Browsers recover but the
recovery can drop the surrounding declaration depending on context. The
body{} block at the top of the file in particular had `font-size: 14px;
//13px;` which on some browsers kills the whole rule, falling back to
Bootstrap's body defaults (Helvetica, line-height 1.428). Convert the
seven // line comments to /* */ so parsing is unambiguous.
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
body {
|
body {
|
||||||
font-family : 'Roboto', sans-serif;
|
font-family : 'Roboto', sans-serif;
|
||||||
font-size : 14px; //13px;
|
font-size : 14px; /* 13px; */
|
||||||
line-height : 24px;
|
line-height : 24px;
|
||||||
color : #969595;
|
color : #969595;
|
||||||
font-weight : 400;
|
font-weight : 400;
|
||||||
@@ -1631,7 +1631,7 @@ service-icon-style
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/////////////////////////////////////////////////////
|
/* ///////////////////////////////////////////////////
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
@@ -1814,20 +1814,20 @@ ul {
|
|||||||
/* --------------------------------------------------
|
/* --------------------------------------------------
|
||||||
employees start
|
employees start
|
||||||
-----------------------------------------------------*/
|
-----------------------------------------------------*/
|
||||||
// color : #ffffff;
|
.employees .section-title h2 {
|
||||||
/* color : #ffffff;
|
/* color : #ffffff;
|
||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
// color : #ffffff;
|
.employees {
|
||||||
padding : 50px 0px;
|
padding : 50px 0px;
|
||||||
/* color : #ffffff;
|
/* color : #ffffff;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// background : -moz-linear-gradient(-45deg, #f9f9f9 0%, #e000e0 100%); /* FF3.6-15 */
|
/* gradient: #f9f9f9+0,e000e0+100 */
|
||||||
// background : -webkit-linear-gradient(-45deg, #f9f9f9 0%, #e000e0 100%); /* Chrome10-25,Safari5.1-6 */
|
|
||||||
// background : linear-gradient(135deg, #f9f9f9 0%, #e000e0 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
background : #f9f9f9; /* Old browsers */
|
||||||
// filter : progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e000e0', GradientType=1); /* IE6-9 fallback on horizontal gradient */
|
/* background : -moz-linear-gradient(-45deg, #f9f9f9 0%, #e000e0 100%); /* FF3.6-15 */
|
||||||
*/
|
*/
|
||||||
/* background : -webkit-linear-gradient(-45deg, #f9f9f9 0%, #e000e0 100%); /* Chrome10-25,Safari5.1-6 */
|
/* background : -webkit-linear-gradient(-45deg, #f9f9f9 0%, #e000e0 100%); /* Chrome10-25,Safari5.1-6 */
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user