Matteo Scandolo | fb46ae6 | 2017-08-08 09:10:50 -0700 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright 2017-present Open Networking Foundation |
| 4 | |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at |
| 8 | |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | |
Matteo Scandolo | 9d7940c | 2017-01-19 18:28:43 -0800 | [diff] [blame] | 19 | @import './vars.scss'; |
| 20 | |
Matteo Scandolo | 67c105f | 2017-01-09 09:30:52 -0800 | [diff] [blame] | 21 | .btn:active,.btn.active{ |
| 22 | box-shadow:none |
| 23 | } |
| 24 | |
| 25 | .btn{ |
| 26 | color:inherit; |
| 27 | background-color:transparent |
| 28 | } |
| 29 | |
| 30 | .buttons-margin .btn{ |
| 31 | |
| 32 | margin-bottom:5px |
| 33 | } |
| 34 | |
| 35 | .btn-default{ |
| 36 | border-color:#585d6e |
| 37 | } |
| 38 | |
| 39 | .btn.btn-w-sm{ |
| 40 | min-width:80px |
| 41 | } |
| 42 | |
| 43 | .btn.btn-w-md{ |
| 44 | min-width:120px |
| 45 | } |
| 46 | |
| 47 | .btn.btn-w-lg{ |
| 48 | min-width:160px |
| 49 | } |
| 50 | |
| 51 | .btn.btn-rounded{ |
| 52 | border-radius:50px |
| 53 | } |
| 54 | |
| 55 | .btn.btn-squared{ |
| 56 | border-radius:0 |
| 57 | } |
| 58 | |
| 59 | .btn-accent{ |
| 60 | color:#949ba2; |
| 61 | background-color:transparent; |
| 62 | border-color:#f6a821 |
| 63 | } |
| 64 | |
| 65 | .btn-accent:focus,.btn-accent.focus{ |
| 66 | color:#ffffff; |
| 67 | background-color:rgba(246,168,33,0.1); |
| 68 | border-color:#f6a821; |
| 69 | outline:0; |
| 70 | box-shadow:none |
| 71 | } |
| 72 | |
| 73 | .btn-accent:hover{ |
| 74 | color:#ffffff; |
| 75 | background-color:rgba(246,168,33,0.1); |
| 76 | border-color:#f6a821 |
| 77 | } |
| 78 | |
| 79 | .btn-accent:active,.btn-accent.active,.open>.dropdown-toggle.btn-accent{ |
| 80 | color:#ffffff; |
| 81 | background-color:rgba(246,168,33,0.1); |
| 82 | border-color:#f6a821 |
| 83 | } |
| 84 | |
| 85 | .btn-accent:active:hover,.btn-accent.active:hover,.open>.dropdown-toggle.btn-accent:hover,.btn-accent:active:focus,.btn-accent.active:focus,.open>.dropdown-toggle.btn-accent:focus,.btn-accent:active.focus,.btn-accent.active.focus,.open>.dropdown-toggle.btn-accent.focus{ |
| 86 | color:#ffffff; |
| 87 | background-color:rgba(246,168,33,0.1); |
| 88 | border-color:#f8bb52; |
| 89 | outline:0; |
| 90 | box-shadow:none |
| 91 | } |
| 92 | |
| 93 | .btn-accent:active,.btn-accent.active,.open>.dropdown-toggle.btn-accent{ |
| 94 | background-image:none |
| 95 | } |
| 96 | |
| 97 | .btn-accent.disabled:hover,.btn-accent[disabled]:hover,fieldset[disabled] .btn-accent:hover,.btn-accent.disabled:focus,.btn-accent[disabled]:focus,fieldset[disabled] .btn-accent:focus,.btn-accent.disabled.focus,.btn-accent[disabled].focus,fieldset[disabled] .btn-accent.focus{ |
| 98 | background-color:rgba(246,168,33,0.1); |
| 99 | border-color:#f6a821 |
| 100 | } |
| 101 | |
| 102 | .btn-accent .badge{ |
| 103 | color:transparent; |
| 104 | background-color:#949ba2 |
| 105 | } |
| 106 | |
| 107 | .btn-default{ |
| 108 | color:#949ba2; |
| 109 | background-color:transparent; |
| 110 | border-color:#616779 |
| 111 | } |
| 112 | |
| 113 | .btn-default:focus,.btn-default.focus{ |
| 114 | color:#ffffff; |
| 115 | background-color:rgba(97,103,121,0.1); |
| 116 | border-color:#616779; |
| 117 | outline:0; |
| 118 | box-shadow:none |
| 119 | } |
| 120 | |
| 121 | .btn-default:hover{ |
| 122 | color:#ffffff; |
| 123 | background-color:rgba(97,103,121,0.1); |
| 124 | border-color:#616779 |
| 125 | } |
| 126 | |
| 127 | .btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{ |
| 128 | color:#ffffff; |
| 129 | background-color:rgba(97,103,121,0.1); |
| 130 | border-color:#616779 |
| 131 | } |
| 132 | |
| 133 | .btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{ |
| 134 | color:#ffffff; |
| 135 | background-color:rgba(97,103,121,0.1); |
| 136 | border-color:#798094; |
| 137 | outline:0; |
| 138 | box-shadow:none |
| 139 | } |
| 140 | |
| 141 | .btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{ |
| 142 | background-image:none |
| 143 | } |
| 144 | |
| 145 | .btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus{ |
| 146 | background-color:rgba(97,103,121,0.1); |
| 147 | border-color:#616779 |
| 148 | } |
| 149 | |
| 150 | .btn-default .badge{ |
| 151 | color:transparent; |
| 152 | background-color:#949ba2 |
| 153 | } |
| 154 | |
| 155 | .btn-primary{ |
| 156 | color:#949ba2; |
| 157 | background-color:transparent; |
| 158 | border-color:#0F83C9 |
| 159 | } |
| 160 | |
| 161 | .btn-primary:focus,.btn-primary.focus{ |
| 162 | color:#ffffff; |
| 163 | background-color:rgba(15,131,201,0.1); |
| 164 | border-color:#0F83C9; |
| 165 | outline:0; |
| 166 | box-shadow:none |
| 167 | } |
| 168 | |
| 169 | .btn-primary:hover{ |
| 170 | color:#ffffff; |
| 171 | background-color:rgba(15,131,201,0.1); |
| 172 | border-color:#0F83C9 |
| 173 | } |
| 174 | |
| 175 | .btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{ |
| 176 | color:#ffffff; |
| 177 | background-color:rgba(15,131,201,0.1); |
| 178 | border-color:#0F83C9 |
| 179 | } |
| 180 | |
| 181 | .btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{ |
| 182 | color:#ffffff; |
| 183 | background-color:rgba(15,131,201,0.1); |
| 184 | border-color:#1d9fee; |
| 185 | outline:0; |
| 186 | box-shadow:none |
| 187 | } |
| 188 | |
| 189 | .btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{ |
| 190 | background-image:none |
| 191 | } |
| 192 | |
| 193 | .btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus{ |
| 194 | background-color:rgba(15,131,201,0.1); |
| 195 | border-color:#0F83C9 |
| 196 | } |
| 197 | |
| 198 | .btn-primary .badge{ |
| 199 | color:transparent; |
| 200 | background-color:#949ba2 |
| 201 | } |
| 202 | |
| 203 | .btn-success{ |
| 204 | color:#949ba2; |
| 205 | background-color:transparent; |
| 206 | border-color:#1bbf89 |
| 207 | } |
| 208 | |
| 209 | .btn-success:focus,.btn-success.focus{ |
| 210 | color:#ffffff; |
| 211 | background-color:rgba(27,191,137,0.1); |
| 212 | border-color:#1bbf89; |
| 213 | outline:0; |
| 214 | box-shadow:none |
| 215 | } |
| 216 | |
| 217 | .btn-success:hover{ |
| 218 | color:#ffffff; |
| 219 | background-color:rgba(27,191,137,0.1); |
| 220 | border-color:#1bbf89 |
| 221 | } |
| 222 | |
| 223 | .btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{ |
| 224 | color:#ffffff; |
| 225 | background-color:rgba(27,191,137,0.1); |
| 226 | border-color:#1bbf89 |
| 227 | } |
| 228 | |
| 229 | .btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{ |
| 230 | color:#ffffff; |
| 231 | background-color:rgba(27,191,137,0.1); |
| 232 | border-color:#2ce1a5; |
| 233 | outline:0; |
| 234 | box-shadow:none |
| 235 | } |
| 236 | |
| 237 | .btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{ |
| 238 | background-image:none |
| 239 | } |
| 240 | |
| 241 | .btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus{ |
| 242 | background-color:rgba(27,191,137,0.1); |
| 243 | border-color:#1bbf89 |
| 244 | } |
| 245 | |
| 246 | .btn-success .badge{ |
| 247 | color:transparent; |
| 248 | background-color:#949ba2 |
| 249 | } |
| 250 | |
| 251 | .btn-info{ |
| 252 | color:#949ba2; |
| 253 | background-color:transparent; |
| 254 | border-color:#56C0E0 |
| 255 | } |
| 256 | |
| 257 | .btn-info:focus,.btn-info.focus{ |
| 258 | color:#ffffff; |
| 259 | background-color:rgba(86,192,224,0.1); |
| 260 | border-color:#56C0E0; |
| 261 | outline:0; |
| 262 | box-shadow:none |
| 263 | } |
| 264 | |
| 265 | .btn-info:hover{ |
| 266 | color:#ffffff; |
| 267 | background-color:rgba(86,192,224,0.1); |
| 268 | border-color:#56C0E0 |
| 269 | } |
| 270 | |
| 271 | .btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{ |
| 272 | color:#ffffff; |
| 273 | background-color:rgba(86,192,224,0.1); |
| 274 | border-color:#56C0E0 |
| 275 | } |
| 276 | |
| 277 | .btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{ |
| 278 | color:#ffffff; |
| 279 | background-color:rgba(86,192,224,0.1); |
| 280 | border-color:#81d0e8; |
| 281 | outline:0; |
| 282 | box-shadow:none |
| 283 | } |
| 284 | |
| 285 | .btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{ |
| 286 | background-image:none |
| 287 | } |
| 288 | |
| 289 | .btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus{ |
| 290 | background-color:rgba(86,192,224,0.1); |
| 291 | border-color:#56C0E0 |
| 292 | } |
| 293 | |
| 294 | .btn-info .badge{ |
| 295 | color:transparent; |
| 296 | background-color:#949ba2 |
| 297 | } |
| 298 | |
| 299 | .btn-warning{ |
| 300 | color:#949ba2; |
| 301 | background-color:transparent; |
| 302 | border-color:#f7af3e |
| 303 | } |
| 304 | |
| 305 | .btn-warning:focus,.btn-warning.focus{ |
| 306 | color:#ffffff; |
| 307 | background-color:rgba(247,175,62,0.1); |
| 308 | border-color:#f7af3e; |
| 309 | outline:0; |
| 310 | box-shadow:none |
| 311 | } |
| 312 | |
| 313 | .btn-warning:hover{ |
| 314 | color:#ffffff; |
| 315 | background-color:rgba(247,175,62,0.1); |
| 316 | border-color:#f7af3e |
| 317 | } |
| 318 | |
| 319 | .btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{ |
| 320 | color:#ffffff; |
| 321 | background-color:rgba(247,175,62,0.1); |
| 322 | border-color:#f7af3e |
| 323 | } |
| 324 | |
| 325 | .btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{ |
| 326 | color:#ffffff; |
| 327 | background-color:rgba(247,175,62,0.1); |
| 328 | border-color:#f9c36f; |
| 329 | outline:0; |
| 330 | box-shadow:none |
| 331 | } |
| 332 | |
| 333 | .btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{ |
| 334 | background-image:none |
| 335 | } |
| 336 | |
| 337 | .btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus{ |
| 338 | background-color:rgba(247,175,62,0.1); |
| 339 | border-color:#f7af3e |
| 340 | } |
| 341 | |
| 342 | .btn-warning .badge{ |
| 343 | color:transparent; |
| 344 | background-color:#949ba2 |
| 345 | } |
| 346 | |
| 347 | .btn-danger{ |
| 348 | color:#949ba2; |
| 349 | background-color:transparent; |
| 350 | border-color:#DB524B |
| 351 | } |
| 352 | |
| 353 | .btn-danger:focus,.btn-danger.focus{ |
| 354 | color:#ffffff; |
| 355 | background-color:rgba(219,82,75,0.1); |
| 356 | border-color:#DB524B; |
| 357 | outline:0; |
| 358 | box-shadow:none |
| 359 | } |
| 360 | |
| 361 | .btn-danger:hover{ |
| 362 | color:#ffffff; |
| 363 | background-color:rgba(219,82,75,0.1); |
| 364 | border-color:#DB524B |
| 365 | } |
| 366 | |
| 367 | .btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{ |
| 368 | color:#ffffff; |
| 369 | background-color:rgba(219,82,75,0.1); |
| 370 | border-color:#DB524B |
| 371 | } |
| 372 | |
| 373 | .btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{ |
| 374 | color:#ffffff; |
| 375 | background-color:rgba(219,82,75,0.1); |
| 376 | border-color:#e47b75; |
| 377 | outline:0; |
| 378 | box-shadow:none |
| 379 | } |
| 380 | |
| 381 | .btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{ |
| 382 | background-image:none |
| 383 | } |
| 384 | |
| 385 | .btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus{ |
| 386 | background-color:rgba(219,82,75,0.1); |
| 387 | border-color:#DB524B |
| 388 | } |
| 389 | |
| 390 | .btn-danger .badge{ |
| 391 | color:transparent; |
| 392 | background-color:#949ba2 |
| 393 | } |
| 394 | |
| 395 | .btn-default:hover,.btn-default:active,.btn-default:active:focus,.btn-default:focus,.btn-default.active{ |
| 396 | background-color:#3d404c |
| 397 | } |
| 398 | |
| 399 | .btn-link:hover,.btn-link:active,.btn-link:active:focus,.btn-link:focus,.btn-link.active{ |
| 400 | color:#f6a821; |
| 401 | text-decoration:none |
| 402 | } |
| 403 | |
| 404 | .content>div{ |
| 405 | opacity:0 |
| 406 | } |
| 407 | |
| 408 | .pace{ |
| 409 | -webkit-pointer-events:none; |
| 410 | pointer-events:none; |
| 411 | -webkit-user-select:none; |
| 412 | -moz-user-select:none; |
| 413 | user-select:none; |
| 414 | z-index:2000; |
| 415 | position:fixed; |
| 416 | margin:auto; |
| 417 | top:0; |
| 418 | left:0; |
| 419 | right:0; |
| 420 | bottom:0; |
| 421 | height:5px; |
| 422 | width:200px; |
| 423 | background:#fff; |
| 424 | overflow:hidden |
| 425 | } |
| 426 | |
| 427 | .pace .pace-progress{ |
| 428 | -webkit-box-sizing:border-box; |
| 429 | -moz-box-sizing:border-box; |
| 430 | -ms-box-sizing:border-box; |
| 431 | -o-box-sizing:border-box; |
| 432 | box-sizing:border-box; |
| 433 | -webkit-transform:translate3d(0, 0, 0); |
| 434 | -moz-transform:translate3d(0, 0, 0); |
| 435 | -ms-transform:translate3d(0, 0, 0); |
| 436 | -o-transform:translate3d(0, 0, 0); |
| 437 | transform:translate3d(0, 0, 0); |
| 438 | max-width:200px; |
| 439 | z-index:2000; |
| 440 | display:block; |
| 441 | position:absolute; |
| 442 | top:0; |
| 443 | right:100%; |
| 444 | height:100%; |
| 445 | width:100%; |
| 446 | background:#f6a821 |
| 447 | } |
| 448 | |
| 449 | .pace.pace-inactive{ |
| 450 | display:none |
| 451 | } |
| 452 | |
| 453 | .pace-done .content>div{ |
| 454 | opacity:1 |
| 455 | } |
| 456 | |
| 457 | .text-muted{ |
| 458 | color:#868e96 |
| 459 | } |
| 460 | |
| 461 | .text-accent{ |
| 462 | color:#f6a821 |
| 463 | } |
| 464 | |
| 465 | .text-primary{ |
| 466 | color:#0F83C9 |
| 467 | } |
| 468 | |
| 469 | .text-success{ |
| 470 | color:#1bbf89 |
| 471 | } |
| 472 | |
| 473 | .text-info{ |
| 474 | color:#56C0E0 |
| 475 | } |
| 476 | |
| 477 | .text-warning{ |
| 478 | color:#f7af3e |
| 479 | } |
| 480 | |
| 481 | .text-danger{ |
| 482 | color:#DB524B |
| 483 | } |
| 484 | |
| 485 | .p-xxs{ |
| 486 | padding:5px !important |
| 487 | } |
| 488 | |
| 489 | .p-xs{ |
| 490 | padding:10px !important |
| 491 | } |
| 492 | |
| 493 | .p-sm{ |
| 494 | padding:15px !important |
| 495 | } |
| 496 | |
| 497 | .p-m{ |
| 498 | padding:20px !important |
| 499 | } |
| 500 | |
| 501 | .p-md{ |
| 502 | padding:25px !important |
| 503 | } |
| 504 | |
| 505 | .p-lg{ |
| 506 | padding:30px !important |
| 507 | } |
| 508 | |
| 509 | .p-xl{ |
| 510 | padding:40px !important |
| 511 | } |
| 512 | |
| 513 | .m-xxs{ |
| 514 | margin:2px 4px |
| 515 | } |
| 516 | |
| 517 | .m-xs{ |
| 518 | margin:5px |
| 519 | } |
| 520 | |
| 521 | .m-sm{ |
| 522 | margin:10px |
| 523 | } |
| 524 | |
| 525 | .m{ |
| 526 | margin:15px |
| 527 | } |
| 528 | |
| 529 | .m-md{ |
| 530 | margin:20px |
| 531 | } |
| 532 | |
| 533 | .m-lg{ |
| 534 | margin:30px |
| 535 | } |
| 536 | |
| 537 | .m-xl{ |
| 538 | margin:50px |
| 539 | } |
| 540 | |
| 541 | .m-n{ |
| 542 | margin:0 !important |
| 543 | } |
| 544 | |
| 545 | .m-l-none{ |
| 546 | margin-left:0 |
| 547 | } |
| 548 | |
| 549 | .m-l-xs{ |
| 550 | margin-left:5px |
| 551 | } |
| 552 | |
| 553 | .m-l-sm{ |
| 554 | margin-left:10px |
| 555 | } |
| 556 | |
| 557 | .m-l{ |
| 558 | margin-left:15px |
| 559 | } |
| 560 | |
| 561 | .m-l-md{ |
| 562 | margin-left:20px |
| 563 | } |
| 564 | |
| 565 | .m-l-lg{ |
| 566 | margin-left:30px |
| 567 | } |
| 568 | |
| 569 | .m-l-xl{ |
| 570 | margin-left:40px |
| 571 | } |
| 572 | |
| 573 | .m-l-n-xxs{ |
| 574 | margin-left:-1px |
| 575 | } |
| 576 | |
| 577 | .m-l-n-xs{ |
| 578 | margin-left:-5px |
| 579 | } |
| 580 | |
| 581 | .m-l-n-sm{ |
| 582 | margin-left:-10px |
| 583 | } |
| 584 | |
| 585 | .m-l-n{ |
| 586 | margin-left:-15px |
| 587 | } |
| 588 | |
| 589 | .m-l-n-md{ |
| 590 | margin-left:-20px |
| 591 | } |
| 592 | |
| 593 | .m-l-n-lg{ |
| 594 | margin-left:-30px |
| 595 | } |
| 596 | |
| 597 | .m-l-n-xl{ |
| 598 | margin-left:-40px |
| 599 | } |
| 600 | |
| 601 | .m-t-none{ |
| 602 | margin-top:0 |
| 603 | } |
| 604 | |
| 605 | .m-t-xxs{ |
| 606 | margin-top:1px |
| 607 | } |
| 608 | |
| 609 | .m-t-xs{ |
| 610 | margin-top:5px |
| 611 | } |
| 612 | |
| 613 | .m-t-sm{ |
| 614 | margin-top:10px |
| 615 | } |
| 616 | |
| 617 | .m-t{ |
| 618 | margin-top:15px |
| 619 | } |
| 620 | |
| 621 | .m-t-md{ |
| 622 | margin-top:20px |
| 623 | } |
| 624 | |
| 625 | .m-t-lg{ |
| 626 | margin-top:30px |
| 627 | } |
| 628 | |
| 629 | .m-t-xl{ |
| 630 | margin-top:40px |
| 631 | } |
| 632 | |
| 633 | .m-t-xxl{ |
| 634 | margin-top:50px |
| 635 | } |
| 636 | |
| 637 | .m-t-xxxl{ |
| 638 | margin-top:60px |
| 639 | } |
| 640 | |
| 641 | .m-t-n-xxs{ |
| 642 | margin-top:-1px |
| 643 | } |
| 644 | |
| 645 | .m-t-n-xs{ |
| 646 | margin-top:-5px |
| 647 | } |
| 648 | |
| 649 | .m-t-n-sm{ |
| 650 | margin-top:-10px |
| 651 | } |
| 652 | |
| 653 | .m-t-n{ |
| 654 | margin-top:-15px |
| 655 | } |
| 656 | |
| 657 | .m-t-n-md{ |
| 658 | margin-top:-20px |
| 659 | } |
| 660 | |
| 661 | .m-t-n-lg{ |
| 662 | margin-top:-30px |
| 663 | } |
| 664 | |
| 665 | .m-t-n-xl{ |
| 666 | margin-top:-40px |
| 667 | } |
| 668 | |
| 669 | .m-r-none{ |
| 670 | margin-right:0 |
| 671 | } |
| 672 | |
| 673 | .m-r-xxs{ |
| 674 | margin-right:1px |
| 675 | } |
| 676 | |
| 677 | .m-r-xs{ |
| 678 | margin-right:5px |
| 679 | } |
| 680 | |
| 681 | .m-r-sm{ |
| 682 | margin-right:10px |
| 683 | } |
| 684 | |
| 685 | .m-r{ |
| 686 | margin-right:15px |
| 687 | } |
| 688 | |
| 689 | .m-r-md{ |
| 690 | margin-right:20px |
| 691 | } |
| 692 | |
| 693 | .m-r-lg{ |
| 694 | margin-right:30px |
| 695 | } |
| 696 | |
| 697 | .m-r-xl{ |
| 698 | margin-right:40px |
| 699 | } |
| 700 | |
| 701 | .m-r-n-xxs{ |
| 702 | margin-right:-1px |
| 703 | } |
| 704 | |
| 705 | .m-r-n-xs{ |
| 706 | margin-right:-5px |
| 707 | } |
| 708 | |
| 709 | .m-r-n-sm{ |
| 710 | margin-right:-10px |
| 711 | } |
| 712 | |
| 713 | .m-r-n{ |
| 714 | margin-right:-15px |
| 715 | } |
| 716 | |
| 717 | .m-r-n-md{ |
| 718 | margin-right:-20px |
| 719 | } |
| 720 | |
| 721 | .m-r-n-lg{ |
| 722 | margin-right:-30px |
| 723 | } |
| 724 | |
| 725 | .m-r-n-xl{ |
| 726 | margin-right:-40px |
| 727 | } |
| 728 | |
| 729 | .m-b-none{ |
| 730 | margin-bottom:0 |
| 731 | } |
| 732 | |
| 733 | .m-b-xxs{ |
| 734 | margin-bottom:1px |
| 735 | } |
| 736 | |
| 737 | .m-b-xs{ |
| 738 | margin-bottom:5px |
| 739 | } |
| 740 | |
| 741 | .m-b-sm{ |
| 742 | margin-bottom:10px |
| 743 | } |
| 744 | |
| 745 | .m-b{ |
| 746 | margin-bottom:15px |
| 747 | } |
| 748 | |
| 749 | .m-b-md{ |
| 750 | margin-bottom:20px |
| 751 | } |
| 752 | |
| 753 | .m-b-lg{ |
| 754 | margin-bottom:30px |
| 755 | } |
| 756 | |
| 757 | .m-b-xl{ |
| 758 | margin-bottom:40px |
| 759 | } |
| 760 | |
| 761 | .m-b-n-xxs{ |
| 762 | margin-bottom:-1px |
| 763 | } |
| 764 | |
| 765 | .m-b-n-xs{ |
| 766 | margin-bottom:-5px |
| 767 | } |
| 768 | |
| 769 | .m-b-n-sm{ |
| 770 | margin-bottom:-10px |
| 771 | } |
| 772 | |
| 773 | .m-b-n{ |
| 774 | margin-bottom:-15px |
| 775 | } |
| 776 | |
| 777 | .m-b-n-md{ |
| 778 | margin-bottom:-20px |
| 779 | } |
| 780 | |
| 781 | .m-b-n-lg{ |
| 782 | margin-bottom:-30px |
| 783 | } |
| 784 | |
| 785 | .m-b-n-xl{ |
| 786 | margin-bottom:-40px |
| 787 | } |
| 788 | |
| 789 | .space-15{ |
| 790 | margin:15px 0 |
| 791 | } |
| 792 | |
| 793 | .space-20{ |
| 794 | margin:20px 0 |
| 795 | } |
| 796 | |
| 797 | .space-25{ |
| 798 | margin:25px 0 |
| 799 | } |
| 800 | |
| 801 | .space-30{ |
| 802 | margin:30px 0 |
| 803 | } |
| 804 | |
| 805 | .label-accent{ |
| 806 | background-color:#f6a821 |
| 807 | } |
| 808 | body{ |
| 809 | background:#2f323b; |
| 810 | font-family:'Roboto',sans-serif; |
| 811 | color:#949ba2 |
| 812 | } |
| 813 | |
| 814 | .content{ |
| 815 | margin-top:60px; |
| 816 | margin-left:200px; |
| 817 | position:relative; |
| 818 | padding:30px; |
| 819 | transition:margin-left .3s ease-out; |
| 820 | -webkit-transition:margin-left .3s ease-out |
| 821 | } |
| 822 | |
| 823 | .content:before{ |
| 824 | content:''; |
| 825 | position:fixed; |
| 826 | top:0; |
| 827 | bottom:0; |
| 828 | z-index:-2; |
| 829 | left:0; |
| 830 | right:0; |
| 831 | background-image:radial-gradient(center, circle cover, #393b45 0, #2d3038 70%); |
| 832 | background-position:50%,50% |
| 833 | } |
| 834 | |
| 835 | .navigation{ |
| 836 | margin-top:60px; |
| 837 | background-color:#24262d; |
| 838 | width:200px; |
| 839 | position:absolute; |
| 840 | left:0; |
| 841 | bottom:0; |
| 842 | top:0; |
| 843 | transition:left .3s ease-out; |
| 844 | -webkit-transition:left .3s ease-out |
| 845 | } |
| 846 | |
| 847 | .navigation nav{ |
| 848 | background-color:#2a2d35 |
| 849 | } |
| 850 | |
| 851 | .navigation:before{ |
| 852 | transition:left .3s ease-out; |
| 853 | -webkit-transition:left .3s ease-out; |
| 854 | content:''; |
| 855 | position:fixed; |
| 856 | top:0; |
| 857 | bottom:0; |
| 858 | z-index:-1; |
| 859 | left:0; |
| 860 | background-color:#24262d; |
| 861 | width:200px |
| 862 | } |
| 863 | |
| 864 | body.nav-toggle .content{ |
| 865 | margin-left:0 |
| 866 | } |
| 867 | |
| 868 | body.nav-toggle .navigation{ |
| 869 | left:-200px |
| 870 | } |
| 871 | |
| 872 | body.nav-toggle .navigation:before{ |
| 873 | left:-200px |
| 874 | } |
| 875 | @media (max-width:767px){ |
| 876 | .content{ |
| 877 | margin-left:0; |
| 878 | padding:30px 0 10px 0 |
| 879 | } |
| 880 | |
| 881 | .navigation{ |
| 882 | left:-200px; |
| 883 | z-index:2 |
| 884 | } |
| 885 | |
| 886 | .navigation:before{ |
| 887 | left:-200px |
| 888 | } |
| 889 | body.nav-toggle .content{ |
| 890 | margin-left:0 |
| 891 | } |
| 892 | body.nav-toggle .navigation{ |
| 893 | left:0; |
| 894 | z-index:2 |
| 895 | } |
| 896 | body.nav-toggle .navigation:before{ |
| 897 | left:0 |
| 898 | } |
| 899 | |
| 900 | } |
| 901 | body.blank .content{ |
| 902 | margin:0 |
| 903 | } |
| 904 | |
| 905 | .container-center{ |
| 906 | max-width:400px; |
| 907 | margin:10% auto 0; |
| 908 | padding:20px |
| 909 | } |
| 910 | |
| 911 | .container-center.sm{ |
| 912 | max-width:200px |
| 913 | } |
| 914 | |
| 915 | .container-center.md{ |
| 916 | max-width:600px |
| 917 | } |
| 918 | |
| 919 | .container-center.lg{ |
| 920 | max-width:800px |
| 921 | } |
| 922 | a{ |
| 923 | color:#f6a821; |
| 924 | text-decoration:none |
| 925 | } |
| 926 | a:hover,a:focus{ |
| 927 | color:#f8bb52; |
| 928 | outline:none |
| 929 | } |
| 930 | hr{ |
| 931 | margin-top:20px; |
| 932 | margin-bottom:20px; |
| 933 | border:0; |
| 934 | border-top:1px solid #3d404c |
| 935 | } |
| 936 | code{ |
| 937 | padding:2px 4px; |
| 938 | font-size:90%; |
| 939 | color:#f6a821; |
| 940 | background-color:#24262d; |
| 941 | border-radius:3px |
| 942 | } |
| 943 | pre{ |
| 944 | font-size:90%; |
| 945 | color:#949ba2; |
| 946 | background-color:#24262d; |
| 947 | border-radius:3px; |
| 948 | border:none |
| 949 | } |
| 950 | mark{ |
| 951 | background-color:#e9e599; |
| 952 | border-radius:2px; |
| 953 | padding:.1em .4em |
| 954 | } |
| 955 | label{ |
| 956 | color:#ffffff; |
| 957 | font-weight:500 |
| 958 | } |
| 959 | sup{ |
| 960 | font-size:12px; |
| 961 | top:-0.8em |
| 962 | } |
| 963 | |
| 964 | .help-block{ |
| 965 | color:#6d757d |
| 966 | } |
| 967 | |
| 968 | .bs-example{ |
| 969 | background-color:#2f323b; |
| 970 | padding:10px; |
| 971 | border-radius:3px |
| 972 | } |
| 973 | |
| 974 | .show-grid [class^="col-"]{ |
| 975 | background-color:#2f323b !important; |
| 976 | border:1px solid #3d404c; |
| 977 | padding-bottom:10px; |
| 978 | padding-top:10px |
| 979 | } |
| 980 | |
| 981 | .slight{ |
| 982 | font-size:11px; |
| 983 | font-weight:300 |
| 984 | } |
| 985 | |
| 986 | .show-grid{ |
| 987 | margin:10px 0 !important |
| 988 | } |
| 989 | |
| 990 | .row{ |
| 991 | margin-left:-10px; |
| 992 | margin-right:-10px |
| 993 | } |
| 994 | |
| 995 | .col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{ |
| 996 | padding-left:10px; |
| 997 | padding-right:10px |
| 998 | } |
| 999 | |
| 1000 | .font-example-box:hover{ |
| 1001 | color:#ffffff |
| 1002 | } |
| 1003 | |
| 1004 | .font-example-box{ |
| 1005 | text-align:center; |
| 1006 | min-height:90px; |
| 1007 | margin:10px 0; |
| 1008 | font-size:42px |
| 1009 | } |
| 1010 | |
| 1011 | .font-example-box i{ |
| 1012 | font-size:22px |
| 1013 | } |
| 1014 | |
| 1015 | .icon-example-name{ |
| 1016 | display:block; |
| 1017 | font-size:11px |
| 1018 | } |
| 1019 | |
| 1020 | .back-link{ |
| 1021 | float:left; |
| 1022 | width:100%; |
| 1023 | margin:10px |
| 1024 | } |
| 1025 | |
| 1026 | .ui-sortable .panel-body{ |
| 1027 | cursor:move |
| 1028 | } |
| 1029 | |
| 1030 | .ui-sortable-placeholder{ |
| 1031 | border:1px dashed #535868 !important; |
| 1032 | visibility:visible !important |
| 1033 | } |
| 1034 | |
| 1035 | .navbar{ |
| 1036 | min-height:60px |
| 1037 | } |
| 1038 | |
| 1039 | .navbar-default .navbar-brand,.navbar-default .navbar-brand:focus{ |
| 1040 | width:200px; |
| 1041 | background-color:#f6a821; |
| 1042 | height:60px; |
| 1043 | padding:20px 25px; |
| 1044 | font-weight:400; |
| 1045 | letter-spacing:10px; |
| 1046 | color:#FFFFFF |
| 1047 | } |
| 1048 | |
| 1049 | .navbar-default .navbar-brand{ |
| 1050 | color:#FFFFFF |
| 1051 | } |
| 1052 | |
| 1053 | .navbar-default .navbar-brand:hover{ |
| 1054 | color:#FFFFFF; |
| 1055 | background-color:#f5a212 |
| 1056 | } |
| 1057 | |
| 1058 | .navbar-brand span{ |
| 1059 | letter-spacing:normal; |
| 1060 | float:right; |
| 1061 | font-size:12px; |
| 1062 | margin-left:-15px; |
| 1063 | color:#fce2b4 |
| 1064 | } |
| 1065 | |
| 1066 | .navbar-default{ |
| 1067 | border-bottom:none; |
| 1068 | background-color:#FFFFFF |
| 1069 | } |
| 1070 | |
| 1071 | .left-nav-toggle{ |
| 1072 | float:left; |
| 1073 | padding:9px 10px 8px 25px |
| 1074 | } |
| 1075 | |
| 1076 | .left-nav-toggle:hover a{ |
| 1077 | color:#f6a821 |
| 1078 | } |
| 1079 | |
| 1080 | .left-nav-toggle a{ |
| 1081 | font-size:30px; |
| 1082 | color:#949ba2 |
| 1083 | } |
| 1084 | |
| 1085 | .navbar-default .navbar-nav>li>a{ |
| 1086 | color:#6a727a |
| 1087 | } |
| 1088 | |
| 1089 | .left-nav-toggle a:hover,.left-nav-toggle a:focus{ |
| 1090 | text-decoration:none |
| 1091 | } |
| 1092 | |
| 1093 | .navbar-form{ |
| 1094 | margin-top:11px; |
| 1095 | padding:0 |
| 1096 | } |
| 1097 | |
| 1098 | .navbar-form input.form-control{ |
| 1099 | border:none; |
| 1100 | box-shadow:none; |
| 1101 | color:#949ba2 |
| 1102 | } |
| 1103 | |
| 1104 | .navbar-form input.form-control::-webkit-input-placeholder{ |
| 1105 | color:#6f7780 |
| 1106 | } |
| 1107 | |
| 1108 | .navbar-form input.form-control:-moz-placeholder{ |
| 1109 | color:#6f7780 |
| 1110 | } |
| 1111 | |
| 1112 | .navbar-form input.form-control::-moz-placeholder{ |
| 1113 | color:#6f7780 |
| 1114 | } |
| 1115 | |
| 1116 | .navbar-form input.form-control:-ms-input-placeholder{ |
| 1117 | color:#6f7780 |
| 1118 | } |
| 1119 | |
| 1120 | .navbar-nav>li>a{ |
| 1121 | padding:20px 15px; |
| 1122 | text-transform:uppercase; |
| 1123 | font-weight:500 |
| 1124 | } |
| 1125 | |
| 1126 | .navbar-nav>li:first-child>a{ |
| 1127 | padding-left:0 |
| 1128 | } |
| 1129 | |
| 1130 | .navbar-nav>li:last-child>a{ |
| 1131 | padding:10px 25px 10px 15px |
| 1132 | } |
| 1133 | |
| 1134 | .navbar-nav.navbar-right a .label{ |
| 1135 | margin:-5px 0 0 5px |
| 1136 | } |
| 1137 | |
| 1138 | .profil-link img{ |
| 1139 | height:40px; |
| 1140 | margin-left:10px |
| 1141 | } |
| 1142 | |
| 1143 | .profil-link .profile-address{ |
| 1144 | text-transform:lowercase |
| 1145 | } |
| 1146 | #mobile-menu{ |
| 1147 | display:none |
| 1148 | } |
| 1149 | @media (max-width:767px){ |
| 1150 | #mobile-menu{ |
| 1151 | display:block |
| 1152 | } |
| 1153 | |
| 1154 | } |
| 1155 | #mobile-menu{ |
| 1156 | float:right |
| 1157 | } |
| 1158 | #mobile-menu .left-nav-toggle{ |
| 1159 | padding-right:25px |
| 1160 | } |
| 1161 | |
| 1162 | .luna-nav.nav{ |
| 1163 | padding-top:15px |
| 1164 | } |
| 1165 | |
| 1166 | .luna-nav.nav li>a,.luna-nav.nav .nav-category{ |
| 1167 | padding:8px 15px 8px 25px; |
| 1168 | margin:0 0 |
| 1169 | } |
| 1170 | |
| 1171 | .luna-nav.nav .nav-info{ |
| 1172 | margin-top:50px; |
| 1173 | padding:20px 25px 25px 25px; |
| 1174 | font-size:12px; |
| 1175 | background-color:#24262d |
| 1176 | } |
| 1177 | |
| 1178 | .luna-nav.nav .nav-info i{ |
| 1179 | font-size:34px |
| 1180 | } |
| 1181 | |
| 1182 | .luna-nav.nav .nav-second li>a{ |
| 1183 | padding-left:40px |
| 1184 | } |
| 1185 | |
| 1186 | .luna-nav.nav li.active .nav-second li>a{ |
| 1187 | padding-left:40px; |
| 1188 | border-left:none; |
| 1189 | color:#848c94 |
| 1190 | } |
| 1191 | |
| 1192 | .luna-nav.nav li.active .nav-second li.active a{ |
| 1193 | padding-left:34px; |
| 1194 | border-left:6px solid #c37e08; |
| 1195 | color:#c0c4c8 |
| 1196 | } |
| 1197 | |
| 1198 | .luna-nav.nav li.active .nav-second li a:hover{ |
| 1199 | color:#c0c4c8 |
| 1200 | } |
| 1201 | |
| 1202 | .luna-nav.nav li>a{ |
| 1203 | color:#848c94 |
| 1204 | } |
| 1205 | |
| 1206 | .luna-nav.nav li.active a{ |
| 1207 | border-left:6px solid #f6a821; |
| 1208 | padding-left:19px; |
| 1209 | color:#c0c4c8 |
| 1210 | } |
| 1211 | |
| 1212 | .luna-nav.nav li a:hover,.luna-nav.nav li a:focus{ |
| 1213 | color:#c0c4c8; |
| 1214 | background:inherit |
| 1215 | } |
| 1216 | |
| 1217 | .luna-nav.nav .nav-category{ |
| 1218 | color:#FFFFFF; |
| 1219 | margin-top:10px |
| 1220 | } |
| 1221 | |
| 1222 | .luna-nav.nav .sub-nav-icon{ |
| 1223 | float:right; |
| 1224 | transform:rotate(90deg); |
| 1225 | -webkit-transform:rotate(90deg); |
| 1226 | -moz-transform:rotate(90deg); |
| 1227 | -o-transform:rotate(90deg); |
| 1228 | -ms-transform:rotate(90deg) |
| 1229 | } |
| 1230 | |
| 1231 | .panel{ |
| 1232 | background-color:transparent; |
| 1233 | -webkit-box-shadow:none; |
| 1234 | -moz-box-shadow:none; |
| 1235 | box-shadow:none; |
| 1236 | color:#949ba2; |
| 1237 | border-radius:3px |
| 1238 | } |
| 1239 | |
| 1240 | .panel .panel-body{ |
| 1241 | padding:5px 15px 15px 15px |
| 1242 | } |
| 1243 | |
| 1244 | .panel.panel-filled .panel-body{ |
| 1245 | padding-top:10px |
| 1246 | } |
| 1247 | |
| 1248 | .panel .panel-footer{ |
| 1249 | background-color:transparent; |
| 1250 | border:none |
| 1251 | } |
| 1252 | |
| 1253 | .panel>.panel-heading{ |
| 1254 | color:#ffffff |
| 1255 | } |
| 1256 | |
| 1257 | .panel-tools{ |
| 1258 | display:inline-block; |
| 1259 | float:right; |
| 1260 | margin-top:0; |
| 1261 | padding:0; |
| 1262 | position:relative |
| 1263 | } |
| 1264 | |
| 1265 | .panel-tools a{ |
| 1266 | margin-left:2px; |
| 1267 | color:#949ba2; |
| 1268 | cursor:pointer |
| 1269 | } |
| 1270 | |
| 1271 | .panel-tools a:hover{ |
| 1272 | color:#ffffff |
| 1273 | } |
| 1274 | |
| 1275 | .panel.panel-c-white{ |
| 1276 | border-left:3px solid #949ba2 |
| 1277 | } |
| 1278 | |
| 1279 | .panel.panel-c-accent{ |
| 1280 | border-left:3px solid #f6a821 |
| 1281 | } |
| 1282 | |
| 1283 | .panel.panel-c-primary{ |
| 1284 | border-left:3px solid #0F83C9 |
| 1285 | } |
| 1286 | |
| 1287 | .panel.panel-c-warning{ |
| 1288 | border-left:3px solid #f7af3e |
| 1289 | } |
| 1290 | |
| 1291 | .panel.panel-c-info{ |
| 1292 | border-left:3px solid #56C0E0 |
| 1293 | } |
| 1294 | |
| 1295 | .panel.panel-c-success{ |
| 1296 | border-left:3px solid #1bbf89 |
| 1297 | } |
| 1298 | |
| 1299 | .panel.panel-c-danger{ |
| 1300 | border-left:3px solid #DB524B |
| 1301 | } |
| 1302 | |
| 1303 | .panel.panel-b-accent{ |
| 1304 | background-color:#f6a821; |
| 1305 | color:#ffffff |
| 1306 | } |
| 1307 | |
| 1308 | .panel.panel-b-white{ |
| 1309 | background-color:white; |
| 1310 | color:#61686f |
| 1311 | } |
| 1312 | |
| 1313 | .panel.panel-b-white .panel-heading{ |
| 1314 | color:#61686f |
| 1315 | } |
| 1316 | |
| 1317 | .panel.panel-b-white .panel-footer{ |
| 1318 | color:#61686f |
| 1319 | } |
| 1320 | |
| 1321 | .panel.panel-filled{ |
Matteo Scandolo | 0c61c9b | 2017-03-03 11:49:18 -0800 | [diff] [blame] | 1322 | background-color: $panel-filled-bg; |
Matteo Scandolo | 67c105f | 2017-01-09 09:30:52 -0800 | [diff] [blame] | 1323 | } |
| 1324 | |
| 1325 | .view-header{ |
| 1326 | margin:20px 0; |
| 1327 | min-height:50px; |
| 1328 | padding:0 15px |
| 1329 | } |
| 1330 | |
| 1331 | .view-header .header-icon{ |
| 1332 | font-size:60px; |
| 1333 | color:#f6a821; |
| 1334 | width:68px; |
| 1335 | float:left; |
| 1336 | margin-top:-8px; |
| 1337 | line-height:0 |
| 1338 | } |
| 1339 | |
| 1340 | .view-header .header-title{ |
| 1341 | margin-left:68px |
| 1342 | } |
| 1343 | |
| 1344 | .view-header .header-title h3{ |
| 1345 | margin-bottom:2px |
| 1346 | } |
| 1347 | |
| 1348 | .panel.collapsed .panel-body,.panel.collapsed .panel-footer{ |
| 1349 | display:none |
| 1350 | } |
| 1351 | |
| 1352 | .panel.collapsed .fa.fa-chevron-up:before{ |
| 1353 | content:"\f078" |
| 1354 | } |
| 1355 | |
| 1356 | .panel.collapsed .fa.fa-chevron-down:before{ |
| 1357 | content:"\f077" |
| 1358 | } |
| 1359 | |
| 1360 | .pagination>li>a,.pagination>li>span{ |
| 1361 | color:#949ba2; |
| 1362 | background-color:transparent; |
| 1363 | border:1px solid #585d6e |
| 1364 | } |
| 1365 | |
| 1366 | .pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{ |
| 1367 | color:#ffffff; |
| 1368 | background-color:rgba(97,103,121,0.1); |
| 1369 | border-color:#616779 |
| 1370 | } |
| 1371 | |
| 1372 | .pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{ |
| 1373 | color:#ffffff; |
| 1374 | background-color:rgba(97,103,121,0.1); |
| 1375 | border-color:#616779 |
| 1376 | } |
| 1377 | |
| 1378 | .pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{ |
| 1379 | color:#949ba2; |
| 1380 | background-color:transparent; |
| 1381 | border-color:#4a4f5d |
| 1382 | } |
| 1383 | |
| 1384 | .progress{ |
| 1385 | border-radius:2px; |
| 1386 | margin-bottom:10px |
| 1387 | } |
| 1388 | |
| 1389 | .progress-bar{ |
| 1390 | background-color:#2f323b; |
| 1391 | text-align:right; |
| 1392 | padding-right:10px; |
| 1393 | color:#949ba2 |
| 1394 | } |
| 1395 | |
| 1396 | .progress-small,.progress-small .progress-bar{ |
| 1397 | height:10px |
| 1398 | } |
| 1399 | |
| 1400 | .progress-bar-primary{ |
| 1401 | border-right:4px solid #0d74b1 |
| 1402 | } |
| 1403 | |
| 1404 | .progress-bar-success{ |
| 1405 | border-right:4px solid #18a979 |
| 1406 | } |
| 1407 | |
| 1408 | .progress-bar-info{ |
| 1409 | border-right:4px solid #0d74b1 |
| 1410 | } |
| 1411 | |
| 1412 | .progress-bar-warning{ |
| 1413 | border-right:4px solid #f6a526 |
| 1414 | } |
| 1415 | |
| 1416 | .progress-bar-danger{ |
| 1417 | border-right:4px solid #d73e36 |
| 1418 | } |
| 1419 | |
| 1420 | .full .progress-bar-success{ |
| 1421 | background-color:#1bbf89; |
| 1422 | border-right:4px solid #18a979 |
| 1423 | } |
| 1424 | |
| 1425 | .full .progress-bar-info{ |
| 1426 | background-color:#0F83C9; |
| 1427 | border-right:4px solid #0d74b1 |
| 1428 | } |
| 1429 | |
| 1430 | .full .progress-bar-warning{ |
| 1431 | background-color:#f7af3e; |
| 1432 | border-right:4px solid #f6a526 |
| 1433 | } |
| 1434 | |
| 1435 | .full .progress-bar-danger{ |
| 1436 | background-color:#DB524B; |
| 1437 | border-right:4px solid #d73e36 |
| 1438 | } |
| 1439 | |
| 1440 | .full .progress-bar-primary{ |
| 1441 | background-color:#0F83C9; |
| 1442 | border-right:4px solid #0d74b1 |
| 1443 | } |
| 1444 | |
| 1445 | .full .progress-bar{ |
| 1446 | color:#ffffff |
| 1447 | } |
| 1448 | |
| 1449 | .modal-content{ |
| 1450 | background-color:#21242a |
| 1451 | } |
| 1452 | |
| 1453 | .modal-content .modal-title{ |
| 1454 | font-size:22px |
| 1455 | } |
| 1456 | |
| 1457 | .modal-content .modal-header{ |
| 1458 | border-color:#3d404c; |
| 1459 | background-color:#1d1f24; |
| 1460 | padding:40px 20px |
| 1461 | } |
| 1462 | |
| 1463 | .modal-content .modal-body{ |
| 1464 | padding:40px |
| 1465 | } |
| 1466 | |
| 1467 | .modal-content .modal-footer{ |
| 1468 | border-color:#3d404c; |
| 1469 | background-color:#1d1f24; |
| 1470 | padding:20px |
| 1471 | } |
| 1472 | |
| 1473 | .modal-backdrop.in{ |
| 1474 | filter:alpha(opacity=10); |
| 1475 | opacity:.1 |
| 1476 | } |
| 1477 | h1,h2,h3,h4,h5,h6{ |
| 1478 | color:#FFFFFF |
| 1479 | } |
| 1480 | h1,.h1,h2,.h2,h3,.h3{ |
| 1481 | margin-top:10px |
| 1482 | } |
| 1483 | |
| 1484 | .c-accent{ |
| 1485 | color:#f6a821 |
| 1486 | } |
| 1487 | |
| 1488 | .c-white{ |
| 1489 | color:#FFFFFF |
| 1490 | } |
| 1491 | |
| 1492 | .c-text{ |
| 1493 | color:#949ba2 |
| 1494 | } |
| 1495 | |
| 1496 | .font-light{ |
| 1497 | font-weight:300 |
| 1498 | } |
| 1499 | |
| 1500 | .font-normal{ |
| 1501 | font-weight:400 |
| 1502 | } |
| 1503 | |
| 1504 | .font-bold{ |
| 1505 | font-weight:600 |
| 1506 | } |
| 1507 | |
| 1508 | .font-extra-bold{ |
| 1509 | font-weight:700 |
| 1510 | } |
| 1511 | h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{ |
| 1512 | color:#a4aab0 |
| 1513 | } |
| 1514 | |
| 1515 | .label-default{ |
| 1516 | background-color:#44464f |
| 1517 | } |
| 1518 | |
| 1519 | .label-primary{ |
| 1520 | background-color:#0F83C9 |
| 1521 | } |
| 1522 | |
| 1523 | .label-success{ |
| 1524 | background-color:#1bbf89 |
| 1525 | } |
| 1526 | |
| 1527 | .label-info{ |
| 1528 | background-color:#56C0E0 |
| 1529 | } |
| 1530 | |
| 1531 | .label-warning{ |
| 1532 | background-color:#f7af3e |
| 1533 | } |
| 1534 | |
| 1535 | .label-danger{ |
| 1536 | background-color:#DB524B |
| 1537 | } |
| 1538 | |
| 1539 | .badge{ |
| 1540 | background-color:transparent; |
| 1541 | border:1px solid #44464f; |
| 1542 | font-weight:300; |
| 1543 | color:#aaacb5 |
| 1544 | } |
| 1545 | |
| 1546 | .vertical-container{ |
| 1547 | width:98%; |
| 1548 | margin:0 auto |
| 1549 | } |
| 1550 | |
| 1551 | .vertical-container::after{ |
| 1552 | content:''; |
| 1553 | display:table; |
| 1554 | clear:both |
| 1555 | } |
| 1556 | |
| 1557 | .v-timeline{ |
| 1558 | position:relative; |
| 1559 | padding:0; |
| 1560 | margin-top:2em; |
| 1561 | margin-bottom:2em |
| 1562 | } |
| 1563 | |
| 1564 | .v-timeline::before{ |
| 1565 | content:''; |
| 1566 | position:absolute; |
| 1567 | top:0; |
| 1568 | left:18px; |
| 1569 | height:100%; |
| 1570 | width:4px; |
| 1571 | background:#3d404c |
| 1572 | } |
| 1573 | |
| 1574 | .vertical-timeline-content .btn{ |
| 1575 | float:right |
| 1576 | } |
| 1577 | |
| 1578 | .vertical-timeline-block{ |
| 1579 | position:relative; |
| 1580 | margin:2em 0 |
| 1581 | } |
| 1582 | |
| 1583 | .vertical-timeline-block:after{ |
| 1584 | content:""; |
| 1585 | display:table; |
| 1586 | clear:both |
| 1587 | } |
| 1588 | |
| 1589 | .vertical-timeline-block:first-child{ |
| 1590 | margin-top:0 |
| 1591 | } |
| 1592 | |
| 1593 | .vertical-timeline-block:last-child{ |
| 1594 | margin-bottom:0 |
| 1595 | } |
| 1596 | |
| 1597 | .vertical-timeline-icon{ |
| 1598 | position:absolute; |
| 1599 | top:0; |
| 1600 | left:0; |
| 1601 | width:40px; |
| 1602 | height:40px; |
| 1603 | border-radius:50%; |
| 1604 | font-size:16px; |
| 1605 | border:1px solid #3d404c; |
| 1606 | text-align:center; |
| 1607 | background:#2f323b; |
| 1608 | color:#ffffff |
| 1609 | } |
| 1610 | |
| 1611 | .vertical-timeline-icon i{ |
| 1612 | display:block; |
| 1613 | width:24px; |
| 1614 | height:24px; |
| 1615 | position:relative; |
| 1616 | left:50%; |
| 1617 | top:50%; |
| 1618 | margin-left:-12px; |
| 1619 | margin-top:-9px |
| 1620 | } |
| 1621 | |
| 1622 | .vertical-timeline-content{ |
| 1623 | position:relative; |
| 1624 | margin-left:60px; |
| 1625 | background-color:rgba(68,70,79,0.5); |
| 1626 | border-radius:.25em; |
| 1627 | border:1px solid #3d404c |
| 1628 | } |
| 1629 | |
| 1630 | .vertical-timeline-content:after{ |
| 1631 | content:""; |
| 1632 | display:table; |
| 1633 | clear:both |
| 1634 | } |
| 1635 | |
| 1636 | .vertical-timeline-content h2{ |
| 1637 | font-weight:400; |
| 1638 | margin-top:4px |
| 1639 | } |
| 1640 | |
| 1641 | .vertical-timeline-content p{ |
| 1642 | margin:1em 0 0 0; |
| 1643 | line-height:1.6 |
| 1644 | } |
| 1645 | |
| 1646 | .vertical-timeline-content .vertical-date{ |
| 1647 | font-weight:500; |
| 1648 | text-align:right |
| 1649 | } |
| 1650 | |
| 1651 | .vertical-date small{ |
| 1652 | color:#ffffff; |
| 1653 | font-weight:400 |
| 1654 | } |
| 1655 | |
| 1656 | .vertical-timeline-content:after,.vertical-timeline-content:before{ |
| 1657 | right:100%; |
| 1658 | top:20px; |
| 1659 | border:solid transparent; |
| 1660 | content:" "; |
| 1661 | height:0; |
| 1662 | width:0; |
| 1663 | position:absolute; |
| 1664 | pointer-events:none |
| 1665 | } |
| 1666 | |
| 1667 | .vertical-timeline-content:after{ |
| 1668 | border-color:transparent; |
| 1669 | border-right-color:#3d404c; |
| 1670 | border-width:10px; |
| 1671 | margin-top:-10px |
| 1672 | } |
| 1673 | |
| 1674 | .vertical-timeline-content:before{ |
| 1675 | border-color:transparent; |
| 1676 | border-right-color:#3d404c; |
| 1677 | border-width:11px; |
| 1678 | margin-top:-11px |
| 1679 | } |
| 1680 | |
| 1681 | .vertical-timeline-content h2{ |
| 1682 | font-size:16px |
| 1683 | } |
| 1684 | |
| 1685 | .dd{ |
| 1686 | position:relative; |
| 1687 | display:block; |
| 1688 | margin:0; |
| 1689 | padding:0; |
| 1690 | list-style:none; |
| 1691 | line-height:20px |
| 1692 | } |
| 1693 | |
| 1694 | .dd-list{ |
| 1695 | display:block; |
| 1696 | position:relative; |
| 1697 | margin:0; |
| 1698 | padding:0; |
| 1699 | list-style:none |
| 1700 | } |
| 1701 | |
| 1702 | .dd-list .dd-list{ |
| 1703 | padding-left:30px |
| 1704 | } |
| 1705 | |
| 1706 | .dd-collapsed .dd-list{ |
| 1707 | display:none |
| 1708 | } |
| 1709 | |
| 1710 | .dd-item,.dd-empty,.dd-placeholder{ |
| 1711 | display:block; |
| 1712 | position:relative; |
| 1713 | margin:0; |
| 1714 | padding:0; |
| 1715 | min-height:20px; |
| 1716 | line-height:20px |
| 1717 | } |
| 1718 | |
| 1719 | .dd-handle{ |
| 1720 | display:block; |
| 1721 | margin:5px 0; |
| 1722 | padding:10px 10px; |
| 1723 | color:#949ba2; |
| 1724 | text-decoration:none; |
| 1725 | border:1px solid #3d404c; |
| 1726 | background-color:rgba(68,70,79,0.5); |
| 1727 | -webkit-border-radius:3px; |
| 1728 | border-radius:3px; |
| 1729 | box-sizing:border-box; |
| 1730 | -moz-box-sizing:border-box |
| 1731 | } |
| 1732 | |
| 1733 | .dd-handle span{ |
| 1734 | font-weight:bold |
| 1735 | } |
| 1736 | |
| 1737 | .dd-handle:hover{ |
| 1738 | background-color:rgba(68,70,79,0.8); |
| 1739 | cursor:pointer |
| 1740 | } |
| 1741 | |
| 1742 | .dd-item>button{ |
| 1743 | display:block; |
| 1744 | position:relative; |
| 1745 | cursor:pointer; |
| 1746 | float:left; |
| 1747 | width:25px; |
| 1748 | height:20px; |
| 1749 | margin:10px 0; |
| 1750 | padding:0; |
| 1751 | text-indent:100%; |
| 1752 | white-space:nowrap; |
| 1753 | overflow:hidden; |
| 1754 | border:0; |
| 1755 | background:transparent; |
| 1756 | font-size:12px; |
| 1757 | line-height:1; |
| 1758 | text-align:center; |
| 1759 | font-weight:bold |
| 1760 | } |
| 1761 | |
| 1762 | .dd-item>button:before{ |
| 1763 | content:'+'; |
| 1764 | display:block; |
| 1765 | position:absolute; |
| 1766 | width:100%; |
| 1767 | text-align:center; |
| 1768 | text-indent:0 |
| 1769 | } |
| 1770 | |
| 1771 | .dd-item>button[data-action="collapse"]:before{ |
| 1772 | content:'-' |
| 1773 | } |
| 1774 | |
| 1775 | .dd-placeholder,.dd-empty{ |
| 1776 | margin:5px 0; |
| 1777 | padding:0; |
| 1778 | min-height:30px; |
| 1779 | background:transparent; |
| 1780 | border:1px dashed #535868; |
| 1781 | box-sizing:border-box; |
| 1782 | -moz-box-sizing:border-box |
| 1783 | } |
| 1784 | |
| 1785 | .dd-empty{ |
| 1786 | border:1px dashed #3d404c; |
| 1787 | min-height:100px; |
| 1788 | background-color:transparent; |
| 1789 | background-size:60px 60px; |
| 1790 | background-position:0 0,30px 30px |
| 1791 | } |
| 1792 | |
| 1793 | .dd-dragel{ |
| 1794 | position:absolute; |
| 1795 | z-index:9999; |
| 1796 | pointer-events:none |
| 1797 | } |
| 1798 | |
| 1799 | .dd-dragel>.dd-item .dd-handle{ |
| 1800 | margin-top:0 |
| 1801 | } |
| 1802 | |
| 1803 | .dd-dragel .dd-handle{ |
| 1804 | -webkit-box-shadow:2px 4px 6px 0 rgba(0,0,0,0.1); |
| 1805 | box-shadow:2px 4px 6px 0 rgba(0,0,0,0.1) |
| 1806 | } |
| 1807 | |
| 1808 | .nestable-lists{ |
| 1809 | display:block; |
| 1810 | clear:both; |
| 1811 | padding:30px 0; |
| 1812 | width:100%; |
| 1813 | border:0; |
| 1814 | border-top:2px solid #e4e5e7; |
| 1815 | border-bottom:2px solid #e4e5e7 |
| 1816 | } |
| 1817 | #nestable-menu{ |
| 1818 | padding:0; |
| 1819 | margin:10px 0 20px 0 |
| 1820 | } |
| 1821 | #nestable-output{ |
| 1822 | width:100%; |
| 1823 | font-size:.75em; |
| 1824 | line-height:1.333333em; |
| 1825 | font-family:open sans,lucida grande,lucida sans unicode,helvetica,arial,sans-serif; |
| 1826 | padding:5px; |
| 1827 | box-sizing:border-box; |
| 1828 | -moz-box-sizing:border-box |
| 1829 | } |
| 1830 | #nestable-output{ |
| 1831 | font-size:14px; |
| 1832 | padding:25px; |
| 1833 | box-sizing:border-box; |
| 1834 | -moz-box-sizing:border-box |
| 1835 | } |
| 1836 | |
| 1837 | .nav-tabs{ |
| 1838 | border:none |
| 1839 | } |
| 1840 | |
| 1841 | .nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{ |
| 1842 | background-color:rgba(68,70,79,0.5); |
| 1843 | color:#ffffff; |
| 1844 | border-width:0 0 1px 0 |
| 1845 | } |
| 1846 | |
| 1847 | .tab-pane .panel-body{ |
| 1848 | border-top:none; |
| 1849 | background-color:rgba(68,70,79,0.5); |
| 1850 | margin-bottom:20px |
| 1851 | } |
| 1852 | |
| 1853 | .nav-tabs>li a:hover{ |
| 1854 | background:transparent; |
| 1855 | border-color:transparent |
| 1856 | } |
| 1857 | |
| 1858 | .nav-tabs>li>a{ |
| 1859 | color:#949ba2 |
| 1860 | } |
| 1861 | |
| 1862 | .tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{ |
| 1863 | border-bottom:0 |
| 1864 | } |
| 1865 | |
| 1866 | .tabs-left .panel-body{ |
| 1867 | position:static |
| 1868 | } |
| 1869 | |
| 1870 | .tabs-left>.nav-tabs,.tabs-right>.nav-tabs{ |
| 1871 | width:20% |
| 1872 | } |
| 1873 | |
| 1874 | .tabs-left .panel-body{ |
| 1875 | width:80%; |
| 1876 | margin-left:20% |
| 1877 | } |
| 1878 | |
| 1879 | .tabs-right .panel-body{ |
| 1880 | width:80%; |
| 1881 | margin-right:20% |
| 1882 | } |
| 1883 | |
| 1884 | .tab-content>.tab-pane,.pill-content>.pill-pane{ |
| 1885 | display:none |
| 1886 | } |
| 1887 | |
| 1888 | .tab-content>.active,.pill-content>.active{ |
| 1889 | display:block |
| 1890 | } |
| 1891 | |
| 1892 | .tabs-below>.nav-tabs>li{ |
| 1893 | margin-bottom:0 |
| 1894 | } |
| 1895 | |
| 1896 | .tabs-below>.nav-tabs>li>a{ |
| 1897 | -webkit-border-radius:0 0 4px 4px; |
| 1898 | -moz-border-radius:0 0 4px 4px; |
| 1899 | border-radius:0 0 4px 4px |
| 1900 | } |
| 1901 | |
| 1902 | .tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{ |
| 1903 | float:none |
| 1904 | } |
| 1905 | |
| 1906 | .tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{ |
| 1907 | margin-right:0; |
| 1908 | margin-bottom:3px |
| 1909 | } |
| 1910 | |
| 1911 | .tabs-left>.nav-tabs{ |
| 1912 | float:left; |
| 1913 | margin-right:19px |
| 1914 | } |
| 1915 | |
| 1916 | .tabs-left>.nav-tabs>li>a{ |
| 1917 | -webkit-border-radius:4px 0 0 4px; |
| 1918 | -moz-border-radius:4px 0 0 4px; |
| 1919 | border-radius:4px 0 0 4px |
| 1920 | } |
| 1921 | |
| 1922 | .tabs-right>.nav-tabs{ |
| 1923 | float:right; |
| 1924 | margin-left:19px |
| 1925 | } |
| 1926 | |
| 1927 | .tabs-right>.nav-tabs>li>a{ |
| 1928 | -webkit-border-radius:0 4px 4px 0; |
| 1929 | -moz-border-radius:0 4px 4px 0; |
| 1930 | border-radius:0 4px 4px 0 |
| 1931 | } |
| 1932 | |
| 1933 | .table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{ |
| 1934 | border-top:1px solid #3d404c |
| 1935 | } |
| 1936 | |
| 1937 | .table>thead>tr>th{ |
| 1938 | border-bottom:none |
| 1939 | } |
| 1940 | |
| 1941 | .table-striped>tbody>tr:nth-of-type(odd){ |
| 1942 | background-color:rgba(68,70,79,0.5) |
| 1943 | } |
| 1944 | |
| 1945 | .table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{ |
| 1946 | background-color:#494b54 |
| 1947 | } |
| 1948 | |
| 1949 | .table-hover>tbody>tr:hover{ |
| 1950 | background-color:#494b54 |
| 1951 | } |
| 1952 | |
| 1953 | .table-bordered,.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{ |
| 1954 | border-color:#3d404c |
| 1955 | } |
| 1956 | |
| 1957 | .panel-filled .table>thead>tr>th,.panel-filled .table>tbody>tr>th,.panel-filled .table>tfoot>tr>th,.panel-filled .table>thead>tr>td,.panel-filled .table>tbody>tr>td,.panel-filled .table>tfoot>tr>td{ |
| 1958 | border-color:#484c5a |
| 1959 | } |
| 1960 | |
| 1961 | .panel-filled .table-bordered,.panel-filled .table-bordered>thead>tr>th,.panel-filled .table-bordered>tbody>tr>th,.panel-filled .table-bordered>tfoot>tr>th,.panel-filled .table-bordered>thead>tr>td,.panel-filled .table-bordered>tbody>tr>td,.panel-filled .table-bordered>tfoot>tr>td{ |
| 1962 | border-color:#484c5a |
| 1963 | } |
| 1964 | |
| 1965 | .panel-filled .table-striped>tbody>tr:nth-of-type(odd){ |
| 1966 | background-color:#44464f |
| 1967 | } |
| 1968 | |
| 1969 | .panel-filled .table-hover>tbody>tr:hover{ |
| 1970 | background-color:#494b54 |
| 1971 | } |
| 1972 | th{ |
| 1973 | color:#ffffff |
| 1974 | } |
| 1975 | |
| 1976 | .table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{ |
| 1977 | background-color:rgba(27,191,137,0.2); |
| 1978 | border:none |
| 1979 | } |
| 1980 | |
| 1981 | .table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{ |
| 1982 | background-color:#18a979 |
| 1983 | } |
| 1984 | |
| 1985 | .table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{ |
| 1986 | background-color:rgba(86,192,224,0.2); |
| 1987 | border:none |
| 1988 | } |
| 1989 | |
| 1990 | .table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{ |
| 1991 | background-color:#40b8dc |
| 1992 | } |
| 1993 | |
| 1994 | .table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{ |
| 1995 | background-color:rgba(247,175,62,0.2); |
| 1996 | border:none |
| 1997 | } |
| 1998 | |
| 1999 | .table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{ |
| 2000 | background-color:#f6a526 |
| 2001 | } |
| 2002 | |
| 2003 | .table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{ |
| 2004 | background-color:rgba(219,82,75,0.2); |
| 2005 | border:none |
| 2006 | } |
| 2007 | |
| 2008 | .table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{ |
| 2009 | background-color:#d73e36 |
| 2010 | } |
| 2011 | div.dt-button-info{ |
| 2012 | background-color:#21242a; |
| 2013 | border-radius:6px; |
| 2014 | border:none |
| 2015 | } |
| 2016 | div.dt-button-info h2{ |
| 2017 | background-color:transparent; |
| 2018 | border-color:#3d404c |
| 2019 | } |
| 2020 | |
| 2021 | .table-responsive{ |
| 2022 | border-color:#484c5a !important |
| 2023 | } |
| 2024 | |
Matteo Scandolo | 8b2370c | 2017-02-02 17:19:07 -0800 | [diff] [blame] | 2025 | //.alert-success{ |
| 2026 | //color:#ffffff; |
| 2027 | //border-color:#1bbf89; |
| 2028 | //background-color:#1bbf89 |
| 2029 | //} |
| 2030 | // |
| 2031 | //.alert-success .alert-link{ |
| 2032 | //color:#1bbf89 |
| 2033 | //} |
| 2034 | // |
| 2035 | //.alert-warning{ |
| 2036 | //color:#ffffff; |
| 2037 | //border-color:#f7af3e; |
| 2038 | //background-color:#f7af3e |
| 2039 | //} |
| 2040 | // |
| 2041 | //.alert-warning .alert-link{ |
| 2042 | //color:#f7af3e |
| 2043 | //} |
| 2044 | // |
| 2045 | //.alert-info{ |
| 2046 | //color:#ffffff; |
| 2047 | //border-color:#56C0E0; |
| 2048 | //background-color:#56C0E0 |
| 2049 | //} |
| 2050 | // |
| 2051 | //.alert-info .alert-link{ |
| 2052 | //color:#56C0E0 |
| 2053 | //} |
| 2054 | // |
| 2055 | //.alert-danger{ |
| 2056 | //color:#ffffff; |
| 2057 | //border-color:#DB524B; |
| 2058 | //background-color:#DB524B |
| 2059 | //} |
| 2060 | // |
| 2061 | //.alert-danger .alert-link{ |
| 2062 | //color:#DB524B |
| 2063 | //} |
Matteo Scandolo | 67c105f | 2017-01-09 09:30:52 -0800 | [diff] [blame] | 2064 | |
| 2065 | .toast-success{ |
| 2066 | color:#ffffff; |
| 2067 | border-color:#1bbf89; |
| 2068 | background-color:#1bbf89 |
| 2069 | } |
| 2070 | |
| 2071 | .toast-warning{ |
| 2072 | color:#ffffff; |
| 2073 | border-color:#f7af3e; |
| 2074 | background-color:#f7af3e |
| 2075 | } |
| 2076 | |
| 2077 | .toast-info{ |
| 2078 | color:#ffffff; |
| 2079 | border-color:#56C0E0; |
| 2080 | background-color:#56C0E0 |
| 2081 | } |
| 2082 | |
| 2083 | .toast-error{ |
| 2084 | color:#ffffff; |
| 2085 | border-color:#DB524B; |
| 2086 | background-color:#DB524B |
| 2087 | } |
| 2088 | #toast-container>div,#toast-container .toast{ |
| 2089 | opacity:1; |
| 2090 | margin-top:20px; |
| 2091 | border-radius:4px; |
| 2092 | -webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5); |
| 2093 | -moz-box-shadow:0 5px 15px rgba(0,0,0,0.5); |
| 2094 | box-shadow:0 5px 15px rgba(0,0,0,0.5) |
| 2095 | } |
| 2096 | #toast-container>div:hover,#toast-container .toast:hover{ |
| 2097 | -webkit-box-shadow:0 5px 15px rgba(0,0,0,0.7); |
| 2098 | -moz-box-shadow:0 5px 15px rgba(0,0,0,0.7); |
| 2099 | box-shadow:0 5px 15px rgba(0,0,0,0.7) |
| 2100 | } |
| 2101 | #toast-container.toast-top-right>div{ |
| 2102 | margin-top:60px |
| 2103 | } |
| 2104 | |
| 2105 | .form-control{ |
| 2106 | color:#949ba2; |
| 2107 | border:none; |
| 2108 | border-radius:4px; |
| 2109 | -webkit-box-shadow:none; |
| 2110 | box-shadow:none; |
| 2111 | -webkit-transition:none; |
| 2112 | -o-transition:none; |
| 2113 | transition:none; |
| 2114 | background-color:#494b54 |
| 2115 | } |
| 2116 | |
| 2117 | .form-control:focus{ |
| 2118 | -webkit-box-shadow:none; |
| 2119 | box-shadow:none |
| 2120 | } |
| 2121 | |
| 2122 | .form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{ |
| 2123 | background-color:#2c2e34; |
| 2124 | opacity:1 |
| 2125 | } |
| 2126 | |
| 2127 | .navbar-form .form-control{ |
| 2128 | //background-color:#ffffff |
| 2129 | } |
| 2130 | |
| 2131 | .has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{ |
| 2132 | color:#159269 |
| 2133 | } |
| 2134 | |
| 2135 | .has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{ |
| 2136 | color:#f59b0d |
| 2137 | } |
| 2138 | |
| 2139 | .has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{ |
| 2140 | color:#cb3029 |
| 2141 | } |
| 2142 | |
| 2143 | .has-success .form-control{ |
| 2144 | border-color:#159269; |
| 2145 | border-style:solid; |
| 2146 | border-width:1px; |
| 2147 | -webkit-box-shadow:none !important; |
| 2148 | box-shadow:none !important |
| 2149 | } |
| 2150 | |
| 2151 | .has-warning .form-control{ |
| 2152 | border-color:#f59b0d; |
| 2153 | border-style:solid; |
| 2154 | border-width:1px; |
| 2155 | -webkit-box-shadow:none !important; |
| 2156 | box-shadow:none !important |
| 2157 | } |
| 2158 | |
| 2159 | .has-error .form-control{ |
| 2160 | border-color:#cb3029; |
| 2161 | border-style:solid; |
| 2162 | border-width:1px; |
| 2163 | -webkit-box-shadow:none !important; |
| 2164 | box-shadow:none !important |
| 2165 | } |
| 2166 | |
| 2167 | .support-question a{ |
| 2168 | color:#949ba2 |
| 2169 | } |
| 2170 | |
| 2171 | .support-question a:hover{ |
| 2172 | text-decoration:none |
| 2173 | } |
| 2174 | |
| 2175 | .support-question a:focus{ |
| 2176 | text-decoration:none |
| 2177 | } |
| 2178 | |
| 2179 | .support-question:hover{ |
| 2180 | background-color:rgba(68,70,79,0.7) |
| 2181 | } |
| 2182 | |
| 2183 | .support-question.active{ |
| 2184 | border-left:3px solid #f6a821 |
| 2185 | } |
| 2186 | |
| 2187 | .support-question.active .panel-body{ |
| 2188 | padding-left:13px |
| 2189 | } |
| 2190 | |
| 2191 | .flot-chart{ |
| 2192 | display:block; |
| 2193 | height:300px; |
| 2194 | position:relative; |
| 2195 | color:#545454 |
| 2196 | } |
| 2197 | |
| 2198 | .flot-chart-analytics{ |
| 2199 | margin-top:10px; |
| 2200 | margin-bottom:10px; |
| 2201 | display:block; |
| 2202 | height:150px; |
| 2203 | position:relative |
| 2204 | } |
| 2205 | |
| 2206 | .flot-chart-content{ |
| 2207 | width:100%; |
| 2208 | height:100%; |
| 2209 | color:#545454 |
| 2210 | } |
| 2211 | |
| 2212 | .flot-text{ |
| 2213 | color:#949ba2 !important |
| 2214 | } |
| 2215 | |
| 2216 | .jqstooltip{ |
| 2217 | padding:5px !important; |
| 2218 | border:none !important; |
| 2219 | border-radius:10px; |
| 2220 | background-color:#f6a821 !important; |
| 2221 | width:auto !important; |
| 2222 | height:auto !important |
| 2223 | } |
| 2224 | |
| 2225 | .hoverinfo{ |
| 2226 | background-color:#f6a821 !important; |
| 2227 | box-shadow:0 5px 15px rgba(0,0,0,0.5) !important; |
| 2228 | -webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5) !important; |
| 2229 | border:none !important; |
| 2230 | border-radius:4px !important; |
| 2231 | color:#ffffff !important; |
| 2232 | padding:6px 12px !important |
| 2233 | |
| 2234 | } |