I just found a way to view all your stylesheets using jquery first:
, -, , , :
<style id="localRules">...</style>
jQuery, id'd, :
var sheetToChange = "localRules";
var sheets = $(document.styleSheets);
for (var thisSheet=0;thisSheet<sheets.length;thisSheet++){
if(sheets[thisSheet].ownerNode.id == sheetToChange ){
var ruleSet = sheets[thisSheet].cssRules || sheets[thisSheet].rules;
for (var thisRule=0;thisRule<ruleSet.length;thisRule++){
if(ruleSet[thisRule].selectorText == "body"){
ruleSet[thisRule].style.cursor = "pointer";
}
}
break;
}
}
, ... , , , , ownerNode - , .