Changeset 9246 for src/django_gheat/website/static
- Timestamp:
- Jun 9, 2011, 5:32:53 PM (14 years ago)
- Location:
- src/django_gheat/website/static
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/django_gheat/website/static/heatmap_extensions.js
r9244 r9246 47 47 lname = encodeURIComponent(document.getElementById("lname").value); 48 48 49 // HEX to RGB: http://stackoverflow.com/questions/5798868/need-some-tips-with-how-to-convert-a-hexadecimal-color-value-to-a-rgb-one/5798900#5798900 50 // '#' comes out as '%23', so substr() starts at char 3 51 colour = parseInt((colour.substr(3, 2)),16) + ',' + parseInt((colour.substr(5, 2)),16) + ',' + parseInt((colour.substr(7, 2)),16); 52 49 53 if (user != ''){user='&meetrondje__gebruiker__naam='+user;} 50 54 if (dataset != ''){dataset='&meetrondje__naam='+dataset;} 51 if (wlnode != ' All'){wlnode='&accespoint__ssid='+wlnode;}55 if (wlnode != ''){wlnode='&accespoint__ssid='+wlnode;} 52 56 // if (enc != ''){enc='&accespoint__encryptie='+enc;} 53 57 // if (date != ''){date='&meetrondje__datum='+date;} -
src/django_gheat/website/static/style.css
r9237 r9246 111 111 color:#DDD; 112 112 } 113 114 115 /* Colorpicker */ 116 117 div.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 131 div#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 143 div.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.