Resources/Web/css/jquery.treeTable.css
author moel.mich
Sun, 23 Sep 2012 18:37:43 +0000
changeset 380 573f1fff48b2
permissions -rw-r--r--
Fixed Issue 387. The new implementation does not try to start a ring 0 driver that already exists, but could not be opened. It tries to delete the driver and install it new. The driver is now stored temporarily in the application folder. The driver is not correctly removed on system shutdown.
     1 /* jQuery treeTable stylesheet
     2  *
     3  * This file contains styles that are used to display the tree table. Each tree
     4  * table is assigned the +treeTable+ class.
     5  * ========================================================================= */
     6 
     7 /* jquery.treeTable.collapsible
     8  * ------------------------------------------------------------------------- */
     9 .treeTable tr td .expander {
    10   background-position: left center;
    11   background-repeat: no-repeat;
    12   cursor: pointer;
    13   padding: 0;
    14   zoom: 1; /* IE7 Hack */
    15 }
    16 
    17 .treeTable tr.collapsed td .expander {
    18   background-image: url(../images/toggle-expand-dark.png);
    19 }
    20 
    21 .treeTable tr.expanded td .expander {
    22   background-image: url(../images/toggle-collapse-dark.png);
    23 }
    24 
    25 /* jquery.treeTable.sortable
    26  * ------------------------------------------------------------------------- */
    27 .treeTable tr.selected, .treeTable tr.accept {
    28   background-color: #3875d7;
    29   color: #fff;
    30 }
    31 
    32 .treeTable tr.collapsed.selected td .expander, .treeTable tr.collapsed.accept td .expander {
    33   background-image: url(../images/toggle-expand-light.png);
    34 }
    35 
    36 .treeTable tr.expanded.selected td .expander, .treeTable tr.expanded.accept td .expander {
    37   background-image: url(../images/toggle-collapse-light.png);
    38 }
    39 
    40 .treeTable .ui-draggable-dragging {
    41   color: #000;
    42   z-index: 1;
    43 }
    44 
    45 /* Layout helper taken from jQuery UI. This way I don't have to require the
    46  * full jQuery UI CSS to be loaded. */
    47 .ui-helper-hidden { display: none; }