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 - CSS navigator could separate rules for different medias
Summary: CSS navigator could separate rules for different medias
Status: NEW
Alias: None
Product: web
Classification: Unclassified
Component: CSS Visual Tools (show other bugs)
Version: 6.x
Hardware: Sun All
: P2 blocker (vote)
Assignee: Jan Stola
URL:
Keywords:
Depends on:
Blocks: 235151
  Show dependency tree
 
Reported: 2009-03-17 11:51 UTC by Jindrich Sedek
Modified: 2014-10-06 13:26 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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