This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 160447

Summary: CSS navigator could separate rules for different medias
Product: web Reporter: Jindrich Sedek <jsedek>
Component: CSS Visual ToolsAssignee: Jan Stola <jstola>
Status: NEW ---    
Severity: blocker    
Priority: P2    
Version: 6.x   
Hardware: Sun   
OS: All   
Issue Type: ENHANCEMENT Exception Reporter:
Bug Depends on:    
Bug Blocks: 235151    

Description Jindrich Sedek 2009-03-17 11:51:07 UTC
I have a CSS code with medias:
---------------------
@media TV, screen{
    BODY{
        background-color: green;
        color:red;
    }
}
@media print {
    BODY {
        background-color: white;
        color:black;
    }
}
H2{
}

----------------
in navigator, there are just three lines:
CSS 
   BODY
   BODY
   H2
it would be better to separate media specific rules into a media category:
CSS
  TV, screen
     BODY
  print
     BODY
  H2
different icon for medias (TV, screen line) and CSS rules (H2 line) would also help users orientation