Ignore:
Timestamp:
Jun 9, 2011, 5:32:53 PM (13 years ago)
Author:
dennisw
Message:

Added a colorpicker for the filters.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/django_gheat/website/static/style.css

    r9237 r9246  
    111111  color:#DDD;
    112112}
     113
     114
     115/* Colorpicker */
     116 
     117div.color_picker {
     118  height: 16px;
     119  width: 16px;
     120  padding: 0 !important;
     121  border: 1px solid #ccc;
     122  background: url(img/arrow.gif) no-repeat top right;
     123  cursor: pointer;
     124  line-height: 16px;
     125  z-index:2;
     126  float:left;
     127  margin-top:-3px;
     128  margin-right:3px;
     129}
     130
     131div#color_selector {
     132  width: 110px;
     133  position: absolute;
     134  border: 1px solid #598FEF;
     135  background-color: #EFEFEF;
     136  padding: 2px;
     137  z-index:2;
     138}
     139  div#color_custom {width: 100%; float:left }
     140  div#color_custom label {font-size: 95%; color: #2F2F2F; margin: 5px 2px; width: 25%}
     141  div#color_custom input {margin: 5px 2px; padding: 0; font-size: 95%; border: 1px solid #000; width: 65%; }
     142
     143div.color_swatch {
     144  height: 12px;
     145  width: 12px;
     146  border: 1px solid #000;
     147  margin: 2px;
     148  float: left;
     149  cursor: pointer;
     150  line-height: 12px;
     151  z-index:2;
     152}
     153
Note: See TracChangeset for help on using the changeset viewer.