[ Index ]

PHP Cross Reference of Drupal 6 (gatewave)

title

Body

[close]

/sites/all/modules/features/ -> features.css (source)

   1  /**
   2   * Features packages.
   3   */
   4  div.features-form-links {
   5    width:20%;
   6    float:left;
   7    }
   8  
   9  div.features-form-content {
  10    width:80%;
  11    float:right;
  12    }
  13  
  14  /**
  15   * Package links.
  16   */
  17  div.features-form-links ul#features-form-links,
  18  div.features-form-links ul#features-form-links li,
  19  div.features-form-links ul#features-form-links li a {
  20    display:block;
  21    float:none;
  22    padding:0px;
  23    margin:0px;
  24    }
  25  
  26    div.features-form-links ul#features-form-links { margin:0px 0px 10px; }
  27  
  28    div.features-form-links ul#features-form-links li a {
  29      background:#f8f8f8;
  30      padding:5px 5px 4px 4px;
  31      border-left:1px solid #eee;
  32      border-bottom:1px solid #eee;
  33      cursor:pointer;
  34      }
  35  
  36    div.features-form-links ul#features-form-links li a.features-package-active {
  37      padding:4px 5px 4px 4px;
  38      background:#fff;
  39      border:1px solid #ccc;
  40      border-right:0px;
  41      margin-right:-1px;
  42      }
  43  
  44  /* Packages */
  45  div.features-form-package {
  46    border:1px solid #ccc;
  47    background:#fff;
  48    padding:10px;
  49    margin:0px 0px 20px;
  50    display:none;
  51    }
  52  
  53    div.features-package-active { display:block; }
  54  
  55  /**
  56   * Features management form (admin/build/features).
  57   */
  58  div.features-empty {
  59    margin:15px 0px;
  60    font-size:1.5em;
  61    text-align:center;
  62    color:#999;
  63    }
  64  
  65  form div.buttons { text-align:center; }
  66  
  67  table.features .admin-loading,
  68  table.features tr.disabled { color:#999; }
  69  
  70    table.features a.configure { float:right; font-style:italic; }
  71    table.features div.feature { float:left; width:85%; }
  72    table.features div.feature strong { font-size:13px; }
  73    table.features div.feature div.description { font-size:11px; margin:0px; }
  74  
  75    table.features-manage td.name { width:80%; }
  76    table.features-manage td.sign { width:20%; }
  77  
  78    table.features-admin td.name { width:60%; }
  79    table.features-admin td.sign { width:20%; }
  80    table.features-admin td.state { width:10%; }
  81    table.features-admin td.actions { width:10%; }
  82  
  83    table.features td.sign {
  84      font-size:9px;
  85      line-height:15px;
  86      white-space:nowrap;
  87      }
  88  
  89    table.features td.sign * { margin:0px; }
  90  
  91    table.features .admin-check,
  92    table.features .admin-default,
  93    table.features .admin-overridden,
  94    table.features .admin-rebuilding,
  95    table.features .admin-needs-review { display:none; }
  96  
  97  /**
  98   * Feature export form (admin/build/features/export).
  99   */
 100  form.features-export-form table td { width:50%; }
 101  form.features-export-form table td { vertical-align:top; }
 102  form.features-export-form table div.description { white-space:normal; }
 103  
 104  table.features-export div.form-item { white-space:normal; }
 105  table.features-export select { width:90%; }
 106  table.features-export td { vertical-align:top; }
 107  
 108  form.features-export-form div.features-select { display:none; }
 109  
 110  form.features-export-form div.form-checkboxes {
 111    overflow-x:hidden;
 112    overflow-y:auto;
 113    height:20em;
 114    }
 115  
 116  form.features-export-form div#edit-components-wrapper,
 117  form.features-export-form div.features-select { padding-right:20px; }
 118  
 119  /**
 120   * Feature component display (admin/build/features/%feature).
 121   */
 122  div.features-components div.column {
 123    float:left;
 124    width:50%;
 125    }
 126  
 127  div.features-components div.column div.info { padding-right:20px; }
 128  div.features-components div.column div.components { padding-left:20px; }
 129  
 130  h3.features-download,
 131  div.features-comparison h3,
 132  div.features-components h3 {
 133    font-size:2em;
 134    font-weight:bold;
 135    letter-spacing:-1px;
 136    margin:15px 0px;
 137    }
 138  
 139    h3.features-download { text-align:center; }
 140  
 141  div.features-components div.description {
 142    font-size:11px;
 143    margin:15px 0px;
 144    }
 145  
 146  div.features-components table td { font-size:11px; }
 147  div.features-components table td.component { padding-left:20px; }
 148  
 149  /**
 150   * Features component lists.
 151   */
 152  span.features-component-key { font-size:11px; }
 153  
 154  a.admin-update,
 155  a.features-storage,
 156  span.features-storage,
 157  span.features-component-list span {
 158    white-space:nowrap;
 159    margin-right:5px;
 160    padding:2px 5px;
 161    background:#eee;
 162  
 163    -moz-border-radius:5px;
 164    -webkit-border-radius:5px;
 165    }
 166  
 167    div.features-key span.admin-conflict,
 168    span.features-component-list span.features-conflict {
 169      background-color: #c30;
 170      color: #fff;
 171      }
 172  
 173    a.admin-update { background:transparent; }
 174  
 175    /* These pseudo selectors are necessary for themes like Garland. */
 176    a.admin-overridden:link,
 177    a.admin-overridden:visited,
 178    span.admin-overridden {
 179      color:#fff;
 180      background:#666;
 181      }
 182  
 183    a.admin-needs-review:link,
 184    a.admin-needs-review:visited,
 185    span.admin-needs-review {
 186      color:#963;
 187      background:#fe6;
 188      }
 189  
 190    a.admin-rebuilding:link,
 191    a.admin-rebuilding:visited,
 192    span.admin-rebuilding {
 193      color:#fff;
 194      background:#699;
 195      }
 196  
 197    a.admin-conflict:link,
 198    a.admin-conflict:visited,
 199    span.admin-conflict {
 200      color:#c30;
 201      }
 202  
 203  table.features-diff td.diff-addedline,
 204  span.features-component-list .features-detected {
 205    color:#68a;
 206    background:#def;
 207    }
 208  
 209  table.features-diff td.diff-deletedline,
 210  span.features-component-list .features-dependency {
 211    color:#999;
 212    background:#f8f8f8;
 213    }
 214  
 215  /**
 216   * Features diff.
 217   */
 218  table.features-diff { font-size:11px; }
 219  
 220  table.features-diff td { padding:0px 5px; }
 221  
 222  table.features-diff td.diff-deletedline,
 223  table.features-diff td.diff-addedline,
 224  table.features-diff td.diff-context {
 225    width:50%;
 226    font-family:'Andale Mono',monospace;
 227    }


Generated: Thu Mar 24 11:18:33 2011 Cross-referenced by PHPXref 0.7