source: products/quintagroup.referencedatagridfield/trunk/quintagroup/referencedatagridfield/skins/referencedatagridfield/referencedatagridwidget.css.dtml @ 2294

Last change on this file since 2294 was 2294, checked in by mylan, 14 years ago

Added styles for showing rows manipulator buttons on tr:hover

  • Property svn:eol-style set to native
File size: 1.2 KB
Line 
1/*
2  DataGridWidget CSS definitions
3  ------------------------------------------
4 
5  Copyright 2006 Red Innovation <http://www.redinnovation.com>
6 
7  <dtml-with base_properties> (Loads base_properties variables)
8
9  <dtml-call "REQUEST.set('portal_url', portal_url())"> (Do not change this)
10   
11*/
12
13
14input.hidden-field {
15        /* Radio buttons try to use Plone's default text input
16           field CSS properties, like borders and background shade image */
17        background: #eeeeff none repeat scroll 0 0;
18        color: black;
19}
20
21input.not-changed-title-field {
22        color: gray;
23}
24
25input.changed-title-field {
26        color: black;
27}
28
29
30/*  ___Start__ Hover functionality */
31.ArchetypesReferenceDataGridWidget table.datagridwidget-table-edit td.datagridwidget-manipulator {
32    visibility: hidden;
33/*    background-color: &dtml-backgroundColor;*/
34}
35
36*html .ArchetypesReferenceDataGridWidget table.datagridwidget-table-edit td.datagridwidget-manipulator {
37    visibility: visible;
38}
39
40.ArchetypesReferenceDataGridWidget table.datagridwidget-table-edit tr:hover td.datagridwidget-manipulator {
41    visibility: visible;
42}
43/*  ___END__ Hover functionality */
44 
45
46/*
47  </dtml-with>  (end of loaded base_properties variables)
48*/
Note: See TracBrowser for help on using the repository browser.