Skip to content

Commit

Permalink
fixed : [HTML] removed type attribute for style elements
Browse files Browse the repository at this point in the history
  • Loading branch information
nikeo committed Oct 27, 2021
1 parent c6c2511 commit 9f03f80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ var czrapp = czrapp || {};
// I'm probabably missing something. Ref: http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleDeclaration
// probably not very supported by browsers?
// getOverrideStyle($_dropdown[0], ':before');
$("<style type='text/css' id='" + this._dyn_style_id +"'>" + this._dyn_style + "</style>")
$("<style id='" + this._dyn_style_id +"'>" + this._dyn_style + "</style>")
.appendTo( this.$_head );
},

Expand Down
2 changes: 1 addition & 1 deletion core/_dev/_admin/class-fire-admin_page.php
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ function czr_fn_fix_wp_footer_link_style() {
if ( 'appearance_page_welcome' != $screen-> id )
return;
?>
<style type="text/css" id="tc-fix-wp-footer-position">
<style id="tc-fix-wp-footer-position">
.wp-admin #wpfooter {bottom: inherit;}
</style>
<?php
Expand Down

0 comments on commit 9f03f80

Please sign in to comment.