| 1 |
#content { |
| 2 |
position: absolute; |
| 3 |
top: 0; |
| 4 |
right: 0; |
| 5 |
bottom: 60px; |
| 6 |
left: 0; |
| 7 |
z-index: 75; |
| 8 |
overflow: auto; |
| 9 |
background-color: white; |
| 10 |
} |
| 11 |
|
| 12 |
#canvas { |
| 13 |
position: absolute; |
| 14 |
left: 10px; |
| 15 |
right: 310px; |
| 16 |
top: 10px; |
| 17 |
bottom: 10px; |
| 18 |
} |
| 19 |
|
| 20 |
.loader { |
| 21 |
position: absolute; |
| 22 |
left: 50%; |
| 23 |
top: 50%; |
| 24 |
margin-left: -16px; |
| 25 |
margin-top: -16px; |
| 26 |
} |
| 27 |
|
| 28 |
/******************************************************************************/ |
| 29 |
/******************************** SIDEBAR ***********************************/ |
| 30 |
/******************************************************************************/ |
| 31 |
|
| 32 |
#sidebar { |
| 33 |
position: absolute; |
| 34 |
top: 0; |
| 35 |
right: 0; |
| 36 |
bottom: 60px; |
| 37 |
width: 299px; |
| 38 |
z-index: 75; |
| 39 |
background: whitesmoke; |
| 40 |
border-left: 1px solid #DFDFDF; |
| 41 |
overflow: auto; |
| 42 |
-webkit-overflow-scrolling: touch; |
| 43 |
} |
| 44 |
|
| 45 |
.group-wrapper { |
| 46 |
border-top: 1px solid #DFDFDF; |
| 47 |
margin: 0; |
| 48 |
padding: 0; |
| 49 |
list-style: none; |
| 50 |
} |
| 51 |
|
| 52 |
.group { |
| 53 |
margin: 0; |
| 54 |
list-style: none; |
| 55 |
font-size: 12px; |
| 56 |
line-height: 18px; |
| 57 |
} |
| 58 |
|
| 59 |
.group.open { |
| 60 |
border-bottom: 1px solid #DFDFDF; |
| 61 |
} |
| 62 |
|
| 63 |
.group-title { |
| 64 |
border-top: 1px solid white; |
| 65 |
border-bottom: 1px solid #DFDFDF; |
| 66 |
position: relative; |
| 67 |
cursor: pointer; |
| 68 |
-webkit-user-select: none; |
| 69 |
-moz-user-select: none; |
| 70 |
-ms-user-select: none; |
| 71 |
user-select: none; |
| 72 |
margin: 0; |
| 73 |
padding: 10px 20px; |
| 74 |
font-size: 15px; |
| 75 |
font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; |
| 76 |
font-weight: normal; |
| 77 |
text-shadow: 0 1px 0 white; |
| 78 |
background: whiteSmoke; |
| 79 |
background-image: -webkit-gradient(linear, left bottom, left top, from(#EEE), to(whiteSmoke)); |
| 80 |
background-image: -webkit-linear-gradient(bottom, #EEE, whiteSmoke); |
| 81 |
background-image: -moz-linear-gradient(bottom, #EEE, whiteSmoke); |
| 82 |
background-image: -o-linear-gradient(bottom, #EEE, whiteSmoke); |
| 83 |
background-image: -ms-linear-gradient(bottom, #EEE, whiteSmoke); |
| 84 |
background-image: linear-gradient(bottom, #EEE, whiteSmoke); |
| 85 |
} |
| 86 |
|
| 87 |
.group-title:hover, |
| 88 |
.group.open .group-title { |
| 89 |
color: white; |
| 90 |
text-shadow: 0 -1px 0 #333; |
| 91 |
background: gray; |
| 92 |
background-image: -webkit-gradient(linear, left bottom, left top, from(#6D6D6D), to(gray)); |
| 93 |
background-image: -webkit-linear-gradient(bottom, #6D6D6D, gray); |
| 94 |
background-image: -moz-linear-gradient(bottom, #6D6D6D, gray); |
| 95 |
background-image: -o-linear-gradient(bottom, #6D6D6D, gray); |
| 96 |
background-image: -ms-linear-gradient(bottom, #6D6D6D, gray); |
| 97 |
background-image: linear-gradient(bottom, #6D6D6D, gray); |
| 98 |
} |
| 99 |
|
| 100 |
.group-title::after { |
| 101 |
content: ''; |
| 102 |
width: 0; |
| 103 |
height: 0; |
| 104 |
border-color: #CCC transparent; |
| 105 |
border-style: solid; |
| 106 |
border-width: 6px 6px 0; |
| 107 |
position: absolute; |
| 108 |
top: 15px; |
| 109 |
right: 20px; |
| 110 |
z-index: 1; |
| 111 |
} |
| 112 |
|
| 113 |
.group-title:hover::after, |
| 114 |
.group.open .group-title::after { |
| 115 |
border-color: #EEE transparent; |
| 116 |
} |
| 117 |
|
| 118 |
.group:hover .group-title { |
| 119 |
border-top-color: gray; |
| 120 |
} |
| 121 |
|
| 122 |
.group.open .group-title { |
| 123 |
border-top-color: #6D6D6D; |
| 124 |
} |
| 125 |
|
| 126 |
.group.open .group-title::after { |
| 127 |
border-width: 0 6px 6px; |
| 128 |
} |
| 129 |
|
| 130 |
.group-content { |
| 131 |
margin: 0; |
| 132 |
display: none; |
| 133 |
background-color: #FDFDFD; |
| 134 |
padding: 10px 0 20px 0; |
| 135 |
overflow: hidden; |
| 136 |
} |
| 137 |
|
| 138 |
div.group-content { |
| 139 |
padding: 10px 20px 20px; |
| 140 |
} |
| 141 |
|
| 142 |
.group.open .group-content { |
| 143 |
display: block; |
| 144 |
} |
| 145 |
|
| 146 |
.group-description { |
| 147 |
font-size: 12px; |
| 148 |
color: #555; |
| 149 |
padding: 5px 20px 10px; |
| 150 |
margin: 0; |
| 151 |
} |
| 152 |
|
| 153 |
div.group-content .group-description { |
| 154 |
padding: 0; |
| 155 |
margin-bottom: 20px; |
| 156 |
} |
| 157 |
|
| 158 |
.section-title { |
| 159 |
display: block; |
| 160 |
font-weight: bold; |
| 161 |
position: relative; |
| 162 |
cursor: pointer; |
| 163 |
padding: 4px 20px; |
| 164 |
margin-bottom: 5px; |
| 165 |
background-color: rgba(0, 0, 0, 0.02); |
| 166 |
border-top: 1px solid #eeeeee; |
| 167 |
-webkit-box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.1); |
| 168 |
box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.1); |
| 169 |
border-bottom: 1px solid #eeeeee; |
| 170 |
} |
| 171 |
|
| 172 |
.section-title::after { |
| 173 |
content: ''; |
| 174 |
width: 0; |
| 175 |
height: 0; |
| 176 |
border-color: #CCC transparent; |
| 177 |
border-style: solid; |
| 178 |
border-width: 4px 4px 0; |
| 179 |
position: absolute; |
| 180 |
top: 13px; |
| 181 |
right: 20px; |
| 182 |
z-index: 1; |
| 183 |
} |
| 184 |
|
| 185 |
.section-title.open::after { |
| 186 |
border-width: 0 4px 4px; |
| 187 |
} |
| 188 |
|
| 189 |
.section-items { |
| 190 |
display: none; |
| 191 |
padding: 5px 20px 10px 20px; |
| 192 |
} |
| 193 |
|
| 194 |
.section-items.open { |
| 195 |
display: block; |
| 196 |
} |
| 197 |
|
| 198 |
.more-info { |
| 199 |
text-decoration: none; |
| 200 |
color: #21759B; |
| 201 |
font-size: 85%; |
| 202 |
font-weight: normal; |
| 203 |
float: right; |
| 204 |
display: none; |
| 205 |
} |
| 206 |
|
| 207 |
.section-description { |
| 208 |
/*display: none;*/ |
| 209 |
padding: 0; |
| 210 |
margin: 0; |
| 211 |
font-size: 11px; |
| 212 |
color: gray; |
| 213 |
} |
| 214 |
|
| 215 |
.section-table { |
| 216 |
width: 100%; |
| 217 |
} |
| 218 |
|
| 219 |
.section-delimiter { |
| 220 |
margin: 15px 0; |
| 221 |
border-top: 1px dashed #ccc; |
| 222 |
} |
| 223 |
|
| 224 |
.section-table-column { |
| 225 |
width: 50%; |
| 226 |
text-align: left; |
| 227 |
vertical-align: top; |
| 228 |
padding: 0 1px; |
| 229 |
} |
| 230 |
|
| 231 |
.section-item { |
| 232 |
margin-bottom: 10px; |
| 233 |
} |
| 234 |
|
| 235 |
.control-select, |
| 236 |
.control-text { |
| 237 |
width: 100%; |
| 238 |
} |
| 239 |
|
| 240 |
.section-description ul { |
| 241 |
margin: 0 0 0 25px; |
| 242 |
list-style: circle; |
| 243 |
} |
| 244 |
|
| 245 |
.section-description li { |
| 246 |
list-style: circle; |
| 247 |
margin: 0; |
| 248 |
} |
| 249 |
|
| 250 |
#rate-the-plugin { |
| 251 |
margin-top: 40px; |
| 252 |
padding: 20px; |
| 253 |
border-top: 1px dashed #ddd; |
| 254 |
} |
| 255 |
|
| 256 |
#rate-stars { |
| 257 |
float: right; |
| 258 |
width: 100px; |
| 259 |
height: 20px; |
| 260 |
background-image: url('../images/star.png'); |
| 261 |
background-repeat: repeat-x; |
| 262 |
background-position: right center; |
| 263 |
} |
| 264 |
|
| 265 |
#rate-link { |
| 266 |
text-decoration: none; |
| 267 |
display: block; |
| 268 |
margin-top: 3px; |
| 269 |
} |
| 270 |
|
| 271 |
#flattr { |
| 272 |
margin-top: 15px; |
| 273 |
text-align: center; |
| 274 |
} |
| 275 |
|
| 276 |
/******************************************************************************/ |
| 277 |
/******************************** TOOLBAR ***********************************/ |
| 278 |
/******************************************************************************/ |
| 279 |
|
| 280 |
#toolbar { |
| 281 |
height: 36px; |
| 282 |
padding: 12px 16px; |
| 283 |
position: absolute; |
| 284 |
z-index: 100; |
| 285 |
left: 0; |
| 286 |
right: 0; |
| 287 |
bottom: 0; |
| 288 |
border-top: 1px solid #DFDFDF; |
| 289 |
overflow: hidden; |
| 290 |
-webkit-box-shadow: 0 -4px 4px -4px rgba(0, 0, 0, 0.1); |
| 291 |
box-shadow: 0 -4px 4px -4px rgba(0, 0, 0, 0.1); |
| 292 |
} |
| 293 |
|
| 294 |
#toolbar .push-right { |
| 295 |
float: right; |
| 296 |
} |
| 297 |
|
| 298 |
/******************************************************************************/ |
| 299 |
/******************************** TYPE PICKER ******************************/ |
| 300 |
/******************************************************************************/ |
| 301 |
|
| 302 |
#type-picker { |
| 303 |
margin: 50px auto; |
| 304 |
width: 952px; |
| 305 |
} |
| 306 |
|
| 307 |
.type-box { |
| 308 |
float: left; |
| 309 |
margin: 0 20px 20px 0; |
| 310 |
border: 1px dashed #ddd; |
| 311 |
-webkit-box-shadow: 0px 0px 8px #ddd; |
| 312 |
box-shadow: 0px 0px 8px #ddd; |
| 313 |
background-color: #efefef; |
| 314 |
} |
| 315 |
|
| 316 |
.type-box:nth-child(3n+3) { |
| 317 |
margin-right: 0px; |
| 318 |
} |
| 319 |
|
| 320 |
.type-label { |
| 321 |
display: block; |
| 322 |
width: 270px; |
| 323 |
height: 195px; |
| 324 |
padding: 15px; |
| 325 |
background-color: white; |
| 326 |
background-image: url(../images/chart_types_g.png); |
| 327 |
background-repeat: no-repeat; |
| 328 |
background-position: center center; |
| 329 |
border: 1px solid #e0e0e0; |
| 330 |
} |
| 331 |
|
| 332 |
.type-label-selected, |
| 333 |
.type-label:hover { |
| 334 |
background-image: url(../images/chart_types.png); |
| 335 |
} |
| 336 |
|
| 337 |
.type-box-area .type-label { |
| 338 |
background-position: 0px -225px; |
| 339 |
} |
| 340 |
|
| 341 |
.type-box-line .type-label { |
| 342 |
background-position: -600px 0px; |
| 343 |
} |
| 344 |
|
| 345 |
.type-box-scatter .type-label { |
| 346 |
background-position: -300px 0px; |
| 347 |
} |
| 348 |
|
| 349 |
.type-box-pie .type-label { |
| 350 |
background-position: 0px 0px; |
| 351 |
} |
| 352 |
|
| 353 |
.type-box-gauge .type-label { |
| 354 |
background-position: 0px -450px; |
| 355 |
} |
| 356 |
|
| 357 |
.type-box-geo .type-label { |
| 358 |
background-position: -600px -450px; |
| 359 |
} |
| 360 |
|
| 361 |
.type-box-candlestick .type-label { |
| 362 |
background-position: -300px -450px; |
| 363 |
} |
| 364 |
|
| 365 |
.type-box-bar .type-label { |
| 366 |
background-position: -300px -225px; |
| 367 |
} |
| 368 |
|
| 369 |
.type-box-column .type-label { |
| 370 |
background-position: -600px -225px; |
| 371 |
} |
| 372 |
|
| 373 |
/******************************************************************************/ |
| 374 |
/******************************** OTHER STYLES ******************************/ |
| 375 |
/******************************************************************************/ |
| 376 |
|
| 377 |
#thehole { |
| 378 |
position: absolute; |
| 379 |
left: 0; |
| 380 |
top: 0; |
| 381 |
width: 1px; |
| 382 |
height: 1px; |
| 383 |
border: 0; |
| 384 |
opacity: 0; |
| 385 |
-moz-opacity: 0; |
| 386 |
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); |
| 387 |
} |
| 388 |
|
| 389 |
.locker, .locker-loader { |
| 390 |
left: 0; |
| 391 |
top: 0; |
| 392 |
position: absolute; |
| 393 |
} |
| 394 |
|
| 395 |
.locker { |
| 396 |
z-index: 1000; |
| 397 |
background-color: white; |
| 398 |
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; |
| 399 |
filter: alpha(opacity=80); |
| 400 |
opacity: 0.8; |
| 401 |
} |
| 402 |
|
| 403 |
.locker-loader { |
| 404 |
z-index: 1001; |
| 405 |
background: url(../images/ajax-loader.gif) no-repeat center center; |
| 406 |
} |
| 407 |
|
| 408 |
.file-wrapper { |
| 409 |
position: relative; |
| 410 |
margin-right: 10px !important; |
| 411 |
} |
| 412 |
|
| 413 |
.file { |
| 414 |
position: absolute; |
| 415 |
top: 0; |
| 416 |
left: 0; |
| 417 |
right: 0; |
| 418 |
bottom: 0; |
| 419 |
opacity: 0; |
| 420 |
-moz-opacity: 0; |
| 421 |
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); |
| 422 |
} |