| @@ -5,9 +5,8 @@ | ||
| 5 | 5 | top: 0; |
| 6 | 6 | right: 0; |
| 7 | 7 | bottom: 60px; |
| 8 | 8 | left: 0; |
| 9 | - width: auto; | |
| 10 | 9 | background-color: white; |
| 11 | 10 | } |
| 12 | 11 | |
| 13 | 12 | #canvas { |
| @@ -43,162 +42,125 @@ | ||
| 43 | 42 | |
| 44 | 43 | -webkit-overflow-scrolling: touch; |
| 45 | 44 | } |
| 46 | 45 | |
| 47 | -.viz-group { | |
| 46 | +.group-wrapper { | |
| 48 | 47 | margin: 0; |
| 48 | + padding: 0; | |
| 49 | + border-top: 1px solid #dfdfdf; | |
| 50 | + list-style: none; | |
| 51 | +} | |
| 52 | + | |
| 53 | +.group { | |
| 54 | + margin: 0; | |
| 49 | 55 | font-size: 12px; |
| 50 | 56 | line-height: 18px; |
| 51 | 57 | list-style: none; |
| 52 | 58 | } |
| 53 | 59 | |
| 54 | -.viz-group .viz-group-header .viz-group-title { | |
| 55 | - margin: 10px 0; | |
| 56 | - padding: 15px 20px; | |
| 57 | - border-top: 1px solid #ddd; | |
| 58 | - border-bottom: 1px solid #ddd; | |
| 59 | - color: #555d66; | |
| 60 | - background: #fff; | |
| 60 | +.group.open { | |
| 61 | + border-bottom: 1px solid #dfdfdf; | |
| 61 | 62 | } |
| 62 | 63 | |
| 63 | -.viz-group-wrapper ul .viz-group-title { | |
| 64 | - border-top: 1px solid #ddd; | |
| 65 | -} | |
| 66 | - | |
| 67 | -.viz-group-wrapper ul li { | |
| 68 | - border-top: 1px solid #ddd; | |
| 69 | -} | |
| 70 | - | |
| 71 | -.viz-group-wrapper ul ul li.viz-subsection { | |
| 72 | - margin: 5px; | |
| 73 | - border: 1px solid #ddd; | |
| 74 | -} | |
| 75 | - | |
| 76 | -.viz-group-wrapper .viz-group .viz-group .viz-group-title { | |
| 64 | +.group-title { | |
| 77 | 65 | position: relative; |
| 78 | 66 | margin: 0; |
| 79 | - padding: 10px 10px 11px 14px; | |
| 80 | - border-top: none; | |
| 81 | - border-bottom: none; | |
| 82 | - border-left: 4px solid #fff; | |
| 83 | - color: #555d66; | |
| 84 | - background-color: #fff; | |
| 85 | - font-size: 14px; | |
| 86 | - font-weight: 600; | |
| 87 | - line-height: 21px; | |
| 67 | + padding: 10px 20px; | |
| 68 | + border-top: 1px solid white; | |
| 69 | + border-bottom: 1px solid #dfdfdf; | |
| 70 | + background: whiteSmoke; | |
| 71 | + background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(whiteSmoke)); | |
| 72 | + background-image: -webkit-linear-gradient(bottom, #eee, whiteSmoke); | |
| 73 | + background-image: -webkit-gradient( linear, left top, left bottom, from(#eee), to(whiteSmoke)); | |
| 74 | + background-image: -webkit-linear-gradient( top, #eee, whiteSmoke); | |
| 75 | + background-image: linear-gradient( to bottom, #eee, whiteSmoke); | |
| 76 | + text-shadow: 0 1px 0 white; | |
| 77 | + font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; | |
| 78 | + font-family: "Open Sans",sans-serif; | |
| 79 | + font-size: 15px; | |
| 80 | + font-weight: normal; | |
| 81 | + font-weight: 700; | |
| 88 | 82 | cursor: pointer; |
| 89 | - transition: 0.15s color ease-in-out,0.15s background-color ease-in-out,0.15s border-color ease-in-out; | |
| 83 | + -webkit-user-select: none; | |
| 84 | + -moz-user-select: none; | |
| 85 | + -ms-user-select: none; | |
| 86 | + user-select: none; | |
| 90 | 87 | } |
| 91 | 88 | |
| 92 | -.viz-group-wrapper .viz-group .viz-group:hover .viz-group-title, | |
| 93 | -.viz-group-wrapper .viz-group .viz-group.open .viz-group-title { | |
| 94 | - border-left-color: #0073aa; | |
| 95 | - color: #0073aa; | |
| 96 | - background: #f3f3f5; | |
| 89 | +.group-title:hover, | |
| 90 | +.group.open .group-title { | |
| 91 | + color: white; | |
| 92 | + background: gray; | |
| 93 | + background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(gray)); | |
| 94 | + background-image: -webkit-linear-gradient(bottom, #6d6d6d, gray); | |
| 95 | + background-image: -webkit-gradient( linear, left top, left bottom, from(#6d6d6d), to(gray)); | |
| 96 | + background-image: -webkit-linear-gradient( top, #6d6d6d, gray); | |
| 97 | + background-image: linear-gradient( to bottom, #6d6d6d, gray); | |
| 98 | + text-shadow: 0 -1px 0 #333; | |
| 99 | + font-family: "Open Sans", sans-serif; | |
| 100 | + font-weight: 700; | |
| 97 | 101 | } |
| 98 | 102 | |
| 99 | -.viz-group-wrapper .viz-group .viz-group .viz-group-title:after { | |
| 103 | +.group-title::after { | |
| 100 | 104 | position: absolute; |
| 101 | 105 | z-index: 1; |
| 102 | - top: 11px; | |
| 103 | - right: 10px; | |
| 104 | - color: #a0a5aa; | |
| 105 | - font: 400 20px/1 dashicons; | |
| 106 | - content: "\f345"; | |
| 106 | + top: 15px; | |
| 107 | + right: 20px; | |
| 108 | + width: 0; | |
| 109 | + height: 0; | |
| 110 | + border-width: 6px 6px 0; | |
| 111 | + border-style: solid; | |
| 112 | + border-color: #ccc transparent; | |
| 113 | + content: ""; | |
| 107 | 114 | } |
| 108 | 115 | |
| 109 | -.viz-group-wrapper .viz-group .viz-group.open .viz-group-title:after { | |
| 110 | - content: "\f347"; | |
| 116 | +.group-title:hover::after, | |
| 117 | +.group.open .group-title::after { | |
| 118 | + border-color: #eee transparent; | |
| 111 | 119 | } |
| 112 | 120 | |
| 113 | -.viz-group-wrapper .viz-group .customize-section-back { | |
| 114 | - display: block; | |
| 115 | - float: left; | |
| 116 | - width: 42px; | |
| 117 | - height: 49px; | |
| 118 | - margin: 0 15px 0 0; | |
| 119 | - padding: 0; | |
| 120 | - border: none; | |
| 121 | - border-top: 1px solid #ddd; | |
| 122 | - border-right: 1px solid #ddd; | |
| 123 | - border-left: 4px solid #fff; | |
| 124 | - background: #fff; | |
| 125 | - box-shadow: none; | |
| 126 | - cursor: pointer; | |
| 127 | - transition: color 0.15s ease-in-out,border-color 0.15s ease-in-out,background 0.15s ease-in-out; | |
| 121 | +.group:hover .group-title { | |
| 122 | + border-top-color: gray; | |
| 128 | 123 | } |
| 129 | 124 | |
| 130 | -.viz-group-wrapper .viz-group .customize-section-back:hover { | |
| 131 | - border-left-color: #0073aa; | |
| 132 | - outline: 0; | |
| 133 | - color: #0073aa; | |
| 134 | - background: #f3f3f5; | |
| 125 | +.group.open .group-title { | |
| 126 | + border-top-color: #6d6d6d; | |
| 135 | 127 | } |
| 136 | 128 | |
| 137 | -.viz-group-wrapper .viz-group .customize-section-back:before { | |
| 138 | - position: relative; | |
| 139 | - top: -11px; | |
| 140 | - left: -2px; | |
| 141 | - font: 400 20px/72px dashicons; | |
| 142 | - content: "\f341"; | |
| 129 | +.group.open .group-title::after { | |
| 130 | + border-width: 0 6px 6px; | |
| 143 | 131 | } |
| 144 | 132 | |
| 145 | -.viz-group-wrapper.full-height { | |
| 146 | - float: left; | |
| 147 | - position: relative; | |
| 148 | - width: 100%; | |
| 149 | - height: 100%; | |
| 150 | - margin: 0; | |
| 151 | -} | |
| 152 | - | |
| 153 | -.viz-group.bottom-fixed { | |
| 154 | - display: block; | |
| 155 | - position: absolute; | |
| 156 | - bottom: 0; | |
| 157 | - width: 100%; | |
| 158 | -} | |
| 159 | - | |
| 160 | -.viz-group ul li h2, | |
| 161 | -.viz-group ul li h3 { | |
| 162 | - padding: 7px 15px 7px 35px; | |
| 163 | -} | |
| 164 | - | |
| 165 | -.viz-group h2 .dashicons, | |
| 166 | -.viz-group h3 .dashicons { | |
| 167 | - margin-right: 5px; | |
| 168 | - vertical-align: -5px; | |
| 169 | -} | |
| 170 | - | |
| 171 | -.viz-group-content { | |
| 133 | +.group-content { | |
| 172 | 134 | display: none; |
| 135 | + overflow: hidden; | |
| 173 | 136 | margin: 0; |
| 174 | - padding: 0; | |
| 137 | + padding: 10px 0 20px 0; | |
| 175 | 138 | background-color: #fdfdfd; |
| 176 | 139 | } |
| 177 | 140 | |
| 178 | -div.viz-group-content { | |
| 179 | - padding: 15px; | |
| 141 | +div.group-content { | |
| 142 | + padding: 10px 20px 20px; | |
| 180 | 143 | } |
| 181 | 144 | |
| 182 | -.viz-group.open > .viz-group-content { | |
| 145 | +.group.open .group-content { | |
| 183 | 146 | display: block; |
| 184 | 147 | } |
| 185 | 148 | |
| 186 | -.viz-group-description { | |
| 149 | +.group-description { | |
| 187 | 150 | margin: 0; |
| 188 | - padding: 5px; | |
| 151 | + padding: 5px 20px 10px; | |
| 189 | 152 | color: #555; |
| 190 | 153 | font-size: 12px; |
| 191 | - text-align: left; | |
| 192 | 154 | } |
| 193 | 155 | |
| 194 | -div.viz-group-content .viz-group-description { | |
| 195 | - padding: 5px; | |
| 156 | +div.group-content .group-description { | |
| 157 | + padding: 0; | |
| 196 | 158 | font-family: "Montserrat",sans-serif; |
| 197 | 159 | font-weight: 300; |
| 198 | 160 | } |
| 199 | 161 | |
| 200 | -.initial-screen .viz-group-description { | |
| 162 | +.initial-screen .group-description { | |
| 201 | 163 | padding: 0; |
| 202 | 164 | padding: 10px 20px 20px; |
| 203 | 165 | font-family: "Montserrat",sans-serif; |
| 204 | 166 | font-weight: 300; |
| @@ -203,9 +165,9 @@ | ||
| 203 | 165 | font-family: "Montserrat",sans-serif; |
| 204 | 166 | font-weight: 300; |
| 205 | 167 | } |
| 206 | 168 | |
| 207 | -.viz-section-title { | |
| 169 | +.section-title { | |
| 208 | 170 | display: block; |
| 209 | 171 | position: relative; |
| 210 | 172 | margin-bottom: 5px; |
| 211 | 173 | padding: 4px 20px; |
| @@ -211,20 +173,15 @@ | ||
| 211 | 173 | padding: 4px 20px; |
| 212 | 174 | border-top: 1px solid #eee; |
| 213 | 175 | border-bottom: 1px solid #eee; |
| 214 | 176 | background-color: rgba(0, 0, 0, 0.02); |
| 177 | + -webkit-box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.1); | |
| 215 | 178 | box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.1); |
| 216 | 179 | font-weight: bold; |
| 217 | 180 | cursor: pointer; |
| 218 | 181 | } |
| 219 | 182 | |
| 220 | -.viz-group-wrapper ul ul li .viz-section-title { | |
| 221 | - margin-bottom: 0; | |
| 222 | - border: none; | |
| 223 | - box-shadow: none; | |
| 224 | -} | |
| 225 | - | |
| 226 | -.viz-section-title::after { | |
| 183 | +.section-title::after { | |
| 227 | 184 | position: absolute; |
| 228 | 185 | z-index: 1; |
| 229 | 186 | top: 13px; |
| 230 | 187 | right: 20px; |
| @@ -235,19 +192,18 @@ | ||
| 235 | 192 | border-color: #ccc transparent; |
| 236 | 193 | content: ""; |
| 237 | 194 | } |
| 238 | 195 | |
| 239 | -.viz-section-title.open::after { | |
| 196 | +.section-title.open::after { | |
| 240 | 197 | border-width: 0 4px 4px; |
| 241 | 198 | } |
| 242 | 199 | |
| 243 | -.section-items, | |
| 244 | -.viz-section-items { | |
| 200 | +.section-items { | |
| 245 | 201 | display: none; |
| 246 | - padding: 15px; | |
| 202 | + padding: 5px 20px 10px 20px; | |
| 247 | 203 | } |
| 248 | 204 | |
| 249 | -.viz-section-items.open { | |
| 205 | +.section-items.open { | |
| 250 | 206 | display: block; |
| 251 | 207 | } |
| 252 | 208 | |
| 253 | 209 | .more-info { |
| @@ -258,9 +214,9 @@ | ||
| 258 | 214 | font-weight: normal; |
| 259 | 215 | text-decoration: none; |
| 260 | 216 | } |
| 261 | 217 | |
| 262 | -.viz-section-description { | |
| 218 | +.section-description { | |
| 263 | 219 | margin: 0; |
| 264 | 220 | /*display: none;*/ |
| 265 | 221 | padding: 0; |
| 266 | 222 | color: gray; |
| @@ -266,19 +222,18 @@ | ||
| 266 | 222 | color: gray; |
| 267 | 223 | font-size: 11px; |
| 268 | 224 | } |
| 269 | 225 | |
| 270 | -.viz-section-table { | |
| 226 | +.section-table { | |
| 271 | 227 | width: 100%; |
| 272 | 228 | } |
| 273 | 229 | |
| 274 | -.section-delimiter, | |
| 275 | -.viz-section-delimiter { | |
| 230 | +.section-delimiter { | |
| 276 | 231 | margin: 15px 0; |
| 277 | 232 | border-top: 1px dashed #ccc; |
| 278 | 233 | } |
| 279 | 234 | |
| 280 | -.viz-section-table-column { | |
| 235 | +.section-table-column { | |
| 281 | 236 | width: 50%; |
| 282 | 237 | padding: 0 1px; |
| 283 | 238 | text-align: left; |
| 284 | 239 | vertical-align: top; |
| @@ -283,9 +238,9 @@ | ||
| 283 | 238 | text-align: left; |
| 284 | 239 | vertical-align: top; |
| 285 | 240 | } |
| 286 | 241 | |
| 287 | -.viz-section-item { | |
| 242 | +.section-item { | |
| 288 | 243 | margin-bottom: 10px; |
| 289 | 244 | } |
| 290 | 245 | |
| 291 | 246 | .control-select, |
| @@ -300,14 +255,14 @@ | ||
| 300 | 255 | .control-check::after { |
| 301 | 256 | clear: both; |
| 302 | 257 | } |
| 303 | 258 | |
| 304 | -.viz-section-description ul { | |
| 259 | +.section-description ul { | |
| 305 | 260 | margin: 0 0 0 25px; |
| 306 | 261 | list-style: circle; |
| 307 | 262 | } |
| 308 | 263 | |
| 309 | -.viz-section-description li { | |
| 264 | +.section-description li { | |
| 310 | 265 | margin: 0; |
| 311 | 266 | list-style: circle; |
| 312 | 267 | } |
| 313 | 268 | |
| @@ -356,8 +311,9 @@ | ||
| 356 | 311 | left: 0; |
| 357 | 312 | height: 36px; |
| 358 | 313 | padding: 12px 16px; |
| 359 | 314 | border-top: 1px solid #dfdfdf; |
| 315 | + -webkit-box-shadow: 0 -4px 4px -4px rgba(0, 0, 0, 0.1); | |
| 360 | 316 | box-shadow: 0 -4px 4px -4px rgba(0, 0, 0, 0.1); |
| 361 | 317 | text-align: center; |
| 362 | 318 | } |
| 363 | 319 | |
| @@ -364,12 +320,8 @@ | ||
| 364 | 320 | #toolbar .push-right { |
| 365 | 321 | float: right; |
| 366 | 322 | } |
| 367 | 323 | |
| 368 | -#toolbar .push-left { | |
| 369 | - float: left; | |
| 370 | -} | |
| 371 | - | |
| 372 | 324 | .toolbar-div a { |
| 373 | 325 | float: left; |
| 374 | 326 | } |
| 375 | 327 | |
| @@ -383,39 +335,19 @@ | ||
| 383 | 335 | /******************************************************************************/ |
| 384 | 336 | /******************************** TYPE PICKER ******************************/ |
| 385 | 337 | /******************************************************************************/ |
| 386 | 338 | |
| 387 | -.type-box span { | |
| 388 | - display: block; | |
| 389 | - position: absolute; | |
| 390 | - right: 0; | |
| 391 | - bottom: -6px; | |
| 392 | - width: 100%; | |
| 393 | - padding: 4px 0; | |
| 394 | - border-top: 1px dashed #ddd; | |
| 395 | - border-bottom: 1px dashed #ddd; | |
| 396 | - background: #e0e0e0; | |
| 397 | - background-color: #efefef; | |
| 398 | - box-shadow: 0 0 8px #ddd; | |
| 399 | - font-weight: bold; | |
| 400 | - text-align: center; | |
| 401 | -} | |
| 402 | - | |
| 403 | -.type-box .pro-upsell { | |
| 404 | - color: #c55555; | |
| 405 | -} | |
| 406 | - | |
| 407 | 339 | #type-picker { |
| 408 | - width: 954px; | |
| 340 | + width: 952px; | |
| 409 | 341 | margin: 50px auto; |
| 410 | 342 | } |
| 411 | 343 | |
| 412 | 344 | .type-box { |
| 413 | 345 | float: left; |
| 414 | - position: relative; | |
| 415 | 346 | margin: 0 20px 20px 0; |
| 416 | 347 | border: 1px dashed #ddd; |
| 417 | 348 | background-color: #efefef; |
| 349 | + -webkit-box-shadow: 0 0 8px #ddd; | |
| 418 | 350 | box-shadow: 0 0 8px #ddd; |
| 419 | 351 | } |
| 420 | 352 | |
| 421 | 353 | .type-box:nth-child(3n+3) { |
| @@ -421,24 +353,12 @@ | ||
| 421 | 353 | .type-box:nth-child(3n+3) { |
| 422 | 354 | margin-right: 0; |
| 423 | 355 | } |
| 424 | 356 | |
| 425 | -.type-box .pro-upsell .visualizder-pro-label { | |
| 426 | - display: inline; | |
| 427 | - position: absolute; | |
| 428 | - top: 0; | |
| 429 | - width: 74px; | |
| 430 | - height: 10px; | |
| 431 | - height: 17px; | |
| 432 | - border: none; | |
| 433 | - color: #fff; | |
| 434 | - background: #c55555; | |
| 435 | -} | |
| 436 | - | |
| 437 | 357 | .type-label { |
| 438 | 358 | display: block; |
| 439 | 359 | width: 270px; |
| 440 | - height: 205px; | |
| 360 | + height: 195px; | |
| 441 | 361 | padding: 15px; |
| 442 | 362 | border: 1px solid #e0e0e0; |
| 443 | 363 | background-color: white; |
| 444 | 364 | background-image: url(../images/chart_types_g.png); |
| @@ -446,9 +366,9 @@ | ||
| 446 | 366 | background-position: center center; |
| 447 | 367 | } |
| 448 | 368 | |
| 449 | 369 | .type-label-selected, |
| 450 | -.type-box > .type-label:hover { | |
| 370 | +.type-label:hover { | |
| 451 | 371 | background-image: url(../images/chart_types.png); |
| 452 | 372 | } |
| 453 | 373 | |
| 454 | 374 | .type-box-area .type-label { |
| @@ -486,12 +406,8 @@ | ||
| 486 | 406 | .type-box-column .type-label { |
| 487 | 407 | background-position: -600px -225px; |
| 488 | 408 | } |
| 489 | 409 | |
| 490 | -.type-box-dataTable .type-label { | |
| 491 | - background-position: -301px -670px; | |
| 492 | -} | |
| 493 | - | |
| 494 | 410 | .type-box-table .type-label { |
| 495 | 411 | background-position: -301px -670px; |
| 496 | 412 | } |
| 497 | 413 | |
| @@ -502,8 +418,52 @@ | ||
| 502 | 418 | .type-box-combo .type-label { |
| 503 | 419 | background-position: -597px -670px; |
| 504 | 420 | } |
| 505 | 421 | |
| 422 | +a.pro-upsell { | |
| 423 | + display: -webkit-box; | |
| 424 | + display: -webkit-flex; | |
| 425 | + display: -ms-flexbox; | |
| 426 | + display: flex; | |
| 427 | + position: relative; | |
| 428 | + top: 10px; | |
| 429 | + height: 20px; | |
| 430 | + margin: 0; | |
| 431 | + padding: 10px 20px; | |
| 432 | + border: 1px solid #2c80d6; | |
| 433 | + border-radius: 50px; | |
| 434 | + background-color: #4285f4; | |
| 435 | + -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); | |
| 436 | + box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); | |
| 437 | + text-decoration: none; | |
| 438 | + -webkit-transition: all 0.5s ease-in; | |
| 439 | + transition: all 0.5s ease-in; | |
| 440 | + | |
| 441 | + -webkit-align-items: center; | |
| 442 | + align-items: center; | |
| 443 | + -webkit-box-align: center; | |
| 444 | + -ms-flex-align: center; | |
| 445 | +} | |
| 446 | + | |
| 447 | +a.pro-upsell:hover { | |
| 448 | + background-color: #5a95f5; | |
| 449 | + -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); | |
| 450 | + box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); | |
| 451 | +} | |
| 452 | + | |
| 453 | +a.pro-upsell span { | |
| 454 | + display: inline-block; | |
| 455 | + margin-right: 10px; | |
| 456 | + color: #fff; | |
| 457 | +} | |
| 458 | + | |
| 459 | +a.pro-upsell { | |
| 460 | + display: inline; | |
| 461 | + color: #fff; | |
| 462 | + font-size: 13px; | |
| 463 | + font-weight: bold; | |
| 464 | +} | |
| 465 | + | |
| 506 | 466 | /******************************************************************************/ |
| 507 | 467 | /******************************** OTHER STYLES ******************************/ |
| 508 | 468 | /******************************************************************************/ |
| 509 | 469 | |
| @@ -580,12 +540,14 @@ | ||
| 580 | 540 | border: medium none rgb(100, 100, 100) !important; |
| 581 | 541 | border: 1px solid #b0b0b0 !important; |
| 582 | 542 | color: #646464 !important; |
| 583 | 543 | background: #e6e6e6 url("../images/computer.png") no-repeat scroll 7px 1px !important; |
| 544 | + -webkit-box-shadow: none !important; | |
| 584 | 545 | box-shadow: none !important; |
| 585 | 546 | text-shadow: none!important; |
| 586 | 547 | font-family: "Open Sans",sans-serif; |
| 587 | 548 | font-weight: 700; |
| 549 | + -webkit-transition: all 0.3s ease 0s; | |
| 588 | 550 | transition: all 0.3s ease 0s; |
| 589 | 551 | } |
| 590 | 552 | |
| 591 | 553 | .computer-btn:hover { |
| @@ -592,14 +554,27 @@ | ||
| 592 | 554 | padding-left: 27px !important; |
| 593 | 555 | border: 1px solid #2f8cea !important; |
| 594 | 556 | color: white !important; |
| 595 | 557 | background: #2f8cea url("../images/computer.png") no-repeat scroll 7px -36px !important; |
| 558 | + -webkit-box-shadow: 0 1px 0 rgba(171, 171, 171, 0.5) inset, 0 1px 0 rgba(0, 0, 0, 0.15) !important; | |
| 559 | + -webkit-box-shadow: none !important; | |
| 596 | 560 | box-shadow: 0 1px 0 rgba(171, 171, 171, 0.5) inset, 0 1px 0 rgba(0, 0, 0, 0.15) !important; |
| 597 | 561 | box-shadow: none !important; |
| 562 | + -webkit-transition: all 0.3s ease 0s; | |
| 563 | + -webkit-transition: all 0.3s ease; | |
| 598 | 564 | transition: all 0.3s ease 0s; |
| 599 | 565 | transition: all 0.3s ease; |
| 600 | 566 | } |
| 601 | 567 | |
| 568 | +.just-on-pro { | |
| 569 | + width: 250px; | |
| 570 | + height: 100px; | |
| 571 | + margin-bottom: 10px; | |
| 572 | + opacity: 0.8; | |
| 573 | + background: #f5f5f5 url("../images/available_pro.png") no-repeat scroll 0 1px !important; | |
| 574 | + cursor: not-allowed; | |
| 575 | +} | |
| 576 | + | |
| 602 | 577 | .from-web { |
| 603 | 578 | margin-top: 0; |
| 604 | 579 | margin-bottom: 15px !important; |
| 605 | 580 | } |
| @@ -609,11 +584,13 @@ | ||
| 609 | 584 | border: medium none #646464 !important; |
| 610 | 585 | border: 1px solid #b0b0b0 !important; |
| 611 | 586 | color: #646464 !important; |
| 612 | 587 | background: #e6e6e6 url("../images/web.png") no-repeat scroll 7px 1px !important; |
| 588 | + -webkit-box-shadow: none !important; | |
| 613 | 589 | box-shadow: none !important; |
| 614 | 590 | font-family: "Open Sans",sans-serif; |
| 615 | 591 | font-weight: 700; |
| 592 | + -webkit-transition: all 0.3s ease 0s; | |
| 616 | 593 | transition: all 0.3s ease 0s; |
| 617 | 594 | /*margin-left: 2px !important;*/ |
| 618 | 595 | } |
| 619 | 596 | |
| @@ -622,9 +599,12 @@ | ||
| 622 | 599 | /*margin-left: 2px !important;*/ |
| 623 | 600 | border: 1px solid #89b158 !important; |
| 624 | 601 | color: white !important; |
| 625 | 602 | background: #89b158 url("../images/web.png") no-repeat scroll 7px -38px !important; |
| 603 | + -webkit-box-shadow: none !important; | |
| 626 | 604 | box-shadow: none !important; |
| 605 | + -webkit-transition: all 0.3s ease 0s; | |
| 606 | + -webkit-transition: all 0.3s ease; | |
| 627 | 607 | transition: all 0.3s ease 0s; |
| 628 | 608 | transition: all 0.3s ease; |
| 629 | 609 | } |
| 630 | 610 | |
| @@ -641,11 +621,13 @@ | ||
| 641 | 621 | border: medium none #646464 !important; |
| 642 | 622 | border: 1px solid #b0b0b0 !important; |
| 643 | 623 | color: #646464 !important; |
| 644 | 624 | background: #e6e6e6 url("../images/from_chart.png") no-repeat scroll 7px 1px !important; |
| 625 | + -webkit-box-shadow: none !important; | |
| 645 | 626 | box-shadow: none !important; |
| 646 | 627 | font-family: "Open Sans",sans-serif; |
| 647 | 628 | font-weight: 700; |
| 629 | + -webkit-transition: all 0.3s ease 0s; | |
| 648 | 630 | transition: all 0.3s ease 0s; |
| 649 | 631 | /*margin-left: 2px !important; |
| 650 | 632 | margin-top: 2px !important;*/ |
| 651 | 633 | } |
| @@ -655,9 +637,12 @@ | ||
| 655 | 637 | /*margin-left: 2px !important;*/ |
| 656 | 638 | border: 1px solid #10aecb !important; |
| 657 | 639 | color: white !important; |
| 658 | 640 | background: #10aecb url("../images/from_chart.png") no-repeat scroll 7px -36px !important; |
| 641 | + -webkit-box-shadow: none !important; | |
| 659 | 642 | box-shadow: none !important; |
| 643 | + -webkit-transition: all 0.3s ease 0s; | |
| 644 | + -webkit-transition: all 0.3s ease; | |
| 660 | 645 | transition: all 0.3s ease 0s; |
| 661 | 646 | transition: all 0.3s ease; |
| 662 | 647 | /*margin-top: 2px !important;*/ |
| 663 | 648 | } |
| @@ -669,10 +654,9 @@ | ||
| 669 | 654 | } |
| 670 | 655 | |
| 671 | 656 | select#chart-id { |
| 672 | 657 | float: right; |
| 673 | - width: 146px; | |
| 674 | - margin-right: 14px; | |
| 658 | + width: 95px; | |
| 675 | 659 | } |
| 676 | 660 | |
| 677 | 661 | button#editor-chart-button { |
| 678 | 662 | display: block; |
| @@ -679,10 +663,12 @@ | ||
| 679 | 663 | margin: 0 auto; |
| 680 | 664 | border: 1px solid #2c80d6 !important; |
| 681 | 665 | color: white !important; |
| 682 | 666 | background-color: #2f8cea !important; |
| 667 | + -webkit-box-shadow: none !important; | |
| 683 | 668 | box-shadow: none !important; |
| 684 | 669 | text-shadow: none; |
| 670 | + -webkit-transition: all 0.3s ease; | |
| 685 | 671 | transition: all 0.3s ease; |
| 686 | 672 | } |
| 687 | 673 | |
| 688 | 674 | .preview-btn { |
| @@ -688,11 +674,13 @@ | ||
| 688 | 674 | .preview-btn { |
| 689 | 675 | border: 1px solid #2c80d6 !important; |
| 690 | 676 | color: white !important; |
| 691 | 677 | background-color: #2f8cea !important; |
| 678 | + -webkit-box-shadow: none !important; | |
| 692 | 679 | box-shadow: none !important; |
| 693 | 680 | font-family: "Open Sans",sans-serif; |
| 694 | 681 | font-weight: 700; |
| 682 | + -webkit-transition: all 0.3s ease; | |
| 695 | 683 | transition: all 0.3s ease; |
| 696 | 684 | } |
| 697 | 685 | |
| 698 | 686 | .preview-btn:hover { |
| @@ -698,11 +686,13 @@ | ||
| 698 | 686 | .preview-btn:hover { |
| 699 | 687 | border: 1px solid #2c80d6 !important; |
| 700 | 688 | color: white !important; |
| 701 | 689 | background-color: #2c80d6 !important; |
| 690 | + -webkit-box-shadow: none !important; | |
| 702 | 691 | box-shadow: none !important; |
| 703 | 692 | font-family: "Open Sans",sans-serif; |
| 704 | 693 | font-weight: 700; |
| 694 | + -webkit-transition: all 0.3s ease; | |
| 705 | 695 | transition: all 0.3s ease; |
| 706 | 696 | } |
| 707 | 697 | |
| 708 | 698 | .show-live-btn { |
| @@ -709,8 +699,9 @@ | ||
| 709 | 699 | width: 100%; |
| 710 | 700 | margin-top: 15px !important; |
| 711 | 701 | border-color: #e98b00 !important; |
| 712 | 702 | background-color: #f90 !important; |
| 703 | + -webkit-box-shadow: none !important; | |
| 713 | 704 | box-shadow: none !important; |
| 714 | 705 | font-family: "Open Sans",sans-serif; |
| 715 | 706 | font-weight: 700; |
| 716 | 707 | } |
| @@ -719,11 +710,13 @@ | ||
| 719 | 710 | width: 100%; |
| 720 | 711 | margin-top: 15px !important; |
| 721 | 712 | border-color: #e98b00 !important; |
| 722 | 713 | background-color: #ea8c00 !important; |
| 714 | + -webkit-box-shadow: none !important; | |
| 723 | 715 | box-shadow: none !important; |
| 724 | 716 | font-family: "Open Sans",sans-serif; |
| 725 | 717 | font-weight: 700; |
| 718 | + -webkit-transition: all 0.3s ease; | |
| 726 | 719 | transition: all 0.3s ease; |
| 727 | 720 | } |
| 728 | 721 | |
| 729 | 722 | .check-pro-btn { |
| @@ -764,8 +757,18 @@ | ||
| 764 | 757 | |
| 765 | 758 | /* ====== RESPONSIVE ====== */ |
| 766 | 759 | |
| 767 | 760 | @media (max-width: 1366px) { |
| 761 | + .group-title { | |
| 762 | + padding: 4px 20px; | |
| 763 | + font-size: 14px; | |
| 764 | + font-weight: 400; | |
| 765 | + } | |
| 766 | + | |
| 767 | + .group-title::after { | |
| 768 | + top: 10px; | |
| 769 | + } | |
| 770 | + | |
| 768 | 771 | #rate-stars { |
| 769 | 772 | margin: 3px 0 10px 40%; |
| 770 | 773 | } |
| 771 | 774 | |
| @@ -785,537 +788,4 @@ | ||
| 785 | 788 | line-height: 26px; |
| 786 | 789 | vertical-align: middle; |
| 787 | 790 | } |
| 788 | 791 | } |
| 789 | - | |
| 790 | -#vz-chart-settings h2:hover, | |
| 791 | -#vz-chart-permissions h2:hover, | |
| 792 | -.sidebar-footer-link h2:hover, | |
| 793 | -#vz-chart-review a:hover { | |
| 794 | - text-decoration: none; | |
| 795 | -} | |
| 796 | - | |
| 797 | -#vz-chart-review a { | |
| 798 | - color: #00a0d2; | |
| 799 | - text-decoration: none; | |
| 800 | -} | |
| 801 | - | |
| 802 | -#vz-chart-settings h2, | |
| 803 | -#vz-chart-permissions h2, | |
| 804 | -.sidebar-footer-link h2, | |
| 805 | -#vz-chart-review h2 { | |
| 806 | - padding: 0; | |
| 807 | - border: none; | |
| 808 | - font-size: 12px; | |
| 809 | - font-weight: 400; | |
| 810 | -} | |
| 811 | - | |
| 812 | -#vz-chart-review { | |
| 813 | - right: 0; | |
| 814 | - bottom: 10px; | |
| 815 | - box-sizing: border-box; | |
| 816 | - width: 40%; | |
| 817 | - padding-right: 6px; | |
| 818 | - text-align: right; | |
| 819 | -} | |
| 820 | - | |
| 821 | -#vz-chart-settings.bottom-fixed h2 { | |
| 822 | - padding-left: 6px; | |
| 823 | -} | |
| 824 | - | |
| 825 | -#vz-chart-settings { | |
| 826 | - bottom: 40px; | |
| 827 | - left: 0; | |
| 828 | - box-sizing: border-box; | |
| 829 | - width: 33%; | |
| 830 | - text-align: left; | |
| 831 | -} | |
| 832 | - | |
| 833 | -#vz-chart-permissions:not(.open) h2 { | |
| 834 | - display: inline-block; | |
| 835 | - width: 100%; | |
| 836 | - margin: 0; | |
| 837 | - text-align: right; | |
| 838 | -} | |
| 839 | - | |
| 840 | -#vz-chart-permissions { | |
| 841 | - right: 0; | |
| 842 | - bottom: 40px; | |
| 843 | - box-sizing: border-box; | |
| 844 | - width: 33%; | |
| 845 | - text-align: left; | |
| 846 | -} | |
| 847 | - | |
| 848 | -#vz-chart-permissions h2, | |
| 849 | -#vz-chart-settings h2, | |
| 850 | -.sidebar-footer-link h2 { | |
| 851 | - display: inline; | |
| 852 | - color: #00a0d2; | |
| 853 | - background: none; | |
| 854 | - font-family: "Open Sans",sans-serif; | |
| 855 | - cursor: pointer; | |
| 856 | -} | |
| 857 | - | |
| 858 | -.sidebar-footer-link, | |
| 859 | -#vz-chart-review, | |
| 860 | -#vz-chart-permissions, | |
| 861 | -#vz-chart-settings { | |
| 862 | - display: inline; | |
| 863 | - background: none; | |
| 864 | - cursor: pointer; | |
| 865 | -} | |
| 866 | - | |
| 867 | -.sidebar-footer-link > ul, | |
| 868 | -#vz-chart-source > ul, | |
| 869 | -#vz-chart-permissions > ul, | |
| 870 | -#vz-chart-settings > ul { | |
| 871 | - position: relative; | |
| 872 | - z-index: 10; | |
| 873 | - border-bottom: 1px solid #ddd; | |
| 874 | -} | |
| 875 | - | |
| 876 | -#vz-chart-copyright { | |
| 877 | - bottom: 10px; | |
| 878 | - text-align: center; | |
| 879 | -} | |
| 880 | - | |
| 881 | -#sidebar { | |
| 882 | - border-left: 1px solid #ddd; | |
| 883 | - background: #f3f3f3; | |
| 884 | -} | |
| 885 | - | |
| 886 | -#vz-chart-permissions.open h2 { | |
| 887 | - position: absolute; | |
| 888 | - right: 6px; | |
| 889 | - bottom: 28px; | |
| 890 | - left: auto; | |
| 891 | - width: 50%; | |
| 892 | - text-align: right; | |
| 893 | -} | |
| 894 | - | |
| 895 | -#vz-chart-settings.open h2 { | |
| 896 | - position: absolute; | |
| 897 | - bottom: 28px; | |
| 898 | - left: 6px; | |
| 899 | -} | |
| 900 | - | |
| 901 | -#vz-chart-permissions .viz-group-header, | |
| 902 | -#vz-chart-settings.open .viz-group-header { | |
| 903 | - display: block; | |
| 904 | -} | |
| 905 | - | |
| 906 | -#vz-chart-permissions .viz-group-header, | |
| 907 | -#vz-chart-settings .viz-group-header { | |
| 908 | - display: none; | |
| 909 | -} | |
| 910 | - | |
| 911 | -.sidebar-footer-link.open h2 { | |
| 912 | - position: absolute; | |
| 913 | - bottom: 28px; | |
| 914 | - left: 20px; | |
| 915 | -} | |
| 916 | - | |
| 917 | -.sidebar-footer-link.open .viz-group-header { | |
| 918 | - display: block; | |
| 919 | -} | |
| 920 | - | |
| 921 | -.sidebar-footer-link .viz-group-header { | |
| 922 | - display: none; | |
| 923 | -} | |
| 924 | - | |
| 925 | -#vz-csv-file-form, | |
| 926 | -#vz-one-time-import, | |
| 927 | -#vz-schedule-import, | |
| 928 | -.edit-data-content { | |
| 929 | - text-align: center; | |
| 930 | -} | |
| 931 | - | |
| 932 | -#csv-file { | |
| 933 | - margin: 15px 0; | |
| 934 | - padding: 0; | |
| 935 | -} | |
| 936 | - | |
| 937 | -.visualizer-input, | |
| 938 | -.visualizer-select { | |
| 939 | - width: 100%; | |
| 940 | - margin: 0 0 15px; | |
| 941 | -} | |
| 942 | - | |
| 943 | -.viz-group .dashicons-lock { | |
| 944 | - display: none; | |
| 945 | -} | |
| 946 | - | |
| 947 | -.only-pro-feature .dashicons-lock { | |
| 948 | - display: inline; | |
| 949 | -} | |
| 950 | - | |
| 951 | -.viz-section-title .dashicons, | |
| 952 | -.viz-group-title .dashicons { | |
| 953 | - width: 18px; | |
| 954 | - height: 18px; | |
| 955 | - margin-left: 3px; | |
| 956 | - font-size: 18px; | |
| 957 | -} | |
| 958 | - | |
| 959 | -.only-pro-feature input, | |
| 960 | -.only-pro-feature button, | |
| 961 | -.only-pro-feature select { | |
| 962 | - cursor: not-allowed !important; | |
| 963 | - pointer-events: none; | |
| 964 | -} | |
| 965 | - | |
| 966 | -.only-pro-feature > div { | |
| 967 | - position: relative; | |
| 968 | -} | |
| 969 | - | |
| 970 | -.only-pro-content { | |
| 971 | - position: absolute; | |
| 972 | - top: 0; | |
| 973 | - bottom: 0; | |
| 974 | - left: 0; | |
| 975 | - width: 100%; | |
| 976 | - opacity: 0; | |
| 977 | - background: rgba(253,253,253,0.9); | |
| 978 | - transition: 0.5s ease; | |
| 979 | -} | |
| 980 | - | |
| 981 | -.only-pro-feature:hover .only-pro-content { | |
| 982 | - opacity: 1; | |
| 983 | -} | |
| 984 | - | |
| 985 | -.only-pro-container { | |
| 986 | - display: table; | |
| 987 | - width: 100%; | |
| 988 | - height: 100%; | |
| 989 | -} | |
| 990 | - | |
| 991 | -.only-pro-inner { | |
| 992 | - display: table-cell; | |
| 993 | - vertical-align: middle; | |
| 994 | -} | |
| 995 | - | |
| 996 | -.only-pro-content p { | |
| 997 | - margin: 0 0 15px; | |
| 998 | - font-size: 14px; | |
| 999 | - font-weight: 700; | |
| 1000 | -} | |
| 1001 | - | |
| 1002 | -.only-pro-content a { | |
| 1003 | - display: inline-block; | |
| 1004 | - padding: 7px 12px; | |
| 1005 | - color: #fff; | |
| 1006 | - background: #ff595e; | |
| 1007 | - font-weight: 600; | |
| 1008 | - text-decoration: none; | |
| 1009 | - text-transform: uppercase; | |
| 1010 | - transition: 0.1s ease; | |
| 1011 | -} | |
| 1012 | - | |
| 1013 | -.only-pro-content a:hover { | |
| 1014 | - background: #ce484c; | |
| 1015 | -} | |
| 1016 | - | |
| 1017 | -#sidebar::-webkit-scrollbar { | |
| 1018 | - width: 4px; | |
| 1019 | -} | |
| 1020 | - | |
| 1021 | -#sidebar::-webkit-scrollbar-thumb { | |
| 1022 | - background: #999; | |
| 1023 | -} | |
| 1024 | - | |
| 1025 | -span.viz-section-error { | |
| 1026 | - color: #ff000; | |
| 1027 | -} | |
| 1028 | - | |
| 1029 | -#visualizer-error-manual { | |
| 1030 | - color: #ff595e; | |
| 1031 | -} | |
| 1032 | - | |
| 1033 | -#vz-chart-permissions { | |
| 1034 | - width: 43%; | |
| 1035 | -} | |
| 1036 | - | |
| 1037 | -#vz-chart-permissions { | |
| 1038 | - color: #ce484c; | |
| 1039 | -} | |
| 1040 | - | |
| 1041 | -#vz-chart-permissions { | |
| 1042 | - right: 6px; | |
| 1043 | - bottom: 40px; | |
| 1044 | - width: 35%; | |
| 1045 | -} | |
| 1046 | - | |
| 1047 | -#permissions-form .only-pro-feature > ul { | |
| 1048 | - position: relative; | |
| 1049 | - text-align: center; | |
| 1050 | -} | |
| 1051 | - | |
| 1052 | -/******************************************************************************/ | |
| 1053 | -/******************************** DB WIZARD ***********************************/ | |
| 1054 | -/******************************************************************************/ | |
| 1055 | -.db-wizard-condition .select-condition { | |
| 1056 | - display: none; | |
| 1057 | -} | |
| 1058 | - | |
| 1059 | -.db-wizard-condition .select-condition.active { | |
| 1060 | - display: block; | |
| 1061 | - max-width: 50%; | |
| 1062 | - margin-top: 10px; | |
| 1063 | - padding-top: 10px; | |
| 1064 | - border-top: 1px solid #eee; | |
| 1065 | - font-weight: 500; | |
| 1066 | -} | |
| 1067 | - | |
| 1068 | -.db-wizard-results { | |
| 1069 | - width: calc(100% - 350px); | |
| 1070 | -} | |
| 1071 | - | |
| 1072 | -#db-wizard-form { | |
| 1073 | - padding: 25px; | |
| 1074 | -} | |
| 1075 | - | |
| 1076 | -.db-wizard-query label { | |
| 1077 | - display: block; | |
| 1078 | - min-width: 150px; | |
| 1079 | - padding: 20px 0 5px; | |
| 1080 | - color: rgba(0,0,0,0.85); | |
| 1081 | - font-size: 18px; | |
| 1082 | - font-weight: 500; | |
| 1083 | -} | |
| 1084 | - | |
| 1085 | -.db-wizard-query .db-wizard-where label, | |
| 1086 | -.db-wizard-query .db-wizard-from label { | |
| 1087 | - padding-top: 0; | |
| 1088 | -} | |
| 1089 | - | |
| 1090 | -.db-wizard-query > div:not(:last-child) { | |
| 1091 | - margin-bottom: 15px; | |
| 1092 | -} | |
| 1093 | - | |
| 1094 | -.db-wizard-query .select-condition > div { | |
| 1095 | - display: block; | |
| 1096 | -} | |
| 1097 | - | |
| 1098 | -.db-wizard-query .chosen-container { | |
| 1099 | - width: auto; | |
| 1100 | -} | |
| 1101 | - | |
| 1102 | -.db-wizard-query .chosen-container-single .chosen-single { | |
| 1103 | - border: 1px solid #ccc; | |
| 1104 | - background: #fff; | |
| 1105 | - box-shadow: none; | |
| 1106 | - font-size: 13px; | |
| 1107 | - font-weight: 500; | |
| 1108 | -} | |
| 1109 | - | |
| 1110 | -.db-wizard-templates, | |
| 1111 | -.db-wizard-templates > div { | |
| 1112 | - display: block; | |
| 1113 | -} | |
| 1114 | - | |
| 1115 | -.db-wizard-templates > div { | |
| 1116 | - box-sizing: border-box; | |
| 1117 | - width: 50%; | |
| 1118 | - margin-top: 20px; | |
| 1119 | - padding: 20px; | |
| 1120 | - border: 1px solid #efefef; | |
| 1121 | -} | |
| 1122 | - | |
| 1123 | -.db-wizard-templates > div:first-child { | |
| 1124 | - margin-top: 0; | |
| 1125 | -} | |
| 1126 | - | |
| 1127 | -.db-wizard-query .chosen-container-multi .chosen-choices { | |
| 1128 | - padding: 5px; | |
| 1129 | - border-color: #ccc; | |
| 1130 | - background: #fff; | |
| 1131 | - box-shadow: none; | |
| 1132 | -} | |
| 1133 | - | |
| 1134 | -.db-wizard-results .dataTables_wrapper .dataTables_filter input, | |
| 1135 | -.db-wizard-query .select-condition-operand input, | |
| 1136 | -.db-wizard-limit input { | |
| 1137 | - width: 50%; | |
| 1138 | - padding-left: 7px; | |
| 1139 | - border: 1px solid #ccc; | |
| 1140 | - border-radius: 6px; | |
| 1141 | - background: #fff; | |
| 1142 | - box-shadow: none; | |
| 1143 | - font-size: 13px; | |
| 1144 | -} | |
| 1145 | - | |
| 1146 | -.db-wizard-limit input { | |
| 1147 | - display: inline; | |
| 1148 | - width: 150px; | |
| 1149 | - margin: 0 0 20px 20px; | |
| 1150 | -} | |
| 1151 | - | |
| 1152 | -.db-wizard-limit label { | |
| 1153 | - display: inline; | |
| 1154 | -} | |
| 1155 | - | |
| 1156 | -.db-wizard-query .select-condition-operand input::-webkit-input-placeholder { | |
| 1157 | - color: #cdcdcd; | |
| 1158 | -} | |
| 1159 | - | |
| 1160 | -.db-wizard-query .select-condition-operand input:-ms-input-placeholder { | |
| 1161 | - color: #cdcdcd; | |
| 1162 | -} | |
| 1163 | - | |
| 1164 | -.db-wizard-query .select-condition-operand input::placeholder { | |
| 1165 | - color: #cdcdcd; | |
| 1166 | -} | |
| 1167 | - | |
| 1168 | -.db-wizard-query .chosen-container-multi .chosen-choices li.search-choice { | |
| 1169 | - padding: 5px 30px 5px 5px; | |
| 1170 | - border-color: #ccc; | |
| 1171 | - background: #fff; | |
| 1172 | - box-shadow: none; | |
| 1173 | - font-weight: 600; | |
| 1174 | -} | |
| 1175 | - | |
| 1176 | -.db-wizard-results table > thead > tr > th { | |
| 1177 | - padding: 15px 8px; | |
| 1178 | - border: none; | |
| 1179 | - color: #252422; | |
| 1180 | - background: #fff; | |
| 1181 | - font-size: 18px; | |
| 1182 | - font-weight: 500; | |
| 1183 | - text-align: left; | |
| 1184 | -} | |
| 1185 | - | |
| 1186 | -.db-wizard-results table > tbody > tr > td, | |
| 1187 | -.dataTables_info { | |
| 1188 | - padding: 15px 8px; | |
| 1189 | - border-top: 1px solid #a2a2a2; | |
| 1190 | - color: #252422; | |
| 1191 | - font-size: 14px; | |
| 1192 | - font-weight: 300; | |
| 1193 | -} | |
| 1194 | - | |
| 1195 | -.db-wizard-results table > tbody > tr.odd { | |
| 1196 | - background-color: #f7f7f7; | |
| 1197 | -} | |
| 1198 | - | |
| 1199 | -.db-wizard-results table.dataTable.no-footer { | |
| 1200 | - border: none; | |
| 1201 | -} | |
| 1202 | - | |
| 1203 | -.db-wizard-results .dataTables_wrapper .dataTables_info { | |
| 1204 | - border-top: 1px solid #ccc5b9; | |
| 1205 | - color: #a2a2a2; | |
| 1206 | - font-size: 12px; | |
| 1207 | - font-weight: 500; | |
| 1208 | -} | |
| 1209 | - | |
| 1210 | -.db-wizard-results .dataTables_filter label { | |
| 1211 | - font-size: 18px; | |
| 1212 | - font-weight: 500; | |
| 1213 | -} | |
| 1214 | - | |
| 1215 | -.db-wizard-where-template-remove, | |
| 1216 | -.db-wizard-where-template-add { | |
| 1217 | - width: auto; | |
| 1218 | - height: 25px; | |
| 1219 | - margin-top: 10px; | |
| 1220 | - border: none; | |
| 1221 | - border-radius: 3px; | |
| 1222 | - color: #fff; | |
| 1223 | - font-size: 12px; | |
| 1224 | - cursor: pointer; | |
| 1225 | - transition: 0.3s ease; | |
| 1226 | -} | |
| 1227 | - | |
| 1228 | -.db-wizard-where-template-remove:hover, | |
| 1229 | -.db-wizard-where-template-add:hover { | |
| 1230 | - opacity: 0.8; | |
| 1231 | -} | |
| 1232 | - | |
| 1233 | -.db-wizard-results .dataTables_wrapper .dataTables_filter { | |
| 1234 | - float: none; | |
| 1235 | - text-align: left; | |
| 1236 | -} | |
| 1237 | - | |
| 1238 | -.db-wizard-where-template-add { | |
| 1239 | - background-color: #34a85e; | |
| 1240 | -} | |
| 1241 | - | |
| 1242 | -.db-wizard-where-template-remove { | |
| 1243 | - background-color: #ff0d00; | |
| 1244 | -} | |
| 1245 | - | |
| 1246 | -#db-query-form .CodeMirror-scroll { | |
| 1247 | - overflow: hidden !important; | |
| 1248 | - height: 50%; | |
| 1249 | - margin: 0; | |
| 1250 | - padding: 0; | |
| 1251 | -} | |
| 1252 | - | |
| 1253 | -#db-query-form .CodeMirror-wrap { | |
| 1254 | - height: 200px; | |
| 1255 | - padding: 15px; | |
| 1256 | - color: #fff; | |
| 1257 | - background: #282923; | |
| 1258 | - font-size: 15px; | |
| 1259 | -} | |
| 1260 | - | |
| 1261 | -#db-query-form .CodeMirror-wrap .CodeMirror-cursor { | |
| 1262 | - border-left: 1px solid #fff !important; | |
| 1263 | -} | |
| 1264 | - | |
| 1265 | -#db-query-form .CodeMirror-wrap .CodeMirror-placeholder { | |
| 1266 | - color: #fff; | |
| 1267 | -} | |
| 1268 | - | |
| 1269 | -#db-query-form .CodeMirror-wrap pre { | |
| 1270 | - color: #fff !important; | |
| 1271 | -} | |
| 1272 | - | |
| 1273 | -#db-query-form .CodeMirror-wrap pre .cm-keyword { | |
| 1274 | - color: #f92472 !important; | |
| 1275 | -} | |
| 1276 | - | |
| 1277 | -#db-query-form .CodeMirror-wrap pre .cm-comment { | |
| 1278 | - color: #74705d !important; | |
| 1279 | -} | |
| 1280 | - | |
| 1281 | -#db-query-form .CodeMirror-wrap pre .cm-number, | |
| 1282 | -#db-query-form .CodeMirror-wrap pre .cm-string { | |
| 1283 | - color: #fff !important; | |
| 1284 | -} | |
| 1285 | - | |
| 1286 | -.visualizer-db-query-form > div { | |
| 1287 | - display: block; | |
| 1288 | - width: 15%; | |
| 1289 | - vertical-align: middle; | |
| 1290 | -} | |
| 1291 | - | |
| 1292 | -#visualizer-db-query { | |
| 1293 | - padding: 20px; | |
| 1294 | -} | |
| 1295 | - | |
| 1296 | -.visualizer-db-query-form > div:first-child { | |
| 1297 | - width: 100%; | |
| 1298 | - margin-bottom: 20px; | |
| 1299 | -} | |
| 1300 | - | |
| 1301 | -.db-wizard-error { | |
| 1302 | - color: #f00; | |
| 1303 | -} | |
| 1304 | - | |
| 1305 | -.db-wizard-hints { | |
| 1306 | - margin-bottom: 30px; | |
| 1307 | - color: #0085ba; | |
| 1308 | -} | |
| 1309 | - | |
| 1310 | -.db-wizard-hints .visualizer-emboss, | |
| 1311 | -.db-wizard-hints a { | |
| 1312 | - color: #f92472; | |
| 1313 | -} | |
| 1314 | - | |
| 1315 | -.db-wizard-hints ul { | |
| 1316 | - list-style: square; | |
| 1317 | -} | |
| 1318 | - | |
| 1319 | -.db-wizard-results .dataTables_wrapper .dataTables_info { | |
| 1320 | - width: calc(100% - 17px); | |
| 1321 | -} | |