| 1 |
/** |
| 2 |
* TOOLTIP |
| 3 |
*/ |
| 4 |
|
| 5 |
.tooltip { |
| 6 |
position: absolute; |
| 7 |
z-index: 100001; |
| 8 |
display: block; |
| 9 |
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
| 10 |
font-size: 12px; |
| 11 |
font-style: normal; |
| 12 |
font-weight: normal; |
| 13 |
line-height: 1.42857143; |
| 14 |
text-align: left; |
| 15 |
text-align: start; |
| 16 |
text-decoration: none; |
| 17 |
text-shadow: none; |
| 18 |
text-transform: none; |
| 19 |
letter-spacing: normal; |
| 20 |
word-break: normal; |
| 21 |
word-spacing: normal; |
| 22 |
word-wrap: normal; |
| 23 |
white-space: normal; |
| 24 |
filter: alpha(opacity=0); |
| 25 |
opacity: 0; |
| 26 |
|
| 27 |
line-break: auto; |
| 28 |
} |
| 29 |
.tooltip.in { |
| 30 |
filter: alpha(opacity=90); |
| 31 |
opacity: .9; |
| 32 |
} |
| 33 |
.tooltip.top { |
| 34 |
padding: 5px 0; |
| 35 |
margin-top: -3px; |
| 36 |
} |
| 37 |
.tooltip.right { |
| 38 |
padding: 0 5px; |
| 39 |
margin-left: 3px; |
| 40 |
} |
| 41 |
.tooltip.bottom { |
| 42 |
padding: 5px 0; |
| 43 |
margin-top: 3px; |
| 44 |
} |
| 45 |
.tooltip.left { |
| 46 |
padding: 0 5px; |
| 47 |
margin-left: -3px; |
| 48 |
} |
| 49 |
.tooltip-inner { |
| 50 |
max-width: 200px; |
| 51 |
padding: 3px 8px; |
| 52 |
color: #fff; |
| 53 |
text-align: center; |
| 54 |
background-color: #000; |
| 55 |
border-radius: 4px; |
| 56 |
} |
| 57 |
.tooltip-arrow { |
| 58 |
position: absolute; |
| 59 |
width: 0; |
| 60 |
height: 0; |
| 61 |
border-color: transparent; |
| 62 |
border-style: solid; |
| 63 |
} |
| 64 |
.tooltip.top .tooltip-arrow { |
| 65 |
bottom: 0; |
| 66 |
left: 50%; |
| 67 |
margin-left: -5px; |
| 68 |
border-width: 5px 5px 0; |
| 69 |
border-top-color: #000; |
| 70 |
} |
| 71 |
.tooltip.top-left .tooltip-arrow { |
| 72 |
right: 5px; |
| 73 |
bottom: 0; |
| 74 |
margin-bottom: -5px; |
| 75 |
border-width: 5px 5px 0; |
| 76 |
border-top-color: #000; |
| 77 |
} |
| 78 |
.tooltip.top-right .tooltip-arrow { |
| 79 |
bottom: 0; |
| 80 |
left: 5px; |
| 81 |
margin-bottom: -5px; |
| 82 |
border-width: 5px 5px 0; |
| 83 |
border-top-color: #000; |
| 84 |
} |
| 85 |
.tooltip.right .tooltip-arrow { |
| 86 |
top: 50%; |
| 87 |
left: 0; |
| 88 |
margin-top: -5px; |
| 89 |
border-width: 5px 5px 5px 0; |
| 90 |
border-right-color: #000; |
| 91 |
} |
| 92 |
.tooltip.left .tooltip-arrow { |
| 93 |
top: 50%; |
| 94 |
right: 0; |
| 95 |
margin-top: -5px; |
| 96 |
border-width: 5px 0 5px 5px; |
| 97 |
border-left-color: #000; |
| 98 |
} |
| 99 |
.tooltip.bottom .tooltip-arrow { |
| 100 |
top: 0; |
| 101 |
left: 50%; |
| 102 |
margin-left: -5px; |
| 103 |
border-width: 0 5px 5px; |
| 104 |
border-bottom-color: #000; |
| 105 |
} |
| 106 |
.tooltip.bottom-left .tooltip-arrow { |
| 107 |
top: 0; |
| 108 |
right: 5px; |
| 109 |
margin-top: -5px; |
| 110 |
border-width: 0 5px 5px; |
| 111 |
border-bottom-color: #000; |
| 112 |
} |
| 113 |
.tooltip.bottom-right .tooltip-arrow { |
| 114 |
top: 0; |
| 115 |
left: 5px; |
| 116 |
margin-top: -5px; |
| 117 |
border-width: 0 5px 5px; |
| 118 |
border-bottom-color: #000; |
| 119 |
} |
| 120 |
|
| 121 |
/** |
| 122 |
* POPOVER |
| 123 |
*/ |
| 124 |
.popover { |
| 125 |
position: absolute; |
| 126 |
top: 0; |
| 127 |
left: 0; |
| 128 |
z-index: 100001; |
| 129 |
display: none; |
| 130 |
max-width: 276px; |
| 131 |
padding: 1px; |
| 132 |
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
| 133 |
font-size: 14px; |
| 134 |
font-style: normal; |
| 135 |
font-weight: normal; |
| 136 |
line-height: 1.42857143; |
| 137 |
text-align: left; |
| 138 |
text-align: start; |
| 139 |
text-decoration: none; |
| 140 |
text-shadow: none; |
| 141 |
text-transform: none; |
| 142 |
letter-spacing: normal; |
| 143 |
word-break: normal; |
| 144 |
word-spacing: normal; |
| 145 |
word-wrap: normal; |
| 146 |
white-space: normal; |
| 147 |
background-color: #fff; |
| 148 |
-webkit-background-clip: padding-box; |
| 149 |
background-clip: padding-box; |
| 150 |
border: 1px solid #ccc; |
| 151 |
border: 1px solid rgba(0, 0, 0, .2); |
| 152 |
border-radius: 6px; |
| 153 |
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2); |
| 154 |
box-shadow: 0 5px 10px rgba(0, 0, 0, .2); |
| 155 |
line-break: auto; |
| 156 |
} |
| 157 |
.popover.top { |
| 158 |
margin-top: -10px; |
| 159 |
} |
| 160 |
.popover.right { |
| 161 |
margin-left: 10px; |
| 162 |
} |
| 163 |
.popover.bottom { |
| 164 |
margin-top: 10px; |
| 165 |
} |
| 166 |
.popover.left { |
| 167 |
margin-left: -10px; |
| 168 |
} |
| 169 |
.popover-title { |
| 170 |
padding: 8px 14px; |
| 171 |
margin: 0; |
| 172 |
font-size: 14px; |
| 173 |
background-color: #f7f7f7; |
| 174 |
border-bottom: 1px solid #ebebeb; |
| 175 |
border-radius: 5px 5px 0 0; |
| 176 |
} |
| 177 |
.popover-content { |
| 178 |
padding: 9px 14px; |
| 179 |
} |
| 180 |
.popover > .bs-arrow, |
| 181 |
.popover > .bs-arrow:after { |
| 182 |
position: absolute; |
| 183 |
display: block; |
| 184 |
width: 0; |
| 185 |
height: 0; |
| 186 |
border-color: transparent; |
| 187 |
border-style: solid; |
| 188 |
} |
| 189 |
.popover > .bs-arrow { |
| 190 |
border-width: 11px; |
| 191 |
} |
| 192 |
.popover > .bs-arrow:after { |
| 193 |
content: ""; |
| 194 |
border-width: 10px; |
| 195 |
} |
| 196 |
.popover.top > .bs-arrow { |
| 197 |
bottom: -11px; |
| 198 |
left: 50%; |
| 199 |
margin-left: -11px; |
| 200 |
border-top-color: #999; |
| 201 |
border-top-color: rgba(0, 0, 0, .25); |
| 202 |
border-bottom-width: 0; |
| 203 |
} |
| 204 |
.popover.top > .bs-arrow:after { |
| 205 |
bottom: 1px; |
| 206 |
margin-left: -10px; |
| 207 |
content: " "; |
| 208 |
border-top-color: #fff; |
| 209 |
border-bottom-width: 0; |
| 210 |
} |
| 211 |
.popover.right > .bs-arrow { |
| 212 |
top: 50%; |
| 213 |
left: -11px; |
| 214 |
margin-top: -11px; |
| 215 |
border-right-color: #999; |
| 216 |
border-right-color: rgba(0, 0, 0, .25); |
| 217 |
border-left-width: 0; |
| 218 |
} |
| 219 |
.popover.right > .bs-arrow:after { |
| 220 |
bottom: -10px; |
| 221 |
left: 1px; |
| 222 |
content: " "; |
| 223 |
border-right-color: #fff; |
| 224 |
border-left-width: 0; |
| 225 |
} |
| 226 |
.popover.bottom > .bs-arrow { |
| 227 |
top: -11px; |
| 228 |
left: 50%; |
| 229 |
margin-left: -11px; |
| 230 |
border-top-width: 0; |
| 231 |
border-bottom-color: #999; |
| 232 |
border-bottom-color: rgba(0, 0, 0, .25); |
| 233 |
} |
| 234 |
.popover.bottom > .bs-arrow:after { |
| 235 |
top: 1px; |
| 236 |
margin-left: -10px; |
| 237 |
content: " "; |
| 238 |
border-top-width: 0; |
| 239 |
border-bottom-color: #fff; |
| 240 |
} |
| 241 |
.popover.left > .bs-arrow { |
| 242 |
top: 50%; |
| 243 |
right: -11px; |
| 244 |
margin-top: -11px; |
| 245 |
border-right-width: 0; |
| 246 |
border-left-color: #999; |
| 247 |
border-left-color: rgba(0, 0, 0, .25); |
| 248 |
} |
| 249 |
.popover.left > .bs-arrow:after { |
| 250 |
right: 1px; |
| 251 |
bottom: -10px; |
| 252 |
content: " "; |
| 253 |
border-right-width: 0; |
| 254 |
border-left-color: #fff; |
| 255 |
} |
| 256 |
|
| 257 |
/** |
| 258 |
* MODAL |
| 259 |
*/ |
| 260 |
|
| 261 |
.fade { |
| 262 |
opacity: 0; |
| 263 |
-webkit-transition: opacity .15s linear; |
| 264 |
-o-transition: opacity .15s linear; |
| 265 |
transition: opacity .15s linear; |
| 266 |
} |
| 267 |
.fade.in { |
| 268 |
opacity: 1; |
| 269 |
} |
| 270 |
|
| 271 |
.hide { |
| 272 |
display: none; |
| 273 |
} |
| 274 |
|
| 275 |
.modal-backdrop { |
| 276 |
position: fixed; |
| 277 |
top: 0; |
| 278 |
right: 0; |
| 279 |
bottom: 0; |
| 280 |
left: 0; |
| 281 |
z-index: 99999; |
| 282 |
background-color: #000; |
| 283 |
} |
| 284 |
.modal-backdrop.fade { |
| 285 |
filter: alpha(opacity=0); |
| 286 |
opacity: 0; |
| 287 |
} |
| 288 |
.modal-backdrop.fade.in { |
| 289 |
opacity: 0.8; |
| 290 |
filter: alpha(opacity=80); |
| 291 |
} |
| 292 |
.modal-header { |
| 293 |
padding: 9px 15px; |
| 294 |
/*border-bottom: 1px solid #eee;*/ |
| 295 |
border-bottom: 1px solid #d1d1d1; |
| 296 |
} |
| 297 |
.modal-header h3 { |
| 298 |
margin: 0; |
| 299 |
line-height: 30px; |
| 300 |
} |
| 301 |
.modal-form { |
| 302 |
margin-bottom: 0; |
| 303 |
} |
| 304 |
.modal-footer { |
| 305 |
padding: 14px 15px 15px; |
| 306 |
margin-bottom: 0; |
| 307 |
text-align: right; |
| 308 |
background-color: #f5f5f5; |
| 309 |
border-top: 1px solid #ddd; |
| 310 |
-webkit-border-radius: 0 0 6px 6px; |
| 311 |
-moz-border-radius: 0 0 6px 6px; |
| 312 |
border-radius: 0 0 6px 6px; |
| 313 |
-webkit-box-shadow: inset 0 1px 0 #fff; |
| 314 |
-moz-box-shadow: inset 0 1px 0 #fff; |
| 315 |
box-shadow: inset 0 1px 0 #fff; |
| 316 |
*zoom: 1; |
| 317 |
} |
| 318 |
.modal-footer:before, |
| 319 |
.modal-footer:after { |
| 320 |
display: table; |
| 321 |
content: ""; |
| 322 |
line-height: 0; |
| 323 |
} |
| 324 |
.modal-footer:after { |
| 325 |
clear: both; |
| 326 |
} |
| 327 |
.modal-footer .btn + .btn { |
| 328 |
margin-left: 5px; |
| 329 |
margin-bottom: 0; |
| 330 |
} |
| 331 |
.modal-footer .btn-group .btn + .btn { |
| 332 |
margin-left: -1px; |
| 333 |
} |
| 334 |
.modal-footer .btn-block + .btn-block { |
| 335 |
margin-left: 0; |
| 336 |
} |
| 337 |
@media (max-width: 480px) { |
| 338 |
.modal-header .box-close { |
| 339 |
padding: 10px; |
| 340 |
margin: -10px; |
| 341 |
} |
| 342 |
} |
| 343 |
div.modal { |
| 344 |
position: fixed; |
| 345 |
top: 5%; |
| 346 |
left: 50%; |
| 347 |
z-index: 100000; |
| 348 |
width: 80%; |
| 349 |
margin-left: -40%; |
| 350 |
/*background-color: #fff;*/ |
| 351 |
background-color: #f1f1f1; |
| 352 |
border: 1px solid #999; |
| 353 |
border: 1px solid rgba(0,0,0,0.3); |
| 354 |
*border: 1px solid #999; |
| 355 |
-webkit-border-radius: 6px; |
| 356 |
-moz-border-radius: 6px; |
| 357 |
border-radius: 6px; |
| 358 |
-webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.3); |
| 359 |
-moz-box-shadow: 0 3px 7px rgba(0,0,0,0.3); |
| 360 |
box-shadow: 0 3px 7px rgba(0,0,0,0.3); |
| 361 |
-webkit-background-clip: padding-box; |
| 362 |
-moz-background-clip: padding-box; |
| 363 |
background-clip: padding-box; |
| 364 |
outline: none; |
| 365 |
} |
| 366 |
div.modal.fade { |
| 367 |
-webkit-transition: opacity .3s linear, top .3s ease-out; |
| 368 |
-moz-transition: opacity .3s linear, top .3s ease-out; |
| 369 |
-o-transition: opacity .3s linear, top .3s ease-out; |
| 370 |
transition: opacity .3s linear, top .3s ease-out; |
| 371 |
top: -25%; |
| 372 |
} |
| 373 |
div.modal.fade.in { |
| 374 |
top: 5%; |
| 375 |
} |
| 376 |
.modal-batch { |
| 377 |
overflow-y: visible; |
| 378 |
} |
| 379 |
div.modal.jviewport-width10 { |
| 380 |
width: 10vw; |
| 381 |
margin-left: -5vw; |
| 382 |
} |
| 383 |
div.modal.jviewport-width20 { |
| 384 |
width: 20vw; |
| 385 |
margin-left: -10vw; |
| 386 |
} |
| 387 |
div.modal.jviewport-width30 { |
| 388 |
width: 30vw; |
| 389 |
margin-left: -15vw; |
| 390 |
} |
| 391 |
div.modal.jviewport-width40 { |
| 392 |
width: 40vw; |
| 393 |
margin-left: -20vw; |
| 394 |
} |
| 395 |
div.modal.jviewport-width50 { |
| 396 |
width: 50vw; |
| 397 |
margin-left: -25vw; |
| 398 |
} |
| 399 |
div.modal.jviewport-width60 { |
| 400 |
width: 60vw; |
| 401 |
margin-left: -30vw; |
| 402 |
} |
| 403 |
div.modal.jviewport-width70 { |
| 404 |
width: 70vw; |
| 405 |
margin-left: -35vw; |
| 406 |
} |
| 407 |
div.modal.jviewport-width80 { |
| 408 |
width: 80vw; |
| 409 |
margin-left: -40vw; |
| 410 |
} |
| 411 |
div.modal.jviewport-width90 { |
| 412 |
width: 90vw; |
| 413 |
margin-left: -45vw; |
| 414 |
} |
| 415 |
div.modal.jviewport-width100 { |
| 416 |
width: 100vw; |
| 417 |
margin-left: -50vw; |
| 418 |
} |
| 419 |
@media (max-width: 767px) { |
| 420 |
div.modal { |
| 421 |
position: fixed; |
| 422 |
top: 20px; |
| 423 |
left: 20px; |
| 424 |
right: 20px; |
| 425 |
width: auto !important; |
| 426 |
margin: 0 !important; |
| 427 |
height: calc(100vh - 40px) !important; |
| 428 |
} |
| 429 |
div.modal.fade { |
| 430 |
top: -100px; |
| 431 |
} |
| 432 |
div.modal.fade.in { |
| 433 |
top: 20px; |
| 434 |
} |
| 435 |
div.modal[class*="jviewport-width"] { |
| 436 |
width: auto; |
| 437 |
margin: 0; |
| 438 |
} |
| 439 |
} |
| 440 |
@media (max-width: 480px) { |
| 441 |
div.modal { |
| 442 |
top: 10px; |
| 443 |
left: 10px; |
| 444 |
right: 10px; |
| 445 |
} |
| 446 |
} |
| 447 |
.modal-header { |
| 448 |
padding: 0 20px; |
| 449 |
text-align: left; |
| 450 |
} |
| 451 |
.modal-header h3 { |
| 452 |
font-weight: normal; |
| 453 |
line-height: 50px; |
| 454 |
} |
| 455 |
.modal-header .box-close { |
| 456 |
float: right; |
| 457 |
text-align: center; |
| 458 |
/*margin-top: 2px;*/ |
| 459 |
width: 50px; |
| 460 |
margin-top: 0; |
| 461 |
margin-right: -15px; |
| 462 |
font-size: 2rem; |
| 463 |
line-height: 50px; |
| 464 |
border-left: 1px solid #d1d1d1; |
| 465 |
} |
| 466 |
.modal-body-wrapper { |
| 467 |
padding: 10px; |
| 468 |
} |
| 469 |
.modal-body { |
| 470 |
position: relative; |
| 471 |
width: 100%; |
| 472 |
height: 100%; |
| 473 |
overflow-y: scroll; |
| 474 |
} |
| 475 |
.modal-body .container-fluid { |
| 476 |
padding-top: 15px; |
| 477 |
padding-bottom: 15px; |
| 478 |
} |
| 479 |
.modal-footer { |
| 480 |
clear: both; |
| 481 |
} |
| 482 |
.contentpane { |
| 483 |
padding: 10px; |
| 484 |
height: auto; |
| 485 |
} |
| 486 |
@media (min-width: 768px) { |
| 487 |
.row-fluid .modal-batch [class*="span"] { |
| 488 |
margin-left: 0; |
| 489 |
} |
| 490 |
} |
| 491 |
|
| 492 |
.modal-header + div { |
| 493 |
height: calc(100% - 60px) !important; |
| 494 |
} |
| 495 |
.modal-header + div.has-footer { |
| 496 |
height: calc(100% - 120px) !important; |
| 497 |
} |
| 498 |
|
| 499 |
/** |
| 500 |
* MODAL CLOSE BUTTON |
| 501 |
*/ |
| 502 |
|
| 503 |
.close { |
| 504 |
/*float: right;*/ |
| 505 |
font-size: 32px; |
| 506 |
font-weight: bold; |
| 507 |
line-height: 1; |
| 508 |
color: #000; |
| 509 |
text-shadow: 0 1px 0 #fff; |
| 510 |
filter: alpha(opacity=20); |
| 511 |
opacity: .2; |
| 512 |
} |
| 513 |
.close:hover, |
| 514 |
.close:focus { |
| 515 |
color: #000; |
| 516 |
text-decoration: none; |
| 517 |
cursor: pointer; |
| 518 |
filter: alpha(opacity=50); |
| 519 |
opacity: .5; |
| 520 |
} |
| 521 |
button.close { |
| 522 |
-webkit-appearance: none; |
| 523 |
padding: 0; |
| 524 |
cursor: pointer; |
| 525 |
background: transparent; |
| 526 |
border: 0; |
| 527 |
} |
| 528 |
.input-append > input { |
| 529 |
border: 1px solid #b3b3b3; |
| 530 |
height: 28px; |
| 531 |
margin-top: 0; |
| 532 |
margin-right: 0; |
| 533 |
border-right: 0; |
| 534 |
border-top-right-radius: 0; |
| 535 |
border-bottom-right-radius: 0; |
| 536 |
} |
| 537 |
.input-append > input + .btn, .input-append > input + .vbodatepicker-trig-icon { |
| 538 |
border-top-left-radius: 0; |
| 539 |
border-bottom-left-radius: 0; |
| 540 |
|
| 541 |
} |
| 542 |
/* Force visibility to avoid conflicts with other plugins */ |
| 543 |
.modal.hide.fade.in { |
| 544 |
display: block !important; |
| 545 |
} |