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.

View | Details | Raw Unified | Return to bug 233141
Collapse All | Expand All

(-)o.n.swing.plaf/src/org/netbeans/swing/plaf/metal/DarkMetalTheme.java (+4 lines)
Lines 175-181 Link Here
175
        // db.dataview
175
        // db.dataview
176
        UIManager.put("nb.dataview.table.background", new RelativeColor(new Color(0,0,0), new Color(0,0,0), "Table.background")); //NOI18N
176
        UIManager.put("nb.dataview.table.background", new RelativeColor(new Color(0,0,0), new Color(0,0,0), "Table.background")); //NOI18N
177
        UIManager.put("nb.dataview.table.altbackground", new RelativeColor(new Color(0,0,0), new Color(30,30,30), "Table.background")); //NOI18N
177
        UIManager.put("nb.dataview.table.altbackground", new RelativeColor(new Color(0,0,0), new Color(30,30,30), "Table.background")); //NOI18N
178
        UIManager.put("nb.dataview.tablecell.focused", new RelativeColor(new Color(0,0,0), new Color(10,10,30), "Table.selectionBackground")); //NOI18N
178
        UIManager.put("nb.dataview.table.rollOverRowBackground", new RelativeColor(new Color(0,0,0), new Color(30,30,30), "Table.selectionBackground")); //NOI18N
179
        UIManager.put("nb.dataview.table.rollOverRowBackground", new RelativeColor(new Color(0,0,0), new Color(30,30,30), "Table.selectionBackground")); //NOI18N
180
        UIManager.put("nb.dataview.tablecell.edited.selected.emptyNull.foreground", new Color(245, 245, 245));  //NOI18N
181
        UIManager.put("nb.dataview.tablecell.edited.selected.foreground", new Color(255, 248, 60));  //NOI18N
182
        UIManager.put("nb.dataview.tablecell.edited.unselected.foreground", new Color(0, 255, 16));  //NOI18N
179
183
180
        UIManager.put( "nb.laf.postinstall.callable", new Callable<Object>() { //NOI18N
184
        UIManager.put( "nb.laf.postinstall.callable", new Callable<Object>() { //NOI18N
181
185
(-)o.n.swing.plaf/src/org/netbeans/swing/plaf/nimbus/DarkNimbusTheme.java (-1 / +6 lines)
Lines 174-181 Link Here
174
        UIManager.put("nb.dataview.table.background", new RelativeColor(new Color(0,0,0), new Color(0,0,0), "Table.background")); //NOI18N
174
        UIManager.put("nb.dataview.table.background", new RelativeColor(new Color(0,0,0), new Color(0,0,0), "Table.background")); //NOI18N
175
        UIManager.put("nb.dataview.table.altbackground", new RelativeColor(new Color(0,0,0), new Color(30,30,30), "Table.background")); //NOI18N
175
        UIManager.put("nb.dataview.table.altbackground", new RelativeColor(new Color(0,0,0), new Color(30,30,30), "Table.background")); //NOI18N
176
        UIManager.put("Table.selectionBackground", new RelativeColor(new Color(0,0,0), new Color(0,0,0), "Table[Enabled+Selected].textBackground")); //NOI18N
176
        UIManager.put("Table.selectionBackground", new RelativeColor(new Color(0,0,0), new Color(0,0,0), "Table[Enabled+Selected].textBackground")); //NOI18N
177
        UIManager.put("nb.dataview.table.rollOverRowBackground", new RelativeColor(new Color(0,0,0), new Color(30,30,30), "Table[Enabled+Selected].textBackground"));
177
        UIManager.put("nb.dataview.tablecell.focused", new RelativeColor(new Color(0,0,0), new Color(30,10,10), "Table.selectionBackground")); //NOI18N
178
        UIManager.put("nb.dataview.table.rollOverRowBackground", new RelativeColor(new Color(0,0,0), new Color(30,30,30), "Table[Enabled+Selected].textBackground")); //NOI18N
179
        UIManager.put("nb.dataview.tablecell.edited.selected.emptyNull.foreground", new Color(245, 245, 245));  //NOI18N
180
        UIManager.put("nb.dataview.tablecell.edited.selected.foreground", new Color(255, 248, 60));  //NOI18N
181
        UIManager.put("nb.dataview.tablecell.edited.unselected.foreground", new Color(0, 255, 16));  //NOI18N
178
182
183
        
179
        UIManager.put( "nb.laf.postinstall.callable", new Callable<Object>() { //NOI18N
184
        UIManager.put( "nb.laf.postinstall.callable", new Callable<Object>() { //NOI18N
180
185
181
            @Override
186
            @Override

Return to bug 233141