12351 lines
450 KiB
CSS
12351 lines
450 KiB
CSS
|
||
@charset "UTF-8";
|
||
@import "//fonts.googleapis.com/css?family=Open+Sans:300,400,700";
|
||
@import "//fonts.googleapis.com/css?family=Ubuntu+Condensed";
|
||
@keyframes fadeIn {
|
||
0% {
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
}
|
||
}
|
||
@keyframes fadeOut {
|
||
0% {
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
}
|
||
}
|
||
@keyframes fadeInUp {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateY(20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateY(0px);
|
||
}
|
||
}
|
||
@keyframes fadeOutUp {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateY(0px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateY(-20px);
|
||
}
|
||
}
|
||
@keyframes fadeInDown {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateY(-20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateY(0px);
|
||
}
|
||
}
|
||
@keyframes fadeOutDown {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateY(0px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateY(20px);
|
||
}
|
||
}
|
||
@keyframes fadeInRight {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateX(20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateX(0px);
|
||
}
|
||
}
|
||
@keyframes fadeOutLeft {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateX(0px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateX(-20px);
|
||
}
|
||
}
|
||
@keyframes fadeInLeft {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateX(-20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateX(0px);
|
||
}
|
||
}
|
||
@keyframes fadeOutRight {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateX(0px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateX(20px);
|
||
}
|
||
}
|
||
@keyframes fadeInUpBig {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateY(2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateY(0px);
|
||
}
|
||
}
|
||
@keyframes fadeOutUpBig {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateY(0px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateY(-2000px);
|
||
}
|
||
}
|
||
@keyframes fadeInDownBig {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateY(-2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateY(0px);
|
||
}
|
||
}
|
||
@keyframes fadeOutDownBig {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateY(0px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateY(2000px);
|
||
}
|
||
}
|
||
@keyframes fadeInRightBig {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateX(2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateX(0px);
|
||
}
|
||
}
|
||
@keyframes fadeOutLeftBig {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateX(0px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateX(-2000px);
|
||
}
|
||
}
|
||
@keyframes fadeInLeftBig {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateX(-2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateX(0px);
|
||
}
|
||
}
|
||
@keyframes fadeOutRightBig {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateX(0px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateX(2000px);
|
||
}
|
||
}
|
||
@keyframes bounceIn {
|
||
0% {
|
||
opacity: 0;
|
||
transform: scale(0.3);
|
||
}
|
||
50% {
|
||
opacity: 1;
|
||
transform: scale(1.05);
|
||
}
|
||
70% {
|
||
transform: scale(0.9);
|
||
}
|
||
100% {
|
||
transform: scale(1);
|
||
}
|
||
}
|
||
@keyframes bounceInDown {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateY(-2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
transform: translateY(30px);
|
||
}
|
||
80% {
|
||
transform: translateY(-10px);
|
||
}
|
||
100% {
|
||
transform: translateY(0px);
|
||
}
|
||
}
|
||
@keyframes bounceInUp {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateY(2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
transform: translateY(-30px);
|
||
}
|
||
80% {
|
||
transform: translateY(10px);
|
||
}
|
||
100% {
|
||
transform: translateY(0px);
|
||
}
|
||
}
|
||
@keyframes bounceInRight {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateX(2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
transform: translateX(-30px);
|
||
}
|
||
80% {
|
||
transform: translateX(10px);
|
||
}
|
||
100% {
|
||
transform: translateX(0px);
|
||
}
|
||
}
|
||
@keyframes bounceInLeft {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateX(-2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
transform: translateX(30px);
|
||
}
|
||
80% {
|
||
transform: translateX(-10px);
|
||
}
|
||
100% {
|
||
transform: translateX(0px);
|
||
}
|
||
}
|
||
@keyframes bounceOut {
|
||
0% {
|
||
transform: scale(1);
|
||
}
|
||
25% {
|
||
transform: scale(0.95);
|
||
}
|
||
50% {
|
||
opacity: 1;
|
||
transform: scale(1.1);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: scale(0.3);
|
||
}
|
||
}
|
||
@keyframes bounceOutUp {
|
||
0% {
|
||
transform: translateY(0px);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
transform: translateY(20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateY(-2000px);
|
||
}
|
||
}
|
||
@keyframes bounceOutDown {
|
||
0% {
|
||
transform: translateY(0px);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
transform: translateY(-20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateY(2000px);
|
||
}
|
||
}
|
||
@keyframes bounceOutLeft {
|
||
0% {
|
||
transform: translateX(0px);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
transform: translateX(20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateX(-2000px);
|
||
}
|
||
}
|
||
@keyframes bounceOutRight {
|
||
0% {
|
||
transform: translateX(0px);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
transform: translateX(-20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateX(2000px);
|
||
}
|
||
}
|
||
@keyframes flash {
|
||
0% {
|
||
opacity: 1;
|
||
}
|
||
25% {
|
||
opacity: 0;
|
||
}
|
||
50% {
|
||
opacity: 1;
|
||
}
|
||
75% {
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
}
|
||
}
|
||
@keyframes bounce {
|
||
0% {
|
||
transform: translateY(0px);
|
||
}
|
||
20% {
|
||
transform: translateY(0px);
|
||
}
|
||
40% {
|
||
transform: translateY(-30px);
|
||
}
|
||
50% {
|
||
transform: translateY(0px);
|
||
}
|
||
60% {
|
||
transform: translateY(-15px);
|
||
}
|
||
80% {
|
||
transform: translateY(0px);
|
||
}
|
||
100% {
|
||
transform: translateY(0px);
|
||
}
|
||
}
|
||
@keyframes shake {
|
||
0% {
|
||
transform: translateX(0px);
|
||
}
|
||
10% {
|
||
transform: translateX(-10px);
|
||
}
|
||
20% {
|
||
transform: translateX(10px);
|
||
}
|
||
30% {
|
||
transform: translateX(-10px);
|
||
}
|
||
40% {
|
||
transform: translateX(10px);
|
||
}
|
||
50% {
|
||
transform: translateX(-10px);
|
||
}
|
||
60% {
|
||
transform: translateX(10px);
|
||
}
|
||
70% {
|
||
transform: translateX(-10px);
|
||
}
|
||
80% {
|
||
transform: translateX(10px);
|
||
}
|
||
90% {
|
||
transform: translateX(-10px);
|
||
}
|
||
100% {
|
||
transform: translateX(0px);
|
||
}
|
||
}
|
||
@keyframes rotateInDownLeft {
|
||
0% {
|
||
opacity: 0;
|
||
transform: rotate(-90deg);
|
||
transform-origin: left bottom 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: rotate(0deg);
|
||
transform-origin: left bottom 0;
|
||
}
|
||
}
|
||
@keyframes rotateInUpLeft {
|
||
0% {
|
||
opacity: 0;
|
||
transform: rotate(90deg);
|
||
transform-origin: left bottom 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: rotate(0deg);
|
||
transform-origin: left bottom 0;
|
||
}
|
||
}
|
||
@keyframes rotateInUpRight {
|
||
0% {
|
||
opacity: 0;
|
||
transform: rotate(-90deg);
|
||
transform-origin: right bottom 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: rotate(0deg);
|
||
transform-origin: right bottom 0;
|
||
}
|
||
}
|
||
@keyframes rotateInDownRight {
|
||
0% {
|
||
opacity: 0;
|
||
transform: rotate(90deg);
|
||
transform-origin: right bottom 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: rotate(0deg);
|
||
transform-origin: right bottom 0;
|
||
}
|
||
}
|
||
@keyframes rotateOutDownLeft {
|
||
0% {
|
||
opacity: 1;
|
||
transform: rotate(0deg);
|
||
transform-origin: left bottom 0;
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: rotate(90deg);
|
||
transform-origin: left bottom 0;
|
||
}
|
||
}
|
||
@keyframes rotateOutUpLeft {
|
||
0% {
|
||
opacity: 1;
|
||
transform: rotate(0deg);
|
||
transform-origin: left bottom 0;
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: rotate(-90deg);
|
||
transform-origin: left bottom 0;
|
||
}
|
||
}
|
||
@keyframes rotateOutDownRight {
|
||
0% {
|
||
opacity: 1;
|
||
transform: rotate(0deg);
|
||
transform-origin: right bottom 0;
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: rotate(-90deg);
|
||
transform-origin: right bottom 0;
|
||
}
|
||
}
|
||
@keyframes rotateOutUpRight {
|
||
0% {
|
||
opacity: 1;
|
||
transform: rotate(0deg);
|
||
transform-origin: right bottom 0;
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: rotate(90deg);
|
||
transform-origin: right bottom 0;
|
||
}
|
||
}
|
||
@keyframes rotateIn {
|
||
0% {
|
||
opacity: 0;
|
||
transform: rotate(-200deg);
|
||
transform-origin: center center 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: rotate(0deg);
|
||
transform-origin: center center 0;
|
||
}
|
||
}
|
||
@keyframes rotateOut {
|
||
0% {
|
||
opacity: 1;
|
||
transform: rotate(0deg);
|
||
transform-origin: center center 0;
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: rotate(200deg);
|
||
transform-origin: center center 0;
|
||
}
|
||
}
|
||
@keyframes tada {
|
||
0% {
|
||
transform: scale(1);
|
||
}
|
||
10% {
|
||
transform: scale(0.9) rotate(-3deg);
|
||
}
|
||
20% {
|
||
transform: scale(0.9) rotate(-3deg);
|
||
}
|
||
30% {
|
||
transform: scale(1.1) rotate(3deg);
|
||
}
|
||
40% {
|
||
transform: scale(1.1) rotate(-3deg);
|
||
}
|
||
50% {
|
||
transform: scale(1.1) rotate(3deg);
|
||
}
|
||
60% {
|
||
transform: scale(1.1) rotate(-3deg);
|
||
}
|
||
70% {
|
||
transform: scale(1.1) rotate(3deg);
|
||
}
|
||
80% {
|
||
transform: scale(1.1) rotate(-3deg);
|
||
}
|
||
90% {
|
||
transform: scale(1.1) rotate(3deg);
|
||
}
|
||
100% {
|
||
transform: scale(1) rotate(0deg);
|
||
}
|
||
}
|
||
@keyframes fadeIn {
|
||
0% {
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
}
|
||
}
|
||
@keyframes fadeOut {
|
||
0% {
|
||
opacity: 1;
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
}
|
||
}
|
||
@keyframes fadeInUp {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateY(20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateY(0px);
|
||
}
|
||
}
|
||
@keyframes fadeOutUp {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateY(0px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateY(-20px);
|
||
}
|
||
}
|
||
@keyframes fadeInDown {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateY(-20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateY(0px);
|
||
}
|
||
}
|
||
@keyframes fadeOutDown {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateY(0px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateY(20px);
|
||
}
|
||
}
|
||
@keyframes fadeInRight {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateX(20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateX(0px);
|
||
}
|
||
}
|
||
@keyframes fadeOutLeft {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateX(0px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateX(-20px);
|
||
}
|
||
}
|
||
@keyframes fadeInLeft {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateX(-20px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateX(0px);
|
||
}
|
||
}
|
||
@keyframes fadeOutRight {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateX(0px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateX(20px);
|
||
}
|
||
}
|
||
@keyframes fadeInUpBig {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateY(2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateY(0px);
|
||
}
|
||
}
|
||
@keyframes fadeOutUpBig {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateY(0px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateY(-2000px);
|
||
}
|
||
}
|
||
@keyframes fadeInDownBig {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateY(-2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateY(0px);
|
||
}
|
||
}
|
||
@keyframes fadeOutDownBig {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateY(0px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateY(2000px);
|
||
}
|
||
}
|
||
@keyframes fadeInRightBig {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateX(2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateX(0px);
|
||
}
|
||
}
|
||
@keyframes fadeOutLeftBig {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateX(0px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateX(-2000px);
|
||
}
|
||
}
|
||
@keyframes fadeInLeftBig {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateX(-2000px);
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: translateX(0px);
|
||
}
|
||
}
|
||
@keyframes fadeOutRightBig {
|
||
0% {
|
||
opacity: 1;
|
||
transform: translateX(0px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateX(2000px);
|
||
}
|
||
}
|
||
@keyframes bounceIn {
|
||
0% {
|
||
opacity: 0;
|
||
transform: scale(0.3);
|
||
}
|
||
50% {
|
||
opacity: 1;
|
||
transform: scale(1.05);
|
||
}
|
||
70% {
|
||
transform: scale(0.9);
|
||
}
|
||
100% {
|
||
transform: scale(1);
|
||
}
|
||
}
|
||
@keyframes bounceInDown {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateY(-2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
transform: translateY(30px);
|
||
}
|
||
80% {
|
||
transform: translateY(-10px);
|
||
}
|
||
100% {
|
||
transform: translateY(0px);
|
||
}
|
||
}
|
||
@keyframes bounceInUp {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateY(2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
transform: translateY(-30px);
|
||
}
|
||
80% {
|
||
transform: translateY(10px);
|
||
}
|
||
100% {
|
||
transform: translateY(0px);
|
||
}
|
||
}
|
||
@keyframes bounceInRight {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateX(2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
transform: translateX(-30px);
|
||
}
|
||
80% {
|
||
transform: translateX(10px);
|
||
}
|
||
100% {
|
||
transform: translateX(0px);
|
||
}
|
||
}
|
||
@keyframes bounceInLeft {
|
||
0% {
|
||
opacity: 0;
|
||
transform: translateX(-2000px);
|
||
}
|
||
60% {
|
||
opacity: 1;
|
||
transform: translateX(30px);
|
||
}
|
||
80% {
|
||
transform: translateX(-10px);
|
||
}
|
||
100% {
|
||
transform: translateX(0px);
|
||
}
|
||
}
|
||
@keyframes bounceOut {
|
||
0% {
|
||
transform: scale(1);
|
||
}
|
||
25% {
|
||
transform: scale(0.95);
|
||
}
|
||
50% {
|
||
opacity: 1;
|
||
transform: scale(1.1);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: scale(0.3);
|
||
}
|
||
}
|
||
@keyframes bounceOutUp {
|
||
0% {
|
||
transform: translateY(0px);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
transform: translateY(20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateY(-2000px);
|
||
}
|
||
}
|
||
@keyframes bounceOutDown {
|
||
0% {
|
||
transform: translateY(0px);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
transform: translateY(-20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateY(2000px);
|
||
}
|
||
}
|
||
@keyframes bounceOutLeft {
|
||
0% {
|
||
transform: translateX(0px);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
transform: translateX(20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateX(-2000px);
|
||
}
|
||
}
|
||
@keyframes bounceOutRight {
|
||
0% {
|
||
transform: translateX(0px);
|
||
}
|
||
20% {
|
||
opacity: 1;
|
||
transform: translateX(-20px);
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: translateX(2000px);
|
||
}
|
||
}
|
||
@keyframes flash {
|
||
0% {
|
||
opacity: 1;
|
||
}
|
||
25% {
|
||
opacity: 0;
|
||
}
|
||
50% {
|
||
opacity: 1;
|
||
}
|
||
75% {
|
||
opacity: 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
}
|
||
}
|
||
@keyframes bounce {
|
||
0% {
|
||
transform: translateY(0px);
|
||
}
|
||
20% {
|
||
transform: translateY(0px);
|
||
}
|
||
40% {
|
||
transform: translateY(-30px);
|
||
}
|
||
50% {
|
||
transform: translateY(0px);
|
||
}
|
||
60% {
|
||
transform: translateY(-15px);
|
||
}
|
||
80% {
|
||
transform: translateY(0px);
|
||
}
|
||
100% {
|
||
transform: translateY(0px);
|
||
}
|
||
}
|
||
@keyframes shake {
|
||
0% {
|
||
transform: translateX(0px);
|
||
}
|
||
10% {
|
||
transform: translateX(-10px);
|
||
}
|
||
20% {
|
||
transform: translateX(10px);
|
||
}
|
||
30% {
|
||
transform: translateX(-10px);
|
||
}
|
||
40% {
|
||
transform: translateX(10px);
|
||
}
|
||
50% {
|
||
transform: translateX(-10px);
|
||
}
|
||
60% {
|
||
transform: translateX(10px);
|
||
}
|
||
70% {
|
||
transform: translateX(-10px);
|
||
}
|
||
80% {
|
||
transform: translateX(10px);
|
||
}
|
||
90% {
|
||
transform: translateX(-10px);
|
||
}
|
||
100% {
|
||
transform: translateX(0px);
|
||
}
|
||
}
|
||
@keyframes rotateInDownLeft {
|
||
0% {
|
||
opacity: 0;
|
||
transform: rotate(-90deg);
|
||
transform-origin: left bottom 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: rotate(0deg);
|
||
transform-origin: left bottom 0;
|
||
}
|
||
}
|
||
@keyframes rotateInUpLeft {
|
||
0% {
|
||
opacity: 0;
|
||
transform: rotate(90deg);
|
||
transform-origin: left bottom 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: rotate(0deg);
|
||
transform-origin: left bottom 0;
|
||
}
|
||
}
|
||
@keyframes rotateInUpRight {
|
||
0% {
|
||
opacity: 0;
|
||
transform: rotate(-90deg);
|
||
transform-origin: right bottom 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: rotate(0deg);
|
||
transform-origin: right bottom 0;
|
||
}
|
||
}
|
||
@keyframes rotateInDownRight {
|
||
0% {
|
||
opacity: 0;
|
||
transform: rotate(90deg);
|
||
transform-origin: right bottom 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: rotate(0deg);
|
||
transform-origin: right bottom 0;
|
||
}
|
||
}
|
||
@keyframes rotateOutDownLeft {
|
||
0% {
|
||
opacity: 1;
|
||
transform: rotate(0deg);
|
||
transform-origin: left bottom 0;
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: rotate(90deg);
|
||
transform-origin: left bottom 0;
|
||
}
|
||
}
|
||
@keyframes rotateOutUpLeft {
|
||
0% {
|
||
opacity: 1;
|
||
transform: rotate(0deg);
|
||
transform-origin: left bottom 0;
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: rotate(-90deg);
|
||
transform-origin: left bottom 0;
|
||
}
|
||
}
|
||
@keyframes rotateOutDownRight {
|
||
0% {
|
||
opacity: 1;
|
||
transform: rotate(0deg);
|
||
transform-origin: right bottom 0;
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: rotate(-90deg);
|
||
transform-origin: right bottom 0;
|
||
}
|
||
}
|
||
@keyframes rotateOutUpRight {
|
||
0% {
|
||
opacity: 1;
|
||
transform: rotate(0deg);
|
||
transform-origin: right bottom 0;
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: rotate(90deg);
|
||
transform-origin: right bottom 0;
|
||
}
|
||
}
|
||
@keyframes rotateIn {
|
||
0% {
|
||
opacity: 0;
|
||
transform: rotate(-200deg);
|
||
transform-origin: center center 0;
|
||
}
|
||
100% {
|
||
opacity: 1;
|
||
transform: rotate(0deg);
|
||
transform-origin: center center 0;
|
||
}
|
||
}
|
||
@keyframes rotateOut {
|
||
0% {
|
||
opacity: 1;
|
||
transform: rotate(0deg);
|
||
transform-origin: center center 0;
|
||
}
|
||
100% {
|
||
opacity: 0;
|
||
transform: rotate(200deg);
|
||
transform-origin: center center 0;
|
||
}
|
||
}
|
||
@keyframes tada {
|
||
0% {
|
||
transform: scale(1);
|
||
}
|
||
10% {
|
||
transform: scale(0.9) rotate(-3deg);
|
||
}
|
||
20% {
|
||
transform: scale(0.9) rotate(-3deg);
|
||
}
|
||
30% {
|
||
transform: scale(1.1) rotate(3deg);
|
||
}
|
||
40% {
|
||
transform: scale(1.1) rotate(-3deg);
|
||
}
|
||
50% {
|
||
transform: scale(1.1) rotate(3deg);
|
||
}
|
||
60% {
|
||
transform: scale(1.1) rotate(-3deg);
|
||
}
|
||
70% {
|
||
transform: scale(1.1) rotate(3deg);
|
||
}
|
||
80% {
|
||
transform: scale(1.1) rotate(-3deg);
|
||
}
|
||
90% {
|
||
transform: scale(1.1) rotate(3deg);
|
||
}
|
||
100% {
|
||
transform: scale(1) rotate(0deg);
|
||
}
|
||
}
|
||
@font-face {
|
||
font-family: "FontAwesome";
|
||
font-style: normal;
|
||
font-weight: normal;
|
||
src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff?v=4.1.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.1.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular") format("svg");
|
||
}
|
||
.icon, .page-sidebar-closed:not(.nav-topbar):not(.mobile-nav) .searchtab:before, [class^="icon-"], [class^="process-icon-"], .bootstrap .alert.alert-warning:before, .bootstrap .alert.alert-danger:before, .bootstrap #carrier_wizard .wizard_error:before, .bootstrap .alert.alert-success:before, .bootstrap .alert.alert-info:before, .bootstrap .alert.alert-addons:before, .bootstrap .alert.alert-onboarding:before, .bootstrap .alert.alert-message:before, .bootstrap .table td.dragHandle .dragGroup:before, .bootstrap #dashboard .loading .data_value:before, .bootstrap #employee-thumbnail:before, .mce-ico, .chosen-container-single .chosen-single div b, .chosen-container-single .chosen-search:before {
|
||
display: inline-block;
|
||
font-family: FontAwesome;
|
||
font-style: normal;
|
||
font-weight: normal;
|
||
line-height: 1;
|
||
}
|
||
.icon-check:before, #content .process-icon-ok:before {
|
||
content: "\f00c"}
|
||
.icon-times:before, .icon-remove:before, #content .process-icon-cancel:before {
|
||
content: "\f00d"
|
||
}
|
||
.icon-2x, .page-sidebar-closed:not(.nav-topbar):not(.mobile-nav) .searchtab:before, [class^="icon-Admin"], [class^="process-icon-"] {
|
||
font-size: 2em;
|
||
}
|
||
.icon-3x, .bootstrap .alert.alert-warning:before, .bootstrap .alert.alert-danger:before, .bootstrap #carrier_wizard .wizard_error:before, .bootstrap .alert.alert-success:before, .bootstrap .alert.alert-info:before, .bootstrap .alert.alert-addons:before, .bootstrap .alert.alert-onboarding:before, .bootstrap .alert.alert-message:before {
|
||
font-size: 3em;
|
||
}
|
||
.icon-4x {
|
||
font-size: 4em;
|
||
}
|
||
.icon-5x {
|
||
font-size: 5em;
|
||
}
|
||
.icon-fw, [class^="icon-Admin"], [class^="process-icon-"] {
|
||
text-align: center;
|
||
width: 1.28571em;
|
||
}
|
||
.icon-ul {
|
||
list-style-type: none;
|
||
margin-left: 2.14286em;
|
||
padding-left: 0;
|
||
}
|
||
.icon-ul > li {
|
||
position: relative;
|
||
}
|
||
.icon-li {
|
||
left: -2.14286em;
|
||
position: absolute;
|
||
text-align: center;
|
||
top: 0.14286em;
|
||
width: 2.14286em;
|
||
}
|
||
.icon-li.icon-lg {
|
||
left: -1.85714em;
|
||
}
|
||
.icon-border {
|
||
border: 0.08em solid #eee;
|
||
border-radius: 0.1em;
|
||
padding: 0.2em 0.25em 0.15em;
|
||
}
|
||
.pull-right {
|
||
float: right;
|
||
}
|
||
.pull-left {
|
||
float: left;
|
||
}
|
||
.icon.pull-left, .page-sidebar-closed:not(.nav-topbar):not(.mobile-nav) .pull-left.searchtab:before, .pull-left[class^="icon-"], .pull-left[class^="process-icon-"], .bootstrap .pull-left.alert.alert-warning:before, .bootstrap .pull-left.alert.alert-danger:before, .bootstrap #carrier_wizard .pull-left.wizard_error:before, .bootstrap .pull-left.alert.alert-success:before, .bootstrap .pull-left.alert.alert-info:before, .bootstrap .pull-left.alert.alert-addons:before, .bootstrap .pull-left.alert.alert-onboarding:before, .bootstrap .pull-left.alert.alert-message:before, .bootstrap .table td.dragHandle .pull-left.dragGroup:before, .bootstrap #dashboard .loading .pull-left.data_value:before, .bootstrap #employee-thumbnail.pull-left:before, .pull-left.mce-ico, .chosen-container-single .chosen-single div b.pull-left, .chosen-container-single .pull-left.chosen-search:before {
|
||
margin-right: 0.3em;
|
||
}
|
||
.icon.pull-right, .page-sidebar-closed:not(.nav-topbar):not(.mobile-nav) .pull-right.searchtab:before, .pull-right[class^="icon-"], .pull-right[class^="process-icon-"], .bootstrap .pull-right.alert.alert-warning:before, .bootstrap .pull-right.alert.alert-danger:before, .bootstrap #carrier_wizard .pull-right.wizard_error:before, .bootstrap .pull-right.alert.alert-success:before, .bootstrap .pull-right.alert.alert-info:before, .bootstrap .pull-right.alert.alert-addons:before, .bootstrap .pull-right.alert.alert-onboarding:before, .bootstrap .pull-right.alert.alert-message:before, .bootstrap .table td.dragHandle .pull-right.dragGroup:before, .bootstrap #dashboard .loading .pull-right.data_value:before, .bootstrap #employee-thumbnail.pull-right:before, .pull-right.mce-ico, .chosen-container-single .chosen-single div b.pull-right, .chosen-container-single .pull-right.chosen-search:before {
|
||
margin-left: 0.3em;
|
||
}
|
||
.icon-spin, #content .process-icon-loading, .bootstrap #dashboard .loading .data_value:before, .bootstrap #employee-thumbnail:before {
|
||
animation: 2s linear 0s normal none infinite running spin;
|
||
}
|
||
@keyframes spin {
|
||
0% {
|
||
transform: rotate(0deg);
|
||
}
|
||
100% {
|
||
transform: rotate(359deg);
|
||
}
|
||
}
|
||
@keyframes spin {
|
||
0% {
|
||
transform: rotate(0deg);
|
||
}
|
||
100% {
|
||
transform: rotate(359deg);
|
||
}
|
||
}
|
||
.icon-rotate-90 {
|
||
transform: rotate(90deg);
|
||
}
|
||
.icon-rotate-180 {
|
||
transform: rotate(180deg);
|
||
}
|
||
.icon-rotate-270 {
|
||
transform: rotate(270deg);
|
||
}
|
||
.icon-flip-horizontal {
|
||
transform: scale(-1, 1);
|
||
}
|
||
.icon-flip-vertical {
|
||
transform: scale(1, -1);
|
||
}
|
||
.icon-stack {
|
||
display: inline-block;
|
||
height: 2em;
|
||
line-height: 2em;
|
||
position: relative;
|
||
vertical-align: middle;
|
||
width: 2em;
|
||
}
|
||
.icon-stack-1x, .icon-stack-2x {
|
||
left: 0;
|
||
position: absolute;
|
||
text-align: center;
|
||
width: 100%;
|
||
}
|
||
.icon-stack-1x {
|
||
line-height: inherit;
|
||
}
|
||
.icon-stack-2x {
|
||
font-size: 2em;
|
||
}
|
||
.icon-inverse {
|
||
color: #fff;
|
||
}
|
||
html {
|
||
font-family: sans-serif;
|
||
}
|
||
body {
|
||
margin: 0;
|
||
}
|
||
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
|
||
display: block;
|
||
}
|
||
audio, canvas, progress, video {
|
||
display: inline-block;
|
||
vertical-align: baseline;
|
||
}
|
||
audio:not([controls]) {
|
||
display: none;
|
||
height: 0;
|
||
}
|
||
[hidden], template {
|
||
display: none;
|
||
}
|
||
a {
|
||
background: none repeat scroll 0 0 transparent;
|
||
}
|
||
a:active, a:hover {
|
||
outline: 0 none;
|
||
}
|
||
abbr[title] {
|
||
border-bottom: 1px dotted;
|
||
}
|
||
b, strong {
|
||
font-weight: bold;
|
||
}
|
||
dfn {
|
||
font-style: italic;
|
||
}
|
||
h1 {
|
||
font-size: 2em;
|
||
margin: 0.67em 0;
|
||
}
|
||
mark {
|
||
background: none repeat scroll 0 0 #ff0;
|
||
color: #000;
|
||
}
|
||
small {
|
||
font-size: 80%;
|
||
}
|
||
sub, sup {
|
||
font-size: 75%;
|
||
line-height: 0;
|
||
position: relative;
|
||
vertical-align: baseline;
|
||
}
|
||
sup {
|
||
top: -0.5em;
|
||
}
|
||
sub {
|
||
bottom: -0.25em;
|
||
}
|
||
img {
|
||
border: 0 none;
|
||
}
|
||
svg:not(:root) {
|
||
overflow: hidden;
|
||
}
|
||
figure {
|
||
margin: 1em 40px;
|
||
}
|
||
hr {
|
||
box-sizing: content-box;
|
||
height: 0;
|
||
}
|
||
pre {
|
||
overflow: auto;
|
||
}
|
||
code, kbd, pre, samp {
|
||
font-family: monospace,monospace;
|
||
font-size: 1em;
|
||
}
|
||
button, input, optgroup, select, textarea {
|
||
color: inherit;
|
||
font: inherit;
|
||
margin: 0;
|
||
}
|
||
button {
|
||
overflow: visible;
|
||
}
|
||
button, select {
|
||
text-transform: none;
|
||
}
|
||
button, html input[type="button"], input[type="reset"], input[type="submit"] {
|
||
cursor: pointer;
|
||
}
|
||
button[disabled], html input[disabled] {
|
||
cursor: default;
|
||
}
|
||
button::-moz-focus-inner, input::-moz-focus-inner {
|
||
border: 0 none;
|
||
padding: 0;
|
||
}
|
||
input {
|
||
line-height: normal;
|
||
}
|
||
input[type="checkbox"], input[type="radio"] {
|
||
box-sizing: border-box;
|
||
padding: 0;
|
||
}
|
||
input[type="search"] {
|
||
box-sizing: content-box;
|
||
}
|
||
fieldset {
|
||
border: 1px solid #c0c0c0;
|
||
margin: 0 2px;
|
||
padding: 0.35em 0.625em 0.75em;
|
||
}
|
||
legend {
|
||
border: 0 none;
|
||
padding: 0;
|
||
}
|
||
textarea {
|
||
overflow: auto;
|
||
}
|
||
optgroup {
|
||
font-weight: bold;
|
||
}
|
||
table {
|
||
border-collapse: collapse;
|
||
border-spacing: 0;
|
||
}
|
||
td, th {
|
||
padding: 0;
|
||
}
|
||
.bootstrap {
|
||
}
|
||
.bootstrap * {
|
||
box-sizing: border-box;
|
||
}
|
||
.bootstrap *:before, .bootstrap *:after {
|
||
box-sizing: border-box;
|
||
}
|
||
.bootstrap html {
|
||
font-size: 62.5%;
|
||
}
|
||
.bootstrap body {
|
||
background-color: #fff;
|
||
color: #555;
|
||
font-family: "Open Sans",Helvetica,Arial,sans-serif;
|
||
font-size: 12px;
|
||
line-height: 1.42857;
|
||
}
|
||
.bootstrap input, .bootstrap button, .bootstrap select, .bootstrap textarea {
|
||
font-family: inherit;
|
||
font-size: inherit;
|
||
line-height: inherit;
|
||
}
|
||
.bootstrap a {
|
||
color: #00aff0;
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap a:hover, .bootstrap a:focus {
|
||
color: #0077a3;
|
||
text-decoration: underline;
|
||
}
|
||
.bootstrap a:focus {
|
||
outline: thin dotted;
|
||
outline-offset: -2px;
|
||
}
|
||
.bootstrap figure {
|
||
margin: 0;
|
||
}
|
||
.bootstrap img {
|
||
vertical-align: middle;
|
||
}
|
||
.bootstrap .img-responsive {
|
||
display: block;
|
||
height: auto;
|
||
max-width: 100%;
|
||
}
|
||
.bootstrap .img-rounded {
|
||
border-radius: 6px;
|
||
}
|
||
.bootstrap .img-thumbnail {
|
||
background-color: #fff;
|
||
border: 1px solid #ddd;
|
||
border-radius: 3px;
|
||
display: inline-block;
|
||
height: auto;
|
||
line-height: 1.42857;
|
||
max-width: 100%;
|
||
padding: 4px;
|
||
transition: all 0.2s ease-in-out 0s;
|
||
}
|
||
.bootstrap .img-circle {
|
||
border-radius: 50%;
|
||
}
|
||
.bootstrap hr {
|
||
-moz-border-bottom-colors: none;
|
||
-moz-border-left-colors: none;
|
||
-moz-border-right-colors: none;
|
||
-moz-border-top-colors: none;
|
||
border-color: #eee -moz-use-text-color -moz-use-text-color;
|
||
border-image: none;
|
||
border-right: 0 none;
|
||
border-style: solid none none;
|
||
border-width: 1px 0 0;
|
||
margin-bottom: 17px;
|
||
margin-top: 17px;
|
||
}
|
||
.bootstrap .sr-only {
|
||
border: 0 none;
|
||
clip: rect(0px, 0px, 0px, 0px);
|
||
height: 1px;
|
||
margin: -1px;
|
||
overflow: hidden;
|
||
padding: 0;
|
||
position: absolute;
|
||
width: 1px;
|
||
}
|
||
.bootstrap .sr-only-focusable:active, .bootstrap .sr-only-focusable:focus {
|
||
clip: auto;
|
||
height: auto;
|
||
margin: 0;
|
||
overflow: visible;
|
||
position: static;
|
||
width: auto;
|
||
}
|
||
.bootstrap h1, .bootstrap h2, .bootstrap h3, .bootstrap h4, .bootstrap h5, .bootstrap h6, .bootstrap .h1, .bootstrap .h2, .bootstrap .h3, .bootstrap .h4, .bootstrap .h5, .bootstrap .h6 {
|
||
color: inherit;
|
||
font-family: "Ubuntu Condensed",Helvetica,Arial,sans-serif;
|
||
font-weight: 400;
|
||
line-height: 1.1;
|
||
}
|
||
.bootstrap h1 small, .bootstrap h1 .small, .bootstrap h2 small, .bootstrap h2 .small, .bootstrap h3 small, .bootstrap h3 .small, .bootstrap h4 small, .bootstrap h4 .small, .bootstrap h5 small, .bootstrap h5 .small, .bootstrap h6 small, .bootstrap h6 .small, .bootstrap .h1 small, .bootstrap .h1 .small, .bootstrap .h2 small, .bootstrap .h2 .small, .bootstrap .h3 small, .bootstrap .h3 .small, .bootstrap .h4 small, .bootstrap .h4 .small, .bootstrap .h5 small, .bootstrap .h5 .small, .bootstrap .h6 small, .bootstrap .h6 .small {
|
||
color: #999;
|
||
font-weight: normal;
|
||
line-height: 1;
|
||
}
|
||
.bootstrap h1, .bootstrap .h1, .bootstrap h2, .bootstrap .h2, .bootstrap h3, .bootstrap .h3 {
|
||
margin-bottom: 8.5px;
|
||
margin-top: 17px;
|
||
}
|
||
.bootstrap h1 small, .bootstrap h1 .small, .bootstrap .h1 small, .bootstrap .h1 .small, .bootstrap h2 small, .bootstrap h2 .small, .bootstrap .h2 small, .bootstrap .h2 .small, .bootstrap h3 small, .bootstrap h3 .small, .bootstrap .h3 small, .bootstrap .h3 .small {
|
||
font-size: 65%;
|
||
}
|
||
.bootstrap h4, .bootstrap .h4, .bootstrap h5, .bootstrap .h5, .bootstrap h6, .bootstrap .h6 {
|
||
margin-bottom: 8.5px;
|
||
margin-top: 8.5px;
|
||
}
|
||
.bootstrap h4 small, .bootstrap h4 .small, .bootstrap .h4 small, .bootstrap .h4 .small, .bootstrap h5 small, .bootstrap h5 .small, .bootstrap .h5 small, .bootstrap .h5 .small, .bootstrap h6 small, .bootstrap h6 .small, .bootstrap .h6 small, .bootstrap .h6 .small {
|
||
font-size: 75%;
|
||
}
|
||
.bootstrap h1, .bootstrap .h1 {
|
||
font-size: 31px;
|
||
}
|
||
.bootstrap h2, .bootstrap .h2 {
|
||
font-size: 25px;
|
||
}
|
||
.bootstrap h3, .bootstrap .h3 {
|
||
font-size: 21px;
|
||
}
|
||
.bootstrap h4, .bootstrap .h4 {
|
||
font-size: 15px;
|
||
}
|
||
.bootstrap h5, .bootstrap .h5 {
|
||
font-size: 12px;
|
||
}
|
||
.bootstrap h6, .bootstrap .h6 {
|
||
font-size: 11px;
|
||
}
|
||
.bootstrap p {
|
||
margin: 0 0 8.5px;
|
||
}
|
||
.bootstrap .lead {
|
||
font-size: 13px;
|
||
font-weight: 200;
|
||
line-height: 1.4;
|
||
margin-bottom: 17px;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.bootstrap .lead {
|
||
font-size: 18px;
|
||
}
|
||
}
|
||
.bootstrap small, .bootstrap .small {
|
||
font-size: 85%;
|
||
}
|
||
.bootstrap cite {
|
||
font-style: normal;
|
||
}
|
||
.bootstrap mark, .bootstrap .mark {
|
||
background-color: #fcf8e3;
|
||
padding: 0.2em;
|
||
}
|
||
.bootstrap .text-left {
|
||
text-align: left;
|
||
}
|
||
.bootstrap .text-right {
|
||
text-align: right;
|
||
}
|
||
.bootstrap .text-center {
|
||
text-align: center;
|
||
}
|
||
.bootstrap .text-justify {
|
||
text-align: justify;
|
||
}
|
||
.bootstrap .text-muted, .bootstrap #header_notifs_icon_wrapper .notifs_dropdown .notifs_panel .list_notif .no_notifs, #header_notifs_icon_wrapper .notifs_dropdown .notifs_panel .list_notif .bootstrap .no_notifs, .bootstrap .module_description, .bootstrap .hook_panel_header .hook_title, .bootstrap .hook_panel_header .hook_description {
|
||
color: #999;
|
||
}
|
||
.bootstrap .text-primary {
|
||
color: #00aff0;
|
||
}
|
||
.bootstrap a.text-primary:hover {
|
||
color: #008abd;
|
||
}
|
||
.bootstrap .text-success {
|
||
color: #3c763d;
|
||
}
|
||
.bootstrap a.text-success:hover {
|
||
color: #2b542c;
|
||
}
|
||
.bootstrap .text-info {
|
||
color: #31708f;
|
||
}
|
||
.bootstrap a.text-info:hover {
|
||
color: #245269;
|
||
}
|
||
.bootstrap .text-warning {
|
||
color: #8a6d3b;
|
||
}
|
||
.bootstrap a.text-warning:hover {
|
||
color: #66512c;
|
||
}
|
||
.bootstrap .text-danger {
|
||
color: #a94442;
|
||
}
|
||
.bootstrap a.text-danger:hover {
|
||
color: #843534;
|
||
}
|
||
.bootstrap .bg-primary {
|
||
color: #fff;
|
||
}
|
||
.bootstrap .bg-primary {
|
||
background-color: #00aff0;
|
||
}
|
||
.bootstrap a.bg-primary:hover {
|
||
background-color: #008abd;
|
||
}
|
||
.bootstrap .bg-success {
|
||
background-color: #dff0d8;
|
||
}
|
||
.bootstrap a.bg-success:hover {
|
||
background-color: #c1e2b3;
|
||
}
|
||
.bootstrap .bg-info {
|
||
background-color: #d9edf7;
|
||
}
|
||
.bootstrap a.bg-info:hover {
|
||
background-color: #afd9ee;
|
||
}
|
||
.bootstrap .bg-warning {
|
||
background-color: #fcf8e3;
|
||
}
|
||
.bootstrap a.bg-warning:hover {
|
||
background-color: #f7ecb5;
|
||
}
|
||
.bootstrap .bg-danger {
|
||
background-color: #f2dede;
|
||
}
|
||
.bootstrap a.bg-danger:hover {
|
||
background-color: #e4b9b9;
|
||
}
|
||
.bootstrap .page-header {
|
||
border-bottom: 1px solid #eee;
|
||
margin: 34px 0 17px;
|
||
padding-bottom: 7.5px;
|
||
}
|
||
.bootstrap ul, .bootstrap ol {
|
||
margin-bottom: 8.5px;
|
||
margin-top: 0;
|
||
}
|
||
.bootstrap ul ul, .bootstrap ul ol, .bootstrap ol ul, .bootstrap ol ol {
|
||
margin-bottom: 0;
|
||
}
|
||
.bootstrap .list-unstyled, .bootstrap .list-inline, .bootstrap #dashboard .data_list_large, .bootstrap #dashboard .data_list_vertical {
|
||
list-style: outside none none;
|
||
padding-left: 0;
|
||
}
|
||
.bootstrap .list-inline {
|
||
margin-left: -5px;
|
||
}
|
||
.bootstrap .list-inline > li {
|
||
display: inline-block;
|
||
padding-left: 5px;
|
||
padding-right: 5px;
|
||
}
|
||
.bootstrap dl {
|
||
margin-bottom: 17px;
|
||
margin-top: 0;
|
||
}
|
||
.bootstrap dt, .bootstrap dd {
|
||
line-height: 1.42857;
|
||
}
|
||
.bootstrap dt {
|
||
font-weight: bold;
|
||
}
|
||
.bootstrap dd {
|
||
margin-left: 0;
|
||
}
|
||
.bootstrap .dl-horizontal dd:before, .bootstrap .dl-horizontal dd:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
.bootstrap .dl-horizontal dd:after {
|
||
clear: both;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.bootstrap .dl-horizontal dt {
|
||
clear: left;
|
||
float: left;
|
||
overflow: hidden;
|
||
text-align: right;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
width: 160px;
|
||
}
|
||
.bootstrap .dl-horizontal dd {
|
||
margin-left: 180px;
|
||
}
|
||
}
|
||
.bootstrap abbr[title], .bootstrap abbr[data-original-title] {
|
||
border-bottom: 1px dotted #999;
|
||
cursor: help;
|
||
}
|
||
.bootstrap .initialism {
|
||
font-size: 90%;
|
||
text-transform: uppercase;
|
||
}
|
||
.bootstrap blockquote {
|
||
border-left: 5px solid #eee;
|
||
font-size: 15px;
|
||
margin: 0 0 17px;
|
||
padding: 8.5px 17px;
|
||
}
|
||
.bootstrap blockquote p:last-child, .bootstrap blockquote ul:last-child, .bootstrap blockquote ol:last-child {
|
||
margin-bottom: 0;
|
||
}
|
||
.bootstrap blockquote footer, .bootstrap blockquote small, .bootstrap blockquote .small {
|
||
color: #999;
|
||
display: block;
|
||
font-size: 80%;
|
||
line-height: 1.42857;
|
||
}
|
||
.bootstrap blockquote footer:before, .bootstrap blockquote small:before, .bootstrap blockquote .small:before {
|
||
content: "— ";
|
||
}
|
||
.bootstrap .blockquote-reverse, .bootstrap blockquote.pull-right {
|
||
border-left: 0 none;
|
||
border-right: 5px solid #eee;
|
||
padding-left: 0;
|
||
padding-right: 15px;
|
||
text-align: right;
|
||
}
|
||
.bootstrap .blockquote-reverse footer:before, .bootstrap .blockquote-reverse small:before, .bootstrap .blockquote-reverse .small:before, .bootstrap blockquote.pull-right footer:before, .bootstrap blockquote.pull-right small:before, .bootstrap blockquote.pull-right .small:before {
|
||
content: "";
|
||
}
|
||
.bootstrap .blockquote-reverse footer:after, .bootstrap .blockquote-reverse small:after, .bootstrap .blockquote-reverse .small:after, .bootstrap blockquote.pull-right footer:after, .bootstrap blockquote.pull-right small:after, .bootstrap blockquote.pull-right .small:after {
|
||
content: " —";
|
||
}
|
||
.bootstrap blockquote:before, .bootstrap blockquote:after {
|
||
content: "";
|
||
}
|
||
.bootstrap address {
|
||
font-style: normal;
|
||
line-height: 1.42857;
|
||
margin-bottom: 17px;
|
||
}
|
||
.bootstrap code, .bootstrap kbd, .bootstrap pre, .bootstrap samp {
|
||
font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
|
||
}
|
||
.bootstrap code {
|
||
background-color: #f9f2f4;
|
||
border-radius: 3px;
|
||
color: #c7254e;
|
||
font-size: 90%;
|
||
padding: 2px 4px;
|
||
}
|
||
.bootstrap kbd {
|
||
background-color: #333;
|
||
border-radius: 3px;
|
||
box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25) inset;
|
||
color: #fff;
|
||
font-size: 90%;
|
||
padding: 2px 4px;
|
||
}
|
||
.bootstrap pre {
|
||
background-color: #f5f5f5;
|
||
border: 1px solid #ccc;
|
||
border-radius: 3px;
|
||
color: #333;
|
||
display: block;
|
||
font-size: 11px;
|
||
line-height: 1.42857;
|
||
margin: 0 0 8.5px;
|
||
padding: 8px;
|
||
word-break: break-all;
|
||
word-wrap: break-word;
|
||
}
|
||
.bootstrap pre code {
|
||
background-color: transparent;
|
||
border-radius: 0;
|
||
color: inherit;
|
||
font-size: inherit;
|
||
padding: 0;
|
||
white-space: pre-wrap;
|
||
}
|
||
.bootstrap .pre-scrollable {
|
||
max-height: 340px;
|
||
overflow-y: scroll;
|
||
}
|
||
.bootstrap .container {
|
||
margin-left: auto;
|
||
margin-right: auto;
|
||
padding-left: 5px;
|
||
padding-right: 5px;
|
||
}
|
||
.bootstrap .container:before, .bootstrap .container:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
.bootstrap .container:after {
|
||
clear: both;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.bootstrap .container {
|
||
width: 728px;
|
||
}
|
||
}
|
||
@media (min-width: 992px) {
|
||
.bootstrap .container {
|
||
width: 940px;
|
||
}
|
||
}
|
||
@media (min-width: 1200px) {
|
||
.bootstrap .container {
|
||
width: 1170px;
|
||
}
|
||
}
|
||
.bootstrap .container-fluid {
|
||
margin-left: auto;
|
||
margin-right: auto;
|
||
padding-left: 5px;
|
||
padding-right: 5px;
|
||
}
|
||
.bootstrap .container-fluid:before, .bootstrap .container-fluid:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
.bootstrap .container-fluid:after {
|
||
clear: both;
|
||
}
|
||
.bootstrap .row, .bootstrap .multishop-well, .bootstrap #dashboard .data_list_vertical {
|
||
margin-left: -5px;
|
||
margin-right: -5px;
|
||
}
|
||
.bootstrap .row:before, .bootstrap .multishop-well:before, .bootstrap #dashboard .data_list_vertical:before, .bootstrap .row:after, .bootstrap .multishop-well:after, .bootstrap #dashboard .data_list_vertical:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
.bootstrap .row:after, .bootstrap .multishop-well:after, .bootstrap #dashboard .data_list_vertical:after {
|
||
clear: both;
|
||
}
|
||
.bootstrap .col-xs-1, .bootstrap .col-sm-1, .bootstrap .col-md-1, .bootstrap .col-lg-1, .bootstrap .col-xs-2, .bootstrap .col-sm-2, .bootstrap .col-md-2, .bootstrap .col-lg-2, .bootstrap .col-xs-3, .bootstrap .col-sm-3, .bootstrap .col-md-3, .bootstrap .col-lg-3, .bootstrap .col-xs-4, .bootstrap .col-sm-4, .bootstrap .col-md-4, .bootstrap .col-lg-4, .bootstrap .col-xs-5, .bootstrap .col-sm-5, .bootstrap .col-md-5, .bootstrap .col-lg-5, .bootstrap .col-xs-6, .bootstrap #dashboard .data_list_vertical li, .bootstrap .col-sm-6, .bootstrap .col-md-6, .bootstrap .col-lg-6, .bootstrap .col-xs-7, .bootstrap .col-sm-7, .bootstrap .col-md-7, .bootstrap .col-lg-7, .bootstrap .col-xs-8, .bootstrap .col-sm-8, .bootstrap .col-md-8, .bootstrap .col-lg-8, .bootstrap .col-xs-9, .bootstrap .col-sm-9, .bootstrap .col-md-9, .bootstrap .col-lg-9, .bootstrap .col-xs-10, .bootstrap .col-sm-10, .bootstrap .col-md-10, .bootstrap .col-lg-10, .bootstrap .col-xs-11, .bootstrap .col-sm-11, .bootstrap .col-md-11, .bootstrap .col-lg-11, .bootstrap .col-xs-12, .bootstrap .col-sm-12, .bootstrap .col-md-12, .bootstrap .col-lg-12 {
|
||
min-height: 1px;
|
||
padding-left: 5px;
|
||
padding-right: 5px;
|
||
position: relative;
|
||
}
|
||
.bootstrap .col-xs-1, .bootstrap .col-xs-2, .bootstrap .col-xs-3, .bootstrap .col-xs-4, .bootstrap .col-xs-5, .bootstrap .col-xs-6, .bootstrap #dashboard .data_list_vertical li, .bootstrap .col-xs-7, .bootstrap .col-xs-8, .bootstrap .col-xs-9, .bootstrap .col-xs-10, .bootstrap .col-xs-11, .bootstrap .col-xs-12 {
|
||
float: left;
|
||
}
|
||
.bootstrap .col-xs-1 {
|
||
width: 8.33333%;
|
||
}
|
||
.bootstrap .col-xs-2 {
|
||
width: 16.6667%;
|
||
}
|
||
.bootstrap .col-xs-3 {
|
||
width: 25%;
|
||
}
|
||
.bootstrap .col-xs-4 {
|
||
width: 33.3333%;
|
||
}
|
||
.bootstrap .col-xs-5 {
|
||
width: 41.6667%;
|
||
}
|
||
.bootstrap .col-xs-6, .bootstrap #dashboard .data_list_vertical li {
|
||
width: 50%;
|
||
}
|
||
.bootstrap .col-xs-7 {
|
||
width: 58.3333%;
|
||
}
|
||
.bootstrap .col-xs-8 {
|
||
width: 66.6667%;
|
||
}
|
||
.bootstrap .col-xs-9 {
|
||
width: 75%;
|
||
}
|
||
.bootstrap .col-xs-10 {
|
||
width: 83.3333%;
|
||
}
|
||
.bootstrap .col-xs-11 {
|
||
width: 91.6667%;
|
||
}
|
||
.bootstrap .col-xs-12 {
|
||
width: 100%;
|
||
}
|
||
.bootstrap .col-xs-pull-0 {
|
||
right: auto;
|
||
}
|
||
.bootstrap .col-xs-pull-1 {
|
||
right: 8.33333%;
|
||
}
|
||
.bootstrap .col-xs-pull-2 {
|
||
right: 16.6667%;
|
||
}
|
||
.bootstrap .col-xs-pull-3 {
|
||
right: 25%;
|
||
}
|
||
.bootstrap .col-xs-pull-4 {
|
||
right: 33.3333%;
|
||
}
|
||
.bootstrap .col-xs-pull-5 {
|
||
right: 41.6667%;
|
||
}
|
||
.bootstrap .col-xs-pull-6 {
|
||
right: 50%;
|
||
}
|
||
.bootstrap .col-xs-pull-7 {
|
||
right: 58.3333%;
|
||
}
|
||
.bootstrap .col-xs-pull-8 {
|
||
right: 66.6667%;
|
||
}
|
||
.bootstrap .col-xs-pull-9 {
|
||
right: 75%;
|
||
}
|
||
.bootstrap .col-xs-pull-10 {
|
||
right: 83.3333%;
|
||
}
|
||
.bootstrap .col-xs-pull-11 {
|
||
right: 91.6667%;
|
||
}
|
||
.bootstrap .col-xs-pull-12 {
|
||
right: 100%;
|
||
}
|
||
.bootstrap .col-xs-push-0 {
|
||
left: auto;
|
||
}
|
||
.bootstrap .col-xs-push-1 {
|
||
left: 8.33333%;
|
||
}
|
||
.bootstrap .col-xs-push-2 {
|
||
left: 16.6667%;
|
||
}
|
||
.bootstrap .col-xs-push-3 {
|
||
left: 25%;
|
||
}
|
||
.bootstrap .col-xs-push-4 {
|
||
left: 33.3333%;
|
||
}
|
||
.bootstrap .col-xs-push-5 {
|
||
left: 41.6667%;
|
||
}
|
||
.bootstrap .col-xs-push-6 {
|
||
left: 50%;
|
||
}
|
||
.bootstrap .col-xs-push-7 {
|
||
left: 58.3333%;
|
||
}
|
||
.bootstrap .col-xs-push-8 {
|
||
left: 66.6667%;
|
||
}
|
||
.bootstrap .col-xs-push-9 {
|
||
left: 75%;
|
||
}
|
||
.bootstrap .col-xs-push-10 {
|
||
left: 83.3333%;
|
||
}
|
||
.bootstrap .col-xs-push-11 {
|
||
left: 91.6667%;
|
||
}
|
||
.bootstrap .col-xs-push-12 {
|
||
left: 100%;
|
||
}
|
||
.bootstrap .col-xs-offset-0 {
|
||
margin-left: 0;
|
||
}
|
||
.bootstrap .col-xs-offset-1 {
|
||
margin-left: 8.33333%;
|
||
}
|
||
.bootstrap .col-xs-offset-2 {
|
||
margin-left: 16.6667%;
|
||
}
|
||
.bootstrap .col-xs-offset-3 {
|
||
margin-left: 25%;
|
||
}
|
||
.bootstrap .col-xs-offset-4 {
|
||
margin-left: 33.3333%;
|
||
}
|
||
.bootstrap .col-xs-offset-5 {
|
||
margin-left: 41.6667%;
|
||
}
|
||
.bootstrap .col-xs-offset-6 {
|
||
margin-left: 50%;
|
||
}
|
||
.bootstrap .col-xs-offset-7 {
|
||
margin-left: 58.3333%;
|
||
}
|
||
.bootstrap .col-xs-offset-8 {
|
||
margin-left: 66.6667%;
|
||
}
|
||
.bootstrap .col-xs-offset-9 {
|
||
margin-left: 75%;
|
||
}
|
||
.bootstrap .col-xs-offset-10 {
|
||
margin-left: 83.3333%;
|
||
}
|
||
.bootstrap .col-xs-offset-11 {
|
||
margin-left: 91.6667%;
|
||
}
|
||
.bootstrap .col-xs-offset-12 {
|
||
margin-left: 100%;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.bootstrap .col-sm-1, .bootstrap .col-sm-2, .bootstrap .col-sm-3, .bootstrap .col-sm-4, .bootstrap .col-sm-5, .bootstrap .col-sm-6, .bootstrap .col-sm-7, .bootstrap .col-sm-8, .bootstrap .col-sm-9, .bootstrap .col-sm-10, .bootstrap .col-sm-11, .bootstrap .col-sm-12 {
|
||
float: left;
|
||
}
|
||
.bootstrap .col-sm-1 {
|
||
width: 8.33333%;
|
||
}
|
||
.bootstrap .col-sm-2 {
|
||
width: 16.6667%;
|
||
}
|
||
.bootstrap .col-sm-3 {
|
||
width: 25%;
|
||
}
|
||
.bootstrap .col-sm-4 {
|
||
width: 33.3333%;
|
||
}
|
||
.bootstrap .col-sm-5 {
|
||
width: 41.6667%;
|
||
}
|
||
.bootstrap .col-sm-6 {
|
||
width: 50%;
|
||
}
|
||
.bootstrap .col-sm-7 {
|
||
width: 58.3333%;
|
||
}
|
||
.bootstrap .col-sm-8 {
|
||
width: 66.6667%;
|
||
}
|
||
.bootstrap .col-sm-9 {
|
||
width: 75%;
|
||
}
|
||
.bootstrap .col-sm-10 {
|
||
width: 83.3333%;
|
||
}
|
||
.bootstrap .col-sm-11 {
|
||
width: 91.6667%;
|
||
}
|
||
.bootstrap .col-sm-12 {
|
||
width: 100%;
|
||
}
|
||
.bootstrap .col-sm-pull-0 {
|
||
right: auto;
|
||
}
|
||
.bootstrap .col-sm-pull-1 {
|
||
right: 8.33333%;
|
||
}
|
||
.bootstrap .col-sm-pull-2 {
|
||
right: 16.6667%;
|
||
}
|
||
.bootstrap .col-sm-pull-3 {
|
||
right: 25%;
|
||
}
|
||
.bootstrap .col-sm-pull-4 {
|
||
right: 33.3333%;
|
||
}
|
||
.bootstrap .col-sm-pull-5 {
|
||
right: 41.6667%;
|
||
}
|
||
.bootstrap .col-sm-pull-6 {
|
||
right: 50%;
|
||
}
|
||
.bootstrap .col-sm-pull-7 {
|
||
right: 58.3333%;
|
||
}
|
||
.bootstrap .col-sm-pull-8 {
|
||
right: 66.6667%;
|
||
}
|
||
.bootstrap .col-sm-pull-9 {
|
||
right: 75%;
|
||
}
|
||
.bootstrap .col-sm-pull-10 {
|
||
right: 83.3333%;
|
||
}
|
||
.bootstrap .col-sm-pull-11 {
|
||
right: 91.6667%;
|
||
}
|
||
.bootstrap .col-sm-pull-12 {
|
||
right: 100%;
|
||
}
|
||
.bootstrap .col-sm-push-0 {
|
||
left: auto;
|
||
}
|
||
.bootstrap .col-sm-push-1 {
|
||
left: 8.33333%;
|
||
}
|
||
.bootstrap .col-sm-push-2 {
|
||
left: 16.6667%;
|
||
}
|
||
.bootstrap .col-sm-push-3 {
|
||
left: 25%;
|
||
}
|
||
.bootstrap .col-sm-push-4 {
|
||
left: 33.3333%;
|
||
}
|
||
.bootstrap .col-sm-push-5 {
|
||
left: 41.6667%;
|
||
}
|
||
.bootstrap .col-sm-push-6 {
|
||
left: 50%;
|
||
}
|
||
.bootstrap .col-sm-push-7 {
|
||
left: 58.3333%;
|
||
}
|
||
.bootstrap .col-sm-push-8 {
|
||
left: 66.6667%;
|
||
}
|
||
.bootstrap .col-sm-push-9 {
|
||
left: 75%;
|
||
}
|
||
.bootstrap .col-sm-push-10 {
|
||
left: 83.3333%;
|
||
}
|
||
.bootstrap .col-sm-push-11 {
|
||
left: 91.6667%;
|
||
}
|
||
.bootstrap .col-sm-push-12 {
|
||
left: 100%;
|
||
}
|
||
.bootstrap .col-sm-offset-0 {
|
||
margin-left: 0;
|
||
}
|
||
.bootstrap .col-sm-offset-1 {
|
||
margin-left: 8.33333%;
|
||
}
|
||
.bootstrap .col-sm-offset-2 {
|
||
margin-left: 16.6667%;
|
||
}
|
||
.bootstrap .col-sm-offset-3 {
|
||
margin-left: 25%;
|
||
}
|
||
.bootstrap .col-sm-offset-4 {
|
||
margin-left: 33.3333%;
|
||
}
|
||
.bootstrap .col-sm-offset-5 {
|
||
margin-left: 41.6667%;
|
||
}
|
||
.bootstrap .col-sm-offset-6 {
|
||
margin-left: 50%;
|
||
}
|
||
.bootstrap .col-sm-offset-7 {
|
||
margin-left: 58.3333%;
|
||
}
|
||
.bootstrap .col-sm-offset-8 {
|
||
margin-left: 66.6667%;
|
||
}
|
||
.bootstrap .col-sm-offset-9 {
|
||
margin-left: 75%;
|
||
}
|
||
.bootstrap .col-sm-offset-10 {
|
||
margin-left: 83.3333%;
|
||
}
|
||
.bootstrap .col-sm-offset-11 {
|
||
margin-left: 91.6667%;
|
||
}
|
||
.bootstrap .col-sm-offset-12 {
|
||
margin-left: 100%;
|
||
}
|
||
}
|
||
@media (min-width: 992px) {
|
||
.bootstrap .col-md-1, .bootstrap .col-md-2, .bootstrap .col-md-3, .bootstrap .col-md-4, .bootstrap .col-md-5, .bootstrap .col-md-6, .bootstrap .col-md-7, .bootstrap .col-md-8, .bootstrap .col-md-9, .bootstrap .col-md-10, .bootstrap .col-md-11, .bootstrap .col-md-12 {
|
||
float: left;
|
||
}
|
||
.bootstrap .col-md-1 {
|
||
width: 8.33333%;
|
||
}
|
||
.bootstrap .col-md-2 {
|
||
width: 16.6667%;
|
||
}
|
||
.bootstrap .col-md-3 {
|
||
width: 25%;
|
||
}
|
||
.bootstrap .col-md-4 {
|
||
width: 33.3333%;
|
||
}
|
||
.bootstrap .col-md-5 {
|
||
width: 41.6667%;
|
||
}
|
||
.bootstrap .col-md-6 {
|
||
width: 50%;
|
||
}
|
||
.bootstrap .col-md-7 {
|
||
width: 58.3333%;
|
||
}
|
||
.bootstrap .col-md-8 {
|
||
width: 66.6667%;
|
||
}
|
||
.bootstrap .col-md-9 {
|
||
width: 75%;
|
||
}
|
||
.bootstrap .col-md-10 {
|
||
width: 83.3333%;
|
||
}
|
||
.bootstrap .col-md-11 {
|
||
width: 91.6667%;
|
||
}
|
||
.bootstrap .col-md-12 {
|
||
width: 100%;
|
||
}
|
||
.bootstrap .col-md-pull-0 {
|
||
right: auto;
|
||
}
|
||
.bootstrap .col-md-pull-1 {
|
||
right: 8.33333%;
|
||
}
|
||
.bootstrap .col-md-pull-2 {
|
||
right: 16.6667%;
|
||
}
|
||
.bootstrap .col-md-pull-3 {
|
||
right: 25%;
|
||
}
|
||
.bootstrap .col-md-pull-4 {
|
||
right: 33.3333%;
|
||
}
|
||
.bootstrap .col-md-pull-5 {
|
||
right: 41.6667%;
|
||
}
|
||
.bootstrap .col-md-pull-6 {
|
||
right: 50%;
|
||
}
|
||
.bootstrap .col-md-pull-7 {
|
||
right: 58.3333%;
|
||
}
|
||
.bootstrap .col-md-pull-8 {
|
||
right: 66.6667%;
|
||
}
|
||
.bootstrap .col-md-pull-9 {
|
||
right: 75%;
|
||
}
|
||
.bootstrap .col-md-pull-10 {
|
||
right: 83.3333%;
|
||
}
|
||
.bootstrap .col-md-pull-11 {
|
||
right: 91.6667%;
|
||
}
|
||
.bootstrap .col-md-pull-12 {
|
||
right: 100%;
|
||
}
|
||
.bootstrap .col-md-push-0 {
|
||
left: auto;
|
||
}
|
||
.bootstrap .col-md-push-1 {
|
||
left: 8.33333%;
|
||
}
|
||
.bootstrap .col-md-push-2 {
|
||
left: 16.6667%;
|
||
}
|
||
.bootstrap .col-md-push-3 {
|
||
left: 25%;
|
||
}
|
||
.bootstrap .col-md-push-4 {
|
||
left: 33.3333%;
|
||
}
|
||
.bootstrap .col-md-push-5 {
|
||
left: 41.6667%;
|
||
}
|
||
.bootstrap .col-md-push-6 {
|
||
left: 50%;
|
||
}
|
||
.bootstrap .col-md-push-7 {
|
||
left: 58.3333%;
|
||
}
|
||
.bootstrap .col-md-push-8 {
|
||
left: 66.6667%;
|
||
}
|
||
.bootstrap .col-md-push-9 {
|
||
left: 75%;
|
||
}
|
||
.bootstrap .col-md-push-10 {
|
||
left: 83.3333%;
|
||
}
|
||
.bootstrap .col-md-push-11 {
|
||
left: 91.6667%;
|
||
}
|
||
.bootstrap .col-md-push-12 {
|
||
left: 100%;
|
||
}
|
||
.bootstrap .col-md-offset-0 {
|
||
margin-left: 0;
|
||
}
|
||
.bootstrap .col-md-offset-1 {
|
||
margin-left: 8.33333%;
|
||
}
|
||
.bootstrap .col-md-offset-2 {
|
||
margin-left: 16.6667%;
|
||
}
|
||
.bootstrap .col-md-offset-3 {
|
||
margin-left: 25%;
|
||
}
|
||
.bootstrap .col-md-offset-4 {
|
||
margin-left: 33.3333%;
|
||
}
|
||
.bootstrap .col-md-offset-5 {
|
||
margin-left: 41.6667%;
|
||
}
|
||
.bootstrap .col-md-offset-6 {
|
||
margin-left: 50%;
|
||
}
|
||
.bootstrap .col-md-offset-7 {
|
||
margin-left: 58.3333%;
|
||
}
|
||
.bootstrap .col-md-offset-8 {
|
||
margin-left: 66.6667%;
|
||
}
|
||
.bootstrap .col-md-offset-9 {
|
||
margin-left: 75%;
|
||
}
|
||
.bootstrap .col-md-offset-10 {
|
||
margin-left: 83.3333%;
|
||
}
|
||
.bootstrap .col-md-offset-11 {
|
||
margin-left: 91.6667%;
|
||
}
|
||
.bootstrap .col-md-offset-12 {
|
||
margin-left: 100%;
|
||
}
|
||
}
|
||
@media (min-width: 1200px) {
|
||
.bootstrap .col-lg-1, .bootstrap .col-lg-2, .bootstrap .col-lg-3, .bootstrap .col-lg-4, .bootstrap .col-lg-5, .bootstrap .col-lg-6, .bootstrap .col-lg-7, .bootstrap .col-lg-8, .bootstrap .col-lg-9, .bootstrap .col-lg-10, .bootstrap .col-lg-11, .bootstrap .col-lg-12 {
|
||
float: left;
|
||
}
|
||
.bootstrap .col-lg-1 {
|
||
width: 8.33333%;
|
||
}
|
||
.bootstrap .col-lg-2 {
|
||
width: 16.6667%;
|
||
}
|
||
.bootstrap .col-lg-3 {
|
||
width: 25%;
|
||
}
|
||
.bootstrap .col-lg-4 {
|
||
width: 33.3333%;
|
||
}
|
||
.bootstrap .col-lg-5 {
|
||
width: 41.6667%;
|
||
}
|
||
.bootstrap .col-lg-6 {
|
||
width: 50%;
|
||
}
|
||
.bootstrap .col-lg-7 {
|
||
width: 58.3333%;
|
||
}
|
||
.bootstrap .col-lg-8 {
|
||
width: 66.6667%;
|
||
}
|
||
.bootstrap .col-lg-9 {
|
||
width: 75%;
|
||
}
|
||
.bootstrap .col-lg-10 {
|
||
width: 83.3333%;
|
||
}
|
||
.bootstrap .col-lg-11 {
|
||
width: 91.6667%;
|
||
}
|
||
.bootstrap .col-lg-12 {
|
||
width: 100%;
|
||
}
|
||
.bootstrap .col-lg-pull-0 {
|
||
right: auto;
|
||
}
|
||
.bootstrap .col-lg-pull-1 {
|
||
right: 8.33333%;
|
||
}
|
||
.bootstrap .col-lg-pull-2 {
|
||
right: 16.6667%;
|
||
}
|
||
.bootstrap .col-lg-pull-3 {
|
||
right: 25%;
|
||
}
|
||
.bootstrap .col-lg-pull-4 {
|
||
right: 33.3333%;
|
||
}
|
||
.bootstrap .col-lg-pull-5 {
|
||
right: 41.6667%;
|
||
}
|
||
.bootstrap .col-lg-pull-6 {
|
||
right: 50%;
|
||
}
|
||
.bootstrap .col-lg-pull-7 {
|
||
right: 58.3333%;
|
||
}
|
||
.bootstrap .col-lg-pull-8 {
|
||
right: 66.6667%;
|
||
}
|
||
.bootstrap .col-lg-pull-9 {
|
||
right: 75%;
|
||
}
|
||
.bootstrap .col-lg-pull-10 {
|
||
right: 83.3333%;
|
||
}
|
||
.bootstrap .col-lg-pull-11 {
|
||
right: 91.6667%;
|
||
}
|
||
.bootstrap .col-lg-pull-12 {
|
||
right: 100%;
|
||
}
|
||
.bootstrap .col-lg-push-0 {
|
||
left: auto;
|
||
}
|
||
.bootstrap .col-lg-push-1 {
|
||
left: 8.33333%;
|
||
}
|
||
.bootstrap .col-lg-push-2 {
|
||
left: 16.6667%;
|
||
}
|
||
.bootstrap .col-lg-push-3 {
|
||
left: 25%;
|
||
}
|
||
.bootstrap .col-lg-push-4 {
|
||
left: 33.3333%;
|
||
}
|
||
.bootstrap .col-lg-push-5 {
|
||
left: 41.6667%;
|
||
}
|
||
.bootstrap .col-lg-push-6 {
|
||
left: 50%;
|
||
}
|
||
.bootstrap .col-lg-push-7 {
|
||
left: 58.3333%;
|
||
}
|
||
.bootstrap .col-lg-push-8 {
|
||
left: 66.6667%;
|
||
}
|
||
.bootstrap .col-lg-push-9 {
|
||
left: 75%;
|
||
}
|
||
.bootstrap .col-lg-push-10 {
|
||
left: 83.3333%;
|
||
}
|
||
.bootstrap .col-lg-push-11 {
|
||
left: 91.6667%;
|
||
}
|
||
.bootstrap .col-lg-push-12 {
|
||
left: 100%;
|
||
}
|
||
.bootstrap .col-lg-offset-0 {
|
||
margin-left: 0;
|
||
}
|
||
.bootstrap .col-lg-offset-1 {
|
||
margin-left: 8.33333%;
|
||
}
|
||
.bootstrap .col-lg-offset-2 {
|
||
margin-left: 16.6667%;
|
||
}
|
||
.bootstrap .col-lg-offset-3 {
|
||
margin-left: 25%;
|
||
}
|
||
.bootstrap .col-lg-offset-4 {
|
||
margin-left: 33.3333%;
|
||
}
|
||
.bootstrap .col-lg-offset-5 {
|
||
margin-left: 41.6667%;
|
||
}
|
||
.bootstrap .col-lg-offset-6 {
|
||
margin-left: 50%;
|
||
}
|
||
.bootstrap .col-lg-offset-7 {
|
||
margin-left: 58.3333%;
|
||
}
|
||
.bootstrap .col-lg-offset-8 {
|
||
margin-left: 66.6667%;
|
||
}
|
||
.bootstrap .col-lg-offset-9 {
|
||
margin-left: 75%;
|
||
}
|
||
.bootstrap .col-lg-offset-10 {
|
||
margin-left: 83.3333%;
|
||
}
|
||
.bootstrap .col-lg-offset-11 {
|
||
margin-left: 91.6667%;
|
||
}
|
||
.bootstrap .col-lg-offset-12 {
|
||
margin-left: 100%;
|
||
}
|
||
}
|
||
.bootstrap table {
|
||
background-color: transparent;
|
||
max-width: 100%;
|
||
}
|
||
.bootstrap th {
|
||
text-align: left;
|
||
}
|
||
.bootstrap .table {
|
||
margin-bottom: 17px;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .table > thead > tr > th, .bootstrap .table > thead > tr > td, .bootstrap .table > tbody > tr > th, .bootstrap .table > tbody > tr > td, .bootstrap .table > tfoot > tr > th, .bootstrap .table > tfoot > tr > td {
|
||
border-top: 1px solid #ddd;
|
||
line-height: 1.42857;
|
||
padding: 8px;
|
||
vertical-align: top;
|
||
}
|
||
.bootstrap .table > thead > tr > th {
|
||
border-bottom: 2px solid #ddd;
|
||
vertical-align: bottom;
|
||
}
|
||
.bootstrap .table > caption + thead > tr:first-child > th, .bootstrap .table > caption + thead > tr:first-child > td, .bootstrap .table > colgroup + thead > tr:first-child > th, .bootstrap .table > colgroup + thead > tr:first-child > td, .bootstrap .table > thead:first-child > tr:first-child > th, .bootstrap .table > thead:first-child > tr:first-child > td {
|
||
border-top: 0 none;
|
||
}
|
||
.bootstrap .table > tbody + tbody {
|
||
border-top: 2px solid #ddd;
|
||
}
|
||
.bootstrap .table .table {
|
||
background-color: #fff;
|
||
}
|
||
.bootstrap .table-condensed > thead > tr > th, .bootstrap .table-condensed > thead > tr > td, .bootstrap .table-condensed > tbody > tr > th, .bootstrap .table-condensed > tbody > tr > td, .bootstrap .table-condensed > tfoot > tr > th, .bootstrap .table-condensed > tfoot > tr > td {
|
||
padding: 5px;
|
||
}
|
||
.bootstrap .table-bordered {
|
||
border: 1px solid #ddd;
|
||
}
|
||
.bootstrap .table-bordered > thead > tr > th, .bootstrap .table-bordered > thead > tr > td, .bootstrap .table-bordered > tbody > tr > th, .bootstrap .table-bordered > tbody > tr > td, .bootstrap .table-bordered > tfoot > tr > th, .bootstrap .table-bordered > tfoot > tr > td {
|
||
border: 1px solid #ddd;
|
||
}
|
||
.bootstrap .table-bordered > thead > tr > th, .bootstrap .table-bordered > thead > tr > td {
|
||
border-bottom-width: 2px;
|
||
}
|
||
.bootstrap .table-striped > tbody > tr:nth-child(2n+1) > td, .bootstrap .table-striped > tbody > tr:nth-child(2n+1) > th {
|
||
background-color: #f9f9f9;
|
||
}
|
||
.bootstrap .table-hover > tbody > tr:hover > td, .bootstrap .table-hover > tbody > tr:hover > th {
|
||
background-color: #edf7fb;
|
||
}
|
||
.bootstrap table col[class*="col-"] {
|
||
display: table-column;
|
||
float: none;
|
||
position: static;
|
||
}
|
||
.bootstrap table td[class*="col-"], .bootstrap table th[class*="col-"] {
|
||
display: table-cell;
|
||
float: none;
|
||
position: static;
|
||
}
|
||
.bootstrap .table > thead > tr > td.active, .bootstrap .table > thead > tr > th.active, .bootstrap .table > thead > tr.active > td, .bootstrap .table > thead > tr.active > th, .bootstrap .table > tbody > tr > td.active, .bootstrap .table > tbody > tr > th.active, .bootstrap .table > tbody > tr.active > td, .bootstrap .table > tbody > tr.active > th, .bootstrap .table > tfoot > tr > td.active, .bootstrap .table > tfoot > tr > th.active, .bootstrap .table > tfoot > tr.active > td, .bootstrap .table > tfoot > tr.active > th {
|
||
background-color: #edf7fb;
|
||
}
|
||
.bootstrap .table-hover > tbody > tr > td.active:hover, .bootstrap .table-hover > tbody > tr > th.active:hover, .bootstrap .table-hover > tbody > tr.active:hover > td, .bootstrap .table-hover > tbody > tr:hover > .active, .bootstrap .table-hover > tbody > tr.active:hover > th {
|
||
background-color: #d8eef6;
|
||
}
|
||
.bootstrap .table > thead > tr > td.success, .bootstrap .table > thead > tr > th.success, .bootstrap .table > thead > tr.success > td, .bootstrap .table > thead > tr.success > th, .bootstrap .table > tbody > tr > td.success, .bootstrap .table > tbody > tr > th.success, .bootstrap .table > tbody > tr.success > td, .bootstrap .table > tbody > tr.success > th, .bootstrap .table > tfoot > tr > td.success, .bootstrap .table > tfoot > tr > th.success, .bootstrap .table > tfoot > tr.success > td, .bootstrap .table > tfoot > tr.success > th {
|
||
background-color: #dff0d8;
|
||
}
|
||
.bootstrap .table-hover > tbody > tr > td.success:hover, .bootstrap .table-hover > tbody > tr > th.success:hover, .bootstrap .table-hover > tbody > tr.success:hover > td, .bootstrap .table-hover > tbody > tr:hover > .success, .bootstrap .table-hover > tbody > tr.success:hover > th {
|
||
background-color: #d0e9c6;
|
||
}
|
||
.bootstrap .table > thead > tr > td.info, .bootstrap .table > thead > tr > th.info, .bootstrap .table > thead > tr.info > td, .bootstrap .table > thead > tr.info > th, .bootstrap .table > tbody > tr > td.info, .bootstrap .table > tbody > tr > th.info, .bootstrap .table > tbody > tr.info > td, .bootstrap .table > tbody > tr.info > th, .bootstrap .table > tfoot > tr > td.info, .bootstrap .table > tfoot > tr > th.info, .bootstrap .table > tfoot > tr.info > td, .bootstrap .table > tfoot > tr.info > th {
|
||
background-color: #d9edf7;
|
||
}
|
||
.bootstrap .table-hover > tbody > tr > td.info:hover, .bootstrap .table-hover > tbody > tr > th.info:hover, .bootstrap .table-hover > tbody > tr.info:hover > td, .bootstrap .table-hover > tbody > tr:hover > .info, .bootstrap .table-hover > tbody > tr.info:hover > th {
|
||
background-color: #c4e3f3;
|
||
}
|
||
.bootstrap .table > thead > tr > td.warning, .bootstrap .table > thead > tr > th.warning, .bootstrap .table > thead > tr.warning > td, .bootstrap .table > thead > tr.warning > th, .bootstrap .table > tbody > tr > td.warning, .bootstrap .table > tbody > tr > th.warning, .bootstrap .table > tbody > tr.warning > td, .bootstrap .table > tbody > tr.warning > th, .bootstrap .table > tfoot > tr > td.warning, .bootstrap .table > tfoot > tr > th.warning, .bootstrap .table > tfoot > tr.warning > td, .bootstrap .table > tfoot > tr.warning > th {
|
||
background-color: #fcf8e3;
|
||
}
|
||
.bootstrap .table-hover > tbody > tr > td.warning:hover, .bootstrap .table-hover > tbody > tr > th.warning:hover, .bootstrap .table-hover > tbody > tr.warning:hover > td, .bootstrap .table-hover > tbody > tr:hover > .warning, .bootstrap .table-hover > tbody > tr.warning:hover > th {
|
||
background-color: #faf2cc;
|
||
}
|
||
.bootstrap .table > thead > tr > td.danger, .bootstrap .table > thead > tr > th.danger, .bootstrap .table > thead > tr.danger > td, .bootstrap .table > thead > tr.danger > th, .bootstrap .table > tbody > tr > td.danger, .bootstrap .table > tbody > tr > th.danger, .bootstrap .table > tbody > tr.danger > td, .bootstrap .table > tbody > tr.danger > th, .bootstrap .table > tfoot > tr > td.danger, .bootstrap .table > tfoot > tr > th.danger, .bootstrap .table > tfoot > tr.danger > td, .bootstrap .table > tfoot > tr.danger > th {
|
||
background-color: #f2dede;
|
||
}
|
||
.bootstrap .table-hover > tbody > tr > td.danger:hover, .bootstrap .table-hover > tbody > tr > th.danger:hover, .bootstrap .table-hover > tbody > tr.danger:hover > td, .bootstrap .table-hover > tbody > tr:hover > .danger, .bootstrap .table-hover > tbody > tr.danger:hover > th {
|
||
background-color: #ebcccc;
|
||
}
|
||
@media screen and (max-width: 767px) {
|
||
.bootstrap .table-responsive {
|
||
border: 1px solid #ddd;
|
||
margin-bottom: 12.75px;
|
||
overflow-x: scroll;
|
||
overflow-y: hidden;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .table-responsive > .table {
|
||
margin-bottom: 0;
|
||
}
|
||
.bootstrap .table-responsive > .table > thead > tr > th, .bootstrap .table-responsive > .table > thead > tr > td, .bootstrap .table-responsive > .table > tbody > tr > th, .bootstrap .table-responsive > .table > tbody > tr > td, .bootstrap .table-responsive > .table > tfoot > tr > th, .bootstrap .table-responsive > .table > tfoot > tr > td {
|
||
white-space: nowrap;
|
||
}
|
||
.bootstrap .table-responsive > .table-bordered {
|
||
border: 0 none;
|
||
}
|
||
.bootstrap .table-responsive > .table-bordered > thead > tr > th:first-child, .bootstrap .table-responsive > .table-bordered > thead > tr > td:first-child, .bootstrap .table-responsive > .table-bordered > tbody > tr > th:first-child, .bootstrap .table-responsive > .table-bordered > tbody > tr > td:first-child, .bootstrap .table-responsive > .table-bordered > tfoot > tr > th:first-child, .bootstrap .table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
||
border-left: 0 none;
|
||
}
|
||
.bootstrap .table-responsive > .table-bordered > thead > tr > th:last-child, .bootstrap .table-responsive > .table-bordered > thead > tr > td:last-child, .bootstrap .table-responsive > .table-bordered > tbody > tr > th:last-child, .bootstrap .table-responsive > .table-bordered > tbody > tr > td:last-child, .bootstrap .table-responsive > .table-bordered > tfoot > tr > th:last-child, .bootstrap .table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
||
border-right: 0 none;
|
||
}
|
||
.bootstrap .table-responsive > .table-bordered > tbody > tr:last-child > th, .bootstrap .table-responsive > .table-bordered > tbody > tr:last-child > td, .bootstrap .table-responsive > .table-bordered > tfoot > tr:last-child > th, .bootstrap .table-responsive > .table-bordered > tfoot > tr:last-child > td {
|
||
border-bottom: 0 none;
|
||
}
|
||
}
|
||
.bootstrap fieldset {
|
||
border: 0 none;
|
||
margin: 0;
|
||
min-width: 0;
|
||
padding: 0;
|
||
}
|
||
.bootstrap legend {
|
||
-moz-border-bottom-colors: none;
|
||
-moz-border-left-colors: none;
|
||
-moz-border-right-colors: none;
|
||
-moz-border-top-colors: none;
|
||
border-color: -moz-use-text-color -moz-use-text-color #e5e5e5;
|
||
border-image: none;
|
||
border-style: none none solid;
|
||
border-width: 0 0 1px;
|
||
color: #333;
|
||
display: block;
|
||
font-size: 18px;
|
||
line-height: inherit;
|
||
margin-bottom: 17px;
|
||
padding: 0;
|
||
width: 100%;
|
||
}
|
||
.bootstrap label {
|
||
display: inline-block;
|
||
font-weight: bold;
|
||
margin-bottom: 5px;
|
||
max-width: 100%;
|
||
}
|
||
.bootstrap input[type="search"] {
|
||
box-sizing: border-box;
|
||
}
|
||
.bootstrap input[type="radio"], .bootstrap input[type="checkbox"] {
|
||
line-height: normal;
|
||
margin: 4px 0 0;
|
||
}
|
||
.bootstrap input[type="file"] {
|
||
display: block;
|
||
}
|
||
.bootstrap input[type="range"] {
|
||
display: block;
|
||
width: 100%;
|
||
}
|
||
.bootstrap select[multiple], .bootstrap select[size] {
|
||
height: auto;
|
||
}
|
||
.bootstrap input[type="file"]:focus, .bootstrap input[type="radio"]:focus, .bootstrap input[type="checkbox"]:focus {
|
||
outline: thin dotted;
|
||
outline-offset: -2px;
|
||
}
|
||
.bootstrap output {
|
||
color: #555;
|
||
display: block;
|
||
font-size: 12px;
|
||
line-height: 1.42857;
|
||
padding-top: 5px;
|
||
}
|
||
.bootstrap .form-control, .bootstrap input[type="text"], .bootstrap input[type="search"], .bootstrap input[type="password"], .bootstrap textarea, .bootstrap select {
|
||
background-color: #fff;
|
||
background-image: none;
|
||
border: 1px solid #ccc;
|
||
border-radius: 3px;
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
||
color: #555;
|
||
display: block;
|
||
font-size: 12px;
|
||
height: 27px;
|
||
line-height: 1.42857;
|
||
padding: 4px 8px;
|
||
transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .form-control:focus, .bootstrap input[type="text"]:focus, .bootstrap input[type="search"]:focus, .bootstrap input[type="password"]:focus, .bootstrap textarea:focus, .bootstrap select:focus {
|
||
border-color: #66afe9;
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
|
||
outline: 0 none;
|
||
}
|
||
.bootstrap .form-control::-moz-placeholder, .bootstrap input[type="text"]::-moz-placeholder, .bootstrap input[type="search"]::-moz-placeholder, .bootstrap input[type="password"]::-moz-placeholder, .bootstrap textarea::-moz-placeholder, .bootstrap select::-moz-placeholder {
|
||
color: #999;
|
||
opacity: 1;
|
||
}
|
||
.bootstrap .form-control[disabled], .bootstrap input[disabled][type="text"], .bootstrap input[disabled][type="search"], .bootstrap input[disabled][type="password"], .bootstrap textarea[disabled], .bootstrap select[disabled], .bootstrap .form-control[readonly], .bootstrap input[readonly][type="text"], .bootstrap input[readonly][type="search"], .bootstrap input[readonly][type="password"], .bootstrap textarea[readonly], .bootstrap select[readonly], fieldset[disabled] .bootstrap .form-control, fieldset[disabled] .bootstrap input[type="text"], fieldset[disabled] .bootstrap input[type="search"], fieldset[disabled] .bootstrap input[type="password"], fieldset[disabled] .bootstrap textarea, fieldset[disabled] .bootstrap select {
|
||
background-color: #eee;
|
||
cursor: not-allowed;
|
||
opacity: 1;
|
||
}
|
||
.bootstrap textarea.form-control, .bootstrap textarea {
|
||
height: auto;
|
||
}
|
||
.bootstrap input[type="search"] {
|
||
}
|
||
.bootstrap input[type="date"], .bootstrap input[type="time"], .bootstrap input[type="datetime-local"], .bootstrap input[type="month"] {
|
||
line-height: 27px;
|
||
}
|
||
.bootstrap input.input-sm[type="date"], .bootstrap .input-group-sm > input.form-control[type="date"], .bootstrap .input-group-sm > input[type="date"][type="text"], .bootstrap .input-group-sm > input[type="date"][type="search"], .bootstrap .input-group-sm > input[type="date"][type="password"], .bootstrap .input-group-sm > input.input-group-addon[type="date"], .bootstrap .input-group-sm > .input-group-btn > input.btn[type="date"], .bootstrap input.input-sm[type="time"], .bootstrap .input-group-sm > input.form-control[type="time"], .bootstrap .input-group-sm > input[type="time"][type="text"], .bootstrap .input-group-sm > input[type="time"][type="search"], .bootstrap .input-group-sm > input[type="time"][type="password"], .bootstrap .input-group-sm > input.input-group-addon[type="time"], .bootstrap .input-group-sm > .input-group-btn > input.btn[type="time"], .bootstrap input.input-sm[type="datetime-local"], .bootstrap .input-group-sm > input.form-control[type="datetime-local"], .bootstrap .input-group-sm > input[type="datetime-local"][type="text"], .bootstrap .input-group-sm > input[type="datetime-local"][type="search"], .bootstrap .input-group-sm > input[type="datetime-local"][type="password"], .bootstrap .input-group-sm > input.input-group-addon[type="datetime-local"], .bootstrap .input-group-sm > .input-group-btn > input.btn[type="datetime-local"], .bootstrap input.input-sm[type="month"], .bootstrap .input-group-sm > input.form-control[type="month"], .bootstrap .input-group-sm > input[type="month"][type="text"], .bootstrap .input-group-sm > input[type="month"][type="search"], .bootstrap .input-group-sm > input[type="month"][type="password"], .bootstrap .input-group-sm > input.input-group-addon[type="month"], .bootstrap .input-group-sm > .input-group-btn > input.btn[type="month"] {
|
||
line-height: 28px;
|
||
}
|
||
.bootstrap input.input-lg[type="date"], .bootstrap .input-group-lg > input.form-control[type="date"], .bootstrap .input-group-lg > input[type="date"][type="text"], .bootstrap .input-group-lg > input[type="date"][type="search"], .bootstrap .input-group-lg > input[type="date"][type="password"], .bootstrap .input-group-lg > input.input-group-addon[type="date"], .bootstrap .input-group-lg > .input-group-btn > input.btn[type="date"], .bootstrap input.input-lg[type="time"], .bootstrap .input-group-lg > input.form-control[type="time"], .bootstrap .input-group-lg > input[type="time"][type="text"], .bootstrap .input-group-lg > input[type="time"][type="search"], .bootstrap .input-group-lg > input[type="time"][type="password"], .bootstrap .input-group-lg > input.input-group-addon[type="time"], .bootstrap .input-group-lg > .input-group-btn > input.btn[type="time"], .bootstrap input.input-lg[type="datetime-local"], .bootstrap .input-group-lg > input.form-control[type="datetime-local"], .bootstrap .input-group-lg > input[type="datetime-local"][type="text"], .bootstrap .input-group-lg > input[type="datetime-local"][type="search"], .bootstrap .input-group-lg > input[type="datetime-local"][type="password"], .bootstrap .input-group-lg > input.input-group-addon[type="datetime-local"], .bootstrap .input-group-lg > .input-group-btn > input.btn[type="datetime-local"], .bootstrap input.input-lg[type="month"], .bootstrap .input-group-lg > input.form-control[type="month"], .bootstrap .input-group-lg > input[type="month"][type="text"], .bootstrap .input-group-lg > input[type="month"][type="search"], .bootstrap .input-group-lg > input[type="month"][type="password"], .bootstrap .input-group-lg > input.input-group-addon[type="month"], .bootstrap .input-group-lg > .input-group-btn > input.btn[type="month"] {
|
||
line-height: 42px;
|
||
}
|
||
.bootstrap .form-group {
|
||
margin-bottom: 15px;
|
||
}
|
||
.bootstrap .radio, .bootstrap .checkbox {
|
||
display: block;
|
||
margin-bottom: 10px;
|
||
margin-top: 10px;
|
||
min-height: 17px;
|
||
}
|
||
.bootstrap .radio label, .bootstrap .checkbox label {
|
||
cursor: pointer;
|
||
font-weight: normal;
|
||
margin-bottom: 0;
|
||
padding-left: 20px;
|
||
}
|
||
.bootstrap .radio input[type="radio"], .bootstrap .radio-inline input[type="radio"], .bootstrap .checkbox input[type="checkbox"], .bootstrap .checkbox-inline input[type="checkbox"] {
|
||
float: left;
|
||
margin-left: -20px;
|
||
}
|
||
.bootstrap .radio + .radio, .bootstrap .checkbox + .checkbox {
|
||
margin-top: -5px;
|
||
}
|
||
.bootstrap .radio-inline, .bootstrap .checkbox-inline {
|
||
cursor: pointer;
|
||
display: inline-block;
|
||
font-weight: normal;
|
||
margin-bottom: 0;
|
||
padding-left: 20px;
|
||
vertical-align: middle;
|
||
}
|
||
.bootstrap .radio-inline + .radio-inline, .bootstrap .checkbox-inline + .checkbox-inline {
|
||
margin-left: 10px;
|
||
margin-top: 0;
|
||
}
|
||
.bootstrap input[type="radio"][disabled], fieldset[disabled] .bootstrap input[type="radio"], .bootstrap input[type="checkbox"][disabled], fieldset[disabled] .bootstrap input[type="checkbox"], .bootstrap .radio[disabled], fieldset[disabled] .bootstrap .radio, .bootstrap .radio-inline[disabled], fieldset[disabled] .bootstrap .radio-inline, .bootstrap .checkbox[disabled], fieldset[disabled] .bootstrap .checkbox, .bootstrap .checkbox-inline[disabled], fieldset[disabled] .bootstrap .checkbox-inline {
|
||
cursor: not-allowed;
|
||
}
|
||
.bootstrap .input-sm, .bootstrap .input-group-sm > .form-control, .bootstrap .input-group-sm > input[type="text"], .bootstrap .input-group-sm > input[type="search"], .bootstrap .input-group-sm > input[type="password"], .bootstrap .input-group-sm > textarea, .bootstrap .input-group-sm > select, .bootstrap .input-group-sm > .input-group-addon, .bootstrap .input-group-sm > .input-group-btn > .btn {
|
||
border-radius: 3px;
|
||
font-size: 11px;
|
||
height: 28px;
|
||
line-height: 1.5;
|
||
padding: 5px 10px;
|
||
}
|
||
.bootstrap select.input-sm, .bootstrap .input-group-sm > select.form-control, .bootstrap .input-group-sm > select, .bootstrap .input-group-sm > select.input-group-addon, .bootstrap .input-group-sm > .input-group-btn > select.btn {
|
||
height: 28px;
|
||
line-height: 28px;
|
||
}
|
||
.bootstrap textarea.input-sm, .bootstrap .input-group-sm > textarea.form-control, .bootstrap .input-group-sm > textarea, .bootstrap .input-group-sm > textarea.input-group-addon, .bootstrap .input-group-sm > .input-group-btn > textarea.btn, .bootstrap select.input-sm[multiple], .bootstrap .input-group-sm > select[multiple], .bootstrap .input-group-sm > .input-group-btn > select.btn[multiple] {
|
||
height: auto;
|
||
}
|
||
.bootstrap .input-lg, .bootstrap .input-group-lg > .form-control, .bootstrap .input-group-lg > input[type="text"], .bootstrap .input-group-lg > input[type="search"], .bootstrap .input-group-lg > input[type="password"], .bootstrap .input-group-lg > textarea, .bootstrap .input-group-lg > select, .bootstrap .input-group-lg > .input-group-addon, .bootstrap .input-group-lg > .input-group-btn > .btn {
|
||
border-radius: 6px;
|
||
font-size: 15px;
|
||
height: 42px;
|
||
line-height: 1.33;
|
||
padding: 10px 16px;
|
||
}
|
||
.bootstrap select.input-lg, .bootstrap .input-group-lg > select.form-control, .bootstrap .input-group-lg > select, .bootstrap .input-group-lg > select.input-group-addon, .bootstrap .input-group-lg > .input-group-btn > select.btn {
|
||
height: 42px;
|
||
line-height: 42px;
|
||
}
|
||
.bootstrap textarea.input-lg, .bootstrap .input-group-lg > textarea.form-control, .bootstrap .input-group-lg > textarea, .bootstrap .input-group-lg > textarea.input-group-addon, .bootstrap .input-group-lg > .input-group-btn > textarea.btn, .bootstrap select.input-lg[multiple], .bootstrap .input-group-lg > select[multiple], .bootstrap .input-group-lg > .input-group-btn > select.btn[multiple] {
|
||
height: auto;
|
||
}
|
||
.bootstrap .has-feedback {
|
||
position: relative;
|
||
}
|
||
.bootstrap .has-feedback .form-control, .bootstrap .has-feedback input[type="text"], .bootstrap .has-feedback input[type="search"], .bootstrap .has-feedback input[type="password"], .bootstrap .has-feedback textarea, .bootstrap .has-feedback select {
|
||
padding-right: 33.75px;
|
||
}
|
||
.bootstrap .form-control-feedback {
|
||
display: block;
|
||
height: 27px;
|
||
line-height: 27px;
|
||
position: absolute;
|
||
right: 0;
|
||
text-align: center;
|
||
top: 22px;
|
||
width: 27px;
|
||
z-index: 2;
|
||
}
|
||
.bootstrap .input-lg + .form-control-feedback, .bootstrap .input-group-lg > .form-control + .form-control-feedback, .bootstrap .input-group-lg > input[type="text"] + .form-control-feedback, .bootstrap .input-group-lg > input[type="search"] + .form-control-feedback, .bootstrap .input-group-lg > input[type="password"] + .form-control-feedback, .bootstrap .input-group-lg > textarea + .form-control-feedback, .bootstrap .input-group-lg > select + .form-control-feedback, .bootstrap .input-group-lg > .input-group-addon + .form-control-feedback, .bootstrap .input-group-lg > .input-group-btn > .btn + .form-control-feedback {
|
||
height: 42px;
|
||
line-height: 42px;
|
||
width: 42px;
|
||
}
|
||
.bootstrap .input-sm + .form-control-feedback, .bootstrap .input-group-sm > .form-control + .form-control-feedback, .bootstrap .input-group-sm > input[type="text"] + .form-control-feedback, .bootstrap .input-group-sm > input[type="search"] + .form-control-feedback, .bootstrap .input-group-sm > input[type="password"] + .form-control-feedback, .bootstrap .input-group-sm > textarea + .form-control-feedback, .bootstrap .input-group-sm > select + .form-control-feedback, .bootstrap .input-group-sm > .input-group-addon + .form-control-feedback, .bootstrap .input-group-sm > .input-group-btn > .btn + .form-control-feedback {
|
||
height: 28px;
|
||
line-height: 28px;
|
||
width: 28px;
|
||
}
|
||
.bootstrap .has-success .help-block, .bootstrap .has-success .control-label, .bootstrap .has-success .radio, .bootstrap .has-success .checkbox, .bootstrap .has-success .radio-inline, .bootstrap .has-success .checkbox-inline {
|
||
color: #3c763d;
|
||
}
|
||
.bootstrap .has-success .form-control, .bootstrap .has-success input[type="text"], .bootstrap .has-success input[type="search"], .bootstrap .has-success input[type="password"], .bootstrap .has-success textarea, .bootstrap .has-success select {
|
||
border-color: #3c763d;
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
||
}
|
||
.bootstrap .has-success .form-control:focus, .bootstrap .has-success input[type="text"]:focus, .bootstrap .has-success input[type="search"]:focus, .bootstrap .has-success input[type="password"]:focus, .bootstrap .has-success textarea:focus, .bootstrap .has-success select:focus {
|
||
border-color: #2b542c;
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 6px #67b168;
|
||
}
|
||
.bootstrap .has-success .input-group-addon {
|
||
background-color: #dff0d8;
|
||
border-color: #3c763d;
|
||
color: #3c763d;
|
||
}
|
||
.bootstrap .has-success .form-control-feedback {
|
||
color: #3c763d;
|
||
}
|
||
.bootstrap .has-warning .help-block, .bootstrap .has-warning .control-label, .bootstrap .has-warning .radio, .bootstrap .has-warning .checkbox, .bootstrap .has-warning .radio-inline, .bootstrap .has-warning .checkbox-inline {
|
||
color: #8a6d3b;
|
||
}
|
||
.bootstrap .has-warning .form-control, .bootstrap .has-warning input[type="text"], .bootstrap .has-warning input[type="search"], .bootstrap .has-warning input[type="password"], .bootstrap .has-warning textarea, .bootstrap .has-warning select {
|
||
border-color: #8a6d3b;
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
||
}
|
||
.bootstrap .has-warning .form-control:focus, .bootstrap .has-warning input[type="text"]:focus, .bootstrap .has-warning input[type="search"]:focus, .bootstrap .has-warning input[type="password"]:focus, .bootstrap .has-warning textarea:focus, .bootstrap .has-warning select:focus {
|
||
border-color: #66512c;
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 6px #c0a16b;
|
||
}
|
||
.bootstrap .has-warning .input-group-addon {
|
||
background-color: #fcf8e3;
|
||
border-color: #8a6d3b;
|
||
color: #8a6d3b;
|
||
}
|
||
.bootstrap .has-warning .form-control-feedback {
|
||
color: #8a6d3b;
|
||
}
|
||
.bootstrap .has-error .help-block, .bootstrap .has-error .control-label, .bootstrap .has-error .radio, .bootstrap .has-error .checkbox, .bootstrap .has-error .radio-inline, .bootstrap .has-error .checkbox-inline {
|
||
color: #a94442;
|
||
}
|
||
.bootstrap .has-error .form-control, .bootstrap .has-error input[type="text"], .bootstrap .has-error input[type="search"], .bootstrap .has-error input[type="password"], .bootstrap .has-error textarea, .bootstrap .has-error select {
|
||
border-color: #a94442;
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
||
}
|
||
.bootstrap .has-error .form-control:focus, .bootstrap .has-error input[type="text"]:focus, .bootstrap .has-error input[type="search"]:focus, .bootstrap .has-error input[type="password"]:focus, .bootstrap .has-error textarea:focus, .bootstrap .has-error select:focus {
|
||
border-color: #843534;
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 6px #ce8483;
|
||
}
|
||
.bootstrap .has-error .input-group-addon {
|
||
background-color: #f2dede;
|
||
border-color: #a94442;
|
||
color: #a94442;
|
||
}
|
||
.bootstrap .has-error .form-control-feedback {
|
||
color: #a94442;
|
||
}
|
||
.bootstrap .form-control-static {
|
||
margin-bottom: 0;
|
||
}
|
||
.bootstrap .help-block {
|
||
color: #959595;
|
||
display: block;
|
||
margin-bottom: 10px;
|
||
margin-top: 5px;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.bootstrap .form-inline .form-group, .bootstrap .navbar-form .form-group {
|
||
display: inline-block;
|
||
margin-bottom: 0;
|
||
vertical-align: middle;
|
||
}
|
||
.bootstrap .form-inline .form-control, .bootstrap .navbar-form .form-control, .bootstrap .form-inline input[type="text"], .bootstrap .navbar-form input[type="text"], .bootstrap .form-inline input[type="search"], .bootstrap .navbar-form input[type="search"], .bootstrap .form-inline input[type="password"], .bootstrap .navbar-form input[type="password"], .bootstrap .form-inline textarea, .bootstrap .navbar-form textarea, .bootstrap .form-inline select, .bootstrap .navbar-form select {
|
||
display: inline-block;
|
||
vertical-align: middle;
|
||
width: auto;
|
||
}
|
||
.bootstrap .form-inline .input-group, .bootstrap .navbar-form .input-group {
|
||
display: inline-table;
|
||
vertical-align: middle;
|
||
}
|
||
.bootstrap .form-inline .input-group .input-group-addon, .bootstrap .navbar-form .input-group .input-group-addon, .bootstrap .form-inline .input-group .input-group-btn, .bootstrap .navbar-form .input-group .input-group-btn, .bootstrap .form-inline .input-group .form-control, .bootstrap .navbar-form .input-group .form-control, .bootstrap .form-inline .input-group input[type="text"], .bootstrap .navbar-form .input-group input[type="text"], .bootstrap .form-inline .input-group input[type="search"], .bootstrap .navbar-form .input-group input[type="search"], .bootstrap .form-inline .input-group input[type="password"], .bootstrap .navbar-form .input-group input[type="password"], .bootstrap .form-inline .input-group textarea, .bootstrap .navbar-form .input-group textarea, .bootstrap .form-inline .input-group select, .bootstrap .navbar-form .input-group select {
|
||
width: auto;
|
||
}
|
||
.bootstrap .form-inline .input-group > .form-control, .bootstrap .navbar-form .input-group > .form-control, .bootstrap .form-inline .input-group > input[type="text"], .bootstrap .navbar-form .input-group > input[type="text"], .bootstrap .form-inline .input-group > input[type="search"], .bootstrap .navbar-form .input-group > input[type="search"], .bootstrap .form-inline .input-group > input[type="password"], .bootstrap .navbar-form .input-group > input[type="password"], .bootstrap .form-inline .input-group > textarea, .bootstrap .navbar-form .input-group > textarea, .bootstrap .form-inline .input-group > select, .bootstrap .navbar-form .input-group > select {
|
||
width: 100%;
|
||
}
|
||
.bootstrap .form-inline .control-label, .bootstrap .navbar-form .control-label {
|
||
margin-bottom: 0;
|
||
vertical-align: middle;
|
||
}
|
||
.bootstrap .form-inline .radio, .bootstrap .navbar-form .radio, .bootstrap .form-inline .checkbox, .bootstrap .navbar-form .checkbox {
|
||
display: inline-block;
|
||
margin-bottom: 0;
|
||
margin-top: 0;
|
||
padding-left: 0;
|
||
vertical-align: middle;
|
||
}
|
||
.bootstrap .form-inline .radio input[type="radio"], .bootstrap .navbar-form .radio input[type="radio"], .bootstrap .form-inline .checkbox input[type="checkbox"], .bootstrap .navbar-form .checkbox input[type="checkbox"] {
|
||
float: none;
|
||
margin-left: 0;
|
||
}
|
||
.bootstrap .form-inline .has-feedback .form-control-feedback, .bootstrap .navbar-form .has-feedback .form-control-feedback {
|
||
top: 0;
|
||
}
|
||
}
|
||
.bootstrap .form-horizontal .radio, .bootstrap .form-horizontal .checkbox, .bootstrap .form-horizontal .radio-inline, .bootstrap .form-horizontal .checkbox-inline {
|
||
margin-bottom: 0;
|
||
margin-top: 0;
|
||
padding-top: 5px;
|
||
}
|
||
.bootstrap .form-horizontal .radio, .bootstrap .form-horizontal .checkbox {
|
||
min-height: 22px;
|
||
}
|
||
.bootstrap .form-horizontal .form-group {
|
||
margin-left: -5px;
|
||
margin-right: -5px;
|
||
}
|
||
.bootstrap .form-horizontal .form-group:before, .bootstrap .form-horizontal .form-group:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
.bootstrap .form-horizontal .form-group:after {
|
||
clear: both;
|
||
}
|
||
.bootstrap .form-horizontal .form-control-static {
|
||
padding-bottom: 5px;
|
||
padding-top: 5px;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.bootstrap .form-horizontal .control-label {
|
||
margin-bottom: 0;
|
||
padding-top: 5px;
|
||
text-align: right;
|
||
}
|
||
}
|
||
.bootstrap .form-horizontal .has-feedback .form-control-feedback {
|
||
right: 5px;
|
||
top: 0;
|
||
}
|
||
.bootstrap .btn {
|
||
-moz-user-select: none;
|
||
background-image: none;
|
||
border: 1px solid transparent;
|
||
border-radius: 3px;
|
||
cursor: pointer;
|
||
display: inline-block;
|
||
font-size: 12px;
|
||
font-weight: normal;
|
||
line-height: 1.42857;
|
||
margin-bottom: 0;
|
||
padding: 4px 8px;
|
||
text-align: center;
|
||
vertical-align: middle;
|
||
white-space: nowrap;
|
||
}
|
||
.bootstrap .btn:focus, .bootstrap .btn:active:focus, .bootstrap .btn.active:focus {
|
||
outline: thin dotted;
|
||
outline-offset: -2px;
|
||
}
|
||
.bootstrap .btn:hover, .bootstrap .btn:focus {
|
||
color: #555;
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap .btn:active, .bootstrap .btn.active {
|
||
background-image: none;
|
||
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125) inset;
|
||
outline: 0 none;
|
||
}
|
||
.bootstrap .btn.disabled, .bootstrap .btn[disabled], fieldset[disabled] .bootstrap .btn {
|
||
box-shadow: none;
|
||
cursor: not-allowed;
|
||
opacity: 0.65;
|
||
pointer-events: none;
|
||
}
|
||
.bootstrap .btn-default {
|
||
background-color: #fff;
|
||
border-color: #ccc;
|
||
color: #555;
|
||
}
|
||
.bootstrap .btn-default:hover, .bootstrap .btn-default:focus, .bootstrap .btn-default:active, .bootstrap .btn-default.active, .open > .bootstrap .btn-default.dropdown-toggle {
|
||
background-color: #e6e6e6;
|
||
border-color: #adadad;
|
||
color: #555;
|
||
}
|
||
.bootstrap .btn-default:active, .bootstrap .btn-default.active, .open > .bootstrap .btn-default.dropdown-toggle {
|
||
background-image: none;
|
||
}
|
||
.bootstrap .btn-default.disabled, .bootstrap .btn-default.disabled:hover, .bootstrap .btn-default.disabled:focus, .bootstrap .btn-default.disabled:active, .bootstrap .btn-default.disabled.active, .bootstrap .btn-default[disabled], .bootstrap .btn-default[disabled]:hover, .bootstrap .btn-default[disabled]:focus, .bootstrap .btn-default[disabled]:active, .bootstrap .btn-default.active[disabled], fieldset[disabled] .bootstrap .btn-default, fieldset[disabled] .bootstrap .btn-default:hover, fieldset[disabled] .bootstrap .btn-default:focus, fieldset[disabled] .bootstrap .btn-default:active, fieldset[disabled] .bootstrap .btn-default.active {
|
||
background-color: #fff;
|
||
border-color: #ccc;
|
||
}
|
||
.bootstrap .btn-default .badge, .bootstrap .btn-default #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .btn-default .notifs_badge, .bootstrap .btn-default .module-badge-popular, .bootstrap .btn-default .module-badge-partner, .bootstrap .btn-default .module-badge-bought {
|
||
background-color: #555;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .btn-primary {
|
||
background-color: #fff;
|
||
border-color: #79bd3c;
|
||
color: #555;
|
||
}
|
||
.bootstrap .btn-primary:hover, .bootstrap .btn-primary:focus, .bootstrap .btn-primary:active, .bootstrap .btn-primary.active, .open > .bootstrap .btn-primary.dropdown-toggle {
|
||
background-color: #e6e6e6;
|
||
border-color: #5b8f2d;
|
||
color: #555;
|
||
}
|
||
.bootstrap .btn-primary:active, .bootstrap .btn-primary.active, .open > .bootstrap .btn-primary.dropdown-toggle {
|
||
background-image: none;
|
||
}
|
||
.bootstrap .btn-primary.disabled, .bootstrap .btn-primary.disabled:hover, .bootstrap .btn-primary.disabled:focus, .bootstrap .btn-primary.disabled:active, .bootstrap .btn-primary.disabled.active, .bootstrap .btn-primary[disabled], .bootstrap .btn-primary[disabled]:hover, .bootstrap .btn-primary[disabled]:focus, .bootstrap .btn-primary[disabled]:active, .bootstrap .btn-primary.active[disabled], fieldset[disabled] .bootstrap .btn-primary, fieldset[disabled] .bootstrap .btn-primary:hover, fieldset[disabled] .bootstrap .btn-primary:focus, fieldset[disabled] .bootstrap .btn-primary:active, fieldset[disabled] .bootstrap .btn-primary.active {
|
||
background-color: #fff;
|
||
border-color: #79bd3c;
|
||
}
|
||
.bootstrap .btn-primary .badge, .bootstrap .btn-primary #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .btn-primary .notifs_badge, .bootstrap .btn-primary .module-badge-popular, .bootstrap .btn-primary .module-badge-partner, .bootstrap .btn-primary .module-badge-bought {
|
||
background-color: #555;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .btn-success {
|
||
background-color: #79bd3c;
|
||
border-color: #6caa36;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .btn-success:hover, .bootstrap .btn-success:focus, .bootstrap .btn-success:active, .bootstrap .btn-success.active, .open > .bootstrap .btn-success.dropdown-toggle {
|
||
background-color: #609730;
|
||
border-color: #4f7c27;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .btn-success:active, .bootstrap .btn-success.active, .open > .bootstrap .btn-success.dropdown-toggle {
|
||
background-image: none;
|
||
}
|
||
.bootstrap .btn-success.disabled, .bootstrap .btn-success.disabled:hover, .bootstrap .btn-success.disabled:focus, .bootstrap .btn-success.disabled:active, .bootstrap .btn-success.disabled.active, .bootstrap .btn-success[disabled], .bootstrap .btn-success[disabled]:hover, .bootstrap .btn-success[disabled]:focus, .bootstrap .btn-success[disabled]:active, .bootstrap .btn-success.active[disabled], fieldset[disabled] .bootstrap .btn-success, fieldset[disabled] .bootstrap .btn-success:hover, fieldset[disabled] .bootstrap .btn-success:focus, fieldset[disabled] .bootstrap .btn-success:active, fieldset[disabled] .bootstrap .btn-success.active {
|
||
background-color: #79bd3c;
|
||
border-color: #6caa36;
|
||
}
|
||
.bootstrap .btn-success .badge, .bootstrap .btn-success #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .btn-success .notifs_badge, .bootstrap .btn-success .module-badge-popular, .bootstrap .btn-success .module-badge-partner, .bootstrap .btn-success .module-badge-bought {
|
||
background-color: #fff;
|
||
color: #79bd3c;
|
||
}
|
||
.bootstrap .btn-info {
|
||
background-color: #5bc0de;
|
||
border-color: #46b8da;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .btn-info:hover, .bootstrap .btn-info:focus, .bootstrap .btn-info:active, .bootstrap .btn-info.active, .open > .bootstrap .btn-info.dropdown-toggle {
|
||
background-color: #31b0d5;
|
||
border-color: #269abc;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .btn-info:active, .bootstrap .btn-info.active, .open > .bootstrap .btn-info.dropdown-toggle {
|
||
background-image: none;
|
||
}
|
||
.bootstrap .btn-info.disabled, .bootstrap .btn-info.disabled:hover, .bootstrap .btn-info.disabled:focus, .bootstrap .btn-info.disabled:active, .bootstrap .btn-info.disabled.active, .bootstrap .btn-info[disabled], .bootstrap .btn-info[disabled]:hover, .bootstrap .btn-info[disabled]:focus, .bootstrap .btn-info[disabled]:active, .bootstrap .btn-info.active[disabled], fieldset[disabled] .bootstrap .btn-info, fieldset[disabled] .bootstrap .btn-info:hover, fieldset[disabled] .bootstrap .btn-info:focus, fieldset[disabled] .bootstrap .btn-info:active, fieldset[disabled] .bootstrap .btn-info.active {
|
||
background-color: #5bc0de;
|
||
border-color: #46b8da;
|
||
}
|
||
.bootstrap .btn-info .badge, .bootstrap .btn-info #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .btn-info .notifs_badge, .bootstrap .btn-info .module-badge-popular, .bootstrap .btn-info .module-badge-partner, .bootstrap .btn-info .module-badge-bought {
|
||
background-color: #fff;
|
||
color: #5bc0de;
|
||
}
|
||
.bootstrap .btn-warning {
|
||
background-color: #f0ad4e;
|
||
border-color: #eea236;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .btn-warning:hover, .bootstrap .btn-warning:focus, .bootstrap .btn-warning:active, .bootstrap .btn-warning.active, .open > .bootstrap .btn-warning.dropdown-toggle {
|
||
background-color: #ec971f;
|
||
border-color: #d58512;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .btn-warning:active, .bootstrap .btn-warning.active, .open > .bootstrap .btn-warning.dropdown-toggle {
|
||
background-image: none;
|
||
}
|
||
.bootstrap .btn-warning.disabled, .bootstrap .btn-warning.disabled:hover, .bootstrap .btn-warning.disabled:focus, .bootstrap .btn-warning.disabled:active, .bootstrap .btn-warning.disabled.active, .bootstrap .btn-warning[disabled], .bootstrap .btn-warning[disabled]:hover, .bootstrap .btn-warning[disabled]:focus, .bootstrap .btn-warning[disabled]:active, .bootstrap .btn-warning.active[disabled], fieldset[disabled] .bootstrap .btn-warning, fieldset[disabled] .bootstrap .btn-warning:hover, fieldset[disabled] .bootstrap .btn-warning:focus, fieldset[disabled] .bootstrap .btn-warning:active, fieldset[disabled] .bootstrap .btn-warning.active {
|
||
background-color: #f0ad4e;
|
||
border-color: #eea236;
|
||
}
|
||
.bootstrap .btn-warning .badge, .bootstrap .btn-warning #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .btn-warning .notifs_badge, .bootstrap .btn-warning .module-badge-popular, .bootstrap .btn-warning .module-badge-partner, .bootstrap .btn-warning .module-badge-bought {
|
||
background-color: #fff;
|
||
color: #f0ad4e;
|
||
}
|
||
.bootstrap .btn-danger {
|
||
background-color: #d9534f;
|
||
border-color: #d43f3a;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .btn-danger:hover, .bootstrap .btn-danger:focus, .bootstrap .btn-danger:active, .bootstrap .btn-danger.active, .open > .bootstrap .btn-danger.dropdown-toggle {
|
||
background-color: #c9302c;
|
||
border-color: #ac2925;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .btn-danger:active, .bootstrap .btn-danger.active, .open > .bootstrap .btn-danger.dropdown-toggle {
|
||
background-image: none;
|
||
}
|
||
.bootstrap .btn-danger.disabled, .bootstrap .btn-danger.disabled:hover, .bootstrap .btn-danger.disabled:focus, .bootstrap .btn-danger.disabled:active, .bootstrap .btn-danger.disabled.active, .bootstrap .btn-danger[disabled], .bootstrap .btn-danger[disabled]:hover, .bootstrap .btn-danger[disabled]:focus, .bootstrap .btn-danger[disabled]:active, .bootstrap .btn-danger.active[disabled], fieldset[disabled] .bootstrap .btn-danger, fieldset[disabled] .bootstrap .btn-danger:hover, fieldset[disabled] .bootstrap .btn-danger:focus, fieldset[disabled] .bootstrap .btn-danger:active, fieldset[disabled] .bootstrap .btn-danger.active {
|
||
background-color: #d9534f;
|
||
border-color: #d43f3a;
|
||
}
|
||
.bootstrap .btn-danger .badge, .bootstrap .btn-danger #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .btn-danger .notifs_badge, .bootstrap .btn-danger .module-badge-popular, .bootstrap .btn-danger .module-badge-partner, .bootstrap .btn-danger .module-badge-bought {
|
||
background-color: #fff;
|
||
color: #d9534f;
|
||
}
|
||
.bootstrap .btn-link {
|
||
border-radius: 0;
|
||
color: #00aff0;
|
||
cursor: pointer;
|
||
font-weight: normal;
|
||
}
|
||
.bootstrap .btn-link, .bootstrap .btn-link:active, .bootstrap .btn-link[disabled], fieldset[disabled] .bootstrap .btn-link {
|
||
background-color: transparent;
|
||
box-shadow: none;
|
||
}
|
||
.bootstrap .btn-link, .bootstrap .btn-link:hover, .bootstrap .btn-link:focus, .bootstrap .btn-link:active {
|
||
border-color: transparent;
|
||
}
|
||
.bootstrap .btn-link:hover, .bootstrap .btn-link:focus {
|
||
background-color: transparent;
|
||
color: #0077a3;
|
||
text-decoration: underline;
|
||
}
|
||
.bootstrap .btn-link[disabled]:hover, .bootstrap .btn-link[disabled]:focus, fieldset[disabled] .bootstrap .btn-link:hover, fieldset[disabled] .bootstrap .btn-link:focus {
|
||
color: #999;
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap .btn-lg, .bootstrap .btn-group-lg > .btn {
|
||
border-radius: 6px;
|
||
font-size: 15px;
|
||
line-height: 1.33;
|
||
padding: 10px 16px;
|
||
}
|
||
.bootstrap .btn-sm, .bootstrap .btn-group-sm > .btn {
|
||
border-radius: 3px;
|
||
font-size: 11px;
|
||
line-height: 1.5;
|
||
padding: 5px 10px;
|
||
}
|
||
.bootstrap .btn-xs, .bootstrap .btn-group-xs > .btn {
|
||
border-radius: 3px;
|
||
font-size: 11px;
|
||
line-height: 1.5;
|
||
padding: 1px 5px;
|
||
}
|
||
.bootstrap .btn-block {
|
||
display: block;
|
||
padding-left: 0;
|
||
padding-right: 0;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .btn-block + .btn-block {
|
||
margin-top: 5px;
|
||
}
|
||
.bootstrap input.btn-block[type="submit"], .bootstrap input.btn-block[type="reset"], .bootstrap input.btn-block[type="button"] {
|
||
width: 100%;
|
||
}
|
||
.bootstrap .fade {
|
||
opacity: 0;
|
||
transition: opacity 0.15s linear 0s;
|
||
}
|
||
.bootstrap .fade.in {
|
||
opacity: 1;
|
||
}
|
||
.bootstrap .collapse {
|
||
display: none;
|
||
}
|
||
.bootstrap .collapse.in {
|
||
display: block;
|
||
}
|
||
.bootstrap tr.collapse.in {
|
||
display: table-row;
|
||
}
|
||
.bootstrap tbody.collapse.in {
|
||
display: table-row-group;
|
||
}
|
||
.bootstrap .collapsing {
|
||
height: 0;
|
||
overflow: hidden;
|
||
position: relative;
|
||
transition: height 0.35s ease 0s;
|
||
}
|
||
.bootstrap .caret {
|
||
border-left: 4px solid transparent;
|
||
border-right: 4px solid transparent;
|
||
border-top: 4px solid;
|
||
display: inline-block;
|
||
height: 0;
|
||
margin-left: 2px;
|
||
vertical-align: middle;
|
||
width: 0;
|
||
}
|
||
.bootstrap .dropdown {
|
||
position: relative;
|
||
}
|
||
.bootstrap .dropdown-toggle:focus {
|
||
outline: 0 none;
|
||
}
|
||
.bootstrap .dropdown-menu {
|
||
background-clip: padding-box;
|
||
background-color: #fff;
|
||
border: 1px solid rgba(0, 0, 0, 0.15);
|
||
border-radius: 3px;
|
||
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
|
||
display: none;
|
||
float: left;
|
||
font-size: 12px;
|
||
left: 0;
|
||
list-style: outside none none;
|
||
margin: 2px 0 0;
|
||
min-width: 160px;
|
||
padding: 5px 0;
|
||
position: absolute;
|
||
text-align: left;
|
||
top: 100%;
|
||
z-index: 1000;
|
||
}
|
||
.bootstrap .dropdown-menu.pull-right {
|
||
left: auto;
|
||
right: 0;
|
||
}
|
||
.bootstrap .dropdown-menu .divider {
|
||
background-color: #e5e5e5;
|
||
height: 1px;
|
||
margin: 7.5px 0;
|
||
overflow: hidden;
|
||
}
|
||
.bootstrap .dropdown-menu > li > a {
|
||
clear: both;
|
||
color: #333;
|
||
display: block;
|
||
font-weight: normal;
|
||
line-height: 1.42857;
|
||
padding: 3px 20px;
|
||
white-space: nowrap;
|
||
}
|
||
.bootstrap .dropdown-menu > li > a:hover, .bootstrap .dropdown-menu > li > a:focus {
|
||
background-color: #00aff0;
|
||
color: #fff;
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap .dropdown-menu > .active > a, .bootstrap .dropdown-menu > .active > a:hover, .bootstrap .dropdown-menu > .active > a:focus {
|
||
background-color: #00aff0;
|
||
color: #fff;
|
||
outline: 0 none;
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap .dropdown-menu > .disabled > a, .bootstrap .dropdown-menu > .disabled > a:hover, .bootstrap .dropdown-menu > .disabled > a:focus {
|
||
color: #999;
|
||
}
|
||
.bootstrap .dropdown-menu > .disabled > a:hover, .bootstrap .dropdown-menu > .disabled > a:focus {
|
||
background-color: transparent;
|
||
background-image: none;
|
||
cursor: not-allowed;
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap .open > .dropdown-menu {
|
||
display: block;
|
||
}
|
||
.bootstrap .open > a {
|
||
outline: 0 none;
|
||
}
|
||
.bootstrap .dropdown-menu-right {
|
||
left: auto;
|
||
right: 0;
|
||
}
|
||
.bootstrap .dropdown-menu-left {
|
||
left: 0;
|
||
right: auto;
|
||
}
|
||
.bootstrap .dropdown-header {
|
||
color: #999;
|
||
display: block;
|
||
font-size: 11px;
|
||
line-height: 1.42857;
|
||
padding: 3px 20px;
|
||
}
|
||
.bootstrap .dropdown-backdrop {
|
||
bottom: 0;
|
||
left: 0;
|
||
position: fixed;
|
||
right: 0;
|
||
top: 0;
|
||
z-index: 990;
|
||
}
|
||
.bootstrap .pull-right > .dropdown-menu {
|
||
left: auto;
|
||
right: 0;
|
||
}
|
||
.bootstrap .dropup .caret, .bootstrap .navbar-fixed-bottom .dropdown .caret {
|
||
border-bottom: 4px solid;
|
||
border-top: 0 none;
|
||
content: "";
|
||
}
|
||
.bootstrap .dropup .dropdown-menu, .bootstrap .navbar-fixed-bottom .dropdown .dropdown-menu {
|
||
bottom: 100%;
|
||
margin-bottom: 1px;
|
||
top: auto;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.bootstrap .navbar-right .dropdown-menu, .bootstrap #header_employee_box .dropdown-menu {
|
||
left: auto;
|
||
right: 0;
|
||
}
|
||
.bootstrap .navbar-right .dropdown-menu-left, .bootstrap #header_employee_box .dropdown-menu-left {
|
||
left: 0;
|
||
right: auto;
|
||
}
|
||
}
|
||
.bootstrap .btn-group, .bootstrap .btn-group-vertical {
|
||
display: inline-block;
|
||
position: relative;
|
||
vertical-align: middle;
|
||
}
|
||
.bootstrap .btn-group > .btn, .bootstrap .btn-group-vertical > .btn {
|
||
float: left;
|
||
position: relative;
|
||
}
|
||
.bootstrap .btn-group > .btn:hover, .bootstrap .btn-group > .btn:focus, .bootstrap .btn-group > .btn:active, .bootstrap .btn-group > .btn.active, .bootstrap .btn-group-vertical > .btn:hover, .bootstrap .btn-group-vertical > .btn:focus, .bootstrap .btn-group-vertical > .btn:active, .bootstrap .btn-group-vertical > .btn.active {
|
||
z-index: 2;
|
||
}
|
||
.bootstrap .btn-group > .btn:focus, .bootstrap .btn-group-vertical > .btn:focus {
|
||
outline: 0 none;
|
||
}
|
||
.bootstrap .btn-group .btn + .btn, .bootstrap .btn-group .btn + .btn-group, .bootstrap .btn-group .btn-group + .btn, .bootstrap .btn-group .btn-group + .btn-group {
|
||
margin-left: -1px;
|
||
}
|
||
.bootstrap .btn-toolbar {
|
||
margin-left: -5px;
|
||
}
|
||
.bootstrap .btn-toolbar:before, .bootstrap .btn-toolbar:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
.bootstrap .btn-toolbar:after {
|
||
clear: both;
|
||
}
|
||
.bootstrap .btn-toolbar .btn-group, .bootstrap .btn-toolbar .input-group {
|
||
float: left;
|
||
}
|
||
.bootstrap .btn-toolbar > .btn, .bootstrap .btn-toolbar > .btn-group, .bootstrap .btn-toolbar > .input-group {
|
||
margin-left: 5px;
|
||
}
|
||
.bootstrap .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
|
||
border-radius: 0;
|
||
}
|
||
.bootstrap .btn-group > .btn:first-child {
|
||
margin-left: 0;
|
||
}
|
||
.bootstrap .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
|
||
border-bottom-right-radius: 0;
|
||
border-top-right-radius: 0;
|
||
}
|
||
.bootstrap .btn-group > .btn:last-child:not(:first-child), .bootstrap .btn-group > .dropdown-toggle:not(:first-child) {
|
||
border-bottom-left-radius: 0;
|
||
border-top-left-radius: 0;
|
||
}
|
||
.bootstrap .btn-group > .btn-group {
|
||
float: left;
|
||
}
|
||
.bootstrap .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
|
||
border-radius: 0;
|
||
}
|
||
.bootstrap .btn-group > .btn-group:first-child > .btn:last-child, .bootstrap .btn-group > .btn-group:first-child > .dropdown-toggle {
|
||
border-bottom-right-radius: 0;
|
||
border-top-right-radius: 0;
|
||
}
|
||
.bootstrap .btn-group > .btn-group:last-child > .btn:first-child {
|
||
border-bottom-left-radius: 0;
|
||
border-top-left-radius: 0;
|
||
}
|
||
.bootstrap .btn-group .dropdown-toggle:active, .bootstrap .btn-group.open .dropdown-toggle {
|
||
outline: 0 none;
|
||
}
|
||
.bootstrap .btn-group > .btn + .dropdown-toggle {
|
||
padding-left: 8px;
|
||
padding-right: 8px;
|
||
}
|
||
.bootstrap .btn-group > .btn-lg + .dropdown-toggle, .bootstrap .btn-group-lg.btn-group > .btn + .dropdown-toggle {
|
||
padding-left: 12px;
|
||
padding-right: 12px;
|
||
}
|
||
.bootstrap .btn-group.open .dropdown-toggle {
|
||
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125) inset;
|
||
}
|
||
.bootstrap .btn-group.open .dropdown-toggle.btn-link {
|
||
box-shadow: none;
|
||
}
|
||
.bootstrap .btn .caret {
|
||
margin-left: 0;
|
||
}
|
||
.bootstrap .btn-lg .caret, .bootstrap .btn-group-lg > .btn .caret {
|
||
border-width: 5px 5px 0;
|
||
}
|
||
.bootstrap .dropup .btn-lg .caret, .bootstrap .dropup .btn-group-lg > .btn .caret {
|
||
border-width: 0 5px 5px;
|
||
}
|
||
.bootstrap .btn-group-vertical > .btn, .bootstrap .btn-group-vertical > .btn-group, .bootstrap .btn-group-vertical > .btn-group > .btn {
|
||
display: block;
|
||
float: none;
|
||
max-width: 100%;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .btn-group-vertical > .btn-group:before, .bootstrap .btn-group-vertical > .btn-group:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
.bootstrap .btn-group-vertical > .btn-group:after {
|
||
clear: both;
|
||
}
|
||
.bootstrap .btn-group-vertical > .btn-group > .btn {
|
||
float: none;
|
||
}
|
||
.bootstrap .btn-group-vertical > .btn + .btn, .bootstrap .btn-group-vertical > .btn + .btn-group, .bootstrap .btn-group-vertical > .btn-group + .btn, .bootstrap .btn-group-vertical > .btn-group + .btn-group {
|
||
margin-left: 0;
|
||
margin-top: -1px;
|
||
}
|
||
.bootstrap .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
|
||
border-radius: 0;
|
||
}
|
||
.bootstrap .btn-group-vertical > .btn:first-child:not(:last-child) {
|
||
border-bottom-left-radius: 0;
|
||
border-bottom-right-radius: 0;
|
||
border-top-right-radius: 3px;
|
||
}
|
||
.bootstrap .btn-group-vertical > .btn:last-child:not(:first-child) {
|
||
border-bottom-left-radius: 3px;
|
||
border-top-left-radius: 0;
|
||
border-top-right-radius: 0;
|
||
}
|
||
.bootstrap .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
||
border-radius: 0;
|
||
}
|
||
.bootstrap .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .bootstrap .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
|
||
border-bottom-left-radius: 0;
|
||
border-bottom-right-radius: 0;
|
||
}
|
||
.bootstrap .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
||
border-top-left-radius: 0;
|
||
border-top-right-radius: 0;
|
||
}
|
||
.bootstrap .btn-group-justified {
|
||
border-collapse: separate;
|
||
display: table;
|
||
table-layout: fixed;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .btn-group-justified > .btn, .bootstrap .btn-group-justified > .btn-group {
|
||
display: table-cell;
|
||
float: none;
|
||
width: 1%;
|
||
}
|
||
.bootstrap .btn-group-justified > .btn-group .btn {
|
||
width: 100%;
|
||
}
|
||
.bootstrap [data-toggle="buttons"] > .btn > input[type="radio"], .bootstrap [data-toggle="buttons"] > .btn > input[type="checkbox"] {
|
||
opacity: 0;
|
||
position: absolute;
|
||
z-index: -1;
|
||
}
|
||
.bootstrap .input-group {
|
||
border-collapse: separate;
|
||
display: table;
|
||
position: relative;
|
||
}
|
||
.bootstrap .input-group[class*="col-"] {
|
||
float: none;
|
||
padding-left: 0;
|
||
padding-right: 0;
|
||
}
|
||
.bootstrap .input-group .form-control, .bootstrap .input-group input[type="text"], .bootstrap .input-group input[type="search"], .bootstrap .input-group input[type="password"], .bootstrap .input-group textarea, .bootstrap .input-group select {
|
||
float: left;
|
||
margin-bottom: 0;
|
||
position: relative;
|
||
width: 100%;
|
||
z-index: 2;
|
||
}
|
||
.bootstrap .input-group-addon, .bootstrap .input-group-btn, .bootstrap .input-group .form-control, .bootstrap .input-group input[type="text"], .bootstrap .input-group input[type="search"], .bootstrap .input-group input[type="password"], .bootstrap .input-group textarea, .bootstrap .input-group select {
|
||
display: table-cell;
|
||
}
|
||
.bootstrap .input-group-addon:not(:first-child):not(:last-child), .bootstrap .input-group-btn:not(:first-child):not(:last-child), .bootstrap .input-group .form-control:not(:first-child):not(:last-child), .bootstrap .input-group input[type="text"]:not(:first-child):not(:last-child), .bootstrap .input-group input[type="search"]:not(:first-child):not(:last-child), .bootstrap .input-group input[type="password"]:not(:first-child):not(:last-child), .bootstrap .input-group textarea:not(:first-child):not(:last-child), .bootstrap .input-group select:not(:first-child):not(:last-child) {
|
||
border-radius: 0;
|
||
}
|
||
.bootstrap .input-group-addon, .bootstrap .input-group-btn {
|
||
vertical-align: middle;
|
||
white-space: nowrap;
|
||
width: 1%;
|
||
}
|
||
.bootstrap .input-group-addon {
|
||
background-color: #eee;
|
||
border: 1px solid #ccc;
|
||
border-radius: 3px;
|
||
color: #555;
|
||
font-size: 12px;
|
||
font-weight: normal;
|
||
line-height: 1;
|
||
padding: 4px 8px;
|
||
text-align: center;
|
||
}
|
||
.bootstrap .input-group-addon.input-sm, .bootstrap .input-group-sm > .input-group-addon, .bootstrap .input-group-sm > .input-group-btn > .input-group-addon.btn {
|
||
border-radius: 3px;
|
||
font-size: 11px;
|
||
padding: 5px 10px;
|
||
}
|
||
.bootstrap .input-group-addon.input-lg, .bootstrap .input-group-lg > .input-group-addon, .bootstrap .input-group-lg > .input-group-btn > .input-group-addon.btn {
|
||
border-radius: 6px;
|
||
font-size: 15px;
|
||
padding: 10px 16px;
|
||
}
|
||
.bootstrap .input-group-addon input[type="radio"], .bootstrap .input-group-addon input[type="checkbox"] {
|
||
margin-top: 0;
|
||
}
|
||
.bootstrap .input-group .form-control:first-child, .bootstrap .input-group input[type="text"]:first-child, .bootstrap .input-group input[type="search"]:first-child, .bootstrap .input-group input[type="password"]:first-child, .bootstrap .input-group textarea:first-child, .bootstrap .input-group select:first-child, .bootstrap .input-group-addon:first-child, .bootstrap .input-group-btn:first-child > .btn, .bootstrap .input-group-btn:first-child > .btn-group > .btn, .bootstrap .input-group-btn:first-child > .dropdown-toggle, .bootstrap .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .bootstrap .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
|
||
border-bottom-right-radius: 0;
|
||
border-top-right-radius: 0;
|
||
}
|
||
.bootstrap .input-group-addon:first-child {
|
||
border-right: 0 none;
|
||
}
|
||
.bootstrap .input-group .form-control:last-child, .bootstrap .input-group input[type="text"]:last-child, .bootstrap .input-group input[type="search"]:last-child, .bootstrap .input-group input[type="password"]:last-child, .bootstrap .input-group textarea:last-child, .bootstrap .input-group select:last-child, .bootstrap .input-group-addon:last-child, .bootstrap .input-group-btn:last-child > .btn, .bootstrap .input-group-btn:last-child > .btn-group > .btn, .bootstrap .input-group-btn:last-child > .dropdown-toggle, .bootstrap .input-group-btn:first-child > .btn:not(:first-child), .bootstrap .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
|
||
border-bottom-left-radius: 0;
|
||
border-top-left-radius: 0;
|
||
}
|
||
.bootstrap .input-group-addon:last-child {
|
||
border-left: 0 none;
|
||
}
|
||
.bootstrap .input-group-btn {
|
||
font-size: 0;
|
||
position: relative;
|
||
white-space: nowrap;
|
||
}
|
||
.bootstrap .input-group-btn > .btn {
|
||
position: relative;
|
||
}
|
||
.bootstrap .input-group-btn > .btn + .btn {
|
||
margin-left: -1px;
|
||
}
|
||
.bootstrap .input-group-btn > .btn:hover, .bootstrap .input-group-btn > .btn:focus, .bootstrap .input-group-btn > .btn:active {
|
||
z-index: 2;
|
||
}
|
||
.bootstrap .input-group-btn:first-child > .btn, .bootstrap .input-group-btn:first-child > .btn-group {
|
||
margin-right: -1px;
|
||
}
|
||
.bootstrap .input-group-btn:last-child > .btn, .bootstrap .input-group-btn:last-child > .btn-group {
|
||
margin-left: -1px;
|
||
}
|
||
.bootstrap .nav, .bootstrap #header_notifs_icon_wrapper, .bootstrap #header_employee_box, .bootstrap #header_quick {
|
||
list-style: outside none none;
|
||
margin-bottom: 0;
|
||
padding-left: 0;
|
||
}
|
||
.bootstrap .nav:before, .bootstrap #header_notifs_icon_wrapper:before, .bootstrap #header_employee_box:before, .bootstrap #header_quick:before, .bootstrap .nav:after, .bootstrap #header_notifs_icon_wrapper:after, .bootstrap #header_employee_box:after, .bootstrap #header_quick:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
.bootstrap .nav:after, .bootstrap #header_notifs_icon_wrapper:after, .bootstrap #header_employee_box:after, .bootstrap #header_quick:after {
|
||
clear: both;
|
||
}
|
||
.bootstrap .nav > li, .bootstrap #header_notifs_icon_wrapper > li, .bootstrap #header_employee_box > li, .bootstrap #header_quick > li {
|
||
display: block;
|
||
position: relative;
|
||
}
|
||
.bootstrap .nav > li > a, .bootstrap #header_notifs_icon_wrapper > li > a, .bootstrap #header_employee_box > li > a, .bootstrap #header_quick > li > a {
|
||
display: block;
|
||
padding: 10px 15px;
|
||
position: relative;
|
||
}
|
||
.bootstrap .nav > li > a:hover, .bootstrap #header_notifs_icon_wrapper > li > a:hover, .bootstrap #header_employee_box > li > a:hover, .bootstrap #header_quick > li > a:hover, .bootstrap .nav > li > a:focus, .bootstrap #header_notifs_icon_wrapper > li > a:focus, .bootstrap #header_employee_box > li > a:focus, .bootstrap #header_quick > li > a:focus {
|
||
background-color: #eee;
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap .nav > li.disabled > a, .bootstrap #header_notifs_icon_wrapper > li.disabled > a, .bootstrap #header_employee_box > li.disabled > a, .bootstrap #header_quick > li.disabled > a {
|
||
color: #999;
|
||
}
|
||
.bootstrap .nav > li.disabled > a:hover, .bootstrap #header_notifs_icon_wrapper > li.disabled > a:hover, .bootstrap #header_employee_box > li.disabled > a:hover, .bootstrap #header_quick > li.disabled > a:hover, .bootstrap .nav > li.disabled > a:focus, .bootstrap #header_notifs_icon_wrapper > li.disabled > a:focus, .bootstrap #header_employee_box > li.disabled > a:focus, .bootstrap #header_quick > li.disabled > a:focus {
|
||
background-color: transparent;
|
||
color: #999;
|
||
cursor: not-allowed;
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap .nav .open > a, .bootstrap #header_notifs_icon_wrapper .open > a, .bootstrap #header_employee_box .open > a, .bootstrap #header_quick .open > a, .bootstrap .nav .open > a:hover, .bootstrap #header_notifs_icon_wrapper .open > a:hover, .bootstrap #header_employee_box .open > a:hover, .bootstrap #header_quick .open > a:hover, .bootstrap .nav .open > a:focus, .bootstrap #header_notifs_icon_wrapper .open > a:focus, .bootstrap #header_employee_box .open > a:focus, .bootstrap #header_quick .open > a:focus {
|
||
background-color: #eee;
|
||
border-color: #00aff0;
|
||
}
|
||
.bootstrap .nav .nav-divider, .bootstrap #header_notifs_icon_wrapper .nav-divider, .bootstrap #header_employee_box .nav-divider, .bootstrap #header_quick .nav-divider {
|
||
background-color: #e5e5e5;
|
||
height: 1px;
|
||
margin: 7.5px 0;
|
||
overflow: hidden;
|
||
}
|
||
.bootstrap .nav > li > a > img, .bootstrap #header_notifs_icon_wrapper > li > a > img, .bootstrap #header_employee_box > li > a > img, .bootstrap #header_quick > li > a > img {
|
||
max-width: none;
|
||
}
|
||
.bootstrap .nav-tabs {
|
||
border-bottom: 1px solid #ddd;
|
||
}
|
||
.bootstrap .nav-tabs > li {
|
||
float: left;
|
||
margin-bottom: -1px;
|
||
}
|
||
.bootstrap .nav-tabs > li > a {
|
||
border: 1px solid transparent;
|
||
border-radius: 3px 3px 0 0;
|
||
line-height: 1.42857;
|
||
margin-right: 2px;
|
||
}
|
||
.bootstrap .nav-tabs > li > a:hover {
|
||
border-color: #eee #eee #ddd;
|
||
}
|
||
.bootstrap .nav-tabs > li.active > a, .bootstrap .nav-tabs > li.active > a:hover, .bootstrap .nav-tabs > li.active > a:focus {
|
||
-moz-border-bottom-colors: none;
|
||
-moz-border-left-colors: none;
|
||
-moz-border-right-colors: none;
|
||
-moz-border-top-colors: none;
|
||
background-color: #fff;
|
||
border-color: #ddd #ddd transparent;
|
||
border-image: none;
|
||
border-style: solid;
|
||
border-width: 1px;
|
||
color: #555;
|
||
cursor: default;
|
||
}
|
||
.bootstrap .nav-pills > li {
|
||
float: left;
|
||
}
|
||
.bootstrap .nav-pills > li > a {
|
||
border-radius: 3px;
|
||
}
|
||
.bootstrap .nav-pills > li + li {
|
||
margin-left: 2px;
|
||
}
|
||
.bootstrap .nav-pills > li.active > a, .bootstrap .nav-pills > li.active > a:hover, .bootstrap .nav-pills > li.active > a:focus {
|
||
background-color: #00aff0;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .nav-stacked > li {
|
||
float: none;
|
||
}
|
||
.bootstrap .nav-stacked > li + li {
|
||
margin-left: 0;
|
||
margin-top: 2px;
|
||
}
|
||
.bootstrap .nav-justified, .bootstrap .nav-tabs.nav-justified {
|
||
width: 100%;
|
||
}
|
||
.bootstrap .nav-justified > li, .bootstrap .nav-tabs.nav-justified > li {
|
||
float: none;
|
||
}
|
||
.bootstrap .nav-justified > li > a, .bootstrap .nav-tabs.nav-justified > li > a {
|
||
margin-bottom: 5px;
|
||
text-align: center;
|
||
}
|
||
.bootstrap .nav-justified > .dropdown .dropdown-menu {
|
||
left: auto;
|
||
top: auto;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.bootstrap .nav-justified > li, .bootstrap .nav-tabs.nav-justified > li {
|
||
display: table-cell;
|
||
width: 1%;
|
||
}
|
||
.bootstrap .nav-justified > li > a, .bootstrap .nav-tabs.nav-justified > li > a {
|
||
margin-bottom: 0;
|
||
}
|
||
}
|
||
.bootstrap .nav-tabs-justified, .bootstrap .nav-tabs.nav-justified {
|
||
border-bottom: 0 none;
|
||
}
|
||
.bootstrap .nav-tabs-justified > li > a, .bootstrap .nav-tabs.nav-justified > li > a {
|
||
border-radius: 3px;
|
||
margin-right: 0;
|
||
}
|
||
.bootstrap .nav-tabs-justified > .active > a, .bootstrap .nav-tabs.nav-justified > .active > a, .bootstrap .nav-tabs-justified > .active > a:hover, .bootstrap .nav-tabs.nav-justified > .active > a:hover, .bootstrap .nav-tabs-justified > .active > a:focus, .bootstrap .nav-tabs.nav-justified > .active > a:focus {
|
||
border: 1px solid #ddd;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.bootstrap .nav-tabs-justified > li > a, .bootstrap .nav-tabs.nav-justified > li > a {
|
||
border-bottom: 1px solid #ddd;
|
||
border-radius: 3px 3px 0 0;
|
||
}
|
||
.bootstrap .nav-tabs-justified > .active > a, .bootstrap .nav-tabs.nav-justified > .active > a, .bootstrap .nav-tabs-justified > .active > a:hover, .bootstrap .nav-tabs.nav-justified > .active > a:hover, .bootstrap .nav-tabs-justified > .active > a:focus, .bootstrap .nav-tabs.nav-justified > .active > a:focus {
|
||
border-bottom-color: #fff;
|
||
}
|
||
}
|
||
.bootstrap .tab-content > .tab-pane {
|
||
display: none;
|
||
}
|
||
.bootstrap .tab-content > .active {
|
||
display: block;
|
||
}
|
||
.bootstrap .nav-tabs .dropdown-menu {
|
||
border-top-left-radius: 0;
|
||
border-top-right-radius: 0;
|
||
margin-top: -1px;
|
||
}
|
||
.bootstrap .navbar, .bootstrap #header_infos {
|
||
border: 1px solid transparent;
|
||
margin-bottom: 17px;
|
||
min-height: 35px;
|
||
position: relative;
|
||
}
|
||
.bootstrap .navbar:before, .bootstrap #header_infos:before, .bootstrap .navbar:after, .bootstrap #header_infos:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
.bootstrap .navbar:after, .bootstrap #header_infos:after {
|
||
clear: both;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.bootstrap .navbar, .bootstrap #header_infos {
|
||
border-radius: 3px;
|
||
}
|
||
}
|
||
.bootstrap .navbar-header:before, .bootstrap .navbar-header:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
.bootstrap .navbar-header:after {
|
||
clear: both;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.bootstrap .navbar-header {
|
||
float: left;
|
||
}
|
||
}
|
||
.bootstrap .navbar-collapse {
|
||
border-top: 1px solid transparent;
|
||
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
|
||
overflow-x: visible;
|
||
padding-left: 5px;
|
||
padding-right: 5px;
|
||
}
|
||
.bootstrap .navbar-collapse:before, .bootstrap .navbar-collapse:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
.bootstrap .navbar-collapse:after {
|
||
clear: both;
|
||
}
|
||
.bootstrap .navbar-collapse.in {
|
||
overflow-y: auto;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.bootstrap .navbar-collapse {
|
||
border-top: 0 none;
|
||
box-shadow: none;
|
||
width: auto;
|
||
}
|
||
.bootstrap .navbar-collapse.collapse {
|
||
display: block !important;
|
||
height: auto !important;
|
||
overflow: visible !important;
|
||
padding-bottom: 0;
|
||
}
|
||
.bootstrap .navbar-collapse.in {
|
||
overflow-y: visible;
|
||
}
|
||
.navbar-fixed-top .bootstrap .navbar-collapse, #header_infos .bootstrap .navbar-collapse, .navbar-static-top .bootstrap .navbar-collapse, .navbar-fixed-bottom .bootstrap .navbar-collapse {
|
||
padding-left: 0;
|
||
padding-right: 0;
|
||
}
|
||
}
|
||
.bootstrap .navbar-fixed-top .navbar-collapse, .bootstrap #header_infos .navbar-collapse, .bootstrap .navbar-fixed-bottom .navbar-collapse {
|
||
max-height: 340px;
|
||
}
|
||
@media (max-width: 480px) and (orientation: landscape) {
|
||
.bootstrap .navbar-fixed-top .navbar-collapse, .bootstrap #header_infos .navbar-collapse, .bootstrap .navbar-fixed-bottom .navbar-collapse {
|
||
max-height: 200px;
|
||
}
|
||
}
|
||
.bootstrap .container > .navbar-header, .bootstrap .container > .navbar-collapse, .bootstrap .container-fluid > .navbar-header, .bootstrap .container-fluid > .navbar-collapse {
|
||
margin-left: -5px;
|
||
margin-right: -5px;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.bootstrap .container > .navbar-header, .bootstrap .container > .navbar-collapse, .bootstrap .container-fluid > .navbar-header, .bootstrap .container-fluid > .navbar-collapse {
|
||
margin-left: 0;
|
||
margin-right: 0;
|
||
}
|
||
}
|
||
.bootstrap .navbar-static-top {
|
||
border-width: 0 0 1px;
|
||
z-index: 1000;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.bootstrap .navbar-static-top {
|
||
border-radius: 0;
|
||
}
|
||
}
|
||
.bootstrap .navbar-fixed-top, .bootstrap #header_infos, .bootstrap .navbar-fixed-bottom {
|
||
left: 0;
|
||
position: fixed;
|
||
right: 0;
|
||
z-index: 1030;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.bootstrap .navbar-fixed-top, .bootstrap #header_infos, .bootstrap .navbar-fixed-bottom {
|
||
border-radius: 0;
|
||
}
|
||
}
|
||
.bootstrap .navbar-fixed-top, .bootstrap #header_infos {
|
||
border-width: 0 0 1px;
|
||
top: 0;
|
||
}
|
||
.bootstrap .navbar-fixed-bottom {
|
||
border-width: 1px 0 0;
|
||
bottom: 0;
|
||
margin-bottom: 0;
|
||
}
|
||
.bootstrap .navbar-brand, .bootstrap #header_shopname {
|
||
float: left;
|
||
font-size: 15px;
|
||
height: 35px;
|
||
line-height: 17px;
|
||
padding: 9px 5px;
|
||
}
|
||
.bootstrap .navbar-brand:hover, .bootstrap #header_shopname:hover, .bootstrap .navbar-brand:focus, .bootstrap #header_shopname:focus {
|
||
text-decoration: none;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.navbar > .container .bootstrap .navbar-brand, #header_infos > .container .bootstrap .navbar-brand, .navbar > .container .bootstrap #header_shopname, #header_infos > .container .bootstrap #header_shopname, .navbar > .container-fluid .bootstrap .navbar-brand, #header_infos > .container-fluid .bootstrap .navbar-brand, .navbar > .container-fluid .bootstrap #header_shopname, #header_infos > .container-fluid .bootstrap #header_shopname {
|
||
margin-left: -5px;
|
||
}
|
||
}
|
||
.bootstrap .navbar-toggle {
|
||
background-color: transparent;
|
||
background-image: none;
|
||
border: 1px solid transparent;
|
||
border-radius: 3px;
|
||
float: right;
|
||
margin-bottom: 0.5px;
|
||
margin-right: 5px;
|
||
margin-top: 0.5px;
|
||
padding: 9px 10px;
|
||
position: relative;
|
||
}
|
||
.bootstrap .navbar-toggle:focus {
|
||
outline: 0 none;
|
||
}
|
||
.bootstrap .navbar-toggle .icon-bar {
|
||
border-radius: 1px;
|
||
display: block;
|
||
height: 2px;
|
||
width: 22px;
|
||
}
|
||
.bootstrap .navbar-toggle .icon-bar + .icon-bar {
|
||
margin-top: 4px;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.bootstrap .navbar-toggle {
|
||
display: none;
|
||
}
|
||
}
|
||
.bootstrap .navbar-nav, .bootstrap #header_notifs_icon_wrapper, .bootstrap #header_employee_box, .bootstrap #header_quick {
|
||
margin: 4.5px -5px;
|
||
}
|
||
.bootstrap .navbar-nav > li > a, .bootstrap #header_notifs_icon_wrapper > li > a, .bootstrap #header_employee_box > li > a, .bootstrap #header_quick > li > a {
|
||
line-height: 17px;
|
||
padding-bottom: 10px;
|
||
padding-top: 10px;
|
||
}
|
||
@media (max-width: 767px) {
|
||
.bootstrap .navbar-nav .open .dropdown-menu, .bootstrap #header_notifs_icon_wrapper .open .dropdown-menu, .bootstrap #header_employee_box .open .dropdown-menu, .bootstrap #header_quick .open .dropdown-menu {
|
||
background-color: transparent;
|
||
border: 0 none;
|
||
box-shadow: none;
|
||
float: none;
|
||
margin-top: 0;
|
||
position: static;
|
||
width: auto;
|
||
}
|
||
.bootstrap .navbar-nav .open .dropdown-menu > li > a, .bootstrap #header_notifs_icon_wrapper .open .dropdown-menu > li > a, .bootstrap #header_employee_box .open .dropdown-menu > li > a, .bootstrap #header_quick .open .dropdown-menu > li > a, .bootstrap .navbar-nav .open .dropdown-menu .dropdown-header, .bootstrap #header_notifs_icon_wrapper .open .dropdown-menu .dropdown-header, .bootstrap #header_employee_box .open .dropdown-menu .dropdown-header, .bootstrap #header_quick .open .dropdown-menu .dropdown-header {
|
||
padding: 5px 15px 5px 25px;
|
||
}
|
||
.bootstrap .navbar-nav .open .dropdown-menu > li > a, .bootstrap #header_notifs_icon_wrapper .open .dropdown-menu > li > a, .bootstrap #header_employee_box .open .dropdown-menu > li > a, .bootstrap #header_quick .open .dropdown-menu > li > a {
|
||
line-height: 17px;
|
||
}
|
||
.bootstrap .navbar-nav .open .dropdown-menu > li > a:hover, .bootstrap #header_notifs_icon_wrapper .open .dropdown-menu > li > a:hover, .bootstrap #header_employee_box .open .dropdown-menu > li > a:hover, .bootstrap #header_quick .open .dropdown-menu > li > a:hover, .bootstrap .navbar-nav .open .dropdown-menu > li > a:focus, .bootstrap #header_notifs_icon_wrapper .open .dropdown-menu > li > a:focus, .bootstrap #header_employee_box .open .dropdown-menu > li > a:focus, .bootstrap #header_quick .open .dropdown-menu > li > a:focus {
|
||
background-image: none;
|
||
}
|
||
}
|
||
@media (min-width: 768px) {
|
||
.bootstrap .navbar-nav, .bootstrap #header_notifs_icon_wrapper, .bootstrap #header_employee_box, .bootstrap #header_quick {
|
||
float: left;
|
||
margin: 0;
|
||
}
|
||
.bootstrap .navbar-nav > li, .bootstrap #header_notifs_icon_wrapper > li, .bootstrap #header_employee_box > li, .bootstrap #header_quick > li {
|
||
float: left;
|
||
}
|
||
.bootstrap .navbar-nav > li > a, .bootstrap #header_notifs_icon_wrapper > li > a, .bootstrap #header_employee_box > li > a, .bootstrap #header_quick > li > a {
|
||
padding-bottom: 9px;
|
||
padding-top: 9px;
|
||
}
|
||
.bootstrap .navbar-nav.navbar-right:last-child, .bootstrap #header_notifs_icon_wrapper.navbar-right:last-child, .bootstrap #header_employee_box:last-child, .bootstrap #header_quick.navbar-right:last-child {
|
||
margin-right: -5px;
|
||
}
|
||
}
|
||
@media (min-width: 768px) {
|
||
.bootstrap .navbar-left, .bootstrap #header_quick {
|
||
float: left !important;
|
||
}
|
||
.bootstrap .navbar-right, .bootstrap #header_employee_box {
|
||
float: right !important;
|
||
}
|
||
}
|
||
.bootstrap .navbar-form {
|
||
border-bottom: 1px solid transparent;
|
||
border-top: 1px solid transparent;
|
||
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.1);
|
||
margin: 4px -5px;
|
||
padding: 10px 5px;
|
||
}
|
||
@media (max-width: 767px) {
|
||
.bootstrap .navbar-form .form-group {
|
||
margin-bottom: 5px;
|
||
}
|
||
}
|
||
@media (min-width: 768px) {
|
||
.bootstrap .navbar-form {
|
||
border: 0 none;
|
||
box-shadow: none;
|
||
margin-left: 0;
|
||
margin-right: 0;
|
||
padding-bottom: 0;
|
||
padding-top: 0;
|
||
width: auto;
|
||
}
|
||
.bootstrap .navbar-form.navbar-right:last-child, .bootstrap #header_employee_box.navbar-form:last-child {
|
||
margin-right: -5px;
|
||
}
|
||
}
|
||
.bootstrap .navbar-nav > li > .dropdown-menu, .bootstrap #header_notifs_icon_wrapper > li > .dropdown-menu, .bootstrap #header_employee_box > li > .dropdown-menu, .bootstrap #header_quick > li > .dropdown-menu {
|
||
border-top-left-radius: 0;
|
||
border-top-right-radius: 0;
|
||
margin-top: 0;
|
||
}
|
||
.bootstrap .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu, .bootstrap .navbar-fixed-bottom #header_notifs_icon_wrapper > li > .dropdown-menu, .bootstrap .navbar-fixed-bottom #header_employee_box > li > .dropdown-menu, .bootstrap .navbar-fixed-bottom #header_quick > li > .dropdown-menu {
|
||
border-bottom-left-radius: 0;
|
||
border-bottom-right-radius: 0;
|
||
}
|
||
.bootstrap .navbar-btn {
|
||
margin-bottom: 4px;
|
||
margin-top: 4px;
|
||
}
|
||
.bootstrap .navbar-btn.btn-sm, .bootstrap .btn-group-sm > .navbar-btn.btn {
|
||
margin-bottom: 3.5px;
|
||
margin-top: 3.5px;
|
||
}
|
||
.bootstrap .navbar-btn.btn-xs, .bootstrap .btn-group-xs > .navbar-btn.btn {
|
||
margin-bottom: 6.5px;
|
||
margin-top: 6.5px;
|
||
}
|
||
.bootstrap .navbar-text {
|
||
margin-bottom: 9px;
|
||
margin-top: 9px;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.bootstrap .navbar-text {
|
||
float: left;
|
||
margin-left: 5px;
|
||
margin-right: 5px;
|
||
}
|
||
.bootstrap .navbar-text.navbar-right:last-child, .bootstrap #header_employee_box.navbar-text:last-child {
|
||
margin-right: 0;
|
||
}
|
||
}
|
||
.bootstrap .navbar-default {
|
||
background-color: #f8f8f8;
|
||
border-color: #e7e7e7;
|
||
}
|
||
.bootstrap .navbar-default .navbar-brand, .bootstrap .navbar-default #header_shopname {
|
||
color: #777;
|
||
}
|
||
.bootstrap .navbar-default .navbar-brand:hover, .bootstrap .navbar-default #header_shopname:hover, .bootstrap .navbar-default .navbar-brand:focus, .bootstrap .navbar-default #header_shopname:focus {
|
||
background-color: transparent;
|
||
color: #5e5e5e;
|
||
}
|
||
.bootstrap .navbar-default .navbar-text {
|
||
color: #777;
|
||
}
|
||
.bootstrap .navbar-default .navbar-nav > li > a, .bootstrap .navbar-default #header_notifs_icon_wrapper > li > a, .bootstrap .navbar-default #header_employee_box > li > a, .bootstrap .navbar-default #header_quick > li > a {
|
||
color: #777;
|
||
}
|
||
.bootstrap .navbar-default .navbar-nav > li > a:hover, .bootstrap .navbar-default #header_notifs_icon_wrapper > li > a:hover, .bootstrap .navbar-default #header_employee_box > li > a:hover, .bootstrap .navbar-default #header_quick > li > a:hover, .bootstrap .navbar-default .navbar-nav > li > a:focus, .bootstrap .navbar-default #header_notifs_icon_wrapper > li > a:focus, .bootstrap .navbar-default #header_employee_box > li > a:focus, .bootstrap .navbar-default #header_quick > li > a:focus {
|
||
background-color: transparent;
|
||
color: #333;
|
||
}
|
||
.bootstrap .navbar-default .navbar-nav > .active > a, .bootstrap .navbar-default #header_notifs_icon_wrapper > .active > a, .bootstrap .navbar-default #header_employee_box > .active > a, .bootstrap .navbar-default #header_quick > .active > a, .bootstrap .navbar-default .navbar-nav > .active > a:hover, .bootstrap .navbar-default #header_notifs_icon_wrapper > .active > a:hover, .bootstrap .navbar-default #header_employee_box > .active > a:hover, .bootstrap .navbar-default #header_quick > .active > a:hover, .bootstrap .navbar-default .navbar-nav > .active > a:focus, .bootstrap .navbar-default #header_notifs_icon_wrapper > .active > a:focus, .bootstrap .navbar-default #header_employee_box > .active > a:focus, .bootstrap .navbar-default #header_quick > .active > a:focus {
|
||
background-color: #e7e7e7;
|
||
color: #555;
|
||
}
|
||
.bootstrap .navbar-default .navbar-nav > .disabled > a, .bootstrap .navbar-default #header_notifs_icon_wrapper > .disabled > a, .bootstrap .navbar-default #header_employee_box > .disabled > a, .bootstrap .navbar-default #header_quick > .disabled > a, .bootstrap .navbar-default .navbar-nav > .disabled > a:hover, .bootstrap .navbar-default #header_notifs_icon_wrapper > .disabled > a:hover, .bootstrap .navbar-default #header_employee_box > .disabled > a:hover, .bootstrap .navbar-default #header_quick > .disabled > a:hover, .bootstrap .navbar-default .navbar-nav > .disabled > a:focus, .bootstrap .navbar-default #header_notifs_icon_wrapper > .disabled > a:focus, .bootstrap .navbar-default #header_employee_box > .disabled > a:focus, .bootstrap .navbar-default #header_quick > .disabled > a:focus {
|
||
background-color: transparent;
|
||
color: #ccc;
|
||
}
|
||
.bootstrap .navbar-default .navbar-toggle {
|
||
border-color: #ddd;
|
||
}
|
||
.bootstrap .navbar-default .navbar-toggle:hover, .bootstrap .navbar-default .navbar-toggle:focus {
|
||
background-color: #ddd;
|
||
}
|
||
.bootstrap .navbar-default .navbar-toggle .icon-bar {
|
||
background-color: #888;
|
||
}
|
||
.bootstrap .navbar-default .navbar-collapse, .bootstrap .navbar-default .navbar-form {
|
||
border-color: #e7e7e7;
|
||
}
|
||
.bootstrap .navbar-default .navbar-nav > .open > a, .bootstrap .navbar-default #header_notifs_icon_wrapper > .open > a, .bootstrap .navbar-default #header_employee_box > .open > a, .bootstrap .navbar-default #header_quick > .open > a, .bootstrap .navbar-default .navbar-nav > .open > a:hover, .bootstrap .navbar-default #header_notifs_icon_wrapper > .open > a:hover, .bootstrap .navbar-default #header_employee_box > .open > a:hover, .bootstrap .navbar-default #header_quick > .open > a:hover, .bootstrap .navbar-default .navbar-nav > .open > a:focus, .bootstrap .navbar-default #header_notifs_icon_wrapper > .open > a:focus, .bootstrap .navbar-default #header_employee_box > .open > a:focus, .bootstrap .navbar-default #header_quick > .open > a:focus {
|
||
background-color: #e7e7e7;
|
||
color: #555;
|
||
}
|
||
@media (max-width: 767px) {
|
||
.bootstrap .navbar-default .navbar-nav .open .dropdown-menu > li > a, .bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > li > a, .bootstrap .navbar-default #header_employee_box .open .dropdown-menu > li > a, .bootstrap .navbar-default #header_quick .open .dropdown-menu > li > a {
|
||
color: #777;
|
||
}
|
||
.bootstrap .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > li > a:hover, .bootstrap .navbar-default #header_employee_box .open .dropdown-menu > li > a:hover, .bootstrap .navbar-default #header_quick .open .dropdown-menu > li > a:hover, .bootstrap .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus, .bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > li > a:focus, .bootstrap .navbar-default #header_employee_box .open .dropdown-menu > li > a:focus, .bootstrap .navbar-default #header_quick .open .dropdown-menu > li > a:focus {
|
||
background-color: transparent;
|
||
color: #333;
|
||
}
|
||
.bootstrap .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > .active > a, .bootstrap .navbar-default #header_employee_box .open .dropdown-menu > .active > a, .bootstrap .navbar-default #header_quick .open .dropdown-menu > .active > a, .bootstrap .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > .active > a:hover, .bootstrap .navbar-default #header_employee_box .open .dropdown-menu > .active > a:hover, .bootstrap .navbar-default #header_quick .open .dropdown-menu > .active > a:hover, .bootstrap .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus, .bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > .active > a:focus, .bootstrap .navbar-default #header_employee_box .open .dropdown-menu > .active > a:focus, .bootstrap .navbar-default #header_quick .open .dropdown-menu > .active > a:focus {
|
||
background-color: #e7e7e7;
|
||
color: #555;
|
||
}
|
||
.bootstrap .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > .disabled > a, .bootstrap .navbar-default #header_employee_box .open .dropdown-menu > .disabled > a, .bootstrap .navbar-default #header_quick .open .dropdown-menu > .disabled > a, .bootstrap .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > .disabled > a:hover, .bootstrap .navbar-default #header_employee_box .open .dropdown-menu > .disabled > a:hover, .bootstrap .navbar-default #header_quick .open .dropdown-menu > .disabled > a:hover, .bootstrap .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus, .bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > .disabled > a:focus, .bootstrap .navbar-default #header_employee_box .open .dropdown-menu > .disabled > a:focus, .bootstrap .navbar-default #header_quick .open .dropdown-menu > .disabled > a:focus {
|
||
background-color: transparent;
|
||
color: #ccc;
|
||
}
|
||
}
|
||
.bootstrap .navbar-default .navbar-link {
|
||
color: #777;
|
||
}
|
||
.bootstrap .navbar-default .navbar-link:hover {
|
||
color: #333;
|
||
}
|
||
.bootstrap .navbar-default .btn-link {
|
||
color: #777;
|
||
}
|
||
.bootstrap .navbar-default .btn-link:hover, .bootstrap .navbar-default .btn-link:focus {
|
||
color: #333;
|
||
}
|
||
.bootstrap .navbar-default .btn-link[disabled]:hover, .bootstrap .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .bootstrap .navbar-default .btn-link:hover, fieldset[disabled] .bootstrap .navbar-default .btn-link:focus {
|
||
color: #ccc;
|
||
}
|
||
.bootstrap .navbar-inverse, .bootstrap #header_infos {
|
||
background-color: #222;
|
||
border-color: #090909;
|
||
}
|
||
.bootstrap .navbar-inverse .navbar-brand, .bootstrap #header_infos .navbar-brand, .bootstrap .navbar-inverse #header_shopname, .bootstrap #header_infos #header_shopname {
|
||
color: #999;
|
||
}
|
||
.bootstrap .navbar-inverse .navbar-brand:hover, .bootstrap #header_infos .navbar-brand:hover, .bootstrap .navbar-inverse #header_shopname:hover, .bootstrap #header_infos #header_shopname:hover, .bootstrap .navbar-inverse .navbar-brand:focus, .bootstrap #header_infos .navbar-brand:focus, .bootstrap .navbar-inverse #header_shopname:focus, .bootstrap #header_infos #header_shopname:focus {
|
||
background-color: transparent;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .navbar-inverse .navbar-text, .bootstrap #header_infos .navbar-text {
|
||
color: #999;
|
||
}
|
||
.bootstrap .navbar-inverse .navbar-nav > li > a, .bootstrap #header_infos .navbar-nav > li > a, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > li > a, .bootstrap #header_infos #header_notifs_icon_wrapper > li > a, .bootstrap .navbar-inverse #header_employee_box > li > a, .bootstrap #header_infos #header_employee_box > li > a, .bootstrap .navbar-inverse #header_quick > li > a, .bootstrap #header_infos #header_quick > li > a {
|
||
color: #999;
|
||
}
|
||
.bootstrap .navbar-inverse .navbar-nav > li > a:hover, .bootstrap #header_infos .navbar-nav > li > a:hover, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > li > a:hover, .bootstrap #header_infos #header_notifs_icon_wrapper > li > a:hover, .bootstrap .navbar-inverse #header_employee_box > li > a:hover, .bootstrap #header_infos #header_employee_box > li > a:hover, .bootstrap .navbar-inverse #header_quick > li > a:hover, .bootstrap #header_infos #header_quick > li > a:hover, .bootstrap .navbar-inverse .navbar-nav > li > a:focus, .bootstrap #header_infos .navbar-nav > li > a:focus, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > li > a:focus, .bootstrap #header_infos #header_notifs_icon_wrapper > li > a:focus, .bootstrap .navbar-inverse #header_employee_box > li > a:focus, .bootstrap #header_infos #header_employee_box > li > a:focus, .bootstrap .navbar-inverse #header_quick > li > a:focus, .bootstrap #header_infos #header_quick > li > a:focus {
|
||
background-color: transparent;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .navbar-inverse .navbar-nav > .active > a, .bootstrap #header_infos .navbar-nav > .active > a, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > .active > a, .bootstrap #header_infos #header_notifs_icon_wrapper > .active > a, .bootstrap .navbar-inverse #header_employee_box > .active > a, .bootstrap #header_infos #header_employee_box > .active > a, .bootstrap .navbar-inverse #header_quick > .active > a, .bootstrap #header_infos #header_quick > .active > a, .bootstrap .navbar-inverse .navbar-nav > .active > a:hover, .bootstrap #header_infos .navbar-nav > .active > a:hover, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > .active > a:hover, .bootstrap #header_infos #header_notifs_icon_wrapper > .active > a:hover, .bootstrap .navbar-inverse #header_employee_box > .active > a:hover, .bootstrap #header_infos #header_employee_box > .active > a:hover, .bootstrap .navbar-inverse #header_quick > .active > a:hover, .bootstrap #header_infos #header_quick > .active > a:hover, .bootstrap .navbar-inverse .navbar-nav > .active > a:focus, .bootstrap #header_infos .navbar-nav > .active > a:focus, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > .active > a:focus, .bootstrap #header_infos #header_notifs_icon_wrapper > .active > a:focus, .bootstrap .navbar-inverse #header_employee_box > .active > a:focus, .bootstrap #header_infos #header_employee_box > .active > a:focus, .bootstrap .navbar-inverse #header_quick > .active > a:focus, .bootstrap #header_infos #header_quick > .active > a:focus {
|
||
background-color: #090909;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .navbar-inverse .navbar-nav > .disabled > a, .bootstrap #header_infos .navbar-nav > .disabled > a, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > .disabled > a, .bootstrap #header_infos #header_notifs_icon_wrapper > .disabled > a, .bootstrap .navbar-inverse #header_employee_box > .disabled > a, .bootstrap #header_infos #header_employee_box > .disabled > a, .bootstrap .navbar-inverse #header_quick > .disabled > a, .bootstrap #header_infos #header_quick > .disabled > a, .bootstrap .navbar-inverse .navbar-nav > .disabled > a:hover, .bootstrap #header_infos .navbar-nav > .disabled > a:hover, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > .disabled > a:hover, .bootstrap #header_infos #header_notifs_icon_wrapper > .disabled > a:hover, .bootstrap .navbar-inverse #header_employee_box > .disabled > a:hover, .bootstrap #header_infos #header_employee_box > .disabled > a:hover, .bootstrap .navbar-inverse #header_quick > .disabled > a:hover, .bootstrap #header_infos #header_quick > .disabled > a:hover, .bootstrap .navbar-inverse .navbar-nav > .disabled > a:focus, .bootstrap #header_infos .navbar-nav > .disabled > a:focus, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > .disabled > a:focus, .bootstrap #header_infos #header_notifs_icon_wrapper > .disabled > a:focus, .bootstrap .navbar-inverse #header_employee_box > .disabled > a:focus, .bootstrap #header_infos #header_employee_box > .disabled > a:focus, .bootstrap .navbar-inverse #header_quick > .disabled > a:focus, .bootstrap #header_infos #header_quick > .disabled > a:focus {
|
||
background-color: transparent;
|
||
color: #444;
|
||
}
|
||
.bootstrap .navbar-inverse .navbar-toggle, .bootstrap #header_infos .navbar-toggle {
|
||
border-color: #333;
|
||
}
|
||
.bootstrap .navbar-inverse .navbar-toggle:hover, .bootstrap #header_infos .navbar-toggle:hover, .bootstrap .navbar-inverse .navbar-toggle:focus, .bootstrap #header_infos .navbar-toggle:focus {
|
||
background-color: #333;
|
||
}
|
||
.bootstrap .navbar-inverse .navbar-toggle .icon-bar, .bootstrap #header_infos .navbar-toggle .icon-bar {
|
||
background-color: #fff;
|
||
}
|
||
.bootstrap .navbar-inverse .navbar-collapse, .bootstrap #header_infos .navbar-collapse, .bootstrap .navbar-inverse .navbar-form, .bootstrap #header_infos .navbar-form {
|
||
border-color: #101010;
|
||
}
|
||
.bootstrap .navbar-inverse .navbar-nav > .open > a, .bootstrap #header_infos .navbar-nav > .open > a, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > .open > a, .bootstrap #header_infos #header_notifs_icon_wrapper > .open > a, .bootstrap .navbar-inverse #header_employee_box > .open > a, .bootstrap #header_infos #header_employee_box > .open > a, .bootstrap .navbar-inverse #header_quick > .open > a, .bootstrap #header_infos #header_quick > .open > a, .bootstrap .navbar-inverse .navbar-nav > .open > a:hover, .bootstrap #header_infos .navbar-nav > .open > a:hover, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > .open > a:hover, .bootstrap #header_infos #header_notifs_icon_wrapper > .open > a:hover, .bootstrap .navbar-inverse #header_employee_box > .open > a:hover, .bootstrap #header_infos #header_employee_box > .open > a:hover, .bootstrap .navbar-inverse #header_quick > .open > a:hover, .bootstrap #header_infos #header_quick > .open > a:hover, .bootstrap .navbar-inverse .navbar-nav > .open > a:focus, .bootstrap #header_infos .navbar-nav > .open > a:focus, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > .open > a:focus, .bootstrap #header_infos #header_notifs_icon_wrapper > .open > a:focus, .bootstrap .navbar-inverse #header_employee_box > .open > a:focus, .bootstrap #header_infos #header_employee_box > .open > a:focus, .bootstrap .navbar-inverse #header_quick > .open > a:focus, .bootstrap #header_infos #header_quick > .open > a:focus {
|
||
background-color: #090909;
|
||
color: #fff;
|
||
}
|
||
@media (max-width: 767px) {
|
||
.bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header, .bootstrap #header_infos .navbar-nav .open .dropdown-menu > .dropdown-header, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu > .dropdown-header, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu > .dropdown-header, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu > .dropdown-header, .bootstrap #header_infos #header_employee_box .open .dropdown-menu > .dropdown-header, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu > .dropdown-header, .bootstrap #header_infos #header_quick .open .dropdown-menu > .dropdown-header {
|
||
border-color: #090909;
|
||
}
|
||
.bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu .divider, .bootstrap #header_infos .navbar-nav .open .dropdown-menu .divider, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu .divider, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu .divider, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu .divider, .bootstrap #header_infos #header_employee_box .open .dropdown-menu .divider, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu .divider, .bootstrap #header_infos #header_quick .open .dropdown-menu .divider {
|
||
background-color: #090909;
|
||
}
|
||
.bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu > li > a, .bootstrap #header_infos .navbar-nav .open .dropdown-menu > li > a, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu > li > a, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu > li > a, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu > li > a, .bootstrap #header_infos #header_employee_box .open .dropdown-menu > li > a, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu > li > a, .bootstrap #header_infos #header_quick .open .dropdown-menu > li > a {
|
||
color: #999;
|
||
}
|
||
.bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .bootstrap #header_infos .navbar-nav .open .dropdown-menu > li > a:hover, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu > li > a:hover, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu > li > a:hover, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu > li > a:hover, .bootstrap #header_infos #header_employee_box .open .dropdown-menu > li > a:hover, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu > li > a:hover, .bootstrap #header_infos #header_quick .open .dropdown-menu > li > a:hover, .bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus, .bootstrap #header_infos .navbar-nav .open .dropdown-menu > li > a:focus, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu > li > a:focus, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu > li > a:focus, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu > li > a:focus, .bootstrap #header_infos #header_employee_box .open .dropdown-menu > li > a:focus, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu > li > a:focus, .bootstrap #header_infos #header_quick .open .dropdown-menu > li > a:focus {
|
||
background-color: transparent;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .bootstrap #header_infos .navbar-nav .open .dropdown-menu > .active > a, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu > .active > a, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu > .active > a, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu > .active > a, .bootstrap #header_infos #header_employee_box .open .dropdown-menu > .active > a, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu > .active > a, .bootstrap #header_infos #header_quick .open .dropdown-menu > .active > a, .bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .bootstrap #header_infos .navbar-nav .open .dropdown-menu > .active > a:hover, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu > .active > a:hover, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu > .active > a:hover, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu > .active > a:hover, .bootstrap #header_infos #header_employee_box .open .dropdown-menu > .active > a:hover, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu > .active > a:hover, .bootstrap #header_infos #header_quick .open .dropdown-menu > .active > a:hover, .bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus, .bootstrap #header_infos .navbar-nav .open .dropdown-menu > .active > a:focus, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu > .active > a:focus, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu > .active > a:focus, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu > .active > a:focus, .bootstrap #header_infos #header_employee_box .open .dropdown-menu > .active > a:focus, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu > .active > a:focus, .bootstrap #header_infos #header_quick .open .dropdown-menu > .active > a:focus {
|
||
background-color: #090909;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .bootstrap #header_infos .navbar-nav .open .dropdown-menu > .disabled > a, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu > .disabled > a, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu > .disabled > a, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu > .disabled > a, .bootstrap #header_infos #header_employee_box .open .dropdown-menu > .disabled > a, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu > .disabled > a, .bootstrap #header_infos #header_quick .open .dropdown-menu > .disabled > a, .bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .bootstrap #header_infos .navbar-nav .open .dropdown-menu > .disabled > a:hover, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu > .disabled > a:hover, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu > .disabled > a:hover, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu > .disabled > a:hover, .bootstrap #header_infos #header_employee_box .open .dropdown-menu > .disabled > a:hover, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu > .disabled > a:hover, .bootstrap #header_infos #header_quick .open .dropdown-menu > .disabled > a:hover, .bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus, .bootstrap #header_infos .navbar-nav .open .dropdown-menu > .disabled > a:focus, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu > .disabled > a:focus, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu > .disabled > a:focus, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu > .disabled > a:focus, .bootstrap #header_infos #header_employee_box .open .dropdown-menu > .disabled > a:focus, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu > .disabled > a:focus, .bootstrap #header_infos #header_quick .open .dropdown-menu > .disabled > a:focus {
|
||
background-color: transparent;
|
||
color: #444;
|
||
}
|
||
}
|
||
.bootstrap .navbar-inverse .navbar-link, .bootstrap #header_infos .navbar-link {
|
||
color: #999;
|
||
}
|
||
.bootstrap .navbar-inverse .navbar-link:hover, .bootstrap #header_infos .navbar-link:hover {
|
||
color: #fff;
|
||
}
|
||
.bootstrap .navbar-inverse .btn-link, .bootstrap #header_infos .btn-link {
|
||
color: #999;
|
||
}
|
||
.bootstrap .navbar-inverse .btn-link:hover, .bootstrap #header_infos .btn-link:hover, .bootstrap .navbar-inverse .btn-link:focus, .bootstrap #header_infos .btn-link:focus {
|
||
color: #fff;
|
||
}
|
||
.bootstrap .navbar-inverse .btn-link[disabled]:hover, .bootstrap #header_infos .btn-link[disabled]:hover, .bootstrap .navbar-inverse .btn-link[disabled]:focus, .bootstrap #header_infos .btn-link[disabled]:focus, fieldset[disabled] .bootstrap .navbar-inverse .btn-link:hover, fieldset[disabled] .bootstrap #header_infos .btn-link:hover, fieldset[disabled] .bootstrap .navbar-inverse .btn-link:focus, fieldset[disabled] .bootstrap #header_infos .btn-link:focus {
|
||
color: #444;
|
||
}
|
||
.bootstrap .breadcrumb {
|
||
background-color: #f5f5f5;
|
||
border-radius: 3px;
|
||
list-style: outside none none;
|
||
margin-bottom: 17px;
|
||
padding: 8px 15px;
|
||
}
|
||
.bootstrap .breadcrumb > li {
|
||
display: inline-block;
|
||
}
|
||
.bootstrap .breadcrumb > li + li:before {
|
||
color: #ccc;
|
||
content: "/ ";
|
||
padding: 0 5px;
|
||
}
|
||
.bootstrap .breadcrumb > .active {
|
||
color: #999;
|
||
}
|
||
.bootstrap .pagination {
|
||
border-radius: 3px;
|
||
display: inline-block;
|
||
margin: 17px 0;
|
||
padding-left: 0;
|
||
}
|
||
.bootstrap .pagination > li {
|
||
display: inline;
|
||
}
|
||
.bootstrap .pagination > li > a, .bootstrap .pagination > li > span {
|
||
background-color: #fff;
|
||
border: 1px solid #ddd;
|
||
color: #00aff0;
|
||
float: left;
|
||
line-height: 1.42857;
|
||
margin-left: -1px;
|
||
padding: 4px 8px;
|
||
position: relative;
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap .pagination > li:first-child > a, .bootstrap .pagination > li:first-child > span {
|
||
border-bottom-left-radius: 3px;
|
||
border-top-left-radius: 3px;
|
||
margin-left: 0;
|
||
}
|
||
.bootstrap .pagination > li:last-child > a, .bootstrap .pagination > li:last-child > span {
|
||
border-bottom-right-radius: 3px;
|
||
border-top-right-radius: 3px;
|
||
}
|
||
.bootstrap .pagination > li > a:hover, .bootstrap .pagination > li > a:focus, .bootstrap .pagination > li > span:hover, .bootstrap .pagination > li > span:focus {
|
||
background-color: #eee;
|
||
border-color: #ddd;
|
||
color: #0077a3;
|
||
}
|
||
.bootstrap .pagination > .active > a, .bootstrap .pagination > .active > a:hover, .bootstrap .pagination > .active > a:focus, .bootstrap .pagination > .active > span, .bootstrap .pagination > .active > span:hover, .bootstrap .pagination > .active > span:focus {
|
||
background-color: #00aff0;
|
||
border-color: #00aff0;
|
||
color: #fff;
|
||
cursor: default;
|
||
z-index: 2;
|
||
}
|
||
.bootstrap .pagination > .disabled > span, .bootstrap .pagination > .disabled > span:hover, .bootstrap .pagination > .disabled > span:focus, .bootstrap .pagination > .disabled > a, .bootstrap .pagination > .disabled > a:hover, .bootstrap .pagination > .disabled > a:focus {
|
||
background-color: #fff;
|
||
border-color: #ddd;
|
||
color: #999;
|
||
cursor: not-allowed;
|
||
}
|
||
.bootstrap .pagination-lg > li > a, .bootstrap .pagination-lg > li > span {
|
||
font-size: 15px;
|
||
padding: 10px 16px;
|
||
}
|
||
.bootstrap .pagination-lg > li:first-child > a, .bootstrap .pagination-lg > li:first-child > span {
|
||
border-bottom-left-radius: 6px;
|
||
border-top-left-radius: 6px;
|
||
}
|
||
.bootstrap .pagination-lg > li:last-child > a, .bootstrap .pagination-lg > li:last-child > span {
|
||
border-bottom-right-radius: 6px;
|
||
border-top-right-radius: 6px;
|
||
}
|
||
.bootstrap .pagination-sm > li > a, .bootstrap .pagination-sm > li > span {
|
||
font-size: 11px;
|
||
padding: 5px 10px;
|
||
}
|
||
.bootstrap .pagination-sm > li:first-child > a, .bootstrap .pagination-sm > li:first-child > span {
|
||
border-bottom-left-radius: 3px;
|
||
border-top-left-radius: 3px;
|
||
}
|
||
.bootstrap .pagination-sm > li:last-child > a, .bootstrap .pagination-sm > li:last-child > span {
|
||
border-bottom-right-radius: 3px;
|
||
border-top-right-radius: 3px;
|
||
}
|
||
.bootstrap .pager {
|
||
list-style: outside none none;
|
||
margin: 17px 0;
|
||
padding-left: 0;
|
||
text-align: center;
|
||
}
|
||
.bootstrap .pager:before, .bootstrap .pager:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
.bootstrap .pager:after {
|
||
clear: both;
|
||
}
|
||
.bootstrap .pager li {
|
||
display: inline;
|
||
}
|
||
.bootstrap .pager li > a, .bootstrap .pager li > span {
|
||
background-color: #fff;
|
||
border: 1px solid #ddd;
|
||
border-radius: 15px;
|
||
display: inline-block;
|
||
padding: 5px 14px;
|
||
}
|
||
.bootstrap .pager li > a:hover, .bootstrap .pager li > a:focus {
|
||
background-color: #eee;
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap .pager .next > a, .bootstrap .pager .next > span {
|
||
float: right;
|
||
}
|
||
.bootstrap .pager .previous > a, .bootstrap .pager .previous > span {
|
||
float: left;
|
||
}
|
||
.bootstrap .pager .disabled > a, .bootstrap .pager .disabled > a:hover, .bootstrap .pager .disabled > a:focus, .bootstrap .pager .disabled > span {
|
||
background-color: #fff;
|
||
color: #999;
|
||
cursor: not-allowed;
|
||
}
|
||
.bootstrap .label {
|
||
border-radius: 0.25em;
|
||
color: #fff;
|
||
display: inline;
|
||
font-size: 75%;
|
||
font-weight: bold;
|
||
line-height: 1;
|
||
padding: 0.2em 0.6em 0.3em;
|
||
text-align: center;
|
||
vertical-align: baseline;
|
||
white-space: nowrap;
|
||
}
|
||
.bootstrap .label:empty {
|
||
display: none;
|
||
}
|
||
.btn .bootstrap .label {
|
||
position: relative;
|
||
top: -1px;
|
||
}
|
||
.bootstrap a.label:hover, .bootstrap a.label:focus {
|
||
color: #fff;
|
||
cursor: pointer;
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap .label-default {
|
||
background-color: #999;
|
||
}
|
||
.bootstrap .label-default[href]:hover, .bootstrap .label-default[href]:focus {
|
||
background-color: gray;
|
||
}
|
||
.bootstrap .label-primary {
|
||
background-color: #00aff0;
|
||
}
|
||
.bootstrap .label-primary[href]:hover, .bootstrap .label-primary[href]:focus {
|
||
background-color: #008abd;
|
||
}
|
||
.bootstrap .label-success {
|
||
background-color: #79bd3c;
|
||
}
|
||
.bootstrap .label-success[href]:hover, .bootstrap .label-success[href]:focus {
|
||
background-color: #609730;
|
||
}
|
||
.bootstrap .label-info {
|
||
background-color: #5bc0de;
|
||
}
|
||
.bootstrap .label-info[href]:hover, .bootstrap .label-info[href]:focus {
|
||
background-color: #31b0d5;
|
||
}
|
||
.bootstrap .label-warning {
|
||
background-color: #f0ad4e;
|
||
}
|
||
.bootstrap .label-warning[href]:hover, .bootstrap .label-warning[href]:focus {
|
||
background-color: #ec971f;
|
||
}
|
||
.bootstrap .label-danger {
|
||
background-color: #d9534f;
|
||
}
|
||
.bootstrap .label-danger[href]:hover, .bootstrap .label-danger[href]:focus {
|
||
background-color: #c9302c;
|
||
}
|
||
.bootstrap .badge, .bootstrap #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .notifs_badge, .bootstrap .module-badge-popular, .bootstrap .module-badge-partner, .bootstrap .module-badge-bought {
|
||
background-color: #999;
|
||
border-radius: 10px;
|
||
color: #fff;
|
||
display: inline-block;
|
||
font-size: 11px;
|
||
font-weight: bold;
|
||
line-height: 1;
|
||
min-width: 10px;
|
||
padding: 3px 7px;
|
||
text-align: center;
|
||
vertical-align: baseline;
|
||
white-space: nowrap;
|
||
}
|
||
.bootstrap .badge:empty, .bootstrap #header_notifs_icon_wrapper .notifs_badge:empty, #header_notifs_icon_wrapper .bootstrap .notifs_badge:empty, .bootstrap .module-badge-popular:empty, .bootstrap .module-badge-partner:empty, .bootstrap .module-badge-bought:empty {
|
||
display: none;
|
||
}
|
||
.btn .bootstrap .badge, .btn .bootstrap #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .btn .bootstrap .notifs_badge, .btn .bootstrap .module-badge-popular, .btn .bootstrap .module-badge-partner, .btn .bootstrap .module-badge-bought {
|
||
position: relative;
|
||
top: -1px;
|
||
}
|
||
.btn-xs .bootstrap .badge, .bootstrap .btn-group-xs > .btn .bootstrap .badge, .btn-xs .bootstrap #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .btn-xs .bootstrap .notifs_badge, .bootstrap .btn-group-xs > .btn .bootstrap #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .btn-group-xs > .btn .bootstrap .notifs_badge, .btn-xs .bootstrap .module-badge-popular, .bootstrap .btn-group-xs > .btn .bootstrap .module-badge-popular, .btn-xs .bootstrap .module-badge-partner, .bootstrap .btn-group-xs > .btn .bootstrap .module-badge-partner, .btn-xs .bootstrap .module-badge-bought, .bootstrap .btn-group-xs > .btn .bootstrap .module-badge-bought {
|
||
padding: 1px 5px;
|
||
top: 0;
|
||
}
|
||
a.list-group-item.active > .bootstrap .badge, a.list-group-item.active > .bootstrap #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper a.list-group-item.active > .bootstrap .notifs_badge, a.list-group-item.active > .bootstrap .module-badge-popular, a.list-group-item.active > .bootstrap .module-badge-partner, a.list-group-item.active > .bootstrap .module-badge-bought, .nav-pills > .active > a > .bootstrap .badge, .nav-pills > .active > a > .bootstrap #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .nav-pills > .active > a > .bootstrap .notifs_badge, .nav-pills > .active > a > .bootstrap .module-badge-popular, .nav-pills > .active > a > .bootstrap .module-badge-partner, .nav-pills > .active > a > .bootstrap .module-badge-bought {
|
||
background-color: #fff;
|
||
color: #00aff0;
|
||
}
|
||
.nav-pills > li > a > .bootstrap .badge, .nav-pills > li > a > .bootstrap #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .nav-pills > li > a > .bootstrap .notifs_badge, .nav-pills > li > a > .bootstrap .module-badge-popular, .nav-pills > li > a > .bootstrap .module-badge-partner, .nav-pills > li > a > .bootstrap .module-badge-bought {
|
||
margin-left: 3px;
|
||
}
|
||
.bootstrap a.badge:hover, .bootstrap #header_notifs_icon_wrapper a.notifs_badge:hover, #header_notifs_icon_wrapper .bootstrap a.notifs_badge:hover, .bootstrap a.module-badge-popular:hover, .bootstrap a.module-badge-partner:hover, .bootstrap a.module-badge-bought:hover, .bootstrap a.badge:focus, .bootstrap #header_notifs_icon_wrapper a.notifs_badge:focus, #header_notifs_icon_wrapper .bootstrap a.notifs_badge:focus, .bootstrap a.module-badge-popular:focus, .bootstrap a.module-badge-partner:focus, .bootstrap a.module-badge-bought:focus {
|
||
color: #fff;
|
||
cursor: pointer;
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap .thumbnail {
|
||
background-color: #fff;
|
||
border: 1px solid #ddd;
|
||
border-radius: 3px;
|
||
display: block;
|
||
line-height: 1.42857;
|
||
margin-bottom: 17px;
|
||
padding: 4px;
|
||
transition: all 0.2s ease-in-out 0s;
|
||
}
|
||
.bootstrap .thumbnail > img, .bootstrap .thumbnail a > img {
|
||
display: block;
|
||
height: auto;
|
||
margin-left: auto;
|
||
margin-right: auto;
|
||
max-width: 100%;
|
||
}
|
||
.bootstrap .thumbnail .caption {
|
||
color: #555;
|
||
padding: 9px;
|
||
}
|
||
.bootstrap a.thumbnail:hover, .bootstrap a.thumbnail:focus, .bootstrap a.thumbnail.active {
|
||
border-color: #00aff0;
|
||
}
|
||
.bootstrap .alert, .bootstrap #carrier_wizard .wizard_error {
|
||
border: 1px solid transparent;
|
||
border-radius: 3px;
|
||
margin-bottom: 17px;
|
||
padding: 15px;
|
||
}
|
||
.bootstrap .alert h4, .bootstrap #carrier_wizard .wizard_error h4 {
|
||
color: inherit;
|
||
margin-top: 0;
|
||
}
|
||
.bootstrap .alert .alert-link, .bootstrap #carrier_wizard .wizard_error .alert-link {
|
||
font-weight: bold;
|
||
}
|
||
.bootstrap .alert > p, .bootstrap #carrier_wizard .wizard_error > p, .bootstrap .alert > ul, .bootstrap #carrier_wizard .wizard_error > ul {
|
||
margin-bottom: 0;
|
||
}
|
||
.bootstrap .alert > p + p, .bootstrap #carrier_wizard .wizard_error > p + p {
|
||
margin-top: 5px;
|
||
}
|
||
.bootstrap .alert-dismissable {
|
||
padding-right: 35px;
|
||
}
|
||
.bootstrap .alert-dismissable .close {
|
||
color: inherit;
|
||
position: relative;
|
||
right: -21px;
|
||
top: -2px;
|
||
}
|
||
.bootstrap .alert-success {
|
||
background-color: #dff0d8;
|
||
border-color: #d6e9c6;
|
||
color: #3c763d;
|
||
}
|
||
.bootstrap .alert-success hr {
|
||
border-top-color: #c9e2b3;
|
||
}
|
||
.bootstrap .alert-success .alert-link {
|
||
color: #2b542c;
|
||
}
|
||
.bootstrap .alert-info {
|
||
background-color: #d9edf7;
|
||
border-color: #bce8f1;
|
||
color: #31708f;
|
||
}
|
||
.bootstrap .alert-info hr {
|
||
border-top-color: #a6e1ec;
|
||
}
|
||
.bootstrap .alert-info .alert-link {
|
||
color: #245269;
|
||
}
|
||
.bootstrap .alert-warning {
|
||
background-color: #fcf8e3;
|
||
border-color: #faebcc;
|
||
color: #8a6d3b;
|
||
}
|
||
.bootstrap .alert-warning hr {
|
||
border-top-color: #f7e1b5;
|
||
}
|
||
.bootstrap .alert-warning .alert-link {
|
||
color: #66512c;
|
||
}
|
||
.bootstrap .alert-danger, .bootstrap #carrier_wizard .wizard_error {
|
||
background-color: #f2dede;
|
||
border-color: #ebccd1;
|
||
color: #a94442;
|
||
}
|
||
.bootstrap .alert-danger hr, .bootstrap #carrier_wizard .wizard_error hr {
|
||
border-top-color: #e4b9c0;
|
||
}
|
||
.bootstrap .alert-danger .alert-link, .bootstrap #carrier_wizard .wizard_error .alert-link {
|
||
color: #843534;
|
||
}
|
||
.bootstrap .progress {
|
||
background-color: #f5f5f5;
|
||
border-radius: 3px;
|
||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
|
||
height: 17px;
|
||
margin-bottom: 17px;
|
||
overflow: hidden;
|
||
}
|
||
.bootstrap .progress-bar {
|
||
background-color: #00aff0;
|
||
box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15) inset;
|
||
color: #fff;
|
||
float: left;
|
||
font-size: 11px;
|
||
height: 100%;
|
||
line-height: 17px;
|
||
text-align: center;
|
||
transition: width 0.6s ease 0s;
|
||
width: 0;
|
||
}
|
||
.bootstrap .progress-striped .progress-bar {
|
||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
background-size: 40px 40px;
|
||
}
|
||
.bootstrap .progress.active .progress-bar {
|
||
animation: 2s linear 0s normal none infinite running progress-bar-stripes;
|
||
}
|
||
.bootstrap .progress-bar[aria-valuenow="1"], .bootstrap .progress-bar[aria-valuenow="2"] {
|
||
min-width: 30px;
|
||
}
|
||
.bootstrap .progress-bar[aria-valuenow="0"] {
|
||
background-color: transparent;
|
||
background-image: none;
|
||
box-shadow: none;
|
||
color: #999;
|
||
min-width: 30px;
|
||
}
|
||
.bootstrap .progress-bar-success {
|
||
background-color: #79bd3c;
|
||
}
|
||
.progress-striped .bootstrap .progress-bar-success {
|
||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
}
|
||
.bootstrap .progress-bar-info {
|
||
background-color: #5bc0de;
|
||
}
|
||
.progress-striped .bootstrap .progress-bar-info {
|
||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
}
|
||
.bootstrap .progress-bar-warning {
|
||
background-color: #f0ad4e;
|
||
}
|
||
.progress-striped .bootstrap .progress-bar-warning {
|
||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
}
|
||
.bootstrap .progress-bar-danger {
|
||
background-color: #d9534f;
|
||
}
|
||
.progress-striped .bootstrap .progress-bar-danger {
|
||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||
}
|
||
.bootstrap .media, .bootstrap .message-item, .bootstrap .media-body {
|
||
overflow: hidden;
|
||
}
|
||
.bootstrap .media, .bootstrap .message-item, .bootstrap .media .media, .bootstrap .message-item .media, .bootstrap .media .message-item, .bootstrap .message-item .message-item {
|
||
margin-top: 15px;
|
||
}
|
||
.bootstrap .media:first-child, .bootstrap .message-item:first-child {
|
||
margin-top: 0;
|
||
}
|
||
.bootstrap .media-object {
|
||
display: block;
|
||
}
|
||
.bootstrap .media-heading {
|
||
margin: 0 0 5px;
|
||
}
|
||
.bootstrap .media > .pull-left, .bootstrap .message-item > .pull-left {
|
||
margin-right: 10px;
|
||
}
|
||
.bootstrap .media > .pull-right, .bootstrap .message-item > .pull-right {
|
||
margin-left: 10px;
|
||
}
|
||
.bootstrap .media-list {
|
||
list-style: outside none none;
|
||
padding-left: 0;
|
||
}
|
||
.bootstrap .list-group, .bootstrap #dashboard .data_list {
|
||
margin-bottom: 20px;
|
||
padding-left: 0;
|
||
}
|
||
.bootstrap .list-group-item, .bootstrap #dashboard .data_list li {
|
||
background-color: #fff;
|
||
border: 1px solid #ddd;
|
||
display: block;
|
||
margin-bottom: -1px;
|
||
padding: 10px 15px;
|
||
position: relative;
|
||
}
|
||
.bootstrap .list-group-item:first-child, .bootstrap #dashboard .data_list li:first-child {
|
||
border-top-left-radius: 3px;
|
||
border-top-right-radius: 3px;
|
||
}
|
||
.bootstrap .list-group-item:last-child, .bootstrap #dashboard .data_list li:last-child {
|
||
border-bottom-left-radius: 3px;
|
||
border-bottom-right-radius: 3px;
|
||
margin-bottom: 0;
|
||
}
|
||
.bootstrap .list-group-item > .badge, .bootstrap #dashboard .data_list li > .badge, .bootstrap #header_notifs_icon_wrapper .list-group-item > .notifs_badge, #header_notifs_icon_wrapper .bootstrap .list-group-item > .notifs_badge, .bootstrap #dashboard .data_list #header_notifs_icon_wrapper li > .notifs_badge, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list li > .notifs_badge, .bootstrap .list-group-item > .module-badge-popular, .bootstrap #dashboard .data_list li > .module-badge-popular, .bootstrap .list-group-item > .module-badge-partner, .bootstrap #dashboard .data_list li > .module-badge-partner, .bootstrap .list-group-item > .module-badge-bought, .bootstrap #dashboard .data_list li > .module-badge-bought {
|
||
float: right;
|
||
}
|
||
.bootstrap .list-group-item > .badge + .badge, .bootstrap #dashboard .data_list li > .badge + .badge, .bootstrap #header_notifs_icon_wrapper .list-group-item > .notifs_badge + .badge, #header_notifs_icon_wrapper .bootstrap .list-group-item > .notifs_badge + .badge, .bootstrap #dashboard .data_list #header_notifs_icon_wrapper li > .notifs_badge + .badge, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list li > .notifs_badge + .badge, .bootstrap .list-group-item > .module-badge-popular + .badge, .bootstrap #dashboard .data_list li > .module-badge-popular + .badge, .bootstrap .list-group-item > .module-badge-partner + .badge, .bootstrap #dashboard .data_list li > .module-badge-partner + .badge, .bootstrap .list-group-item > .module-badge-bought + .badge, .bootstrap #dashboard .data_list li > .module-badge-bought + .badge, .bootstrap #header_notifs_icon_wrapper .list-group-item > .badge + .notifs_badge, #header_notifs_icon_wrapper .bootstrap .list-group-item > .badge + .notifs_badge, .bootstrap #dashboard .data_list #header_notifs_icon_wrapper li > .badge + .notifs_badge, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list li > .badge + .notifs_badge, .bootstrap #header_notifs_icon_wrapper .list-group-item > .notifs_badge + .notifs_badge, #header_notifs_icon_wrapper .bootstrap .list-group-item > .notifs_badge + .notifs_badge, .bootstrap #dashboard .data_list #header_notifs_icon_wrapper li > .notifs_badge + .notifs_badge, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list li > .notifs_badge + .notifs_badge, .bootstrap #header_notifs_icon_wrapper .list-group-item > .module-badge-popular + .notifs_badge, #header_notifs_icon_wrapper .bootstrap .list-group-item > .module-badge-popular + .notifs_badge, .bootstrap #dashboard .data_list #header_notifs_icon_wrapper li > .module-badge-popular + .notifs_badge, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list li > .module-badge-popular + .notifs_badge, .bootstrap #header_notifs_icon_wrapper .list-group-item > .module-badge-partner + .notifs_badge, #header_notifs_icon_wrapper .bootstrap .list-group-item > .module-badge-partner + .notifs_badge, .bootstrap #dashboard .data_list #header_notifs_icon_wrapper li > .module-badge-partner + .notifs_badge, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list li > .module-badge-partner + .notifs_badge, .bootstrap #header_notifs_icon_wrapper .list-group-item > .module-badge-bought + .notifs_badge, #header_notifs_icon_wrapper .bootstrap .list-group-item > .module-badge-bought + .notifs_badge, .bootstrap #dashboard .data_list #header_notifs_icon_wrapper li > .module-badge-bought + .notifs_badge, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list li > .module-badge-bought + .notifs_badge, .bootstrap .list-group-item > .badge + .module-badge-popular, .bootstrap #dashboard .data_list li > .badge + .module-badge-popular, .bootstrap #header_notifs_icon_wrapper .list-group-item > .notifs_badge + .module-badge-popular, #header_notifs_icon_wrapper .bootstrap .list-group-item > .notifs_badge + .module-badge-popular, .bootstrap #dashboard .data_list #header_notifs_icon_wrapper li > .notifs_badge + .module-badge-popular, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list li > .notifs_badge + .module-badge-popular, .bootstrap .list-group-item > .module-badge-popular + .module-badge-popular, .bootstrap #dashboard .data_list li > .module-badge-popular + .module-badge-popular, .bootstrap .list-group-item > .module-badge-partner + .module-badge-popular, .bootstrap #dashboard .data_list li > .module-badge-partner + .module-badge-popular, .bootstrap .list-group-item > .module-badge-bought + .module-badge-popular, .bootstrap #dashboard .data_list li > .module-badge-bought + .module-badge-popular, .bootstrap .list-group-item > .badge + .module-badge-partner, .bootstrap #dashboard .data_list li > .badge + .module-badge-partner, .bootstrap #header_notifs_icon_wrapper .list-group-item > .notifs_badge + .module-badge-partner, #header_notifs_icon_wrapper .bootstrap .list-group-item > .notifs_badge + .module-badge-partner, .bootstrap #dashboard .data_list #header_notifs_icon_wrapper li > .notifs_badge + .module-badge-partner, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list li > .notifs_badge + .module-badge-partner, .bootstrap .list-group-item > .module-badge-popular + .module-badge-partner, .bootstrap #dashboard .data_list li > .module-badge-popular + .module-badge-partner, .bootstrap .list-group-item > .module-badge-partner + .module-badge-partner, .bootstrap #dashboard .data_list li > .module-badge-partner + .module-badge-partner, .bootstrap .list-group-item > .module-badge-bought + .module-badge-partner, .bootstrap #dashboard .data_list li > .module-badge-bought + .module-badge-partner, .bootstrap .list-group-item > .badge + .module-badge-bought, .bootstrap #dashboard .data_list li > .badge + .module-badge-bought, .bootstrap #header_notifs_icon_wrapper .list-group-item > .notifs_badge + .module-badge-bought, #header_notifs_icon_wrapper .bootstrap .list-group-item > .notifs_badge + .module-badge-bought, .bootstrap #dashboard .data_list #header_notifs_icon_wrapper li > .notifs_badge + .module-badge-bought, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list li > .notifs_badge + .module-badge-bought, .bootstrap .list-group-item > .module-badge-popular + .module-badge-bought, .bootstrap #dashboard .data_list li > .module-badge-popular + .module-badge-bought, .bootstrap .list-group-item > .module-badge-partner + .module-badge-bought, .bootstrap #dashboard .data_list li > .module-badge-partner + .module-badge-bought, .bootstrap .list-group-item > .module-badge-bought + .module-badge-bought, .bootstrap #dashboard .data_list li > .module-badge-bought + .module-badge-bought {
|
||
margin-right: 5px;
|
||
}
|
||
.bootstrap a.list-group-item {
|
||
color: #555;
|
||
}
|
||
.bootstrap a.list-group-item .list-group-item-heading {
|
||
color: #333;
|
||
}
|
||
.bootstrap a.list-group-item:hover, .bootstrap a.list-group-item:focus {
|
||
background-color: #f5f5f5;
|
||
color: #555;
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap .list-group-item.disabled, .bootstrap #dashboard .data_list li.disabled, .bootstrap .list-group-item.disabled:hover, .bootstrap #dashboard .data_list li.disabled:hover, .bootstrap .list-group-item.disabled:focus, .bootstrap #dashboard .data_list li.disabled:focus {
|
||
background-color: #eee;
|
||
color: #999;
|
||
}
|
||
.bootstrap .list-group-item.disabled .list-group-item-heading, .bootstrap #dashboard .data_list li.disabled .list-group-item-heading, .bootstrap .list-group-item.disabled:hover .list-group-item-heading, .bootstrap #dashboard .data_list li.disabled:hover .list-group-item-heading, .bootstrap .list-group-item.disabled:focus .list-group-item-heading, .bootstrap #dashboard .data_list li.disabled:focus .list-group-item-heading {
|
||
color: inherit;
|
||
}
|
||
.bootstrap .list-group-item.disabled .list-group-item-text, .bootstrap #dashboard .data_list li.disabled .list-group-item-text, .bootstrap .list-group-item.disabled:hover .list-group-item-text, .bootstrap #dashboard .data_list li.disabled:hover .list-group-item-text, .bootstrap .list-group-item.disabled:focus .list-group-item-text, .bootstrap #dashboard .data_list li.disabled:focus .list-group-item-text {
|
||
color: #999;
|
||
}
|
||
.bootstrap .list-group-item.active, .bootstrap #dashboard .data_list li.active, .bootstrap .list-group-item.active:hover, .bootstrap #dashboard .data_list li.active:hover, .bootstrap .list-group-item.active:focus, .bootstrap #dashboard .data_list li.active:focus {
|
||
background-color: #00aff0;
|
||
border-color: #00aff0;
|
||
color: #fff;
|
||
z-index: 2;
|
||
}
|
||
.bootstrap .list-group-item.active .list-group-item-heading, .bootstrap #dashboard .data_list li.active .list-group-item-heading, .bootstrap .list-group-item.active:hover .list-group-item-heading, .bootstrap #dashboard .data_list li.active:hover .list-group-item-heading, .bootstrap .list-group-item.active:focus .list-group-item-heading, .bootstrap #dashboard .data_list li.active:focus .list-group-item-heading {
|
||
color: inherit;
|
||
}
|
||
.bootstrap .list-group-item.active .list-group-item-text, .bootstrap #dashboard .data_list li.active .list-group-item-text, .bootstrap .list-group-item.active:hover .list-group-item-text, .bootstrap #dashboard .data_list li.active:hover .list-group-item-text, .bootstrap .list-group-item.active:focus .list-group-item-text, .bootstrap #dashboard .data_list li.active:focus .list-group-item-text {
|
||
color: #bdedff;
|
||
}
|
||
.bootstrap .list-group-item-success {
|
||
background-color: #dff0d8;
|
||
color: #3c763d;
|
||
}
|
||
.bootstrap a.list-group-item-success {
|
||
color: #3c763d;
|
||
}
|
||
.bootstrap a.list-group-item-success .list-group-item-heading {
|
||
color: inherit;
|
||
}
|
||
.bootstrap a.list-group-item-success:hover, .bootstrap a.list-group-item-success:focus {
|
||
background-color: #d0e9c6;
|
||
color: #3c763d;
|
||
}
|
||
.bootstrap a.list-group-item-success.active, .bootstrap a.list-group-item-success.active:hover, .bootstrap a.list-group-item-success.active:focus {
|
||
background-color: #3c763d;
|
||
border-color: #3c763d;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .list-group-item-info {
|
||
background-color: #d9edf7;
|
||
color: #31708f;
|
||
}
|
||
.bootstrap a.list-group-item-info {
|
||
color: #31708f;
|
||
}
|
||
.bootstrap a.list-group-item-info .list-group-item-heading {
|
||
color: inherit;
|
||
}
|
||
.bootstrap a.list-group-item-info:hover, .bootstrap a.list-group-item-info:focus {
|
||
background-color: #c4e3f3;
|
||
color: #31708f;
|
||
}
|
||
.bootstrap a.list-group-item-info.active, .bootstrap a.list-group-item-info.active:hover, .bootstrap a.list-group-item-info.active:focus {
|
||
background-color: #31708f;
|
||
border-color: #31708f;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .list-group-item-warning {
|
||
background-color: #fcf8e3;
|
||
color: #8a6d3b;
|
||
}
|
||
.bootstrap a.list-group-item-warning {
|
||
color: #8a6d3b;
|
||
}
|
||
.bootstrap a.list-group-item-warning .list-group-item-heading {
|
||
color: inherit;
|
||
}
|
||
.bootstrap a.list-group-item-warning:hover, .bootstrap a.list-group-item-warning:focus {
|
||
background-color: #faf2cc;
|
||
color: #8a6d3b;
|
||
}
|
||
.bootstrap a.list-group-item-warning.active, .bootstrap a.list-group-item-warning.active:hover, .bootstrap a.list-group-item-warning.active:focus {
|
||
background-color: #8a6d3b;
|
||
border-color: #8a6d3b;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .list-group-item-danger {
|
||
background-color: #f2dede;
|
||
color: #a94442;
|
||
}
|
||
.bootstrap a.list-group-item-danger {
|
||
color: #a94442;
|
||
}
|
||
.bootstrap a.list-group-item-danger .list-group-item-heading {
|
||
color: inherit;
|
||
}
|
||
.bootstrap a.list-group-item-danger:hover, .bootstrap a.list-group-item-danger:focus {
|
||
background-color: #ebcccc;
|
||
color: #a94442;
|
||
}
|
||
.bootstrap a.list-group-item-danger.active, .bootstrap a.list-group-item-danger.active:hover, .bootstrap a.list-group-item-danger.active:focus {
|
||
background-color: #a94442;
|
||
border-color: #a94442;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .list-group-item-heading {
|
||
margin-bottom: 5px;
|
||
margin-top: 0;
|
||
}
|
||
.bootstrap .list-group-item-text {
|
||
line-height: 1.3;
|
||
margin-bottom: 0;
|
||
}
|
||
.bootstrap .panel, .bootstrap #dash_version, .bootstrap .message-item-initial .message-item-initial-body, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel {
|
||
background-color: #fff;
|
||
border: 1px solid transparent;
|
||
border-radius: 3px;
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
||
margin-bottom: 17px;
|
||
}
|
||
.bootstrap .panel-body {
|
||
padding: 15px;
|
||
}
|
||
.bootstrap .panel-body:before, .bootstrap .panel-body:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
.bootstrap .panel-body:after {
|
||
clear: both;
|
||
}
|
||
.bootstrap .panel-heading {
|
||
border-bottom: 1px solid transparent;
|
||
border-top-left-radius: 2px;
|
||
border-top-right-radius: 2px;
|
||
padding: 10px 15px;
|
||
}
|
||
.bootstrap .panel-heading > .dropdown .dropdown-toggle {
|
||
color: inherit;
|
||
}
|
||
.bootstrap .panel-title {
|
||
color: inherit;
|
||
font-size: 14px;
|
||
margin-bottom: 0;
|
||
margin-top: 0;
|
||
}
|
||
.bootstrap .panel-title > a {
|
||
color: inherit;
|
||
}
|
||
.bootstrap .panel-footer {
|
||
background-color: #f5f5f5;
|
||
border-bottom-left-radius: 2px;
|
||
border-bottom-right-radius: 2px;
|
||
border-top: 1px solid #ddd;
|
||
padding: 10px 15px;
|
||
}
|
||
.bootstrap .panel > .list-group, .bootstrap #dash_version > .list-group, .bootstrap .message-item-initial .message-item-initial-body > .list-group, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .list-group, .bootstrap #dashboard .panel > .data_list, .bootstrap #dashboard #dash_version > .data_list, .bootstrap .message-item-initial #dashboard .message-item-initial-body > .data_list, .bootstrap #dashboard .message-item-initial .message-item-initial-body > .data_list, .bootstrap .timeline .timeline-item .timeline-caption #dashboard .timeline-panel > .data_list, .bootstrap #dashboard .timeline .timeline-item .timeline-caption .timeline-panel > .data_list {
|
||
margin-bottom: 0;
|
||
}
|
||
.bootstrap .panel > .list-group .list-group-item, .bootstrap #dash_version > .list-group .list-group-item, .bootstrap .message-item-initial .message-item-initial-body > .list-group .list-group-item, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .list-group .list-group-item, .bootstrap #dashboard .panel > .data_list .list-group-item, .bootstrap #dashboard #dash_version > .data_list .list-group-item, .bootstrap .message-item-initial #dashboard .message-item-initial-body > .data_list .list-group-item, .bootstrap #dashboard .message-item-initial .message-item-initial-body > .data_list .list-group-item, .bootstrap .timeline .timeline-item .timeline-caption #dashboard .timeline-panel > .data_list .list-group-item, .bootstrap #dashboard .timeline .timeline-item .timeline-caption .timeline-panel > .data_list .list-group-item, .bootstrap .panel > .list-group #dashboard .data_list li, .bootstrap #dashboard .data_list .panel > .list-group li, .bootstrap #dash_version > .list-group #dashboard .data_list li, .bootstrap #dashboard .data_list #dash_version > .list-group li, .bootstrap .message-item-initial .message-item-initial-body > .list-group #dashboard .data_list li, .bootstrap #dashboard .data_list .message-item-initial .message-item-initial-body > .list-group li, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .list-group #dashboard .data_list li, .bootstrap #dashboard .data_list .timeline .timeline-item .timeline-caption .timeline-panel > .list-group li, .bootstrap #dashboard .panel > .data_list li, .bootstrap #dashboard #dash_version > .data_list li, .bootstrap .message-item-initial #dashboard .message-item-initial-body > .data_list li, .bootstrap #dashboard .message-item-initial .message-item-initial-body > .data_list li, .bootstrap .timeline .timeline-item .timeline-caption #dashboard .timeline-panel > .data_list li, .bootstrap #dashboard .timeline .timeline-item .timeline-caption .timeline-panel > .data_list li {
|
||
border-radius: 0;
|
||
border-width: 1px 0;
|
||
}
|
||
.bootstrap .panel > .list-group:first-child .list-group-item:first-child, .bootstrap #dash_version > .list-group:first-child .list-group-item:first-child, .bootstrap .message-item-initial .message-item-initial-body > .list-group:first-child .list-group-item:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .list-group:first-child .list-group-item:first-child, .bootstrap #dashboard .panel > .data_list:first-child .list-group-item:first-child, .bootstrap #dashboard #dash_version > .data_list:first-child .list-group-item:first-child, .bootstrap .message-item-initial #dashboard .message-item-initial-body > .data_list:first-child .list-group-item:first-child, .bootstrap #dashboard .message-item-initial .message-item-initial-body > .data_list:first-child .list-group-item:first-child, .bootstrap .timeline .timeline-item .timeline-caption #dashboard .timeline-panel > .data_list:first-child .list-group-item:first-child, .bootstrap #dashboard .timeline .timeline-item .timeline-caption .timeline-panel > .data_list:first-child .list-group-item:first-child, .bootstrap .panel > .list-group:first-child #dashboard .data_list li:first-child, .bootstrap #dashboard .data_list .panel > .list-group:first-child li:first-child, .bootstrap #dash_version > .list-group:first-child #dashboard .data_list li:first-child, .bootstrap #dashboard .data_list #dash_version > .list-group:first-child li:first-child, .bootstrap .message-item-initial .message-item-initial-body > .list-group:first-child #dashboard .data_list li:first-child, .bootstrap #dashboard .data_list .message-item-initial .message-item-initial-body > .list-group:first-child li:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .list-group:first-child #dashboard .data_list li:first-child, .bootstrap #dashboard .data_list .timeline .timeline-item .timeline-caption .timeline-panel > .list-group:first-child li:first-child, .bootstrap #dashboard .panel > .data_list:first-child li:first-child, .bootstrap #dashboard #dash_version > .data_list:first-child li:first-child, .bootstrap .message-item-initial #dashboard .message-item-initial-body > .data_list:first-child li:first-child, .bootstrap #dashboard .message-item-initial .message-item-initial-body > .data_list:first-child li:first-child, .bootstrap .timeline .timeline-item .timeline-caption #dashboard .timeline-panel > .data_list:first-child li:first-child, .bootstrap #dashboard .timeline .timeline-item .timeline-caption .timeline-panel > .data_list:first-child li:first-child {
|
||
border-top: 0 none;
|
||
border-top-left-radius: 2px;
|
||
border-top-right-radius: 2px;
|
||
}
|
||
.bootstrap .panel > .list-group:last-child .list-group-item:last-child, .bootstrap #dash_version > .list-group:last-child .list-group-item:last-child, .bootstrap .message-item-initial .message-item-initial-body > .list-group:last-child .list-group-item:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .list-group:last-child .list-group-item:last-child, .bootstrap #dashboard .panel > .data_list:last-child .list-group-item:last-child, .bootstrap #dashboard #dash_version > .data_list:last-child .list-group-item:last-child, .bootstrap .message-item-initial #dashboard .message-item-initial-body > .data_list:last-child .list-group-item:last-child, .bootstrap #dashboard .message-item-initial .message-item-initial-body > .data_list:last-child .list-group-item:last-child, .bootstrap .timeline .timeline-item .timeline-caption #dashboard .timeline-panel > .data_list:last-child .list-group-item:last-child, .bootstrap #dashboard .timeline .timeline-item .timeline-caption .timeline-panel > .data_list:last-child .list-group-item:last-child, .bootstrap .panel > .list-group:last-child #dashboard .data_list li:last-child, .bootstrap #dashboard .data_list .panel > .list-group:last-child li:last-child, .bootstrap #dash_version > .list-group:last-child #dashboard .data_list li:last-child, .bootstrap #dashboard .data_list #dash_version > .list-group:last-child li:last-child, .bootstrap .message-item-initial .message-item-initial-body > .list-group:last-child #dashboard .data_list li:last-child, .bootstrap #dashboard .data_list .message-item-initial .message-item-initial-body > .list-group:last-child li:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .list-group:last-child #dashboard .data_list li:last-child, .bootstrap #dashboard .data_list .timeline .timeline-item .timeline-caption .timeline-panel > .list-group:last-child li:last-child, .bootstrap #dashboard .panel > .data_list:last-child li:last-child, .bootstrap #dashboard #dash_version > .data_list:last-child li:last-child, .bootstrap .message-item-initial #dashboard .message-item-initial-body > .data_list:last-child li:last-child, .bootstrap #dashboard .message-item-initial .message-item-initial-body > .data_list:last-child li:last-child, .bootstrap .timeline .timeline-item .timeline-caption #dashboard .timeline-panel > .data_list:last-child li:last-child, .bootstrap #dashboard .timeline .timeline-item .timeline-caption .timeline-panel > .data_list:last-child li:last-child {
|
||
border-bottom: 0 none;
|
||
border-bottom-left-radius: 2px;
|
||
border-bottom-right-radius: 2px;
|
||
}
|
||
.bootstrap .panel-heading + .list-group .list-group-item:first-child, .bootstrap #dashboard .panel-heading + .data_list .list-group-item:first-child, .bootstrap .panel-heading + .list-group #dashboard .data_list li:first-child, .bootstrap #dashboard .data_list .panel-heading + .list-group li:first-child, .bootstrap #dashboard .panel-heading + .data_list li:first-child {
|
||
border-top-width: 0;
|
||
}
|
||
.bootstrap .panel > .table, .bootstrap #dash_version > .table, .bootstrap .message-item-initial .message-item-initial-body > .table, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table, .bootstrap .panel > .table-responsive > .table, .bootstrap #dash_version > .table-responsive > .table, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table {
|
||
margin-bottom: 0;
|
||
}
|
||
.bootstrap .panel > .table:first-child, .bootstrap #dash_version > .table:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:first-child, .bootstrap .panel > .table-responsive:first-child > .table:first-child, .bootstrap #dash_version > .table-responsive:first-child > .table:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:first-child > .table:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:first-child > .table:first-child {
|
||
border-top-left-radius: 2px;
|
||
border-top-right-radius: 2px;
|
||
}
|
||
.bootstrap .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .bootstrap #dash_version > .table:first-child > thead:first-child > tr:first-child td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table:first-child > thead:first-child > tr:first-child td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .bootstrap .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .bootstrap #dash_version > .table:first-child > thead:first-child > tr:first-child th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table:first-child > thead:first-child > tr:first-child th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .bootstrap .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .bootstrap #dash_version > .table:first-child > tbody:first-child > tr:first-child td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table:first-child > tbody:first-child > tr:first-child td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .bootstrap .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .bootstrap #dash_version > .table:first-child > tbody:first-child > tr:first-child th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table:first-child > tbody:first-child > tr:first-child th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .bootstrap .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .bootstrap #dash_version > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .bootstrap .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .bootstrap #dash_version > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .bootstrap .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .bootstrap #dash_version > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .bootstrap .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child, .bootstrap #dash_version > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
|
||
border-top-left-radius: 2px;
|
||
}
|
||
.bootstrap .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .bootstrap #dash_version > .table:first-child > thead:first-child > tr:first-child td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table:first-child > thead:first-child > tr:first-child td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .bootstrap .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .bootstrap #dash_version > .table:first-child > thead:first-child > tr:first-child th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table:first-child > thead:first-child > tr:first-child th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .bootstrap .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .bootstrap #dash_version > .table:first-child > tbody:first-child > tr:first-child td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table:first-child > tbody:first-child > tr:first-child td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .bootstrap .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .bootstrap #dash_version > .table:first-child > tbody:first-child > tr:first-child th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table:first-child > tbody:first-child > tr:first-child th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .bootstrap .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .bootstrap #dash_version > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .bootstrap .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .bootstrap #dash_version > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .bootstrap .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .bootstrap #dash_version > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .bootstrap .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child, .bootstrap #dash_version > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
|
||
border-top-right-radius: 2px;
|
||
}
|
||
.bootstrap .panel > .table:last-child, .bootstrap #dash_version > .table:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:last-child, .bootstrap .panel > .table-responsive:last-child > .table:last-child, .bootstrap #dash_version > .table-responsive:last-child > .table:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:last-child > .table:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:last-child > .table:last-child {
|
||
border-bottom-left-radius: 2px;
|
||
border-bottom-right-radius: 2px;
|
||
}
|
||
.bootstrap .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .bootstrap #dash_version > .table:last-child > tbody:last-child > tr:last-child td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table:last-child > tbody:last-child > tr:last-child td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .bootstrap .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .bootstrap #dash_version > .table:last-child > tbody:last-child > tr:last-child th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table:last-child > tbody:last-child > tr:last-child th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .bootstrap .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .bootstrap #dash_version > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .bootstrap .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .bootstrap #dash_version > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .bootstrap .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .bootstrap #dash_version > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .bootstrap .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .bootstrap #dash_version > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .bootstrap .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .bootstrap #dash_version > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .bootstrap .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .bootstrap #dash_version > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
|
||
border-bottom-left-radius: 2px;
|
||
}
|
||
.bootstrap .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .bootstrap #dash_version > .table:last-child > tbody:last-child > tr:last-child td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table:last-child > tbody:last-child > tr:last-child td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .bootstrap .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .bootstrap #dash_version > .table:last-child > tbody:last-child > tr:last-child th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table:last-child > tbody:last-child > tr:last-child th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .bootstrap .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .bootstrap #dash_version > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .bootstrap .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .bootstrap #dash_version > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .bootstrap .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .bootstrap #dash_version > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .bootstrap .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .bootstrap #dash_version > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .bootstrap .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .bootstrap #dash_version > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .bootstrap .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .bootstrap #dash_version > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
|
||
border-bottom-right-radius: 2px;
|
||
}
|
||
.bootstrap .panel > .panel-body + .table, .bootstrap #dash_version > .panel-body + .table, .bootstrap .message-item-initial .message-item-initial-body > .panel-body + .table, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .panel-body + .table, .bootstrap .panel > .panel-body + .table-responsive, .bootstrap #dash_version > .panel-body + .table-responsive, .bootstrap .message-item-initial .message-item-initial-body > .panel-body + .table-responsive, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .panel-body + .table-responsive {
|
||
border-top: 1px solid #ddd;
|
||
}
|
||
.bootstrap .panel > .table > tbody:first-child > tr:first-child th, .bootstrap #dash_version > .table > tbody:first-child > tr:first-child th, .bootstrap .message-item-initial .message-item-initial-body > .table > tbody:first-child > tr:first-child th, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table > tbody:first-child > tr:first-child th, .bootstrap .panel > .table > tbody:first-child > tr:first-child td, .bootstrap #dash_version > .table > tbody:first-child > tr:first-child td, .bootstrap .message-item-initial .message-item-initial-body > .table > tbody:first-child > tr:first-child td, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table > tbody:first-child > tr:first-child td {
|
||
border-top: 0 none;
|
||
}
|
||
.bootstrap .panel > .table-bordered, .bootstrap #dash_version > .table-bordered, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered, .bootstrap .panel > .table-responsive > .table-bordered, .bootstrap #dash_version > .table-responsive > .table-bordered, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered {
|
||
border: 0 none;
|
||
}
|
||
.bootstrap .panel > .table-bordered > thead > tr > th:first-child, .bootstrap #dash_version > .table-bordered > thead > tr > th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > thead > tr > th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > thead > tr > th:first-child, .bootstrap .panel > .table-bordered > thead > tr > td:first-child, .bootstrap #dash_version > .table-bordered > thead > tr > td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > thead > tr > td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > thead > tr > td:first-child, .bootstrap .panel > .table-bordered > tbody > tr > th:first-child, .bootstrap #dash_version > .table-bordered > tbody > tr > th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tbody > tr > th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tbody > tr > th:first-child, .bootstrap .panel > .table-bordered > tbody > tr > td:first-child, .bootstrap #dash_version > .table-bordered > tbody > tr > td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tbody > tr > td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tbody > tr > td:first-child, .bootstrap .panel > .table-bordered > tfoot > tr > th:first-child, .bootstrap #dash_version > .table-bordered > tfoot > tr > th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tfoot > tr > th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tfoot > tr > th:first-child, .bootstrap .panel > .table-bordered > tfoot > tr > td:first-child, .bootstrap #dash_version > .table-bordered > tfoot > tr > td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tfoot > tr > td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tfoot > tr > td:first-child, .bootstrap .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .bootstrap #dash_version > .table-responsive > .table-bordered > thead > tr > th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > thead > tr > th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .bootstrap .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .bootstrap #dash_version > .table-responsive > .table-bordered > thead > tr > td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > thead > tr > td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .bootstrap .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .bootstrap #dash_version > .table-responsive > .table-bordered > tbody > tr > th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tbody > tr > th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .bootstrap .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .bootstrap #dash_version > .table-responsive > .table-bordered > tbody > tr > td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tbody > tr > td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .bootstrap .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .bootstrap #dash_version > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .bootstrap .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child, .bootstrap #dash_version > .table-responsive > .table-bordered > tfoot > tr > td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tfoot > tr > td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
||
border-left: 0 none;
|
||
}
|
||
.bootstrap .panel > .table-bordered > thead > tr > th:last-child, .bootstrap #dash_version > .table-bordered > thead > tr > th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > thead > tr > th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > thead > tr > th:last-child, .bootstrap .panel > .table-bordered > thead > tr > td:last-child, .bootstrap #dash_version > .table-bordered > thead > tr > td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > thead > tr > td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > thead > tr > td:last-child, .bootstrap .panel > .table-bordered > tbody > tr > th:last-child, .bootstrap #dash_version > .table-bordered > tbody > tr > th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tbody > tr > th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tbody > tr > th:last-child, .bootstrap .panel > .table-bordered > tbody > tr > td:last-child, .bootstrap #dash_version > .table-bordered > tbody > tr > td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tbody > tr > td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tbody > tr > td:last-child, .bootstrap .panel > .table-bordered > tfoot > tr > th:last-child, .bootstrap #dash_version > .table-bordered > tfoot > tr > th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tfoot > tr > th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tfoot > tr > th:last-child, .bootstrap .panel > .table-bordered > tfoot > tr > td:last-child, .bootstrap #dash_version > .table-bordered > tfoot > tr > td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tfoot > tr > td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tfoot > tr > td:last-child, .bootstrap .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .bootstrap #dash_version > .table-responsive > .table-bordered > thead > tr > th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > thead > tr > th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .bootstrap .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .bootstrap #dash_version > .table-responsive > .table-bordered > thead > tr > td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > thead > tr > td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .bootstrap .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .bootstrap #dash_version > .table-responsive > .table-bordered > tbody > tr > th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tbody > tr > th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .bootstrap .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .bootstrap #dash_version > .table-responsive > .table-bordered > tbody > tr > td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tbody > tr > td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .bootstrap .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .bootstrap #dash_version > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .bootstrap .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child, .bootstrap #dash_version > .table-responsive > .table-bordered > tfoot > tr > td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tfoot > tr > td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
||
border-right: 0 none;
|
||
}
|
||
.bootstrap .panel > .table-bordered > thead > tr:first-child > td, .bootstrap #dash_version > .table-bordered > thead > tr:first-child > td, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > thead > tr:first-child > td, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > thead > tr:first-child > td, .bootstrap .panel > .table-bordered > thead > tr:first-child > th, .bootstrap #dash_version > .table-bordered > thead > tr:first-child > th, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > thead > tr:first-child > th, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > thead > tr:first-child > th, .bootstrap .panel > .table-bordered > tbody > tr:first-child > td, .bootstrap #dash_version > .table-bordered > tbody > tr:first-child > td, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tbody > tr:first-child > td, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tbody > tr:first-child > td, .bootstrap .panel > .table-bordered > tbody > tr:first-child > th, .bootstrap #dash_version > .table-bordered > tbody > tr:first-child > th, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tbody > tr:first-child > th, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tbody > tr:first-child > th, .bootstrap .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .bootstrap #dash_version > .table-responsive > .table-bordered > thead > tr:first-child > td, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > thead > tr:first-child > td, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .bootstrap .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .bootstrap #dash_version > .table-responsive > .table-bordered > thead > tr:first-child > th, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > thead > tr:first-child > th, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .bootstrap .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .bootstrap #dash_version > .table-responsive > .table-bordered > tbody > tr:first-child > td, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tbody > tr:first-child > td, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .bootstrap .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th, .bootstrap #dash_version > .table-responsive > .table-bordered > tbody > tr:first-child > th, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tbody > tr:first-child > th, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
|
||
border-bottom: 0 none;
|
||
}
|
||
.bootstrap .panel > .table-bordered > tbody > tr:last-child > td, .bootstrap #dash_version > .table-bordered > tbody > tr:last-child > td, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tbody > tr:last-child > td, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tbody > tr:last-child > td, .bootstrap .panel > .table-bordered > tbody > tr:last-child > th, .bootstrap #dash_version > .table-bordered > tbody > tr:last-child > th, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tbody > tr:last-child > th, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tbody > tr:last-child > th, .bootstrap .panel > .table-bordered > tfoot > tr:last-child > td, .bootstrap #dash_version > .table-bordered > tfoot > tr:last-child > td, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tfoot > tr:last-child > td, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tfoot > tr:last-child > td, .bootstrap .panel > .table-bordered > tfoot > tr:last-child > th, .bootstrap #dash_version > .table-bordered > tfoot > tr:last-child > th, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tfoot > tr:last-child > th, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tfoot > tr:last-child > th, .bootstrap .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .bootstrap #dash_version > .table-responsive > .table-bordered > tbody > tr:last-child > td, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tbody > tr:last-child > td, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .bootstrap .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .bootstrap #dash_version > .table-responsive > .table-bordered > tbody > tr:last-child > th, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tbody > tr:last-child > th, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .bootstrap .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .bootstrap #dash_version > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .bootstrap .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th, .bootstrap #dash_version > .table-responsive > .table-bordered > tfoot > tr:last-child > th, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tfoot > tr:last-child > th, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
|
||
border-bottom: 0 none;
|
||
}
|
||
.bootstrap .panel > .table-responsive, .bootstrap #dash_version > .table-responsive, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive {
|
||
border: 0 none;
|
||
margin-bottom: 0;
|
||
}
|
||
.bootstrap .panel-group {
|
||
margin-bottom: 17px;
|
||
}
|
||
.bootstrap .panel-group .panel, .bootstrap .panel-group #dash_version, .bootstrap .panel-group .message-item-initial .message-item-initial-body, .bootstrap .message-item-initial .panel-group .message-item-initial-body, .bootstrap .panel-group .timeline .timeline-item .timeline-caption .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .panel-group .timeline-panel {
|
||
border-radius: 3px;
|
||
margin-bottom: 0;
|
||
}
|
||
.bootstrap .panel-group .panel + .panel, .bootstrap .panel-group #dash_version + .panel, .bootstrap .panel-group .message-item-initial .message-item-initial-body + .panel, .bootstrap .message-item-initial .panel-group .message-item-initial-body + .panel, .bootstrap .panel-group .timeline .timeline-item .timeline-caption .timeline-panel + .panel, .bootstrap .timeline .timeline-item .timeline-caption .panel-group .timeline-panel + .panel, .bootstrap .panel-group .panel + #dash_version, .bootstrap .panel-group #dash_version + #dash_version, .bootstrap .panel-group .message-item-initial .message-item-initial-body + #dash_version, .bootstrap .message-item-initial .panel-group .message-item-initial-body + #dash_version, .bootstrap .panel-group .timeline .timeline-item .timeline-caption .timeline-panel + #dash_version, .bootstrap .timeline .timeline-item .timeline-caption .panel-group .timeline-panel + #dash_version, .bootstrap .panel-group .message-item-initial .panel + .message-item-initial-body, .bootstrap .message-item-initial .panel-group .panel + .message-item-initial-body, .bootstrap .panel-group .message-item-initial #dash_version + .message-item-initial-body, .bootstrap .message-item-initial .panel-group #dash_version + .message-item-initial-body, .bootstrap .panel-group .message-item-initial .message-item-initial-body + .message-item-initial-body, .bootstrap .message-item-initial .panel-group .message-item-initial-body + .message-item-initial-body, .bootstrap .panel-group .timeline .timeline-item .timeline-caption .message-item-initial .timeline-panel + .message-item-initial-body, .bootstrap .message-item-initial .panel-group .timeline .timeline-item .timeline-caption .timeline-panel + .message-item-initial-body, .bootstrap .timeline .timeline-item .timeline-caption .panel-group .message-item-initial .timeline-panel + .message-item-initial-body, .bootstrap .message-item-initial .timeline .timeline-item .timeline-caption .panel-group .timeline-panel + .message-item-initial-body, .bootstrap .panel-group .timeline .timeline-item .timeline-caption .panel + .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .panel-group .panel + .timeline-panel, .bootstrap .panel-group .timeline .timeline-item .timeline-caption #dash_version + .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .panel-group #dash_version + .timeline-panel, .bootstrap .panel-group .message-item-initial .timeline .timeline-item .timeline-caption .message-item-initial-body + .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .panel-group .message-item-initial .message-item-initial-body + .timeline-panel, .bootstrap .message-item-initial .panel-group .timeline .timeline-item .timeline-caption .message-item-initial-body + .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .message-item-initial .panel-group .message-item-initial-body + .timeline-panel, .bootstrap .panel-group .timeline .timeline-item .timeline-caption .timeline-panel + .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .panel-group .timeline-panel + .timeline-panel {
|
||
margin-top: 5px;
|
||
}
|
||
.bootstrap .panel-group .panel-heading {
|
||
border-bottom: 0 none;
|
||
}
|
||
.bootstrap .panel-group .panel-heading + .panel-collapse .panel-body {
|
||
border-top: 1px solid #ddd;
|
||
}
|
||
.bootstrap .panel-group .panel-footer {
|
||
border-top: 0 none;
|
||
}
|
||
.bootstrap .panel-group .panel-footer + .panel-collapse .panel-body {
|
||
border-bottom: 1px solid #ddd;
|
||
}
|
||
.bootstrap .panel-default {
|
||
border-color: #ddd;
|
||
}
|
||
.bootstrap .panel-default > .panel-heading {
|
||
background-color: #f5f5f5;
|
||
border-color: #ddd;
|
||
color: #333;
|
||
}
|
||
.bootstrap .panel-default > .panel-heading + .panel-collapse > .panel-body {
|
||
border-top-color: #ddd;
|
||
}
|
||
.bootstrap .panel-default > .panel-footer + .panel-collapse > .panel-body {
|
||
border-bottom-color: #ddd;
|
||
}
|
||
.bootstrap .panel-primary {
|
||
border-color: #00aff0;
|
||
}
|
||
.bootstrap .panel-primary > .panel-heading {
|
||
background-color: #00aff0;
|
||
border-color: #00aff0;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .panel-primary > .panel-heading + .panel-collapse > .panel-body {
|
||
border-top-color: #00aff0;
|
||
}
|
||
.bootstrap .panel-primary > .panel-footer + .panel-collapse > .panel-body {
|
||
border-bottom-color: #00aff0;
|
||
}
|
||
.bootstrap .panel-success {
|
||
border-color: #d6e9c6;
|
||
}
|
||
.bootstrap .panel-success > .panel-heading {
|
||
background-color: #dff0d8;
|
||
border-color: #d6e9c6;
|
||
color: #3c763d;
|
||
}
|
||
.bootstrap .panel-success > .panel-heading + .panel-collapse > .panel-body {
|
||
border-top-color: #d6e9c6;
|
||
}
|
||
.bootstrap .panel-success > .panel-footer + .panel-collapse > .panel-body {
|
||
border-bottom-color: #d6e9c6;
|
||
}
|
||
.bootstrap .panel-info {
|
||
border-color: #bce8f1;
|
||
}
|
||
.bootstrap .panel-info > .panel-heading {
|
||
background-color: #d9edf7;
|
||
border-color: #bce8f1;
|
||
color: #31708f;
|
||
}
|
||
.bootstrap .panel-info > .panel-heading + .panel-collapse > .panel-body {
|
||
border-top-color: #bce8f1;
|
||
}
|
||
.bootstrap .panel-info > .panel-footer + .panel-collapse > .panel-body {
|
||
border-bottom-color: #bce8f1;
|
||
}
|
||
.bootstrap .panel-warning {
|
||
border-color: #faebcc;
|
||
}
|
||
.bootstrap .panel-warning > .panel-heading {
|
||
background-color: #fcf8e3;
|
||
border-color: #faebcc;
|
||
color: #8a6d3b;
|
||
}
|
||
.bootstrap .panel-warning > .panel-heading + .panel-collapse > .panel-body {
|
||
border-top-color: #faebcc;
|
||
}
|
||
.bootstrap .panel-warning > .panel-footer + .panel-collapse > .panel-body {
|
||
border-bottom-color: #faebcc;
|
||
}
|
||
.bootstrap .panel-danger {
|
||
border-color: #ebccd1;
|
||
}
|
||
.bootstrap .panel-danger > .panel-heading {
|
||
background-color: #f2dede;
|
||
border-color: #ebccd1;
|
||
color: #a94442;
|
||
}
|
||
.bootstrap .panel-danger > .panel-heading + .panel-collapse > .panel-body {
|
||
border-top-color: #ebccd1;
|
||
}
|
||
.bootstrap .panel-danger > .panel-footer + .panel-collapse > .panel-body {
|
||
border-bottom-color: #ebccd1;
|
||
}
|
||
.bootstrap .well {
|
||
background-color: #fcfdfe;
|
||
border: 1px solid #e1ebf5;
|
||
border-radius: 3px;
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
|
||
margin-bottom: 20px;
|
||
min-height: 20px;
|
||
padding: 19px;
|
||
}
|
||
.bootstrap .well blockquote {
|
||
border-color: rgba(0, 0, 0, 0.15);
|
||
}
|
||
.bootstrap .well-lg {
|
||
border-radius: 6px;
|
||
padding: 24px;
|
||
}
|
||
.bootstrap .well-sm {
|
||
border-radius: 3px;
|
||
padding: 9px;
|
||
}
|
||
.bootstrap .close {
|
||
color: #000;
|
||
float: right;
|
||
font-size: 18px;
|
||
font-weight: bold;
|
||
line-height: 1;
|
||
opacity: 0.2;
|
||
text-shadow: 0 1px 0 #fff;
|
||
}
|
||
.bootstrap .close:hover, .bootstrap .close:focus {
|
||
color: #000;
|
||
cursor: pointer;
|
||
opacity: 0.5;
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap button.close {
|
||
background: none repeat scroll 0 0 transparent;
|
||
border: 0 none;
|
||
cursor: pointer;
|
||
padding: 0;
|
||
}
|
||
.bootstrap .tooltip {
|
||
display: block;
|
||
font-size: 11px;
|
||
line-height: 1.4;
|
||
opacity: 0;
|
||
position: absolute;
|
||
visibility: visible;
|
||
z-index: 1070;
|
||
}
|
||
.bootstrap .tooltip.in {
|
||
opacity: 0.9;
|
||
}
|
||
.bootstrap .tooltip.top {
|
||
margin-top: -3px;
|
||
padding: 5px 0;
|
||
}
|
||
.bootstrap .tooltip.right {
|
||
margin-left: 3px;
|
||
padding: 0 5px;
|
||
}
|
||
.bootstrap .tooltip.bottom {
|
||
margin-top: 3px;
|
||
padding: 5px 0;
|
||
}
|
||
.bootstrap .tooltip.left {
|
||
margin-left: -3px;
|
||
padding: 0 5px;
|
||
}
|
||
.bootstrap .tooltip-inner {
|
||
background-color: #000;
|
||
border-radius: 3px;
|
||
color: #fff;
|
||
max-width: 200px;
|
||
padding: 3px 8px;
|
||
text-align: center;
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap .tooltip-arrow {
|
||
border-color: transparent;
|
||
border-style: solid;
|
||
height: 0;
|
||
position: absolute;
|
||
width: 0;
|
||
}
|
||
.bootstrap .tooltip.top .tooltip-arrow {
|
||
border-top-color: #000;
|
||
border-width: 5px 5px 0;
|
||
bottom: 0;
|
||
left: 50%;
|
||
margin-left: -5px;
|
||
}
|
||
.bootstrap .tooltip.top-left .tooltip-arrow {
|
||
border-top-color: #000;
|
||
border-width: 5px 5px 0;
|
||
bottom: 0;
|
||
left: 5px;
|
||
}
|
||
.bootstrap .tooltip.top-right .tooltip-arrow {
|
||
border-top-color: #000;
|
||
border-width: 5px 5px 0;
|
||
bottom: 0;
|
||
right: 5px;
|
||
}
|
||
.bootstrap .tooltip.right .tooltip-arrow {
|
||
border-right-color: #000;
|
||
border-width: 5px 5px 5px 0;
|
||
left: 0;
|
||
margin-top: -5px;
|
||
top: 50%;
|
||
}
|
||
.bootstrap .tooltip.left .tooltip-arrow {
|
||
border-left-color: #000;
|
||
border-width: 5px 0 5px 5px;
|
||
margin-top: -5px;
|
||
right: 0;
|
||
top: 50%;
|
||
}
|
||
.bootstrap .tooltip.bottom .tooltip-arrow {
|
||
border-bottom-color: #000;
|
||
border-width: 0 5px 5px;
|
||
left: 50%;
|
||
margin-left: -5px;
|
||
top: 0;
|
||
}
|
||
.bootstrap .tooltip.bottom-left .tooltip-arrow {
|
||
border-bottom-color: #000;
|
||
border-width: 0 5px 5px;
|
||
left: 5px;
|
||
top: 0;
|
||
}
|
||
.bootstrap .tooltip.bottom-right .tooltip-arrow {
|
||
border-bottom-color: #000;
|
||
border-width: 0 5px 5px;
|
||
right: 5px;
|
||
top: 0;
|
||
}
|
||
.bootstrap .clearfix:before, .bootstrap .clearfix:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
.bootstrap .clearfix:after {
|
||
clear: both;
|
||
}
|
||
.bootstrap .center-block {
|
||
display: block;
|
||
margin-left: auto;
|
||
margin-right: auto;
|
||
}
|
||
.bootstrap .pull-right {
|
||
float: right !important;
|
||
}
|
||
.bootstrap .pull-left {
|
||
float: left !important;
|
||
}
|
||
.bootstrap .hide {
|
||
display: none !important;
|
||
}
|
||
.bootstrap .show {
|
||
display: block !important;
|
||
}
|
||
.bootstrap .invisible {
|
||
visibility: hidden;
|
||
}
|
||
.bootstrap .text-hide {
|
||
background-color: transparent;
|
||
border: 0 none;
|
||
color: transparent;
|
||
font: 0px/0 a;
|
||
text-shadow: none;
|
||
}
|
||
.bootstrap .hidden {
|
||
display: none !important;
|
||
visibility: hidden !important;
|
||
}
|
||
.bootstrap .affix {
|
||
position: fixed;
|
||
}
|
||
.bootstrap .visible-xs, .bootstrap .visible-sm, .bootstrap .visible-md, .bootstrap .visible-lg {
|
||
display: none !important;
|
||
}
|
||
.bootstrap .visible-xs-block, .bootstrap .visible-xs-inline, .bootstrap .visible-xs-inline-block, .bootstrap .visible-sm-block, .bootstrap .visible-sm-inline, .bootstrap .visible-sm-inline-block, .bootstrap .visible-md-block, .bootstrap .visible-md-inline, .bootstrap .visible-md-inline-block, .bootstrap .visible-lg-block, .bootstrap .visible-lg-inline, .bootstrap .visible-lg-inline-block {
|
||
display: none !important;
|
||
}
|
||
@media (max-width: 767px) {
|
||
.bootstrap .visible-xs {
|
||
display: block !important;
|
||
}
|
||
.bootstrap table.visible-xs {
|
||
display: table;
|
||
}
|
||
.bootstrap tr.visible-xs {
|
||
display: table-row !important;
|
||
}
|
||
.bootstrap th.visible-xs, .bootstrap td.visible-xs {
|
||
display: table-cell !important;
|
||
}
|
||
}
|
||
@media (max-width: 767px) {
|
||
.bootstrap .visible-xs-block {
|
||
display: block !important;
|
||
}
|
||
}
|
||
@media (max-width: 767px) {
|
||
.bootstrap .visible-xs-inline {
|
||
display: inline !important;
|
||
}
|
||
}
|
||
@media (max-width: 767px) {
|
||
.bootstrap .visible-xs-inline-block {
|
||
display: inline-block !important;
|
||
}
|
||
}
|
||
@media (min-width: 768px) and (max-width: 991px) {
|
||
.bootstrap .visible-sm {
|
||
display: block !important;
|
||
}
|
||
.bootstrap table.visible-sm {
|
||
display: table;
|
||
}
|
||
.bootstrap tr.visible-sm {
|
||
display: table-row !important;
|
||
}
|
||
.bootstrap th.visible-sm, .bootstrap td.visible-sm {
|
||
display: table-cell !important;
|
||
}
|
||
}
|
||
@media (min-width: 768px) and (max-width: 991px) {
|
||
.bootstrap .visible-sm-block {
|
||
display: block !important;
|
||
}
|
||
}
|
||
@media (min-width: 768px) and (max-width: 991px) {
|
||
.bootstrap .visible-sm-inline {
|
||
display: inline !important;
|
||
}
|
||
}
|
||
@media (min-width: 768px) and (max-width: 991px) {
|
||
.bootstrap .visible-sm-inline-block {
|
||
display: inline-block !important;
|
||
}
|
||
}
|
||
@media (min-width: 992px) and (max-width: 1199px) {
|
||
.bootstrap .visible-md {
|
||
display: block !important;
|
||
}
|
||
.bootstrap table.visible-md {
|
||
display: table;
|
||
}
|
||
.bootstrap tr.visible-md {
|
||
display: table-row !important;
|
||
}
|
||
.bootstrap th.visible-md, .bootstrap td.visible-md {
|
||
display: table-cell !important;
|
||
}
|
||
}
|
||
@media (min-width: 992px) and (max-width: 1199px) {
|
||
.bootstrap .visible-md-block {
|
||
display: block !important;
|
||
}
|
||
}
|
||
@media (min-width: 992px) and (max-width: 1199px) {
|
||
.bootstrap .visible-md-inline {
|
||
display: inline !important;
|
||
}
|
||
}
|
||
@media (min-width: 992px) and (max-width: 1199px) {
|
||
.bootstrap .visible-md-inline-block {
|
||
display: inline-block !important;
|
||
}
|
||
}
|
||
@media (min-width: 1200px) {
|
||
.bootstrap .visible-lg {
|
||
display: block !important;
|
||
}
|
||
.bootstrap table.visible-lg {
|
||
display: table;
|
||
}
|
||
.bootstrap tr.visible-lg {
|
||
display: table-row !important;
|
||
}
|
||
.bootstrap th.visible-lg, .bootstrap td.visible-lg {
|
||
display: table-cell !important;
|
||
}
|
||
}
|
||
@media (min-width: 1200px) {
|
||
.bootstrap .visible-lg-block {
|
||
display: block !important;
|
||
}
|
||
}
|
||
@media (min-width: 1200px) {
|
||
.bootstrap .visible-lg-inline {
|
||
display: inline !important;
|
||
}
|
||
}
|
||
@media (min-width: 1200px) {
|
||
.bootstrap .visible-lg-inline-block {
|
||
display: inline-block !important;
|
||
}
|
||
}
|
||
@media (max-width: 767px) {
|
||
.bootstrap .hidden-xs, .bootstrap #header_notifs_icon_wrapper, .bootstrap #header_quick {
|
||
display: none !important;
|
||
}
|
||
}
|
||
@media (min-width: 768px) and (max-width: 991px) {
|
||
.bootstrap .hidden-sm {
|
||
display: none !important;
|
||
}
|
||
}
|
||
@media (min-width: 992px) and (max-width: 1199px) {
|
||
.bootstrap .hidden-md {
|
||
display: none !important;
|
||
}
|
||
}
|
||
@media (min-width: 1200px) {
|
||
.bootstrap .hidden-lg {
|
||
display: none !important;
|
||
}
|
||
}
|
||
.bootstrap .visible-print {
|
||
display: none !important;
|
||
}
|
||
@media print {
|
||
.bootstrap .visible-print {
|
||
display: block !important;
|
||
}
|
||
.bootstrap table.visible-print {
|
||
display: table;
|
||
}
|
||
.bootstrap tr.visible-print {
|
||
display: table-row !important;
|
||
}
|
||
.bootstrap th.visible-print, .bootstrap td.visible-print {
|
||
display: table-cell !important;
|
||
}
|
||
}
|
||
.bootstrap .visible-print-block {
|
||
display: none !important;
|
||
}
|
||
@media print {
|
||
.bootstrap .visible-print-block {
|
||
display: block !important;
|
||
}
|
||
}
|
||
.bootstrap .visible-print-inline {
|
||
display: none !important;
|
||
}
|
||
@media print {
|
||
.bootstrap .visible-print-inline {
|
||
display: inline !important;
|
||
}
|
||
}
|
||
.bootstrap .visible-print-inline-block {
|
||
display: none !important;
|
||
}
|
||
@media print {
|
||
.bootstrap .visible-print-inline-block {
|
||
display: inline-block !important;
|
||
}
|
||
}
|
||
@media print {
|
||
.bootstrap .hidden-print {
|
||
display: none !important;
|
||
}
|
||
}
|
||
.modal-open {
|
||
overflow: hidden;
|
||
}
|
||
.modal {
|
||
bottom: 0;
|
||
display: none;
|
||
left: 0;
|
||
outline: 0 none;
|
||
overflow-x: auto;
|
||
overflow-y: scroll;
|
||
position: fixed;
|
||
right: 0;
|
||
top: 0;
|
||
z-index: 1050;
|
||
}
|
||
.modal.fade .modal-dialog {
|
||
transform: translate(0px, -25%);
|
||
transition: transform 0.3s ease-out 0s;
|
||
}
|
||
.modal.in .modal-dialog {
|
||
transform: translate(0px, 0px);
|
||
}
|
||
.modal-dialog {
|
||
margin: 10px;
|
||
position: relative;
|
||
width: auto;
|
||
}
|
||
.modal-content {
|
||
background-clip: padding-box;
|
||
background-color: #fff;
|
||
border: 1px solid rgba(0, 0, 0, 0.2);
|
||
border-radius: 6px;
|
||
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
||
outline: 0 none;
|
||
position: relative;
|
||
}
|
||
.modal-backdrop {
|
||
background-color: #000;
|
||
bottom: 0;
|
||
left: 0;
|
||
position: fixed;
|
||
right: 0;
|
||
top: 0;
|
||
z-index: 1040;
|
||
}
|
||
.modal-backdrop.fade {
|
||
opacity: 0;
|
||
}
|
||
.modal-backdrop.in {
|
||
opacity: 0.5;
|
||
}
|
||
.modal-header {
|
||
border-bottom: 1px solid #e5e5e5;
|
||
min-height: 16.4286px;
|
||
padding: 15px;
|
||
}
|
||
.modal-header .close {
|
||
margin-top: -2px;
|
||
}
|
||
.modal-title {
|
||
line-height: 1.42857;
|
||
margin: 0;
|
||
}
|
||
.modal-body {
|
||
padding: 15px;
|
||
position: relative;
|
||
}
|
||
.modal-footer {
|
||
border-top: 1px solid #e5e5e5;
|
||
padding: 15px;
|
||
text-align: right;
|
||
}
|
||
.modal-footer:before, .modal-footer:after {
|
||
content: " ";
|
||
display: table;
|
||
}
|
||
.modal-footer:after {
|
||
clear: both;
|
||
}
|
||
.modal-footer .btn + .btn {
|
||
margin-bottom: 0;
|
||
margin-left: 5px;
|
||
}
|
||
.modal-footer .btn-group .btn + .btn {
|
||
margin-left: -1px;
|
||
}
|
||
.modal-footer .btn-block + .btn-block {
|
||
margin-left: 0;
|
||
}
|
||
.modal-scrollbar-measure {
|
||
height: 50px;
|
||
overflow: scroll;
|
||
position: absolute;
|
||
top: -9999px;
|
||
width: 50px;
|
||
}
|
||
@media (min-width: 768px) {
|
||
.modal-dialog {
|
||
margin: 30px auto;
|
||
width: 600px;
|
||
}
|
||
.modal-content {
|
||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
||
}
|
||
.modal-sm {
|
||
width: 300px;
|
||
}
|
||
}
|
||
@media (min-width: 992px) {
|
||
.modal-lg {
|
||
width: 900px;
|
||
}
|
||
}
|
||
.carousel {
|
||
position: relative;
|
||
}
|
||
.carousel-inner {
|
||
overflow: hidden;
|
||
position: relative;
|
||
width: 100%;
|
||
}
|
||
.carousel-inner > .item {
|
||
display: none;
|
||
position: relative;
|
||
transition: left 0.6s ease-in-out 0s;
|
||
}
|
||
.carousel-inner > .item > img, .carousel-inner > .item > a > img {
|
||
display: block;
|
||
height: auto;
|
||
line-height: 1;
|
||
max-width: 100%;
|
||
}
|
||
.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
|
||
display: block;
|
||
}
|
||
.carousel-inner > .active {
|
||
left: 0;
|
||
}
|
||
.carousel-inner > .next, .carousel-inner > .prev {
|
||
position: absolute;
|
||
top: 0;
|
||
width: 100%;
|
||
}
|
||
.carousel-inner > .next {
|
||
left: 100%;
|
||
}
|
||
.carousel-inner > .prev {
|
||
left: -100%;
|
||
}
|
||
.carousel-inner > .next.left, .carousel-inner > .prev.right {
|
||
left: 0;
|
||
}
|
||
.carousel-inner > .active.left {
|
||
left: -100%;
|
||
}
|
||
.carousel-inner > .active.right {
|
||
left: 100%;
|
||
}
|
||
.carousel-control {
|
||
bottom: 0;
|
||
color: #fff;
|
||
font-size: 20px;
|
||
left: 0;
|
||
opacity: 0.5;
|
||
position: absolute;
|
||
text-align: center;
|
||
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
|
||
top: 0;
|
||
width: 15%;
|
||
}
|
||
.carousel-control.left {
|
||
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
|
||
background-repeat: repeat-x;
|
||
}
|
||
.carousel-control.right {
|
||
background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
|
||
background-repeat: repeat-x;
|
||
left: auto;
|
||
right: 0;
|
||
}
|
||
.carousel-control:hover, .carousel-control:focus {
|
||
color: #fff;
|
||
opacity: 0.9;
|
||
outline: 0 none;
|
||
text-decoration: none;
|
||
}
|
||
.carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right {
|
||
display: inline-block;
|
||
position: absolute;
|
||
top: 50%;
|
||
z-index: 5;
|
||
}
|
||
.carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left {
|
||
left: 50%;
|
||
margin-left: -10px;
|
||
}
|
||
.carousel-control .icon-next, .carousel-control .glyphicon-chevron-right {
|
||
margin-right: -10px;
|
||
right: 50%;
|
||
}
|
||
.carousel-control .icon-prev, .carousel-control .icon-next {
|
||
font-family: serif;
|
||
height: 20px;
|
||
margin-top: -10px;
|
||
width: 20px;
|
||
}
|
||
.carousel-control .icon-prev:before {
|
||
content: "‹";
|
||
}
|
||
.carousel-control .icon-next:before {
|
||
content: "›";
|
||
}
|
||
.carousel-indicators {
|
||
bottom: 10px;
|
||
left: 50%;
|
||
list-style: outside none none;
|
||
margin-left: -30%;
|
||
padding-left: 0;
|
||
position: absolute;
|
||
text-align: center;
|
||
width: 60%;
|
||
z-index: 15;
|
||
}
|
||
.carousel-indicators li {
|
||
background-color: rgba(0, 0, 0, 0);
|
||
border: 1px solid #fff;
|
||
border-radius: 10px;
|
||
cursor: pointer;
|
||
display: inline-block;
|
||
height: 10px;
|
||
margin: 1px;
|
||
text-indent: -999px;
|
||
width: 10px;
|
||
}
|
||
.carousel-indicators .active {
|
||
background-color: #fff;
|
||
height: 12px;
|
||
margin: 0;
|
||
width: 12px;
|
||
}
|
||
.carousel-caption {
|
||
bottom: 20px;
|
||
color: #fff;
|
||
left: 15%;
|
||
padding-bottom: 20px;
|
||
padding-top: 20px;
|
||
position: absolute;
|
||
right: 15%;
|
||
text-align: center;
|
||
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
|
||
z-index: 10;
|
||
}
|
||
.carousel-caption .btn {
|
||
text-shadow: none;
|
||
}
|
||
@media screen and (min-width: 768px) {
|
||
.carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next {
|
||
font-size: 30px;
|
||
height: 30px;
|
||
margin-top: -15px;
|
||
width: 30px;
|
||
}
|
||
.carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
|
||
margin-left: -15px;
|
||
}
|
||
.carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
|
||
margin-right: -15px;
|
||
}
|
||
.carousel-caption {
|
||
left: 20%;
|
||
padding-bottom: 30px;
|
||
right: 20%;
|
||
}
|
||
.carousel-indicators {
|
||
bottom: 20px;
|
||
}
|
||
}
|
||
html, body {
|
||
height: 100%;
|
||
min-height: 100%;
|
||
}
|
||
body {
|
||
background-color: #fff;
|
||
color: #555;
|
||
font: 400 12px/1.42857 "Open Sans",Helvetica,Arial,sans-serif;
|
||
}
|
||
#main {
|
||
float: left;
|
||
margin: 0 0 -50px;
|
||
padding: 36px 0 60px;
|
||
width: 100%;
|
||
z-index: 10;
|
||
}
|
||
#content.bootstrap {
|
||
padding: 80px 10px 0;
|
||
transition-duration: 0.4s;
|
||
transition-property: margin;
|
||
transition-timing-function: ease-out;
|
||
}
|
||
#content.bootstrap .panel, #content.bootstrap #dash_version, #content.bootstrap .message-item-initial .message-item-initial-body, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel {
|
||
background-color: #fff;
|
||
border: 1px solid #e6e6e6;
|
||
border-radius: 5px;
|
||
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1), 0 0 0 3px #fff inset;
|
||
margin-bottom: 20px;
|
||
padding: 20px;
|
||
position: relative;
|
||
}
|
||
#content.bootstrap .panel.panel-highlighted, #content.bootstrap #dash_version.panel-highlighted, #content.bootstrap .message-item-initial .panel-highlighted.message-item-initial-body, #content.bootstrap .timeline .timeline-item .timeline-caption .panel-highlighted.timeline-panel {
|
||
border-color: #00aff0 !important;
|
||
box-shadow: 0 0 0 6px rgba(0, 175, 240, 0.15) inset !important;
|
||
}
|
||
#content.bootstrap .panel .panel-heading, #content.bootstrap #dash_version .panel-heading, #content.bootstrap .message-item-initial .message-item-initial-body .panel-heading, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel-heading {
|
||
color: #555;
|
||
font-family: "Ubuntu Condensed",Helvetica,Arial,sans-serif;
|
||
font-size: 14px;
|
||
font-weight: 400;
|
||
height: 32px;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
#content.bootstrap .panel .panel-heading a.btn, #content.bootstrap #dash_version .panel-heading a.btn, #content.bootstrap .message-item-initial .message-item-initial-body .panel-heading a.btn, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel-heading a.btn {
|
||
font-family: "Open Sans",Helvetica,Arial,sans-serif;
|
||
position: relative;
|
||
text-transform: none;
|
||
top: 2px;
|
||
}
|
||
#content.bootstrap .panel .panel-heading i, #content.bootstrap #dash_version .panel-heading i, #content.bootstrap .message-item-initial .message-item-initial-body .panel-heading i, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel-heading i {
|
||
font-size: 14px;
|
||
}
|
||
#content.bootstrap .panel .panel, #content.bootstrap #dash_version .panel, #content.bootstrap .message-item-initial .message-item-initial-body .panel, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel, #content.bootstrap .panel #dash_version, #content.bootstrap #dash_version #dash_version, #content.bootstrap .message-item-initial .message-item-initial-body #dash_version, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel #dash_version, #content.bootstrap .panel .message-item-initial .message-item-initial-body, #content.bootstrap .message-item-initial .panel .message-item-initial-body, #content.bootstrap #dash_version .message-item-initial .message-item-initial-body, #content.bootstrap .message-item-initial #dash_version .message-item-initial-body, #content.bootstrap .message-item-initial .message-item-initial-body .message-item-initial-body, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .message-item-initial .message-item-initial-body, #content.bootstrap .message-item-initial .timeline .timeline-item .timeline-caption .timeline-panel .message-item-initial-body, #content.bootstrap .panel .timeline .timeline-item .timeline-caption .timeline-panel, #content.bootstrap .timeline .timeline-item .timeline-caption .panel .timeline-panel, #content.bootstrap #dash_version .timeline .timeline-item .timeline-caption .timeline-panel, #content.bootstrap .timeline .timeline-item .timeline-caption #dash_version .timeline-panel, #content.bootstrap .message-item-initial .message-item-initial-body .timeline .timeline-item .timeline-caption .timeline-panel, #content.bootstrap .timeline .timeline-item .timeline-caption .message-item-initial .message-item-initial-body .timeline-panel, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .timeline-panel {
|
||
border: 1px solid #ddd;
|
||
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1), 0 0 0 3px #fff inset;
|
||
}
|
||
#content.bootstrap .panel .panel.tab-content, #content.bootstrap #dash_version .panel.tab-content, #content.bootstrap .message-item-initial .message-item-initial-body .panel.tab-content, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel.tab-content, #content.bootstrap .panel #dash_version.tab-content, #content.bootstrap #dash_version #dash_version.tab-content, #content.bootstrap .message-item-initial .message-item-initial-body #dash_version.tab-content, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel #dash_version.tab-content, #content.bootstrap .panel .message-item-initial .tab-content.message-item-initial-body, #content.bootstrap .message-item-initial .panel .tab-content.message-item-initial-body, #content.bootstrap #dash_version .message-item-initial .tab-content.message-item-initial-body, #content.bootstrap .message-item-initial #dash_version .tab-content.message-item-initial-body, #content.bootstrap .message-item-initial .message-item-initial-body .tab-content.message-item-initial-body, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .message-item-initial .tab-content.message-item-initial-body, #content.bootstrap .message-item-initial .timeline .timeline-item .timeline-caption .timeline-panel .tab-content.message-item-initial-body, #content.bootstrap .panel .timeline .timeline-item .timeline-caption .tab-content.timeline-panel, #content.bootstrap .timeline .timeline-item .timeline-caption .panel .tab-content.timeline-panel, #content.bootstrap #dash_version .timeline .timeline-item .timeline-caption .tab-content.timeline-panel, #content.bootstrap .timeline .timeline-item .timeline-caption #dash_version .tab-content.timeline-panel, #content.bootstrap .message-item-initial .message-item-initial-body .timeline .timeline-item .timeline-caption .tab-content.timeline-panel, #content.bootstrap .timeline .timeline-item .timeline-caption .message-item-initial .message-item-initial-body .tab-content.timeline-panel, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .tab-content.timeline-panel {
|
||
border-radius: 0 0 3px 3px;
|
||
}
|
||
#content.bootstrap h3:not(.modal-title), #content.bootstrap .panel-heading {
|
||
-moz-border-bottom-colors: none;
|
||
-moz-border-left-colors: none;
|
||
-moz-border-right-colors: none;
|
||
-moz-border-top-colors: none;
|
||
border-color: -moz-use-text-color -moz-use-text-color #eee;
|
||
border-image: none;
|
||
border-style: none none solid;
|
||
border-width: medium medium 1px;
|
||
font-size: 1.2em;
|
||
height: 2.2em;
|
||
line-height: 2.2em;
|
||
margin: -20px -16px 15px;
|
||
padding: 0 0 0 5px;
|
||
text-transform: uppercase;
|
||
}
|
||
#content.bootstrap h3:not(.modal-title) i, #content.bootstrap h3:not(.modal-title) a, #content.bootstrap .panel-heading i, #content.bootstrap .panel-heading a {
|
||
}
|
||
#content.bootstrap h3:not(.modal-title) .badge, #content.bootstrap h3:not(.modal-title) #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper #content.bootstrap h3:not(.modal-title) .notifs_badge, #content.bootstrap h3:not(.modal-title) .module-badge-popular, #content.bootstrap h3:not(.modal-title) .module-badge-partner, #content.bootstrap h3:not(.modal-title) .module-badge-bought, #content.bootstrap .panel-heading .badge, #content.bootstrap .panel-heading #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper #content.bootstrap .panel-heading .notifs_badge, #content.bootstrap .panel-heading .module-badge-popular, #content.bootstrap .panel-heading .module-badge-partner, #content.bootstrap .panel-heading .module-badge-bought {
|
||
background-color: #fff;
|
||
border: 1px solid #d9d9d9;
|
||
border-radius: 20px;
|
||
color: #555;
|
||
font-size: 1.1em;
|
||
font-weight: 700;
|
||
line-height: 1.2em;
|
||
margin-left: 0.4em;
|
||
padding: 0 10px;
|
||
}
|
||
#content.bootstrap h3:not(.modal-title) .badge a, #content.bootstrap h3:not(.modal-title) #header_notifs_icon_wrapper .notifs_badge a, #header_notifs_icon_wrapper #content.bootstrap h3:not(.modal-title) .notifs_badge a, #content.bootstrap h3:not(.modal-title) .module-badge-popular a, #content.bootstrap h3:not(.modal-title) .module-badge-partner a, #content.bootstrap h3:not(.modal-title) .module-badge-bought a, #content.bootstrap .panel-heading .badge a, #content.bootstrap .panel-heading #header_notifs_icon_wrapper .notifs_badge a, #header_notifs_icon_wrapper #content.bootstrap .panel-heading .notifs_badge a, #content.bootstrap .panel-heading .module-badge-popular a, #content.bootstrap .panel-heading .module-badge-partner a, #content.bootstrap .panel-heading .module-badge-bought a {
|
||
display: block;
|
||
font-size: 0.8em;
|
||
}
|
||
#content.bootstrap h3:not(.modal-title) .panel-heading-action, #content.bootstrap .panel-heading .panel-heading-action {
|
||
line-height: 0;
|
||
position: absolute;
|
||
right: 0;
|
||
top: 2px;
|
||
}
|
||
#content.bootstrap h3:not(.modal-title) .panel-heading-action .btn-group, #content.bootstrap .panel-heading .panel-heading-action .btn-group {
|
||
position: absolute;
|
||
right: 2px;
|
||
top: -2px;
|
||
white-space: nowrap;
|
||
}
|
||
#content.bootstrap h3:not(.modal-title) .panel-heading-action .btn-group a.btn, #content.bootstrap .panel-heading .panel-heading-action .btn-group a.btn {
|
||
float: none;
|
||
}
|
||
#content.bootstrap h3:not(.modal-title) .panel-heading-action > a.btn, #content.bootstrap .panel-heading .panel-heading-action > a.btn {
|
||
position: absolute;
|
||
right: 2px;
|
||
top: 0;
|
||
}
|
||
#content.bootstrap h3:not(.modal-title) .panel-heading-action a.list-toolbar-btn, #content.bootstrap .panel-heading .panel-heading-action a.list-toolbar-btn {
|
||
border-left: 1px solid #eee;
|
||
color: #ccc;
|
||
float: left;
|
||
height: 30px;
|
||
width: 30px;
|
||
}
|
||
#content.bootstrap h3:not(.modal-title) .panel-heading-action a.list-toolbar-btn:hover, #content.bootstrap .panel-heading .panel-heading-action a.list-toolbar-btn:hover {
|
||
color: #00aff0;
|
||
text-decoration: none;
|
||
}
|
||
#content.bootstrap h3:not(.modal-title) .panel-heading-action a.list-toolbar-btn i, #content.bootstrap .panel-heading .panel-heading-action a.list-toolbar-btn i {
|
||
font-size: 18px;
|
||
line-height: 30px;
|
||
text-align: center;
|
||
}
|
||
#content.bootstrap .panel-danger .panel-heading {
|
||
background-color: #8bc954 !important;
|
||
}
|
||
#content.bootstrap form .alert, #content.bootstrap form #carrier_wizard .wizard_error, #content.bootstrap #carrier_wizard form .wizard_error {
|
||
clear: both;
|
||
}
|
||
@media (max-width: 480px) {
|
||
#content.bootstrap {
|
||
margin-left: 0 !important;
|
||
padding: 80px 5px 0;
|
||
}
|
||
}
|
||
#content.bootstrap .help-block {
|
||
font-style: italic;
|
||
}
|
||
#content.bootstrap .nav.nav-tabs li.active a, #content.bootstrap #header_notifs_icon_wrapper.nav-tabs li.active a, #content.bootstrap #header_employee_box.nav-tabs li.active a, #content.bootstrap #header_quick.nav-tabs li.active a {
|
||
z-index: 99;
|
||
}
|
||
#content.bootstrap .breadcrumb {
|
||
background-color: #fff;
|
||
border: 1px solid #e6e6e6;
|
||
}
|
||
#content.bootstrap .panel.panel-sm, #content.bootstrap #dash_version.panel-sm, #content.bootstrap .message-item-initial .panel-sm.message-item-initial-body, #content.bootstrap .timeline .timeline-item .timeline-caption .panel-sm.timeline-panel {
|
||
padding: 8px !important;
|
||
}
|
||
#content.bootstrap .panel.panel-sm .panel-heading, #content.bootstrap #dash_version.panel-sm .panel-heading, #content.bootstrap .message-item-initial .panel-sm.message-item-initial-body .panel-heading, #content.bootstrap .timeline .timeline-item .timeline-caption .panel-sm.timeline-panel .panel-heading {
|
||
font-size: 13px;
|
||
margin: -8px -8px 10px;
|
||
padding-left: 8px;
|
||
}
|
||
#content.bootstrap .panel.panel-sm .form-group, #content.bootstrap #dash_version.panel-sm .form-group, #content.bootstrap .message-item-initial .panel-sm.message-item-initial-body .form-group, #content.bootstrap .timeline .timeline-item .timeline-caption .panel-sm.timeline-panel .form-group {
|
||
margin-bottom: 8px;
|
||
}
|
||
.data-focus.data-focus-primary {
|
||
background-color: #00aff0;
|
||
border-radius: 10px;
|
||
color: #fff;
|
||
}
|
||
#customer_part .customerCard.selected-customer .panel, #customer_part .customerCard.selected-customer .bootstrap #dash_version, .bootstrap #customer_part .customerCard.selected-customer #dash_version, #customer_part .customerCard.selected-customer .bootstrap .message-item-initial .message-item-initial-body, .bootstrap .message-item-initial #customer_part .customerCard.selected-customer .message-item-initial-body, #customer_part .customerCard.selected-customer .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption #customer_part .customerCard.selected-customer .timeline-panel {
|
||
border: 2px solid #79bd3c;
|
||
color: #79bd3c;
|
||
}
|
||
body.display-modal #content, body.display-modal #main {
|
||
background: none repeat scroll 0 0 #f8f8f8;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
.bootstrap .panel .panel-footer, .bootstrap #dash_version .panel-footer, .bootstrap .message-item-initial .message-item-initial-body .panel-footer, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel-footer {
|
||
background-color: #fcfdfe;
|
||
border-color: #eee;
|
||
height: 73px;
|
||
margin: 15px -20px -20px;
|
||
}
|
||
.bootstrap .panel .panel-footer .btn.pull-right:not(:first-child), .bootstrap #dash_version .panel-footer .btn.pull-right:not(:first-child), .bootstrap .message-item-initial .message-item-initial-body .panel-footer .btn.pull-right:not(:first-child), .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel-footer .btn.pull-right:not(:first-child) {
|
||
margin-right: 5px;
|
||
}
|
||
.bootstrap .panel .panel-footer .btn, .bootstrap #dash_version .panel-footer .btn, .bootstrap .message-item-initial .message-item-initial-body .panel-footer .btn, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel-footer .btn {
|
||
line-height: 1em;
|
||
}
|
||
#header .panel-footer {
|
||
height: 40px !important;
|
||
margin: 15px 0 0 !important;
|
||
}
|
||
#main.helpOpen {
|
||
width: 70%;
|
||
}
|
||
@media (max-width: 1200px) {
|
||
#main.helpOpen {
|
||
width: 100%;
|
||
}
|
||
}
|
||
#help-container {
|
||
background-color: #fff;
|
||
box-sizing: border-box;
|
||
float: right;
|
||
margin: 120px 0 50px;
|
||
overflow-x: hidden;
|
||
padding: 0;
|
||
position: relative;
|
||
width: 30%;
|
||
}
|
||
@media (max-width: 1200px) {
|
||
#help-container {
|
||
display: none;
|
||
}
|
||
}
|
||
.page-topbar #help-container {
|
||
margin-top: 140px;
|
||
}
|
||
#header {
|
||
z-index: 20;
|
||
}
|
||
|
||
#header_infos .navbar-header {
|
||
width: 100%;
|
||
}
|
||
|
||
@media (max-width: 480px) {
|
||
#header_shopname {
|
||
display: none;
|
||
}
|
||
}
|
||
#header_shopname img {
|
||
height: 35px;
|
||
left: 0;
|
||
position: absolute;
|
||
top: 0;
|
||
width: 35px;
|
||
}
|
||
#header_notifs_icon_wrapper {
|
||
min-width: 170px;
|
||
}
|
||
#header_notifs_icon_wrapper > li > a {
|
||
display: block;
|
||
height: 36px;
|
||
}
|
||
#header_notifs_icon_wrapper > li > a:hover i {
|
||
color: #fff;
|
||
}
|
||
#header_notifs_icon_wrapper > li > a > i {
|
||
color: #b3b3b3;
|
||
font-size: 14px;
|
||
vertical-align: middle;
|
||
}
|
||
#header_notifs_icon_wrapper .notifs {
|
||
position: relative;
|
||
width: 40px;
|
||
}
|
||
#header_notifs_icon_wrapper .notifs_badge {
|
||
display: none;
|
||
font-size: 10px !important;
|
||
padding: 0 5px !important;
|
||
position: absolute;
|
||
right: -3px;
|
||
top: 2px;
|
||
z-index: 10;
|
||
}
|
||
#header_notifs_icon_wrapper .notifs_dropdown {
|
||
background-color: #fff;
|
||
border: medium none;
|
||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
|
||
}
|
||
#header_notifs_icon_wrapper .notifs_dropdown .notifs_panel {
|
||
width: 300px;
|
||
}
|
||
#header_notifs_icon_wrapper .notifs_dropdown .notifs_panel .notifs_panel_header h3 {
|
||
border-bottom: 1px solid #ccc;
|
||
font-size: 1.3em;
|
||
margin: 0;
|
||
padding: 10px;
|
||
}
|
||
#header_notifs_icon_wrapper .notifs_dropdown .notifs_panel .notifs_panel_footer {
|
||
padding: 10px;
|
||
text-align: center;
|
||
}
|
||
#header_notifs_icon_wrapper .notifs_dropdown .notifs_panel .list_notif a {
|
||
border-bottom: 1px solid #ccc;
|
||
display: block;
|
||
padding: 5px;
|
||
text-decoration: none;
|
||
}
|
||
#header_notifs_icon_wrapper .notifs_dropdown .notifs_panel .list_notif .no_notifs {
|
||
border-bottom: 1px solid #ccc;
|
||
display: block;
|
||
padding: 15px;
|
||
}
|
||
#header_nav_toggle {
|
||
background-color: #000;
|
||
border: medium none;
|
||
color: #fff;
|
||
display: none;
|
||
}
|
||
#header_employee_box {
|
||
margin: 0 !important;
|
||
}
|
||
@media (max-width: 768px) {
|
||
#header_employee_box {
|
||
float: right;
|
||
}
|
||
#header_employee_box > li {
|
||
display: inline-block;
|
||
float: left;
|
||
}
|
||
}
|
||
@media (max-width: 992px) {
|
||
#header_employee_box span.string-long {
|
||
display: none;
|
||
}
|
||
}
|
||
#header_employee_box span.string-short {
|
||
display: none;
|
||
}
|
||
@media (max-width: 992px) {
|
||
#header_employee_box span.string-short {
|
||
display: inline-block;
|
||
}
|
||
}
|
||
#header_employee_box a img {
|
||
margin-right: 5px;
|
||
}
|
||
#header_employee_box #header_foaccess i {
|
||
font-size: 1.2em;
|
||
}
|
||
#employee_infos .employee_name {
|
||
padding-left: 34px !important;
|
||
position: relative;
|
||
}
|
||
#employee_infos .employee_avatar_small {
|
||
left: 0;
|
||
position: absolute;
|
||
top: 2px;
|
||
}
|
||
#employee_infos img {
|
||
border: medium none;
|
||
padding: 0;
|
||
}
|
||
#employee_links i {
|
||
font-size: 14px;
|
||
}
|
||
|
||
|
||
#footer {
|
||
animation: 0.3s ease 0.2s normal both 1 running fadeInUp;
|
||
background-color: rgba(0, 0, 0, 0.8);
|
||
bottom: 0;
|
||
color: #aaa;
|
||
display: block;
|
||
height: 50px;
|
||
line-height: 50px;
|
||
position: fixed;
|
||
width: 100%;
|
||
z-index: 600;
|
||
}
|
||
#footer a {
|
||
color: #ccc;
|
||
}
|
||
#footer.hide {
|
||
display: none !important;
|
||
}
|
||
#footer #go-top {
|
||
background-color: #383f50;
|
||
bottom: 10px;
|
||
color: #fff;
|
||
cursor: pointer;
|
||
display: block;
|
||
font-size: 16px;
|
||
height: 30px;
|
||
line-height: 30px;
|
||
margin: -2px 0 0;
|
||
padding: 0 6px;
|
||
position: fixed;
|
||
right: 10px;
|
||
text-align: center;
|
||
text-decoration: none;
|
||
width: 30px;
|
||
z-index: 9003;
|
||
}
|
||
#footer #go-top:hover {
|
||
background-color: #00aff0;
|
||
}
|
||
#footer .social-networks {
|
||
margin: 4px 0 0;
|
||
}
|
||
#footer a.footer_link {
|
||
color: #00aff0;
|
||
}
|
||
#footer a.footer_link:hover {
|
||
color: #fff;
|
||
text-decoration: none;
|
||
}
|
||
#footer a.footer_link i {
|
||
color: #fff;
|
||
font-size: 14px;
|
||
}
|
||
#footer .footer-contact {
|
||
line-height: 1.5em;
|
||
margin: 0 0 6px 6px;
|
||
overflow: hidden;
|
||
padding: 7px 0 0;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
#footer .footer-contact strong {
|
||
color: #fff;
|
||
font-weight: 400;
|
||
}
|
||
a.link-social i {
|
||
border-radius: 30px;
|
||
display: inline-block;
|
||
font-size: 28px;
|
||
height: 34px;
|
||
line-height: 34px !important;
|
||
margin: 0 4px 0 0;
|
||
text-align: center;
|
||
width: 34px;
|
||
}
|
||
a.link-social:hover {
|
||
text-decoration: none;
|
||
}
|
||
.link-twitter i {
|
||
background-color: #7cceef;
|
||
color: #fff;
|
||
}
|
||
.link-twitter i:hover {
|
||
background-color: #fff;
|
||
color: #7cceef;
|
||
}
|
||
.link-facebook i {
|
||
background-color: #557dbb;
|
||
color: #fff;
|
||
}
|
||
.link-facebook i:hover {
|
||
background-color: #fff;
|
||
color: #557dbb;
|
||
}
|
||
.link-github i {
|
||
background-color: #fff;
|
||
color: #000;
|
||
}
|
||
.link-github i:hover {
|
||
background-color: #000;
|
||
color: #fff;
|
||
}
|
||
.link-google i {
|
||
background-color: #e6644e;
|
||
color: #fff;
|
||
}
|
||
.link-google i:hover {
|
||
background-color: #fff;
|
||
color: #e6644e;
|
||
}
|
||
#nav-sidebar {
|
||
background-color: #191c23;
|
||
height: 100%;
|
||
left: 0;
|
||
position: fixed;
|
||
width: 210px;
|
||
z-index: 500;
|
||
}
|
||
#nav-sidebar ul.menu {
|
||
list-style: outside none none !important;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
#nav-sidebar ul.menu li.searchtab {
|
||
background-color: #2d3341;
|
||
border-bottom: 1px solid #232732;
|
||
box-shadow: 0 -3px 0 0 rgba(0, 0, 0, 0.1) inset;
|
||
height: 55px;
|
||
padding: 14px 7px;
|
||
position: relative;
|
||
}
|
||
#nav-sidebar ul.menu li.searchtab #bo_query {
|
||
background-color: #d7dbe3;
|
||
color: #383f50;
|
||
}
|
||
#nav-sidebar ul.menu li.searchtab .form-group.focus-search {
|
||
background-color: #2d3341;
|
||
border-bottom: 1px solid #232732;
|
||
height: 55px;
|
||
left: 0;
|
||
padding: 14px 13px 0 7px;
|
||
position: absolute;
|
||
top: 0;
|
||
width: 400px;
|
||
z-index: 900;
|
||
}
|
||
#nav-sidebar ul.menu li.searchtab .form-group.focus-search #bo_query {
|
||
width: 100%;
|
||
}
|
||
#nav-sidebar ul.menu li.searchtab .clear_search {
|
||
position: absolute;
|
||
right: 8px;
|
||
top: 6px;
|
||
z-index: 10;
|
||
}
|
||
#nav-sidebar ul.menu li.searchtab i {
|
||
font-size: 14px;
|
||
}
|
||
#nav-sidebar ul.menu li.maintab {
|
||
position: relative;
|
||
}
|
||
#nav-sidebar ul.menu li.maintab ul.submenu {
|
||
background-color: #272c38;
|
||
display: none;
|
||
padding: 4px;
|
||
}
|
||
#nav-sidebar ul.menu li.maintab ul.submenu li {
|
||
list-style: outside none none !important;
|
||
}
|
||
#nav-sidebar ul.menu li.maintab ul.submenu li a {
|
||
background-color: #383f50;
|
||
border-bottom: 1px solid #232732;
|
||
color: #c3c5ca;
|
||
display: block;
|
||
padding: 3px 8px;
|
||
}
|
||
#nav-sidebar ul.menu li.maintab ul.submenu li a:hover {
|
||
background-color: #232732;
|
||
box-shadow: -4px 0 0 0 #00aff0 inset;
|
||
color: #fff;
|
||
text-decoration: none;
|
||
}
|
||
#nav-sidebar ul.menu li.maintab a {
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
#nav-sidebar ul.menu li.maintab > a.title {
|
||
background-color: #383f50;
|
||
border-bottom: 1px solid #232732;
|
||
color: #c3c5ca;
|
||
display: block;
|
||
height: 34px;
|
||
line-height: 34px;
|
||
padding: 0 0.35em;
|
||
position: relative;
|
||
text-decoration: none;
|
||
text-transform: uppercase;
|
||
transition-duration: 0.2s;
|
||
transition-property: background-color;
|
||
transition-timing-function: ease-out;
|
||
}
|
||
#nav-sidebar ul.menu li.maintab > a.title i {
|
||
color: #878b96;
|
||
font-size: 28px;
|
||
transition-duration: 0.4s;
|
||
transition-property: color;
|
||
transition-timing-function: ease-out;
|
||
vertical-align: middle;
|
||
width: 42px;
|
||
}
|
||
#nav-sidebar ul.menu li.maintab.hover > a.title, #nav-sidebar ul.menu li.maintab:hover:not(.hover) > a.title {
|
||
background-color: #272c38;
|
||
color: #fff;
|
||
}
|
||
#nav-sidebar ul.menu li.maintab.hover > a.title i, #nav-sidebar ul.menu li.maintab:hover:not(.hover) > a.title i {
|
||
color: #fff;
|
||
}
|
||
#nav-sidebar ul.menu li.maintab.hover ul.submenu {
|
||
display: block;
|
||
left: 210px;
|
||
position: absolute;
|
||
top: 0;
|
||
width: 200px;
|
||
z-index: 600;
|
||
}
|
||
#nav-sidebar ul.menu li.maintab:last-child > a.title {
|
||
border-bottom: medium none;
|
||
}
|
||
#nav-sidebar ul.menu li.maintab.active a, #nav-sidebar ul.menu li.maintab.active li.active a {
|
||
background-color: #4d576e;
|
||
color: #fff;
|
||
}
|
||
#nav-sidebar ul.menu li.maintab.active a i, #nav-sidebar ul.menu li.maintab.active li.active a i {
|
||
color: #fff;
|
||
}
|
||
@media (min-height: 850px) {
|
||
body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab.active ul.submenu {
|
||
background-color: #fff;
|
||
border-right: 1px solid #e6e6e6;
|
||
display: block;
|
||
}
|
||
body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab.active ul.submenu a {
|
||
background-color: #fff;
|
||
border-bottom: 1px solid #d8f3fc;
|
||
color: #00aff0;
|
||
}
|
||
body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab.active ul.submenu a:hover {
|
||
background-color: #d8f3fc;
|
||
border-bottom: 1px solid #d8f3fc;
|
||
box-shadow: 0 -1px #fff;
|
||
color: #00aff0;
|
||
text-decoration: none;
|
||
}
|
||
body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab.active ul.submenu li:last-child a {
|
||
border-bottom: 1px solid #fff;
|
||
}
|
||
body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab.active ul.submenu li.active a {
|
||
background-color: #00aff0;
|
||
border-bottom: 1px solid #00aff0;
|
||
border-top: 1px solid #fff;
|
||
color: #fff;
|
||
position: relative;
|
||
top: -1px;
|
||
}
|
||
}
|
||
@media (max-width: 480px) {
|
||
#nav-sidebar {
|
||
display: none;
|
||
}
|
||
}
|
||
@media (max-height: 850px) {
|
||
body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab > a.title {
|
||
font-size: 12px;
|
||
height: 28px;
|
||
line-height: 28px;
|
||
}
|
||
body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab > a.title i {
|
||
font-size: 14px;
|
||
text-align: right;
|
||
vertical-align: baseline;
|
||
width: 18px;
|
||
}
|
||
body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab ul.submenu {
|
||
padding: 1px 1px 0;
|
||
}
|
||
body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab ul.submenu li a {
|
||
height: 26px;
|
||
line-height: 26px;
|
||
padding: 0 6px;
|
||
}
|
||
body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab.active ul.submenu {
|
||
display: none;
|
||
}
|
||
body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab.active.hover ul.submenu {
|
||
display: block;
|
||
left: 210px;
|
||
position: absolute;
|
||
top: 0;
|
||
width: 200px;
|
||
z-index: 600;
|
||
}
|
||
}
|
||
.page-sidebar #content {
|
||
margin-left: 210px;
|
||
}
|
||
.page-sidebar-closed #nav-sidebar {
|
||
overflow: visible;
|
||
width: 50px;
|
||
}
|
||
.page-sidebar-closed #nav-sidebar ul.submenu {
|
||
display: none !important;
|
||
padding-top: 0 !important;
|
||
position: relative;
|
||
top: 34px;
|
||
}
|
||
.page-sidebar-closed #nav-sidebar li.searchtab {
|
||
color: rgba(255, 255, 255, 0.5);
|
||
}
|
||
.page-sidebar-closed #nav-sidebar li.searchtab:hover {
|
||
color: #fff;
|
||
cursor: pointer;
|
||
}
|
||
.page-sidebar-closed #nav-sidebar li.searchtab.search-expanded {
|
||
background-color: #2d3341;
|
||
padding: 14px 13px 0 7px;
|
||
width: 400px;
|
||
}
|
||
.page-sidebar-closed #nav-sidebar li.searchtab.search-expanded:before {
|
||
display: none;
|
||
}
|
||
.page-sidebar-closed #nav-sidebar li.searchtab.search-expanded form .form-group {
|
||
display: block;
|
||
}
|
||
.page-sidebar-closed #nav-sidebar li.maintab.active ul.submenu {
|
||
border: medium none !important;
|
||
}
|
||
.page-sidebar-closed #nav-sidebar a.title {
|
||
text-align: center;
|
||
}
|
||
.page-sidebar-closed #nav-sidebar a.title > span {
|
||
display: none;
|
||
}
|
||
.page-sidebar-closed #nav-sidebar > ul > li.maintab:hover {
|
||
position: relative;
|
||
width: 250px !important;
|
||
z-index: 500;
|
||
}
|
||
.page-sidebar-closed #nav-sidebar > ul > li.maintab:hover a.title {
|
||
text-align: left;
|
||
}
|
||
.page-sidebar-closed #nav-sidebar > ul > li.maintab:hover a.title > span {
|
||
display: inline-block;
|
||
}
|
||
.page-sidebar-closed #nav-sidebar > ul > li.maintab:hover ul.submenu {
|
||
display: block !important;
|
||
left: 50px;
|
||
position: absolute !important;
|
||
top: 34px !important;
|
||
width: 200px !important;
|
||
}
|
||
.page-sidebar-closed #content {
|
||
margin-left: 55px;
|
||
}
|
||
@media (max-width: 480px) {
|
||
.page-sidebar-closed #content {
|
||
margin-left: 0;
|
||
}
|
||
}
|
||
.page-sidebar-closed #content h2.page-title {
|
||
padding: 26px 0 0 120px;
|
||
white-space: nowrap;
|
||
}
|
||
.page-sidebar-closed #content ul.page-breadcrumb {
|
||
left: 120px !important;
|
||
}
|
||
.page-sidebar-closed .submenu_expand {
|
||
display: none;
|
||
}
|
||
#nav-topbar {
|
||
background-color: #fff;
|
||
border: 1px solid #fff;
|
||
height: 30px;
|
||
padding: 0 40px 0 0;
|
||
position: fixed;
|
||
top: 36px;
|
||
width: 100%;
|
||
z-index: 600;
|
||
}
|
||
#nav-topbar ul.menu {
|
||
display: block;
|
||
list-style: outside none none;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
#nav-topbar ul.menu li.maintab {
|
||
border-right: 1px solid #e6e6e6;
|
||
}
|
||
#nav-topbar ul.menu li.maintab:last-child {
|
||
border: medium none;
|
||
}
|
||
#nav-topbar ul.menu li.searchtab {
|
||
float: right;
|
||
margin-right: 5px;
|
||
width: 200px;
|
||
}
|
||
#nav-topbar ul.menu li.maintab, #nav-topbar ul.menu li.subtab {
|
||
float: left;
|
||
height: 28px;
|
||
list-style: outside none none;
|
||
margin: 0;
|
||
padding: 0;
|
||
position: relative;
|
||
}
|
||
#nav-topbar ul.menu li.maintab > a, #nav-topbar ul.menu li.subtab > a {
|
||
color: #626e8c;
|
||
display: block;
|
||
font-size: 12px;
|
||
line-height: 27px;
|
||
margin: 0;
|
||
padding: 0 6px;
|
||
}
|
||
#nav-topbar ul.menu li.maintab > a i, #nav-topbar ul.menu li.subtab > a i {
|
||
background-color: transparent;
|
||
color: #4d576e;
|
||
font-size: 14px;
|
||
margin: 0;
|
||
width: 15px;
|
||
}
|
||
#nav-topbar ul.menu li.maintab.active, #nav-topbar ul.menu li.maintab:hover, #nav-topbar ul.menu li.subtab.active, #nav-topbar ul.menu li.subtab:hover {
|
||
background-color: #00aff0;
|
||
}
|
||
#nav-topbar ul.menu li.maintab.active > a, #nav-topbar ul.menu li.maintab:hover > a, #nav-topbar ul.menu li.subtab.active > a, #nav-topbar ul.menu li.subtab:hover > a {
|
||
color: #fff;
|
||
text-decoration: none;
|
||
}
|
||
#nav-topbar ul.menu li.maintab.active > a i, #nav-topbar ul.menu li.maintab:hover > a i, #nav-topbar ul.menu li.subtab.active > a i, #nav-topbar ul.menu li.subtab:hover > a i {
|
||
color: #fff;
|
||
}
|
||
#nav-topbar ul.menu li.expanded > ul.submenu {
|
||
display: block;
|
||
}
|
||
#nav-topbar ul.menu ul.submenu {
|
||
background-color: #fff;
|
||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
|
||
display: none;
|
||
left: 0;
|
||
margin: 0;
|
||
padding: 0;
|
||
position: absolute;
|
||
top: 28px;
|
||
width: 200px !important;
|
||
}
|
||
#nav-topbar ul.menu ul.submenu > li {
|
||
list-style: outside none none;
|
||
padding: 0;
|
||
width: 200px;
|
||
}
|
||
#nav-topbar ul.menu ul.submenu > li:last-child > a {
|
||
border: medium none;
|
||
}
|
||
#nav-topbar ul.menu ul.submenu > li > a {
|
||
border-bottom: 1px solid #e6e6e6;
|
||
display: block;
|
||
padding: 4px 5px 4px 10px;
|
||
}
|
||
#nav-topbar ul.menu ul.submenu > li > a:hover {
|
||
background-color: #00aff0;
|
||
color: #fff;
|
||
text-decoration: none;
|
||
}
|
||
#nav-topbar ul.menu ul.submenu > li.active a {
|
||
background-color: #00aff0;
|
||
border-bottom: 1px solid #008abd;
|
||
color: #fff;
|
||
}
|
||
#nav-topbar #ellipsistab {
|
||
display: block;
|
||
height: 28px;
|
||
margin: 0;
|
||
padding: 0;
|
||
position: absolute;
|
||
right: 0;
|
||
width: 40px;
|
||
}
|
||
#nav-topbar #ellipsistab > a {
|
||
color: #383f50;
|
||
cursor: pointer;
|
||
font-size: 14px;
|
||
line-height: 30px;
|
||
text-align: center;
|
||
}
|
||
#nav-topbar #ellipsistab ul#ellipsis_submenu {
|
||
left: inherit;
|
||
right: 0;
|
||
}
|
||
#nav-topbar #ellipsistab ul#ellipsis_submenu a.title {
|
||
padding: 0 8px;
|
||
text-align: left;
|
||
}
|
||
#nav-topbar #ellipsistab ul#ellipsis_submenu li.subtab.expanded > ul {
|
||
left: -200px;
|
||
top: 0;
|
||
}
|
||
#nav-topbar .menu-collapse {
|
||
display: none;
|
||
}
|
||
#nav-mobile {
|
||
height: 35px;
|
||
left: 0;
|
||
position: fixed;
|
||
top: 0;
|
||
width: 35px;
|
||
z-index: 1100;
|
||
}
|
||
#nav-mobile.expanded {
|
||
height: 100%;
|
||
top: 35px;
|
||
width: 100%;
|
||
}
|
||
#nav-mobile.expanded .menu-collapse {
|
||
left: 0;
|
||
position: absolute;
|
||
top: -35px;
|
||
z-index: 1200;
|
||
}
|
||
#nav-mobile ul.menu {
|
||
animation: 0.3s ease 0.2s normal both 1 running fadeInLeft;
|
||
background-color: rgba(0, 0, 0, 0.8);
|
||
border-top: 1px solid #000;
|
||
display: none;
|
||
height: 100%;
|
||
list-style: outside none none;
|
||
margin: 0 0 100px;
|
||
padding: 0;
|
||
position: absolute;
|
||
transition: all 0.35s ease-out 0s;
|
||
width: 100%;
|
||
}
|
||
#nav-mobile ul.menu > li.searchtab {
|
||
box-shadow: 0 -3px 0 0 rgba(0, 0, 0, 0.1) inset;
|
||
padding: 15px;
|
||
position: relative;
|
||
}
|
||
#nav-mobile ul.menu > li.searchtab #bo_query {
|
||
background-color: #d7dbe3;
|
||
color: #383f50;
|
||
}
|
||
#nav-mobile ul.menu > li.searchtab .form-group {
|
||
margin: 0;
|
||
}
|
||
#nav-mobile ul.menu > li.searchtab .clear_search {
|
||
position: absolute;
|
||
right: 5px;
|
||
top: 5px;
|
||
}
|
||
#nav-mobile ul.menu > li {
|
||
background: none repeat scroll 0 0 #383f50;
|
||
position: relative;
|
||
}
|
||
#nav-mobile ul.menu > li > a {
|
||
background-color: #383f50;
|
||
border-bottom: 1px solid #232732;
|
||
color: #c3c5ca;
|
||
display: block;
|
||
font-size: 12px;
|
||
height: 34px;
|
||
line-height: 34px;
|
||
padding: 0 0 0 10px;
|
||
position: relative;
|
||
text-decoration: none;
|
||
text-transform: uppercase;
|
||
transition-duration: 0.4s;
|
||
transition-property: background-color;
|
||
transition-timing-function: ease-out;
|
||
}
|
||
#nav-mobile ul.menu > li > a i {
|
||
color: rgba(255, 255, 255, 0.6);
|
||
transition-duration: 0.4s;
|
||
transition-property: color;
|
||
transition-timing-function: ease-out;
|
||
vertical-align: middle;
|
||
}
|
||
#nav-mobile ul.menu > li > a:hover {
|
||
background-color: #4d576e;
|
||
color: #fff;
|
||
}
|
||
#nav-mobile ul.menu > li > a:hover i {
|
||
color: #fff;
|
||
}
|
||
#nav-mobile ul.menu > li > a > i {
|
||
color: #fff;
|
||
display: inline-block;
|
||
font-size: 20px;
|
||
height: 34px;
|
||
line-height: 34px;
|
||
text-align: center;
|
||
width: 34px;
|
||
}
|
||
#nav-mobile ul.submenu {
|
||
display: none;
|
||
}
|
||
#nav-mobile #nav-mobile-submenu a:not(#nav-mobile-submenu-back) {
|
||
font-size: 1.2em;
|
||
padding-left: 50px;
|
||
text-transform: none;
|
||
}
|
||
#nav-mobile a#nav-mobile-submenu-back {
|
||
background-color: #2d3341;
|
||
font-size: 1.5em;
|
||
}
|
||
#nav-mobile ul.menu.menu-close {
|
||
animation: 0.2s ease 0.2s normal both 1 running fadeOutLeft;
|
||
}
|
||
#nav-mobile .menu-collapse {
|
||
background-color: #000;
|
||
color: #fff;
|
||
height: 35px;
|
||
line-height: 1.3em;
|
||
text-align: center;
|
||
width: 35px;
|
||
}
|
||
.menu-collapse {
|
||
color: #383f50;
|
||
cursor: pointer;
|
||
display: block;
|
||
font-size: 2em;
|
||
height: 54px;
|
||
line-height: 55px;
|
||
text-align: center;
|
||
width: 100%;
|
||
}
|
||
.mobile-nav #content h2.page-title {
|
||
padding-left: 10px !important;
|
||
}
|
||
.mobile-nav #content ul.page-breadcrumb {
|
||
left: 10px !important;
|
||
}
|
||
.page-topbar:not(.mobile-nav) #main {
|
||
padding-top: 64px;
|
||
}
|
||
.page-topbar:not(.mobile-nav) #content {
|
||
margin-left: 0;
|
||
}
|
||
.page-topbar:not(.mobile-nav) #content .page-head {
|
||
top: 66px;
|
||
}
|
||
.page-topbar:not(.mobile-nav) #content .page-title {
|
||
padding-left: 75px;
|
||
}
|
||
.page-topbar:not(.mobile-nav) #content .page-breadcrumb {
|
||
left: 75px;
|
||
}
|
||
.page-sidebar-closed:not(.nav-topbar):not(.mobile-nav) .searchtab:before {
|
||
display: block;
|
||
height: 28px;
|
||
left: 14px;
|
||
position: absolute;
|
||
top: 16px;
|
||
width: 28px;
|
||
z-index: 1000;
|
||
}
|
||
.page-sidebar-closed:not(.nav-topbar):not(.mobile-nav) .searchtab .form-group {
|
||
display: none;
|
||
}
|
||
|
||
|
||
#content .process-icon-loading {
|
||
font-size: 20px;
|
||
line-height: 30px;
|
||
}
|
||
.lgsitemaps tr.loading td:first-child {
|
||
background: url("../img/ajax-loader.gif") no-repeat scroll center center #fff;
|
||
font-size: 0;
|
||
}
|
||
.bootstrap {
|
||
}
|
||
.bootstrap .fixed-width-xs {
|
||
width: 48px !important;
|
||
}
|
||
.bootstrap .fixed-width-sm {
|
||
width: 80px !important;
|
||
}
|
||
.bootstrap .fixed-width-md {
|
||
width: 120px !important;
|
||
}
|
||
.bootstrap .fixed-width-lg {
|
||
width: 160px !important;
|
||
}
|
||
.bootstrap .fixed-width-xl {
|
||
width: 200px !important;
|
||
}
|
||
.bootstrap .fixed-width-xxl {
|
||
width: 250px !important;
|
||
}
|
||
@media (max-width: 480px) {
|
||
.bootstrap .hidden-inline-xs {
|
||
display: none !important;
|
||
}
|
||
}
|
||
.bootstrap .row-margin-bottom {
|
||
margin-bottom: 15px;
|
||
}
|
||
.bootstrap .row-margin-top {
|
||
margin-top: 15px;
|
||
}
|
||
.bootstrap .row-padding-top {
|
||
padding-top: 15px;
|
||
}
|
||
.bootstrap .thumbnail, .bootstrap .img-thumbnail {
|
||
background-color: #fff;
|
||
border-color: #ccc !important;
|
||
}
|
||
.bootstrap .highlight {
|
||
background-color: #f7e69f;
|
||
}
|
||
.bootstrap .text-orange {
|
||
color: #f90;
|
||
}
|
||
.bootstrap .badge, .bootstrap #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .notifs_badge, .bootstrap .module-badge-popular, .bootstrap .module-badge-partner, .bootstrap .module-badge-bought {
|
||
background-color: #00aff0;
|
||
font-size: 1em;
|
||
font-weight: normal;
|
||
letter-spacing: 0.0625em;
|
||
line-height: inherit;
|
||
padding: 1px 5px;
|
||
}
|
||
.bootstrap .badge.badge-info, .bootstrap #header_notifs_icon_wrapper .badge-info.notifs_badge, #header_notifs_icon_wrapper .bootstrap .badge-info.notifs_badge, .bootstrap .badge-info.module-badge-popular, .bootstrap .badge-info.module-badge-partner, .bootstrap .badge-info.module-badge-bought {
|
||
background-color: #5bc0de;
|
||
}
|
||
.bootstrap .badge.badge-success, .bootstrap #header_notifs_icon_wrapper .badge-success.notifs_badge, #header_notifs_icon_wrapper .bootstrap .badge-success.notifs_badge, .bootstrap .badge-success.module-badge-popular, .bootstrap .badge-success.module-badge-partner, .bootstrap .badge-success.module-badge-bought {
|
||
background-color: #79bd3c;
|
||
}
|
||
.bootstrap .badge.badge-warning, .bootstrap #header_notifs_icon_wrapper .badge-warning.notifs_badge, #header_notifs_icon_wrapper .bootstrap .badge-warning.notifs_badge, .bootstrap .badge-warning.module-badge-popular, .bootstrap .badge-warning.module-badge-partner, .bootstrap .badge-warning.module-badge-bought {
|
||
background-color: #f0ad4e;
|
||
}
|
||
.bootstrap .badge.badge-danger, .bootstrap #header_notifs_icon_wrapper .badge-danger.notifs_badge, #header_notifs_icon_wrapper .bootstrap .badge-danger.notifs_badge, .bootstrap .badge-danger.module-badge-popular, .bootstrap .badge-danger.module-badge-partner, .bootstrap .badge-danger.module-badge-bought {
|
||
background-color: #d9534f;
|
||
}
|
||
.bootstrap .badge.badge-critical, .bootstrap #header_notifs_icon_wrapper .badge-critical.notifs_badge, #header_notifs_icon_wrapper .bootstrap .badge-critical.notifs_badge, .bootstrap .badge-critical.module-badge-popular, .bootstrap .badge-critical.module-badge-partner, .bootstrap .badge-critical.module-badge-bought {
|
||
background-color: #b52b27;
|
||
}
|
||
.bootstrap .label {
|
||
font-size: 12px;
|
||
font-weight: 400;
|
||
}
|
||
.bootstrap .label.label-inactive {
|
||
background-color: #999;
|
||
}
|
||
.bootstrap .nav-tabs {
|
||
border-bottom: medium none;
|
||
}
|
||
.bootstrap .nav-tabs li .badge, .bootstrap .nav-tabs li #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .nav-tabs li .notifs_badge, .bootstrap .nav-tabs li .module-badge-popular, .bootstrap .nav-tabs li .module-badge-partner, .bootstrap .nav-tabs li .module-badge-bought {
|
||
background-color: #fff;
|
||
border: 2px solid #eee;
|
||
color: #666;
|
||
}
|
||
.bootstrap .nav-tabs li a {
|
||
font-family: "Ubuntu Condensed",Helvetica,Arial,sans-serif;
|
||
font-size: 1.1em;
|
||
font-weight: 300;
|
||
text-transform: uppercase;
|
||
}
|
||
.bootstrap .nav-tabs li.active a, .bootstrap .nav-tabs li.active a:hover, .bootstrap .nav-tabs li.active a:focus {
|
||
background-color: #fff;
|
||
}
|
||
.bootstrap .table tr.parent td {
|
||
background-color: #eee !important;
|
||
border-bottom: 1px solid #ccc !important;
|
||
}
|
||
.bootstrap .alert.alert-warning, .bootstrap #carrier_wizard .alert-warning.wizard_error {
|
||
-moz-border-bottom-colors: none;
|
||
-moz-border-left-colors: none;
|
||
-moz-border-right-colors: none;
|
||
-moz-border-top-colors: none;
|
||
border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color #f4c178;
|
||
border-image: none;
|
||
border-style: none none none solid;
|
||
border-width: medium medium medium 3px;
|
||
padding-left: 50px;
|
||
position: relative;
|
||
}
|
||
.bootstrap .alert.alert-warning:before, .bootstrap #carrier_wizard .alert-warning.wizard_error:before {
|
||
color: #f4c178;
|
||
display: block;
|
||
height: 25px;
|
||
left: 7px;
|
||
position: absolute;
|
||
top: 6px;
|
||
width: 25px;
|
||
}
|
||
.bootstrap .alert.alert-danger, .bootstrap #carrier_wizard .wizard_error {
|
||
-moz-border-bottom-colors: none;
|
||
-moz-border-left-colors: none;
|
||
-moz-border-right-colors: none;
|
||
-moz-border-top-colors: none;
|
||
border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color #e17875;
|
||
border-image: none;
|
||
border-style: none none none solid;
|
||
border-width: medium medium medium 3px;
|
||
padding-left: 50px;
|
||
position: relative;
|
||
}
|
||
.bootstrap .alert.alert-danger:before, .bootstrap #carrier_wizard .wizard_error:before {
|
||
color: #e17875;
|
||
display: block;
|
||
height: 25px;
|
||
left: 7px;
|
||
position: absolute;
|
||
top: 6px;
|
||
width: 25px;
|
||
}
|
||
.bootstrap .alert.alert-success, .bootstrap #carrier_wizard .alert-success.wizard_error {
|
||
-moz-border-bottom-colors: none;
|
||
-moz-border-left-colors: none;
|
||
-moz-border-right-colors: none;
|
||
-moz-border-top-colors: none;
|
||
border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color #90cb5c;
|
||
border-image: none;
|
||
border-style: none none none solid;
|
||
border-width: medium medium medium 3px;
|
||
padding-left: 50px;
|
||
position: relative;
|
||
}
|
||
.bootstrap .alert.alert-success:before, .bootstrap #carrier_wizard .alert-success.wizard_error:before {
|
||
color: #90cb5c;
|
||
display: block;
|
||
height: 25px;
|
||
left: 7px;
|
||
position: absolute;
|
||
top: 6px;
|
||
width: 25px;
|
||
}
|
||
.bootstrap .alert.alert-info, .bootstrap #carrier_wizard .alert-info.wizard_error {
|
||
background-color: #f8fcfe;
|
||
border: 1px solid #c5e9f3;
|
||
color: #31b0d5;
|
||
padding-left: 50px;
|
||
position: relative;
|
||
}
|
||
.bootstrap .alert.alert-info:before, .bootstrap #carrier_wizard .alert-info.wizard_error:before {
|
||
color: #81cfe6;
|
||
display: block;
|
||
height: 25px;
|
||
left: 7px;
|
||
position: absolute;
|
||
top: 6px;
|
||
width: 25px;
|
||
}
|
||
.bootstrap .alert.alert-addons, .bootstrap #carrier_wizard .alert-addons.wizard_error {
|
||
-moz-border-bottom-colors: none;
|
||
-moz-border-left-colors: none;
|
||
-moz-border-right-colors: none;
|
||
-moz-border-top-colors: none;
|
||
background-color: #f3f3f2;
|
||
border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color #f34291;
|
||
border-image: none;
|
||
border-style: none none none solid;
|
||
border-width: medium medium medium 3px;
|
||
color: #f01778;
|
||
padding-left: 50px;
|
||
position: relative;
|
||
}
|
||
.bootstrap .alert.alert-addons hr, .bootstrap #carrier_wizard .alert-addons.wizard_error hr {
|
||
border-top-color: #f22f86;
|
||
}
|
||
.bootstrap .alert.alert-addons .alert-link, .bootstrap #carrier_wizard .alert-addons.wizard_error .alert-link {
|
||
color: #c70d60;
|
||
}
|
||
.bootstrap .alert.alert-addons:before, .bootstrap #carrier_wizard .alert-addons.wizard_error:before {
|
||
color: #f34291;
|
||
display: block;
|
||
height: 25px;
|
||
left: 7px;
|
||
position: absolute;
|
||
top: 6px;
|
||
width: 25px;
|
||
}
|
||
.bootstrap .alert.alert-onboarding, .bootstrap #carrier_wizard .alert-onboarding.wizard_error {
|
||
background-color: #fff;
|
||
border: 1px solid #c5e9f3;
|
||
color: #00aff0;
|
||
padding-left: 50px;
|
||
position: relative;
|
||
}
|
||
.bootstrap .alert.alert-onboarding hr, .bootstrap #carrier_wizard .alert-onboarding.wizard_error hr {
|
||
border-top-color: #0abdff;
|
||
}
|
||
.bootstrap .alert.alert-onboarding .alert-link, .bootstrap #carrier_wizard .alert-onboarding.wizard_error .alert-link {
|
||
color: #008abd;
|
||
}
|
||
.bootstrap .alert.alert-onboarding:before, .bootstrap #carrier_wizard .alert-onboarding.wizard_error:before {
|
||
color: #1fc2ff;
|
||
display: block;
|
||
height: 25px;
|
||
left: 7px;
|
||
position: absolute;
|
||
top: 6px;
|
||
width: 25px;
|
||
}
|
||
.bootstrap .alert.alert-message, .bootstrap #carrier_wizard .alert-message.wizard_error {
|
||
background-color: #fff;
|
||
border: 2px solid #f0ad4e;
|
||
padding-left: 50px;
|
||
position: relative;
|
||
}
|
||
.bootstrap .alert.alert-message:before, .bootstrap #carrier_wizard .alert-message.wizard_error:before {
|
||
color: #f4c178;
|
||
display: block;
|
||
height: 25px;
|
||
left: 7px;
|
||
position: absolute;
|
||
top: 6px;
|
||
width: 25px;
|
||
}
|
||
.bootstrap .alert h4, .bootstrap #carrier_wizard .wizard_error h4 {
|
||
font-size: 1.45em;
|
||
margin-bottom: 1em;
|
||
}
|
||
.bootstrap .overflow-y {
|
||
margin-bottom: 15px;
|
||
max-height: 200px;
|
||
overflow-y: auto;
|
||
}
|
||
.bootstrap .input[type="password"] {
|
||
font-size: 2em !important;
|
||
}
|
||
.bootstrap .pagination {
|
||
margin: 17px 0 0;
|
||
}
|
||
.bootstrap .list-detail dd:not(:last-child) {
|
||
margin-bottom: 10px;
|
||
}
|
||
.bootstrap .attributes-color-container {
|
||
border: 1px solid #000;
|
||
display: block;
|
||
height: 25px;
|
||
width: 40px;
|
||
}
|
||
.bootstrap #mColorPickerInput {
|
||
color: #000;
|
||
}
|
||
.bootstrap .table {
|
||
border-collapse: separate;
|
||
margin-bottom: 5px;
|
||
}
|
||
.bootstrap .table thead > tr > th {
|
||
-moz-border-bottom-colors: none;
|
||
-moz-border-left-colors: none;
|
||
-moz-border-right-colors: none;
|
||
-moz-border-top-colors: none;
|
||
border-color: -moz-use-text-color -moz-use-text-color #a0d0eb;
|
||
border-image: none;
|
||
border-style: none none solid;
|
||
border-width: medium medium 1px;
|
||
font-weight: normal;
|
||
vertical-align: top;
|
||
}
|
||
.bootstrap .table thead > tr > th span.title_box {
|
||
color: #656565;
|
||
display: block;
|
||
white-space: nowrap;
|
||
}
|
||
.bootstrap .table thead > tr > th span.title_box.active {
|
||
font-weight: bold;
|
||
}
|
||
.bootstrap .table thead > tr > th span.title_box a {
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap .table thead > tr > th span.title_box a.active {
|
||
color: #000;
|
||
}
|
||
.bootstrap .table thead > tr.filter > th {
|
||
background-color: #ecf6fb;
|
||
}
|
||
.bootstrap .table thead > tr.filter > th input.filter[type="text"], .bootstrap .table thead > tr.filter > th input.filter[type="password"], .bootstrap .table thead > tr.filter > th select.filter {
|
||
border-color: #a0d0eb;
|
||
font-size: 11px;
|
||
padding: 4px;
|
||
}
|
||
.bootstrap .table input, .bootstrap .table select {
|
||
margin: 0;
|
||
}
|
||
.bootstrap .table tbody > tr > td {
|
||
background-color: #fff;
|
||
border-bottom: 1px solid #eaedef;
|
||
border-top: medium none;
|
||
color: #666;
|
||
font-size: 12px;
|
||
padding: 3px 7px;
|
||
vertical-align: middle;
|
||
}
|
||
.bootstrap .table tbody > tr.odd > td {
|
||
background-color: #fcfdfe;
|
||
}
|
||
.bootstrap .table tbody > tr:hover > td {
|
||
background-color: #f4f8fb;
|
||
}
|
||
.bootstrap .table td.center, .bootstrap .table th.center {
|
||
text-align: center;
|
||
}
|
||
.bootstrap .table td.pointer {
|
||
cursor: pointer;
|
||
}
|
||
.bootstrap .table td.dragHandle .dragGroup {
|
||
border-radius: 5px;
|
||
cursor: move;
|
||
font-size: 14px;
|
||
padding: 4px 4px 4px 20px;
|
||
position: relative;
|
||
text-align: center;
|
||
width: 80px;
|
||
}
|
||
.bootstrap .table td.dragHandle .dragGroup:hover {
|
||
background-color: #00aff0 !important;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .table td.dragHandle .dragGroup:before {
|
||
display: block;
|
||
height: 16px;
|
||
left: 6px;
|
||
position: absolute;
|
||
top: 8px;
|
||
width: 16px;
|
||
}
|
||
.bootstrap .table td.dragHandle .dragGroup .positions {
|
||
background-color: #eee;
|
||
border: 1px solid #ccc;
|
||
border-radius: 3px;
|
||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) inset;
|
||
color: #aaa;
|
||
display: inline-block;
|
||
padding: 0 5px;
|
||
text-shadow: 1px 1px #fff;
|
||
width: 43px;
|
||
}
|
||
.bootstrap .table tr.actions {
|
||
text-align: right;
|
||
}
|
||
.bootstrap .table td.actions {
|
||
padding-right: 5px;
|
||
text-align: right;
|
||
}
|
||
.bootstrap .table th.actions .btn {
|
||
margin-bottom: 4px !important;
|
||
}
|
||
.bootstrap .table tr.myDragClass {
|
||
background-color: #eee;
|
||
padding: 10px;
|
||
}
|
||
.bootstrap .table tr.myDragClass td {
|
||
background-color: #00aff0 !important;
|
||
color: #fff !important;
|
||
transform: translate(5px, 10px);
|
||
}
|
||
.bootstrap .table.tableDnD td {
|
||
transition-duration: 0.2s;
|
||
transition-property: all;
|
||
transition-timing-function: ease-out;
|
||
}
|
||
.bootstrap tr.highlighted td {
|
||
background-color: #00aff0 !important;
|
||
color: #fff !important;
|
||
}
|
||
.bootstrap .bulk-actions {
|
||
margin: 17px 0 0;
|
||
}
|
||
.bootstrap .bulk-actions ul i {
|
||
font-size: 14px;
|
||
}
|
||
.bootstrap .list-action-enable {
|
||
border-radius: 3px;
|
||
color: rgba(255, 255, 255, 0.8);
|
||
display: table;
|
||
font-size: 1.3em;
|
||
height: 25px;
|
||
margin: 0 auto;
|
||
text-align: center;
|
||
vertical-align: middle;
|
||
width: 30px;
|
||
}
|
||
.bootstrap .list-action-enable.action-enabled {
|
||
background-color: #93cd60;
|
||
border: 1px solid #79bd3c;
|
||
}
|
||
.list-action-enable i {
|
||
display: table-cell;
|
||
vertical-align: middle;
|
||
}
|
||
.bootstrap .list-action-enable.action-disabled {
|
||
background-color: #e27c79;
|
||
border: 1px solid #d9534f;
|
||
}
|
||
.bootstrap .list-action-enable:hover {
|
||
color: #fff;
|
||
}
|
||
.bootstrap .list-empty {
|
||
background-color: #fcfdfe !important;
|
||
}
|
||
.bootstrap .list-empty .list-empty-msg {
|
||
color: #999;
|
||
display: block;
|
||
font-family: "Ubuntu Condensed",Helvetica,Arial,sans-serif;
|
||
font-size: 1.4em;
|
||
margin: 20px auto;
|
||
text-align: center;
|
||
width: 50%;
|
||
}
|
||
.bootstrap .list-empty .list-empty-icon {
|
||
clear: both;
|
||
color: #dedede;
|
||
display: block;
|
||
font-size: 84px;
|
||
text-shadow: 1px 1px 0 #fff;
|
||
}
|
||
.bootstrap .date_range .input-group:first-child {
|
||
margin-bottom: 5px;
|
||
}
|
||
@media (max-width: 991px) {
|
||
.bootstrap .table-responsive {
|
||
border: 1px solid #ddd;
|
||
margin-bottom: 12.75px;
|
||
overflow-x: auto;
|
||
overflow-y: hidden;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .table-responsive > .table {
|
||
margin-bottom: 0;
|
||
}
|
||
.bootstrap .table-responsive > .table > thead > tr > th, .bootstrap .table-responsive > .table > thead > tr > td, .bootstrap .table-responsive > .table > tbody > tr > th, .bootstrap .table-responsive > .table > tbody > tr > td, .bootstrap .table-responsive > .table > tfoot > tr > th, .bootstrap .table-responsive > .table > tfoot > tr > td {
|
||
white-space: nowrap;
|
||
}
|
||
.bootstrap .table-responsive > .table-bordered {
|
||
border: 0 none;
|
||
}
|
||
.bootstrap .table-responsive > .table-bordered > thead > tr > th:first-child, .bootstrap .table-responsive > .table-bordered > thead > tr > td:first-child, .bootstrap .table-responsive > .table-bordered > tbody > tr > th:first-child, .bootstrap .table-responsive > .table-bordered > tbody > tr > td:first-child, .bootstrap .table-responsive > .table-bordered > tfoot > tr > th:first-child, .bootstrap .table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
||
border-left: 0 none;
|
||
}
|
||
.bootstrap .table-responsive > .table-bordered > thead > tr > th:last-child, .bootstrap .table-responsive > .table-bordered > thead > tr > td:last-child, .bootstrap .table-responsive > .table-bordered > tbody > tr > th:last-child, .bootstrap .table-responsive > .table-bordered > tbody > tr > td:last-child, .bootstrap .table-responsive > .table-bordered > tfoot > tr > th:last-child, .bootstrap .table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
||
border-right: 0 none;
|
||
}
|
||
.bootstrap .table-responsive > .table-bordered > tbody > tr:last-child > th, .bootstrap .table-responsive > .table-bordered > tbody > tr:last-child > td, .bootstrap .table-responsive > .table-bordered > tfoot > tr:last-child > th, .bootstrap .table-responsive > .table-bordered > tfoot > tr:last-child > td {
|
||
border-bottom: 0 none;
|
||
}
|
||
}
|
||
.bootstrap .tree-panel-heading-controls {
|
||
color: #00aff0;
|
||
font-size: 1.1em;
|
||
line-height: 2.2em;
|
||
}
|
||
.bootstrap .tree-panel-heading-controls i {
|
||
font-size: 14px;
|
||
}
|
||
.bootstrap .tree {
|
||
list-style: outside none none;
|
||
padding: 0 0 0 20px;
|
||
}
|
||
.bootstrap .tree input {
|
||
line-height: normal;
|
||
margin-right: 4px;
|
||
vertical-align: baseline;
|
||
}
|
||
.bootstrap .tree i {
|
||
font-size: 14px;
|
||
}
|
||
.bootstrap .tree .tree-item-name, .bootstrap .tree .tree-folder-name {
|
||
border-radius: 4px;
|
||
padding: 2px 5px;
|
||
}
|
||
.bootstrap .tree .tree-item-name label, .bootstrap .tree .tree-folder-name label {
|
||
font-weight: 400;
|
||
}
|
||
.bootstrap .tree .tree-item-name:hover, .bootstrap .tree .tree-folder-name:hover {
|
||
background-color: #eee;
|
||
cursor: pointer;
|
||
}
|
||
.bootstrap .tree .tree-selected {
|
||
background-color: #00aff0;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .tree .tree-selected:hover {
|
||
background-color: #009cd6;
|
||
}
|
||
.bootstrap .tree .tree-selected i.tree-dot {
|
||
background-color: #fff;
|
||
}
|
||
.bootstrap .tree i.tree-dot {
|
||
background-color: #ccc;
|
||
border-radius: 6px;
|
||
display: inline-block;
|
||
height: 6px;
|
||
margin: 0 4px;
|
||
position: relative;
|
||
width: 6px;
|
||
}
|
||
.bootstrap .tree .tree-item-disable, .bootstrap .tree .tree-folder-name-disable {
|
||
color: #ccc;
|
||
}
|
||
.bootstrap .tree .tree-item-disable:hover, .bootstrap .tree .tree-folder-name-disable:hover {
|
||
color: #ccc;
|
||
}
|
||
.bootstrap .tree-actions {
|
||
display: inline-block;
|
||
}
|
||
.bootstrap .tree-panel-heading-controls {
|
||
border-bottom: 1px solid #dfdfdf;
|
||
margin: -20px -20px 20px;
|
||
padding: 5px;
|
||
}
|
||
.bootstrap .tree-actions .twitter-typeahead {
|
||
padding: 0 0 0 4px;
|
||
}
|
||
.bootstrap .tree-panel-label-title {
|
||
font-weight: 400;
|
||
margin: 0;
|
||
padding: 0 0 0 8px;
|
||
}
|
||
.bootstrap label.control-label {
|
||
color: #666;
|
||
font-size: 13px;
|
||
font-weight: normal;
|
||
}
|
||
.bootstrap label.control-label span.label-tooltip {
|
||
-moz-border-bottom-colors: none;
|
||
-moz-border-left-colors: none;
|
||
-moz-border-right-colors: none;
|
||
-moz-border-top-colors: none;
|
||
background-color: #edf7fb;
|
||
border-color: -moz-use-text-color -moz-use-text-color #d8edf7;
|
||
border-image: none;
|
||
border-radius: 3px;
|
||
border-style: none none solid;
|
||
border-width: medium medium 1px;
|
||
color: #3586ae;
|
||
font-size: 13px;
|
||
padding: 0 5px;
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap label.required:before {
|
||
color: red;
|
||
content: "*";
|
||
font-size: 14px;
|
||
line-height: 12px;
|
||
position: relative;
|
||
}
|
||
.bootstrap .tooltip {
|
||
font-family: "Open Sans",Helvetica,Arial,sans-serif;
|
||
font-size: 12px;
|
||
}
|
||
.bootstrap select.input-tiny, .bootstrap input.input-tiny[type="text"], .bootstrap input.input-tiny[type="password"] {
|
||
float: left;
|
||
width: 80px;
|
||
}
|
||
.bootstrap textarea {
|
||
resize: none;
|
||
}
|
||
.bootstrap textarea:focus, .bootstrap input[type="text"]:focus, .bootstrap input[type="password"]:focus, .bootstrap input[type="datetime"]:focus, .bootstrap input[type="datetime-local"]:focus, .bootstrap input[type="date"]:focus, .bootstrap input[type="month"]:focus, .bootstrap input[type="time"]:focus, .bootstrap input[type="week"]:focus, .bootstrap input[type="number"]:focus, .bootstrap input[type="email"]:focus, .bootstrap input[type="url"]:focus, .bootstrap input[type="search"]:focus, .bootstrap input[type="tel"]:focus, .bootstrap input[type="color"]:focus, .bootstrap .uneditable-input:focus {
|
||
background-color: #fefbe2;
|
||
box-shadow: none;
|
||
}
|
||
.bootstrap .btn .caret {
|
||
border-top-color: #333 !important;
|
||
}
|
||
.bootstrap .btn:hover .caret {
|
||
border-top-color: #fff !important;
|
||
}
|
||
.bootstrap .btn.btn-default {
|
||
box-shadow: 0 -2px 0 #e6e6e6 inset;
|
||
}
|
||
.bootstrap .btn.btn-default i {
|
||
color: #555;
|
||
}
|
||
.bootstrap .btn.btn-default:hover {
|
||
background-color: #00aff0;
|
||
border-color: #008abd;
|
||
box-shadow: none;
|
||
color: #fff;
|
||
}
|
||
.bootstrap .btn.btn-default:hover i {
|
||
color: #fff;
|
||
}
|
||
.bootstrap .btn.btn-primary {
|
||
background-color: #00aff0;
|
||
border-color: #008abd;
|
||
box-shadow: 0 -2px 0 #008abd inset;
|
||
color: #fff;
|
||
text-transform: uppercase;
|
||
}
|
||
.bootstrap .btn.btn-primary:hover {
|
||
background-color: #008abd;
|
||
border-color: #00658a;
|
||
box-shadow: none;
|
||
}
|
||
.bootstrap .btn.btn-default[disabled] {
|
||
background-color: #f2f2f2;
|
||
border-color: #999;
|
||
box-shadow: 0 -2px 0 #ccc inset;
|
||
color: #999;
|
||
}
|
||
.bootstrap .dropdown-menu {
|
||
text-align: left;
|
||
}
|
||
.bootstrap .dropdown-menu > li a {
|
||
padding: 5px 10px;
|
||
}
|
||
.bootstrap .dropdown-menu > li a:hover i {
|
||
color: #fff;
|
||
}
|
||
.bootstrap .btn-group-action {
|
||
line-height: 0;
|
||
}
|
||
.bootstrap .btn-group-action .btn {
|
||
font-family: "Open Sans",Helvetica,Arial,sans-serif;
|
||
}
|
||
.bootstrap .btn-group-action .btn-group {
|
||
white-space: nowrap;
|
||
}
|
||
.bootstrap .btn-group-action .btn-group > a, .bootstrap .btn-group-action .btn-group button {
|
||
display: inline-block;
|
||
float: none;
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap .btn-group-action .btn-group > a:first-child {
|
||
margin-right: -3px;
|
||
}
|
||
.bootstrap .btn-group-action .btn-group i {
|
||
font-size: 14px;
|
||
}
|
||
.bootstrap .dummyfile {
|
||
padding-top: 8px;
|
||
position: relative;
|
||
}
|
||
.bootstrap .dummyfile .hide-file-upload {
|
||
height: 100%;
|
||
left: 0;
|
||
opacity: 0;
|
||
position: absolute;
|
||
top: 0;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .tt-query {
|
||
border-bottom-right-radius: 3px !important;
|
||
border-top-right-radius: 3px !important;
|
||
}
|
||
.bootstrap .tt-dropdown-menu {
|
||
background-color: #fff;
|
||
border: 1px solid #ccc;
|
||
font-size: 0.9em;
|
||
text-transform: none;
|
||
}
|
||
.bootstrap .tt-suggestions {
|
||
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
|
||
padding: 0 6px;
|
||
}
|
||
.bootstrap .tt-suggestion p {
|
||
border-bottom: 1px solid #ccc;
|
||
margin: 0 !important;
|
||
padding: 0 !important;
|
||
}
|
||
.bootstrap .tt-suggestion:last-child p {
|
||
border-bottom: medium none;
|
||
}
|
||
.bootstrap .tagify-container {
|
||
background-color: #fff;
|
||
border: 1px solid #ccc;
|
||
border-radius: 3px;
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
||
min-height: 30px;
|
||
overflow: auto;
|
||
padding: 0 3px;
|
||
}
|
||
.bootstrap .tagify-container span {
|
||
float: left;
|
||
}
|
||
.bootstrap .tagify-container > span {
|
||
background-color: #3ecbff;
|
||
border: 1px solid #00aff0;
|
||
border-radius: 2px;
|
||
color: #fff;
|
||
display: inline-block;
|
||
margin: 3px;
|
||
padding: 2px 5px;
|
||
}
|
||
.bootstrap .tagify-container > span > a {
|
||
color: #00aff0;
|
||
font-weight: bold;
|
||
padding-left: 5px;
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap .tagify-container > input {
|
||
border: 0 none;
|
||
box-shadow: none;
|
||
height: auto;
|
||
margin-top: 2px;
|
||
width: 140px;
|
||
}
|
||
.bootstrap .tagify-container > input:focus {
|
||
box-shadow: none;
|
||
outline: 0 none;
|
||
}
|
||
.bootstrap .kpi-container {
|
||
padding-bottom: 10px !important;
|
||
}
|
||
.bootstrap .box-stats {
|
||
display: block;
|
||
height: 64px;
|
||
margin-bottom: 10px;
|
||
}
|
||
.bootstrap .box-stats .boxchart-overlay {
|
||
border-radius: 3px;
|
||
float: left;
|
||
margin-right: 10px;
|
||
padding: 10px 10px 5px;
|
||
}
|
||
.bootstrap .box-stats .kpi-content {
|
||
float: left;
|
||
padding-left: 72px;
|
||
position: relative;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .box-stats .kpi-content i {
|
||
border-radius: 3px;
|
||
color: #fff;
|
||
font-size: 56px;
|
||
height: 66px;
|
||
left: 0;
|
||
line-height: 66px;
|
||
position: absolute;
|
||
text-align: center;
|
||
top: 0;
|
||
width: 66px;
|
||
}
|
||
.bootstrap .box-stats .kpi-content .title {
|
||
color: #666;
|
||
display: block;
|
||
}
|
||
.bootstrap .box-stats .kpi-content .subtitle {
|
||
color: #aaa;
|
||
display: block;
|
||
text-transform: uppercase;
|
||
}
|
||
.bootstrap .box-stats .kpi-content .value {
|
||
clear: both;
|
||
display: block;
|
||
font-size: 1.8em;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
.bootstrap .box-stats:hover {
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap .color1 i, .bootstrap .color1 .boxchart-overlay {
|
||
background-color: #2ba8e3;
|
||
box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.2) inset;
|
||
}
|
||
.bootstrap .color1 .value {
|
||
color: #2ba8e3;
|
||
}
|
||
.bootstrap .color2 i, .bootstrap .color2 .boxchart-overlay {
|
||
background-color: #ff5450;
|
||
box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.2) inset;
|
||
}
|
||
.bootstrap .color2 .value {
|
||
color: #ff5450;
|
||
}
|
||
.bootstrap .color3 i, .bootstrap .color3 .boxchart-overlay {
|
||
background-color: #9e5ba1;
|
||
box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.2) inset;
|
||
}
|
||
.bootstrap .color3 .value {
|
||
color: #9e5ba1;
|
||
}
|
||
.bootstrap .color4 i, .bootstrap .color4 .boxchart-overlay {
|
||
background-color: #95cc6b;
|
||
box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.2) inset;
|
||
}
|
||
.bootstrap .color4 .value {
|
||
color: #95cc6b;
|
||
}
|
||
.bootstrap .data_chart rect {
|
||
fill: #fff;
|
||
}
|
||
.bootstrap .data_chart path {
|
||
fill: none;
|
||
stroke: #fff;
|
||
stroke-width: 2;
|
||
}
|
||
.bootstrap .data_chart line {
|
||
stroke: #000;
|
||
}
|
||
.bootstrap .data_chart .area {
|
||
fill: rgba(255, 255, 255, 0.3);
|
||
stroke-width: 0;
|
||
}
|
||
.bootstrap .switch a, .bootstrap .switch-light span span {
|
||
display: none;
|
||
}
|
||
@media only screen {
|
||
.bootstrap .switch-light {
|
||
display: block;
|
||
height: 26px;
|
||
overflow: visible;
|
||
padding: 0;
|
||
position: relative;
|
||
}
|
||
.bootstrap .switch-light * {
|
||
box-sizing: border-box;
|
||
}
|
||
.bootstrap .switch-light a {
|
||
display: block;
|
||
transition: all 0.3s ease-out 0s;
|
||
}
|
||
.bootstrap .switch-light label, .bootstrap .switch-light > span {
|
||
line-height: 26px;
|
||
vertical-align: middle;
|
||
}
|
||
.bootstrap .switch-light label {
|
||
display: block;
|
||
position: relative;
|
||
width: 100%;
|
||
z-index: 3;
|
||
}
|
||
.bootstrap .switch-light input {
|
||
opacity: 0;
|
||
position: absolute;
|
||
z-index: 5;
|
||
}
|
||
.bootstrap .switch-light input:checked ~ a {
|
||
left: 0;
|
||
}
|
||
.bootstrap .switch-light > span {
|
||
font-weight: normal;
|
||
left: 0;
|
||
margin: 0;
|
||
position: absolute;
|
||
text-align: left;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .switch-light > span span {
|
||
display: block;
|
||
left: 0;
|
||
position: absolute;
|
||
text-align: center;
|
||
top: 0;
|
||
width: 50%;
|
||
z-index: 5;
|
||
}
|
||
.bootstrap .switch-light > span span:last-child {
|
||
left: 50%;
|
||
}
|
||
.bootstrap .switch-light a {
|
||
display: block;
|
||
height: 100%;
|
||
left: 50%;
|
||
padding: 0;
|
||
position: absolute;
|
||
top: 0;
|
||
width: 50%;
|
||
z-index: 4;
|
||
}
|
||
.bootstrap .switch {
|
||
display: block;
|
||
height: 26px;
|
||
position: relative;
|
||
}
|
||
.bootstrap .switch * {
|
||
box-sizing: border-box;
|
||
}
|
||
.bootstrap .switch a {
|
||
display: block;
|
||
transition: all 0.3s ease-out 0s;
|
||
}
|
||
.bootstrap .switch label, .bootstrap .switch > span {
|
||
line-height: 26px;
|
||
vertical-align: middle;
|
||
}
|
||
.bootstrap .switch input {
|
||
opacity: 0;
|
||
position: absolute;
|
||
}
|
||
.bootstrap .switch label {
|
||
float: left;
|
||
height: 100%;
|
||
margin: 0;
|
||
position: relative;
|
||
text-align: center;
|
||
width: 50%;
|
||
z-index: 2;
|
||
}
|
||
.bootstrap .switch a {
|
||
background-color: #93cd60;
|
||
border: 1px solid #79bd3c;
|
||
box-shadow: 0 -1px 0 #79bd3c inset;
|
||
color: #fff;
|
||
height: 100%;
|
||
left: 0;
|
||
padding: 0;
|
||
position: absolute;
|
||
top: 0;
|
||
width: 50%;
|
||
z-index: 1;
|
||
}
|
||
.bootstrap .switch input:last-of-type:checked ~ a {
|
||
background-color: #e27c79;
|
||
border: 1px solid #d9534f;
|
||
box-shadow: 0 -1px 0 #d9534f inset;
|
||
left: 50%;
|
||
}
|
||
.bootstrap .switch input:disabled ~ a {
|
||
background-color: #ccc !important;
|
||
border: 1px solid #b3b3b3 !important;
|
||
box-shadow: 0 -1px 0 #b3b3b3 inset !important;
|
||
}
|
||
.bootstrap .switch.switch-3 label, .bootstrap .switch.switch-3 a {
|
||
width: 33.3333%;
|
||
}
|
||
.bootstrap .switch.switch-3 input:checked:nth-of-type(2) ~ a {
|
||
left: 33.3333%;
|
||
}
|
||
.bootstrap .switch.switch-3 input:checked:last-of-type ~ a {
|
||
left: 66.6667%;
|
||
}
|
||
.bootstrap .switch.switch-4 label, .bootstrap .switch.switch-4 a {
|
||
width: 25%;
|
||
}
|
||
.bootstrap .switch.switch-4 input:checked:nth-of-type(2) ~ a {
|
||
left: 25%;
|
||
}
|
||
.bootstrap .switch.switch-4 input:checked:nth-of-type(3) ~ a {
|
||
left: 50%;
|
||
}
|
||
.bootstrap .switch.switch-4 input:checked:last-of-type ~ a {
|
||
left: 75%;
|
||
}
|
||
.bootstrap .switch.switch-5 label, .bootstrap .switch.switch-5 a {
|
||
width: 20%;
|
||
}
|
||
.bootstrap .switch.switch-5 input:checked:nth-of-type(2) ~ a {
|
||
left: 20%;
|
||
}
|
||
.bootstrap .switch.switch-5 input:checked:nth-of-type(3) ~ a {
|
||
left: 40%;
|
||
}
|
||
.bootstrap .switch.switch-5 input:checked:nth-of-type(4) ~ a {
|
||
left: 60%;
|
||
}
|
||
.bootstrap .switch.switch-5 input:checked:last-of-type ~ a {
|
||
left: 80%;
|
||
}
|
||
.bootstrap .prestashop-switch {
|
||
background-color: #eee;
|
||
border-radius: 3px;
|
||
box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.15) inset;
|
||
color: #333;
|
||
text-align: center;
|
||
}
|
||
.bootstrap .prestashop-switch * {
|
||
outline: 0 none !important;
|
||
}
|
||
.bootstrap .prestashop-switch label {
|
||
color: #bbb;
|
||
cursor: pointer;
|
||
font-weight: 400;
|
||
text-transform: uppercase;
|
||
transition: color 0.2s ease-out 0s;
|
||
}
|
||
.bootstrap .prestashop-switch input:checked + label {
|
||
color: #fff;
|
||
}
|
||
.bootstrap .prestashop-switch > span {
|
||
color: #666;
|
||
cursor: pointer;
|
||
text-transform: uppercase;
|
||
}
|
||
.bootstrap .prestashop-switch.switch-light input:checked ~ a {
|
||
background-color: #93cd60;
|
||
border: 1px solid #79bd3c;
|
||
box-shadow: 0 -1px 0 #79bd3c inset;
|
||
}
|
||
.bootstrap .prestashop-switch.switch-light input:checked ~ span span:first-of-type {
|
||
color: #fff;
|
||
}
|
||
.bootstrap .prestashop-switch.switch-light input:checked ~ span span:last-of-type {
|
||
color: #ccc;
|
||
}
|
||
.bootstrap .prestashop-switch.switch-light input ~ a {
|
||
background-color: #e27c79;
|
||
border: 1px solid #d9534f;
|
||
box-shadow: 0 -1px 0 #d9534f inset;
|
||
}
|
||
.bootstrap .prestashop-switch.switch-light input ~ span span:first-of-type {
|
||
color: #ccc;
|
||
}
|
||
.bootstrap .prestashop-switch.switch-light input ~ span span:last-of-type {
|
||
color: #fff;
|
||
}
|
||
}
|
||
.bootstrap .page-head {
|
||
background-color: #8bc954;
|
||
border-bottom: 4px solid #71b238;
|
||
box-shadow: 0 7px 0 rgba(0, 0, 0, 0.15);
|
||
height: 55px;
|
||
left: 0;
|
||
margin: 0;
|
||
padding: 0;
|
||
position: fixed;
|
||
top: 36px;
|
||
width: 100%;
|
||
z-index: 499;
|
||
}
|
||
.bootstrap .page-head h2.page-title {
|
||
color: #fff;
|
||
float: left;
|
||
font: 300 20px/1em "Open Sans",Helvetica,Arial,sans-serif;
|
||
margin: 0;
|
||
padding: 28px 0 0 280px;
|
||
position: relative;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.bootstrap .page-head h2.page-title {
|
||
padding: 26px 0 0 70px;
|
||
}
|
||
}
|
||
.bootstrap .page-head h2.page-title a {
|
||
border-bottom: 1px dotted #fff;
|
||
}
|
||
.bootstrap .page-head h2.page-title a:hover {
|
||
border-color: #000;
|
||
color: #000;
|
||
}
|
||
.bootstrap .page-head a {
|
||
color: #fff;
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap .page-head .toolbarBox {
|
||
background-color: transparent !important;
|
||
position: absolute;
|
||
right: 0;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.bootstrap .page-head .toolbarBox {
|
||
background-color: #8bc954;
|
||
}
|
||
}
|
||
.bootstrap .page-head .toolbarBox #toolbar-nav {
|
||
background-color: #8bc954;
|
||
border: medium none;
|
||
}
|
||
.bootstrap .page-head .toolbarBox .btn-toolbar {
|
||
margin: 0;
|
||
padding: 3px 0 0;
|
||
}
|
||
.bootstrap .page-head .toolbarBox .btn-toolbar .toolbar_btn {
|
||
background-color: #8bc954;
|
||
color: #fff;
|
||
font-size: 12px;
|
||
height: 46px;
|
||
line-height: 8px;
|
||
margin: 0 3px 2px 0;
|
||
overflow: hidden;
|
||
padding: 2px 5px !important;
|
||
position: relative;
|
||
text-align: center;
|
||
text-overflow: ellipsis;
|
||
text-shadow: none;
|
||
white-space: nowrap;
|
||
}
|
||
@media (max-width: 992px) {
|
||
.bootstrap .page-head .toolbarBox .btn-toolbar .toolbar_btn {
|
||
border: 1px solid #659e32;
|
||
font-size: 11px;
|
||
width: 46px;
|
||
}
|
||
}
|
||
.bootstrap .page-head .toolbarBox .btn-toolbar .toolbar_btn:hover {
|
||
background-color: #fff !important;
|
||
border-color: #fff;
|
||
color: #8bc954;
|
||
}
|
||
.bootstrap .page-head .toolbarBox .btn-toolbar .dropdown-toolbar {
|
||
background-color: #8bc954;
|
||
border-radius: 3px;
|
||
display: none;
|
||
float: right;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.bootstrap .page-head .toolbarBox .btn-toolbar .dropdown-toolbar {
|
||
display: block;
|
||
}
|
||
}
|
||
.bootstrap .page-head ul.page-breadcrumb {
|
||
background: none repeat scroll 0 0 transparent !important;
|
||
border: medium none !important;
|
||
border-radius: 0;
|
||
color: rgba(0, 0, 0, 0.5);
|
||
font-size: 12px;
|
||
height: 20px;
|
||
left: 280px;
|
||
line-height: 20px;
|
||
list-style: outside none none;
|
||
margin: 0;
|
||
padding: 0;
|
||
position: absolute;
|
||
top: 4px;
|
||
white-space: nowrap;
|
||
}
|
||
@media (max-width: 768px) {
|
||
.bootstrap .page-head ul.page-breadcrumb {
|
||
left: 70px;
|
||
}
|
||
}
|
||
.bootstrap .page-head ul.page-breadcrumb li {
|
||
text-transform: uppercase;
|
||
}
|
||
.bootstrap .page-head ul.page-breadcrumb li i {
|
||
font-size: 14px;
|
||
}
|
||
.bootstrap .page-head ul.page-breadcrumb li.breadcrumb-container i, .bootstrap .page-head ul.page-breadcrumb li.breadcrumb-current i {
|
||
border-right: 1px solid #659e32;
|
||
color: #659e32;
|
||
font-size: 42px;
|
||
left: -60px;
|
||
padding-right: 5px;
|
||
position: absolute;
|
||
top: 2px;
|
||
}
|
||
.bootstrap .page-head ul.page-breadcrumb li:before {
|
||
color: #659e32;
|
||
}
|
||
.bootstrap .page-head ul.page-breadcrumb li a {
|
||
color: rgba(255, 255, 255, 0.6);
|
||
}
|
||
.bootstrap .page-head ul.page-breadcrumb li a:hover {
|
||
color: #fff;
|
||
}
|
||
.bootstrap .page-header-toolbar-back {
|
||
border: medium none !important;
|
||
display: inline-block;
|
||
}
|
||
.bootstrap #datepicker .input-selected {
|
||
margin: 0;
|
||
}
|
||
.bootstrap #datepicker #date-start.input-selected, .bootstrap #datepicker #date-end.input-selected {
|
||
border: 3px solid #00a4e7;
|
||
}
|
||
.bootstrap #datepicker #date-start-compare.input-selected, .bootstrap #datepicker #date-end-compare.input-selected {
|
||
border: 3px solid #ff8000;
|
||
}
|
||
.bootstrap #datepicker div#datepicker-form #date-range {
|
||
border: 1px solid #0092ce;
|
||
}
|
||
.bootstrap #datepicker div#datepicker-form #date-range .form-date-heading {
|
||
background-color: #0092ce;
|
||
}
|
||
.bootstrap #datepicker div#datepicker-form #date-compare {
|
||
border: 1px solid #e67300;
|
||
}
|
||
.bootstrap #datepicker div#datepicker-form #date-compare .form-date-heading {
|
||
background-color: #e67300;
|
||
}
|
||
.bootstrap #datepicker div#datepicker-form .form-date-heading {
|
||
height: 30px;
|
||
line-height: 30px;
|
||
padding: 0 0 0 8px;
|
||
}
|
||
.bootstrap #datepicker div#datepicker-form .form-date-heading .title, .bootstrap #datepicker div#datepicker-form .form-date-heading .checkbox-title label {
|
||
color: #fff;
|
||
font-size: 1.15em;
|
||
font-weight: 200;
|
||
line-height: 2em;
|
||
text-transform: uppercase;
|
||
}
|
||
.bootstrap #datepicker div#datepicker-form .form-date-heading .btn-default {
|
||
background-color: rgba(255, 255, 255, 0.3);
|
||
border: medium none;
|
||
color: #fff;
|
||
font-weight: 700;
|
||
}
|
||
.bootstrap #datepicker div#datepicker-form .form-date-heading select {
|
||
margin: 2px 2px 0 0;
|
||
}
|
||
.bootstrap #datepicker div#datepicker-form .form-date-body, .bootstrap #datepicker div#datepicker-form .form-date-actions {
|
||
background-color: #fff;
|
||
display: inline-block;
|
||
padding: 10px;
|
||
width: 100%;
|
||
}
|
||
.bootstrap #datepicker div#datepicker-form .form-date-actions {
|
||
border: 1px solid #ccc;
|
||
}
|
||
.bootstrap #datepicker div#datepicker-form .form-date-group {
|
||
clear: both;
|
||
margin: 0 auto 6px;
|
||
width: 100%;
|
||
}
|
||
.bootstrap #datepicker div#datepicker-form .form-date-group label {
|
||
color: #666;
|
||
font-size: 0.8em;
|
||
font-weight: 700;
|
||
text-transform: uppercase;
|
||
}
|
||
.bootstrap #datepicker div#datepicker-form .form-date-group input {
|
||
margin: 4px 4px 0 0;
|
||
}
|
||
.bootstrap #datepicker div#datepicker-form .form-date-group input[type="text"] {
|
||
width: 35%;
|
||
}
|
||
.bootstrap #datepicker div#datepicker-form .form-date-group button {
|
||
margin: 5px 0 0;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker {
|
||
border: 1px solid #ccc;
|
||
font-size: 13px;
|
||
margin: 0 0 8px;
|
||
position: relative;
|
||
width: 100%;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker table {
|
||
border-spacing: 1px;
|
||
margin: 0;
|
||
width: 100%;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker thead tr th {
|
||
background-color: #0092ce;
|
||
color: #fff;
|
||
font-size: 0.7em;
|
||
height: 1.5em;
|
||
text-transform: uppercase;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker thead tr:first-child th {
|
||
background-color: #fff;
|
||
border-bottom: 1px solid #0092ce;
|
||
color: #00a4e7;
|
||
font-size: 1.4em;
|
||
font-weight: 200;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td, .bootstrap #datepicker .daterangepicker th {
|
||
padding: 0;
|
||
position: relative;
|
||
text-align: center;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker tr {
|
||
border-bottom: 1px solid #fff;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td {
|
||
color: #00a4e7;
|
||
height: 2.4em;
|
||
padding: 0 8px;
|
||
transition-duration: 0.2s;
|
||
transition-property: all;
|
||
transition-timing-function: ease-out;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.day:after {
|
||
background-color: transparent;
|
||
content: "";
|
||
display: block;
|
||
left: 0;
|
||
position: absolute;
|
||
top: 0;
|
||
width: 100%;
|
||
z-index: 0;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.day:hover {
|
||
cursor: pointer;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.day.disabled {
|
||
color: #ccc;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.old, .bootstrap #datepicker .daterangepicker td.new {
|
||
color: #ccc;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.start-selected:not(.old):not(.new):not(.end-selected) {
|
||
background-color: #00a4e7;
|
||
border-bottom-left-radius: 15px;
|
||
border-top-left-radius: 15px;
|
||
color: #fff;
|
||
font-weight: 700;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.start-selected.range-compare:not(.old):not(.new):not(.end-selected) {
|
||
background-color: #4ca0b1;
|
||
border-bottom-left-radius: 0;
|
||
border-top-left-radius: 0;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.start-selected.end-selected-compare:not(.old):not(.new):not(.end-selected), .bootstrap #datepicker .daterangepicker td.start-selected.start-selected-compare:not(.old):not(.new):not(.end-selected) {
|
||
background-color: #4c99a1;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.start-selected.end-selected-compare:not(.old):not(.new):not(.end-selected) {
|
||
border-radius: 0;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.end-selected:not(.old):not(.new):not(.start-selected) {
|
||
background-color: #00a4e7;
|
||
border-bottom-right-radius: 15px;
|
||
border-top-right-radius: 15px;
|
||
color: #fff;
|
||
font-weight: 700;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.end-selected.range-compare:not(.old):not(.new):not(.start-selected) {
|
||
background-color: #4ca0b1;
|
||
border-bottom-right-radius: 0;
|
||
border-top-right-radius: 0;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.end-selected.end-selected-compare:not(.old):not(.new):not(.start-selected), .bootstrap #datepicker .daterangepicker td.end-selected.start-selected-compare:not(.old):not(.new):not(.start-selected) {
|
||
background-color: #4c99a1;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.end-selected.start-selected-compare:not(.old):not(.new):not(.start-selected) {
|
||
border-radius: 0;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.start-selected-compare:not(.old):not(.new):not(.end-selected-compare) {
|
||
background-color: #ff8000;
|
||
border-bottom-left-radius: 15px;
|
||
border-top-left-radius: 15px;
|
||
color: #fff;
|
||
font-weight: 700;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.start-selected-compare.range:not(.old):not(.new):not(.end-selected-compare) {
|
||
background-color: #ba924c;
|
||
border-bottom-left-radius: 0;
|
||
border-top-left-radius: 0;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.end-selected-compare:not(.old):not(.new):not(.start-selected-compare) {
|
||
background-color: #ff8000;
|
||
border-bottom-right-radius: 15px;
|
||
border-top-right-radius: 15px;
|
||
color: #fff;
|
||
font-weight: 700;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.end-selected-compare.range:not(.old):not(.new):not(.start-selected-compare) {
|
||
background-color: #ba924c;
|
||
border-bottom-right-radius: 0;
|
||
border-top-right-radius: 0;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.end-selected.start-selected {
|
||
background-color: #00a4e7;
|
||
border-radius: 15px;
|
||
color: #fff;
|
||
font-weight: 700;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.end-selected.start-selected.range-compare {
|
||
background-color: #4ca0b1;
|
||
border-radius: 0;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.end-selected-compare.start-selected-compare {
|
||
background-color: #ff8000;
|
||
border-radius: 15px;
|
||
color: #fff;
|
||
font-weight: 700;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.end-selected-compare.start-selected-compare.range {
|
||
background-color: #ba924c;
|
||
border-radius: 0;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.range {
|
||
background-color: #1bbdff;
|
||
color: #cef1ff;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.range.range-compare {
|
||
background-color: #8dab99;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.range-compare {
|
||
background-color: #f93;
|
||
color: #fff2e5;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.range-compare.range {
|
||
background-color: #8dab99;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td.today {
|
||
background-color: #fff;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td span {
|
||
cursor: pointer;
|
||
display: block;
|
||
float: left;
|
||
font-weight: 400;
|
||
height: 3em;
|
||
line-height: 3em;
|
||
padding: 0;
|
||
text-transform: uppercase;
|
||
width: 33.333%;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td span:hover {
|
||
background-color: #00a4e7;
|
||
color: #fff;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td span.active {
|
||
background-color: #00a4e7;
|
||
color: #fff;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker td span.old {
|
||
color: #ccc;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker th.next {
|
||
padding: 0 10px 0 0;
|
||
text-align: right;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker th.prev {
|
||
padding: 0 0 0 10px;
|
||
text-align: left;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker th.next, .bootstrap #datepicker .daterangepicker th.prev, .bootstrap #datepicker .daterangepicker th.month-switch {
|
||
font-size: 1.3em;
|
||
height: 2em;
|
||
line-height: 2em;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker th.next:hover, .bootstrap #datepicker .daterangepicker th.prev:hover, .bootstrap #datepicker .daterangepicker th.month-switch:hover {
|
||
background-color: #0092ce;
|
||
color: #fff;
|
||
}
|
||
.bootstrap #datepicker .daterangepicker thead tr:first-child th {
|
||
cursor: pointer;
|
||
}
|
||
.bootstrap .chevron-left, .bootstrap .chevron-right {
|
||
position: relative;
|
||
}
|
||
.bootstrap .chevron-left:before, .bootstrap .chevron-right:before {
|
||
border-style: solid;
|
||
content: "";
|
||
display: block;
|
||
height: 0;
|
||
position: absolute;
|
||
width: 0;
|
||
}
|
||
.bootstrap .chevron-left:before {
|
||
background-color: #1bbdff;
|
||
border-color: transparent transparent transparent #00a4e7;
|
||
border-width: 1.2em 0 1.2em 0.5em;
|
||
right: 0;
|
||
top: 0;
|
||
}
|
||
.bootstrap .chevron-right:before {
|
||
background-color: #00a4e7;
|
||
border-color: transparent transparent transparent #1bbdff;
|
||
border-width: 1.2em 0 1.2em 0.5em;
|
||
left: 0;
|
||
top: 0;
|
||
}
|
||
.bootstrap .input-complete {
|
||
animation: 0.2s ease-in-out 0s normal none 1 running one;
|
||
}
|
||
.bootstrap .breadcrumb-multishop select {
|
||
background: none repeat scroll 0 0 #fff;
|
||
border: 1px solid #659e32;
|
||
border-radius: 4px;
|
||
color: #666;
|
||
display: inline-block;
|
||
height: 22px;
|
||
line-height: 20px;
|
||
margin: 0;
|
||
outline: medium none;
|
||
padding: 0 5px 0 8px;
|
||
position: relative;
|
||
}
|
||
@media not all {
|
||
.bootstrap .custom-select select {
|
||
padding-right: 30px;
|
||
}
|
||
}
|
||
.bootstrap .breadcrumb-multishop select:focus {
|
||
box-shadow: 0 0 0 1px #659e32;
|
||
}
|
||
.bootstrap .breadcrumb-multishop {
|
||
position: relative;
|
||
width: auto;
|
||
}
|
||
.bootstrap .breadcrumb-multishop:after {
|
||
background-color: #659e32;
|
||
border-radius: 0 4px 4px 0;
|
||
bottom: 0;
|
||
color: #fff;
|
||
content: "?";
|
||
font-size: 60%;
|
||
line-height: 22px;
|
||
padding: 0 7px;
|
||
pointer-events: none;
|
||
position: absolute;
|
||
right: 0;
|
||
top: 0;
|
||
}
|
||
.bootstrap .no-pointer-events .custom-select:after {
|
||
content: none;
|
||
}
|
||
.bootstrap .multishop-well {
|
||
-moz-border-bottom-colors: none;
|
||
-moz-border-left-colors: none;
|
||
-moz-border-right-colors: none;
|
||
-moz-border-top-colors: none;
|
||
background-color: #faf8f0;
|
||
border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color #fbeccb;
|
||
border-image: none;
|
||
border-style: none none none solid;
|
||
border-width: medium medium medium 3px;
|
||
margin-bottom: 15px;
|
||
padding: 20px 20px 10px;
|
||
}
|
||
.bootstrap .media-product-pack {
|
||
border: 2px solid #eee;
|
||
border-radius: 4px;
|
||
float: left;
|
||
margin-bottom: 10px;
|
||
margin-right: 10px;
|
||
overflow: hidden;
|
||
padding: 4px;
|
||
position: relative;
|
||
width: 200px;
|
||
}
|
||
.bootstrap .media-product-pack .media-product-pack-img {
|
||
border-bottom: 1px solid #ccc;
|
||
margin-bottom: 5px;
|
||
padding-bottom: 5px;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .media-product-pack .media-product-pack-title {
|
||
display: inline-block;
|
||
overflow: hidden;
|
||
padding: 0 5px;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .media-product-pack .media-product-pack-ref {
|
||
color: #aaa;
|
||
display: inline-block;
|
||
overflow: hidden;
|
||
padding: 0 5px;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .media-product-pack .media-product-pack-action {
|
||
border: 1px solid #ccc;
|
||
border-radius: 4px;
|
||
position: absolute;
|
||
right: 7px;
|
||
text-align: center;
|
||
top: 7px;
|
||
}
|
||
.bootstrap .media-product-pack .media-product-pack-quantity {
|
||
background-color: #fff;
|
||
border: 1px solid #ccc;
|
||
border-radius: 4px;
|
||
height: 25px;
|
||
left: 7px;
|
||
line-height: 23px;
|
||
min-width: 35px;
|
||
padding: 0 4px;
|
||
position: absolute;
|
||
text-align: center;
|
||
top: 7px;
|
||
}
|
||
.bootstrap #carrier_wizard {
|
||
display: block;
|
||
position: relative;
|
||
}
|
||
.bootstrap #carrier_wizard .stepContainer {
|
||
clear: both;
|
||
display: block;
|
||
position: relative;
|
||
}
|
||
.bootstrap #carrier_wizard .stepContainer div.content {
|
||
clear: both;
|
||
display: block;
|
||
position: absolute;
|
||
width: 100%;
|
||
}
|
||
.bootstrap #carrier_wizard .stepContainer .StepTitle {
|
||
clear: both;
|
||
display: block;
|
||
position: relative;
|
||
}
|
||
.bootstrap #carrier_wizard ul.anchor {
|
||
clear: both;
|
||
display: block;
|
||
float: left;
|
||
list-style: outside none none;
|
||
margin: 0 0 10px;
|
||
padding: 0;
|
||
position: relative;
|
||
width: 100%;
|
||
}
|
||
.bootstrap #carrier_wizard ul.anchor.nbr_steps_4 li {
|
||
float: left;
|
||
width: 25%;
|
||
}
|
||
.bootstrap #carrier_wizard ul.anchor.nbr_steps_5 li {
|
||
float: left;
|
||
width: 25%;
|
||
}
|
||
.bootstrap #carrier_wizard li {
|
||
display: block;
|
||
overflow: hidden;
|
||
position: relative;
|
||
}
|
||
.bootstrap #carrier_wizard li a {
|
||
color: #ccc;
|
||
display: block;
|
||
height: 32px;
|
||
margin: 0 16px 0 0;
|
||
outline-style: none;
|
||
position: relative;
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap #carrier_wizard li a .stepNumber {
|
||
color: #fff;
|
||
float: left;
|
||
font-size: 30px;
|
||
height: 32px;
|
||
line-height: 32px;
|
||
margin-right: 3px;
|
||
padding: 0 5px;
|
||
position: relative;
|
||
text-align: center;
|
||
width: 24px;
|
||
}
|
||
.bootstrap #carrier_wizard li a .stepDesc {
|
||
display: table-cell;
|
||
font-size: 13px;
|
||
height: 32px;
|
||
line-height: 13px;
|
||
position: relative;
|
||
text-align: left;
|
||
vertical-align: middle;
|
||
}
|
||
.bootstrap #carrier_wizard li a .chevron {
|
||
-moz-border-bottom-colors: none;
|
||
-moz-border-left-colors: none;
|
||
-moz-border-right-colors: none;
|
||
-moz-border-top-colors: none;
|
||
border-color: transparent -moz-use-text-color transparent #fff;
|
||
border-image: none;
|
||
border-style: solid none solid solid;
|
||
border-width: 16px 0 16px 14px;
|
||
position: absolute;
|
||
right: -16px;
|
||
top: 0;
|
||
}
|
||
.bootstrap #carrier_wizard li a .chevron:after {
|
||
-moz-border-bottom-colors: none;
|
||
-moz-border-left-colors: none;
|
||
-moz-border-right-colors: none;
|
||
-moz-border-top-colors: none;
|
||
border-color: transparent -moz-use-text-color transparent #ccc;
|
||
border-image: none;
|
||
border-style: solid none solid solid;
|
||
border-width: 16px 0 16px 14px;
|
||
content: "";
|
||
position: absolute;
|
||
right: 2px;
|
||
top: -16px;
|
||
}
|
||
.bootstrap #carrier_wizard li a.disabled {
|
||
background-color: #ccc;
|
||
color: #777;
|
||
}
|
||
.bootstrap #carrier_wizard li a.disabled .chevron:after {
|
||
border-left: 14px solid #ccc;
|
||
}
|
||
.bootstrap #carrier_wizard li a.selected {
|
||
background-color: #383f50;
|
||
color: #f8f8f8;
|
||
cursor: text;
|
||
}
|
||
.bootstrap #carrier_wizard li a.selected .chevron:after {
|
||
border-left: 14px solid #383f50;
|
||
}
|
||
.bootstrap #carrier_wizard li a.done {
|
||
background-color: #79bd3c;
|
||
color: #fff;
|
||
}
|
||
.bootstrap #carrier_wizard li a.done .chevron:after {
|
||
border-left: 14px solid #79bd3c;
|
||
}
|
||
.bootstrap #carrier_wizard .loader {
|
||
display: none;
|
||
}
|
||
.bootstrap #carrier_wizard .msgBox {
|
||
background-color: #ffd;
|
||
border: 1px solid gold;
|
||
border-radius: 5px;
|
||
color: #5a5655;
|
||
display: none;
|
||
float: left;
|
||
margin: 4px 0 0 5px;
|
||
padding: 5px;
|
||
position: relative;
|
||
}
|
||
.bootstrap #carrier_wizard .msgBox .content {
|
||
float: left;
|
||
padding: 0;
|
||
}
|
||
.bootstrap #carrier_wizard #carrier_logo_block {
|
||
right: 10px;
|
||
}
|
||
.bootstrap #carrier_wizard .range_inf td, .bootstrap #carrier_wizard .range_sup td {
|
||
background-color: #ccc;
|
||
}
|
||
.bootstrap #carrier_wizard .range_type {
|
||
font-weight: bold;
|
||
text-align: right;
|
||
width: 220px;
|
||
}
|
||
.bootstrap #carrier_wizard .range_data {
|
||
width: 110px;
|
||
}
|
||
.bootstrap #carrier_wizard .range_sign {
|
||
font-size: 20px;
|
||
text-align: center;
|
||
width: 18px;
|
||
}
|
||
.bootstrap #carrier_wizard .range_data_new {
|
||
width: 110px;
|
||
}
|
||
.bootstrap #carrier_wizard table#zones_table {
|
||
width: auto;
|
||
}
|
||
.bootstrap #carrier_wizard .field_error {
|
||
border-color: #d9534f;
|
||
}
|
||
.bootstrap #carrier_wizard .actionBar {
|
||
height: 30px;
|
||
}
|
||
.bootstrap #carrier_wizard .actionBar a {
|
||
float: right;
|
||
margin-right: 10px;
|
||
}
|
||
.bootstrap .size_s {
|
||
font-size: 1.1em;
|
||
}
|
||
.bootstrap .size_md {
|
||
font-size: 1.3em;
|
||
}
|
||
.bootstrap .size_l {
|
||
font-size: 1.7em;
|
||
}
|
||
.bootstrap .size_xl {
|
||
font-size: 2em;
|
||
}
|
||
.bootstrap .size_xxl {
|
||
font-size: 2.3em;
|
||
}
|
||
.bootstrap .number-monospace {
|
||
font-family: "Droid Sans Mono",Helvetica,Arial,sans-serif !important;
|
||
font-weight: 200;
|
||
word-spacing: -0.3em;
|
||
}
|
||
.bootstrap .color_success {
|
||
color: #79bd3c;
|
||
}
|
||
.bootstrap .color_danger {
|
||
color: #d9534f;
|
||
}
|
||
.bootstrap .dash_trend_down {
|
||
color: #d9534f;
|
||
}
|
||
.bootstrap .dash_trend_down:before {
|
||
content: "?";
|
||
font-family: FontAwesome;
|
||
margin-right: 4px;
|
||
}
|
||
.bootstrap .dash_trend_up {
|
||
color: #79bd3c;
|
||
}
|
||
.bootstrap .dash_trend_up:before {
|
||
content: "?";
|
||
font-family: FontAwesome;
|
||
margin-right: 4px;
|
||
}
|
||
.bootstrap .dash_trend_right:before {
|
||
content: "?";
|
||
font-family: FontAwesome;
|
||
margin-right: 4px;
|
||
}
|
||
.bootstrap #dashboard section > section header {
|
||
background-color: #00aff0;
|
||
color: #fff;
|
||
font-size: 1.2em;
|
||
margin: 0 0 3px;
|
||
padding: 3px 8px;
|
||
}
|
||
.bootstrap #dashboard section > section header .small {
|
||
clear: both;
|
||
display: block;
|
||
font-family: "Open Sans",Helvetica,Arial,sans-serif;
|
||
font-size: 0.8em;
|
||
text-transform: uppercase;
|
||
}
|
||
.bootstrap #dashboard .data_list {
|
||
margin: 0 0 10px;
|
||
padding: 0;
|
||
}
|
||
.bootstrap #dashboard .data_list li {
|
||
position: relative;
|
||
}
|
||
.bootstrap #dashboard .data_list .data_value {
|
||
line-height: 39px;
|
||
padding: 0 10px 0 0;
|
||
position: absolute;
|
||
right: 0;
|
||
top: 0;
|
||
}
|
||
.bootstrap #dashboard .data_list_small {
|
||
border-top: 1px solid #ddd;
|
||
margin: 8px 0 10px;
|
||
padding: 0;
|
||
}
|
||
.bootstrap #dashboard .data_list_small li {
|
||
-moz-border-bottom-colors: none;
|
||
-moz-border-left-colors: none;
|
||
-moz-border-right-colors: none;
|
||
-moz-border-top-colors: none;
|
||
border-color: -moz-use-text-color -moz-use-text-color #ddd;
|
||
border-image: none;
|
||
border-style: none none dashed;
|
||
border-width: medium medium 1px;
|
||
margin: 0;
|
||
padding: 3px 0;
|
||
position: relative;
|
||
}
|
||
.bootstrap #dashboard .data_list_small .data_label {
|
||
color: #bbb;
|
||
text-transform: uppercase;
|
||
}
|
||
.bootstrap #dashboard .data_list_small .data_value {
|
||
line-height: 25px;
|
||
padding: 0;
|
||
position: absolute;
|
||
right: 0;
|
||
top: 0;
|
||
}
|
||
.bootstrap #dashboard .data_list_large {
|
||
margin: 8px 0 10px;
|
||
padding: 0;
|
||
}
|
||
.bootstrap #dashboard .data_list_large li {
|
||
border: medium none;
|
||
margin: 0;
|
||
padding: 6px 0;
|
||
position: relative;
|
||
}
|
||
.bootstrap #dashboard .data_list_large .data_label {
|
||
line-height: 0.8em;
|
||
}
|
||
.bootstrap #dashboard .data_list_large .data_label small {
|
||
font-size: 0.6em;
|
||
}
|
||
.bootstrap #dashboard .data_list_large .data_value {
|
||
line-height: 0.6em;
|
||
padding: 8px 0 0;
|
||
position: absolute;
|
||
right: 0;
|
||
text-align: right;
|
||
top: 0;
|
||
}
|
||
.bootstrap #dashboard .data_list_large .data_value small {
|
||
font-size: 0.5em;
|
||
}
|
||
.bootstrap #dashboard .data_list_vertical {
|
||
border: 1px solid #ddd;
|
||
border-radius: 3px;
|
||
margin: 0 0 10px;
|
||
padding: 0;
|
||
}
|
||
.bootstrap #dashboard .data_list_vertical li {
|
||
border-left: 1px solid #ddd;
|
||
padding: 6px;
|
||
}
|
||
.bootstrap #dashboard .data_list_vertical li:first-child {
|
||
border: medium none;
|
||
}
|
||
.bootstrap #dashboard .data_list_vertical .data_label {
|
||
display: block;
|
||
line-height: 1em;
|
||
min-height: 32px;
|
||
text-align: center;
|
||
}
|
||
.bootstrap #dashboard .data_list_vertical .data_value {
|
||
display: block;
|
||
text-align: center;
|
||
}
|
||
.bootstrap #dashboard #dashtrends header {
|
||
margin-bottom: 0;
|
||
}
|
||
.bootstrap #dashboard #dashtrends #dashtrends_toolbar {
|
||
margin: 0 -16px 10px;
|
||
}
|
||
.bootstrap #dashboard #dashtrends #dashtrends_toolbar dl {
|
||
box-shadow: 0 0 0 2px #fff inset;
|
||
}
|
||
.bootstrap #dashboard #dashtrends #dashtrends_toolbar dl dt {
|
||
color: #777;
|
||
height: 20px;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
.bootstrap #dashboard #dashtrends #dashtrends_toolbar dl dd.data_value {
|
||
color: #aaa;
|
||
margin-bottom: 8px;
|
||
}
|
||
.bootstrap #dashboard #dashtrends #dashtrends_toolbar dl dd.dash_trend {
|
||
background-color: #fff;
|
||
border-radius: 3px;
|
||
margin: 0 auto;
|
||
width: 80px;
|
||
}
|
||
.bootstrap #dashboard #dashtrends #dashtrends_toolbar dl:hover dt, .bootstrap #dashboard #dashtrends #dashtrends_toolbar dl:hover dd.data_value {
|
||
color: #00aff0;
|
||
}
|
||
.bootstrap #dashboard #dashtrends #dashtrends_toolbar dl:hover dt {
|
||
text-decoration: underline;
|
||
}
|
||
.bootstrap #dashboard #dashtrends #dashtrends_toolbar dl.active dt, .bootstrap #dashboard #dashtrends #dashtrends_toolbar dl.active dd.data_value {
|
||
color: #fff;
|
||
}
|
||
.bootstrap #dashboard #dashtrends dl {
|
||
background-color: #fff;
|
||
border-bottom: 1px solid #ddd;
|
||
border-left: 1px solid #ddd;
|
||
cursor: pointer;
|
||
margin: 0;
|
||
min-height: 70px;
|
||
padding: 10px;
|
||
text-align: center;
|
||
}
|
||
.bootstrap #dashboard #dashtrends dl:first-child {
|
||
border-left: medium none;
|
||
}
|
||
.bootstrap #dashboard #dashtrends dl.active {
|
||
background-color: #00aff0;
|
||
box-shadow: 0 0 0 2px #fff inset;
|
||
}
|
||
.bootstrap #dashboard #dashtrends dl.active dt {
|
||
color: #fff;
|
||
font-size: 1.2em;
|
||
}
|
||
.bootstrap #dashboard #dashtrends dt {
|
||
font: 400 1.1em/120% "Ubuntu Condensed",Helvetica,Arial,sans-serif;
|
||
height: 37px;
|
||
text-align: center;
|
||
}
|
||
.bootstrap #dashboard #dashtrends dd span {
|
||
font-size: 0.9em;
|
||
white-space: nowrap;
|
||
}
|
||
.bootstrap #dashboard #dashtrends svg {
|
||
height: 350px;
|
||
}
|
||
.bootstrap #dashboard #dashgoals svg {
|
||
height: 250px;
|
||
}
|
||
.bootstrap #dashboard #dashproducts nav {
|
||
font: 400 1.1em/120% "Ubuntu Condensed",Helvetica,Arial,sans-serif;
|
||
margin-bottom: 10px;
|
||
text-transform: uppercase;
|
||
}
|
||
.bootstrap #dashboard #dashaddons {
|
||
background-color: #fff;
|
||
border: 1px dashed silver;
|
||
border-radius: 3px;
|
||
font-size: 1.3em;
|
||
padding: 10px 20px;
|
||
text-align: center;
|
||
}
|
||
.bootstrap #dashboard #dashaddons a {
|
||
display: block;
|
||
}
|
||
.bootstrap #dashboard #dashaddons a:hover {
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap #dashboard #dashactivity svg {
|
||
height: 150px;
|
||
}
|
||
.bootstrap #dashboard .loading .data_value {
|
||
min-width: 30px;
|
||
text-align: center;
|
||
}
|
||
.bootstrap #dashboard .loading .data_value:before {
|
||
color: #ccc;
|
||
font-size: 14px;
|
||
}
|
||
.bootstrap #dashboard .loading .data_value span, .bootstrap #dashboard .loading .data_value small {
|
||
display: none;
|
||
}
|
||
.bootstrap #dashboard .loading .data_trend {
|
||
display: none;
|
||
}
|
||
.bootstrap #dashboard .tooltip-panel {
|
||
min-width: 150px;
|
||
padding: 10px;
|
||
}
|
||
.bootstrap #dashboard .tooltip-panel-heading {
|
||
border-bottom: 1px solid #ccc;
|
||
font: 400 1.2em/1.42857 "Ubuntu Condensed",Helvetica,Arial,sans-serif;
|
||
margin-bottom: 10px;
|
||
text-align: center;
|
||
text-transform: uppercase;
|
||
}
|
||
.bootstrap .data_loading, .bootstrap #dashboard .data_value span, .bootstrap #dashboard .data_value .dash_trend {
|
||
animation-duration: 0.7s;
|
||
animation-name: bounceG;
|
||
opacity: 1;
|
||
transform: scaleY(0.7);
|
||
}
|
||
.bootstrap #dash_version {
|
||
overflow: hidden;
|
||
padding: 0 !important;
|
||
}
|
||
.bootstrap #dash_version iframe {
|
||
height: 80px;
|
||
width: 100%;
|
||
}
|
||
.bootstrap #calendar button.btn-default.active {
|
||
background-color: #00aff0;
|
||
border-color: #008abd;
|
||
box-shadow: none;
|
||
color: #fff;
|
||
font-weight: 700;
|
||
}
|
||
@media (max-width: 480px) {
|
||
.bootstrap #calendar {
|
||
padding: 10px !important;
|
||
}
|
||
.bootstrap #calendar button.btn-default {
|
||
padding: 5px;
|
||
}
|
||
}
|
||
.bootstrap #login {
|
||
background: radial-gradient(at left top , rgba(104, 128, 138, 0.4) 10%, rgba(138, 114, 76, 0) 40%) repeat scroll 0 0%, -moz-linear-gradient(center top , rgba(57, 173, 219, 0.25), rgba(42, 60, 87, 0.4)) repeat scroll 0 0%, -moz-linear-gradient(left top , #670d10, #092756) repeat scroll 0 0 rgba(0, 0, 0, 0);
|
||
min-height: 100%;
|
||
padding-bottom: 45px;
|
||
}
|
||
.bootstrap #login-header {
|
||
color: #fff;
|
||
margin-bottom: 30px;
|
||
padding-top: 40px;
|
||
}
|
||
.bootstrap #login-header h1, .bootstrap #login-header h4 {
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
.bootstrap #login-panel {
|
||
margin: 0 auto;
|
||
width: 420px;
|
||
}
|
||
@media (max-width: 480px) {
|
||
.bootstrap #login-panel {
|
||
width: 90%;
|
||
}
|
||
}
|
||
.bootstrap #login-panel .panel, .bootstrap #login-panel #dash_version, .bootstrap #login-panel .message-item-initial .message-item-initial-body, .bootstrap .message-item-initial #login-panel .message-item-initial-body, .bootstrap #login-panel .timeline .timeline-item .timeline-caption .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption #login-panel .timeline-panel {
|
||
box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.45);
|
||
}
|
||
.bootstrap #login-panel .panel-footer {
|
||
height: inherit;
|
||
margin: 0 -20px -20px;
|
||
}
|
||
.bootstrap #login-panel .flip-container {
|
||
height: 370px;
|
||
perspective: 1000px;
|
||
}
|
||
.bootstrap #login-panel .flip-container.flip .flipper {
|
||
transform: rotateY(180deg);
|
||
}
|
||
.bootstrap #login-panel .flipper {
|
||
position: relative;
|
||
transform-style: preserve-3d;
|
||
transition-duration: 0.6s;
|
||
}
|
||
.bootstrap #login-panel .front, .bootstrap #login-panel .back {
|
||
backface-visibility: hidden;
|
||
left: 0;
|
||
padding: 20px;
|
||
position: absolute;
|
||
top: 0;
|
||
width: 100%;
|
||
}
|
||
.bootstrap #login-panel .front {
|
||
z-index: 2;
|
||
}
|
||
.bootstrap #login-panel .back {
|
||
display: none;
|
||
transform: rotateY(180deg);
|
||
}
|
||
.bootstrap #login-panel #remind-me {
|
||
margin-top: 0;
|
||
}
|
||
.bootstrap #login-footer a {
|
||
color: #a0aab5;
|
||
}
|
||
.bootstrap #module-list h3 {
|
||
background-color: transparent;
|
||
color: #383f50;
|
||
left: 0;
|
||
margin: 0;
|
||
padding: 0;
|
||
position: relative;
|
||
top: 0;
|
||
}
|
||
.bootstrap #module-list select.active {
|
||
background: none repeat scroll 0 0 #bdedff;
|
||
border: 1px solid #00aff0;
|
||
}
|
||
.bootstrap #module-list select.active option {
|
||
background: none repeat scroll 0 0 #fff !important;
|
||
}
|
||
.bootstrap .hook_panel {
|
||
border: 1px solid #e6e6e6;
|
||
border-radius: 3px;
|
||
box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.1) inset;
|
||
margin-bottom: 10px !important;
|
||
padding: 10px 10px 5px;
|
||
}
|
||
.bootstrap .module_name {
|
||
font-size: 1.2em;
|
||
}
|
||
.bootstrap .hook_panel_header {
|
||
margin: 0 -10px;
|
||
padding: 0 10px 10px;
|
||
}
|
||
.bootstrap .hook_panel_header .hook_name {
|
||
background-color: #fff;
|
||
border-radius: 3px;
|
||
color: #00aff0;
|
||
font-size: 1.4em;
|
||
padding: 0 4px;
|
||
}
|
||
.bootstrap .hook_panel_header .hook_description {
|
||
padding: 3px 0 0 3px;
|
||
}
|
||
.bootstrap #modules_list_container_tab img {
|
||
max-width: 66px;
|
||
}
|
||
.bootstrap .module_list .module_list_item {
|
||
background-color: #fff;
|
||
border: 1px solid #9ed0ec;
|
||
display: table;
|
||
margin-bottom: -1px;
|
||
padding: 5px 0;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .module_list .draggable {
|
||
cursor: pointer;
|
||
}
|
||
.bootstrap .module_col_select {
|
||
border-right: 1px solid #ddd;
|
||
display: table-cell;
|
||
min-height: 35px;
|
||
text-align: center;
|
||
vertical-align: middle;
|
||
width: 22px;
|
||
}
|
||
.bootstrap .module_col_position {
|
||
display: table-cell;
|
||
text-align: right;
|
||
vertical-align: middle;
|
||
width: 70px;
|
||
}
|
||
.bootstrap .module_col_position .positions {
|
||
background-color: #eee;
|
||
border: 1px solid #ccc;
|
||
border-radius: 3px;
|
||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) inset;
|
||
color: #aaa;
|
||
cursor: move;
|
||
font-size: 1.4em;
|
||
padding: 0 5px;
|
||
text-shadow: 1px 1px #fff;
|
||
}
|
||
.bootstrap .module_col_icon {
|
||
display: table-cell;
|
||
text-align: center;
|
||
vertical-align: middle;
|
||
width: 50px;
|
||
}
|
||
.bootstrap .module_col_infos {
|
||
display: table-cell;
|
||
height: 50px;
|
||
vertical-align: middle;
|
||
}
|
||
.bootstrap .module_col_actions {
|
||
display: table-cell;
|
||
padding: 0 10px;
|
||
text-align: right;
|
||
vertical-align: middle;
|
||
width: 160px;
|
||
}
|
||
.bootstrap .module_col_actions .btn-group {
|
||
text-align: left;
|
||
}
|
||
.bootstrap li.sortable-placeholder {
|
||
background-color: #eee;
|
||
border: 1px dashed #ccc;
|
||
border-radius: 5px;
|
||
margin: 4px;
|
||
}
|
||
.bootstrap td.module_active {
|
||
background-color: #93cd60 !important;
|
||
}
|
||
.bootstrap td.module_inactive {
|
||
background-color: #d5d5d5 !important;
|
||
}
|
||
.bootstrap .module-badge-popular, .bootstrap .module-badge-partner, .bootstrap .module-badge-bought {
|
||
font-size: 12px;
|
||
}
|
||
.bootstrap .module-badge-popular {
|
||
background-color: #f01778;
|
||
}
|
||
.bootstrap .module-badge-partner {
|
||
background-color: #00aff0;
|
||
}
|
||
.bootstrap .module-badge-bought {
|
||
background-color: #8bc954;
|
||
}
|
||
.bootstrap .categoriesTitle .list-group #filternameForm, .bootstrap .categoriesTitle #dashboard .data_list #filternameForm, .bootstrap #dashboard .categoriesTitle .data_list #filternameForm {
|
||
padding-right: 15px;
|
||
}
|
||
.bootstrap .categoriesTitle .list-group .list-group-item, .bootstrap .categoriesTitle #dashboard .data_list .list-group-item, .bootstrap #dashboard .categoriesTitle .data_list .list-group-item, .bootstrap #dashboard .data_list .categoriesTitle .list-group li, .bootstrap .categoriesTitle #dashboard .data_list li, .bootstrap #dashboard .categoriesTitle .data_list li {
|
||
overflow: hidden;
|
||
padding-right: 35px;
|
||
position: relative;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
.bootstrap .categoriesTitle .list-group .list-group-item .badge, .bootstrap .categoriesTitle #dashboard .data_list .list-group-item .badge, .bootstrap #dashboard .categoriesTitle .data_list .list-group-item .badge, .bootstrap #dashboard .data_list .categoriesTitle .list-group li .badge, .bootstrap .categoriesTitle #dashboard .data_list li .badge, .bootstrap #dashboard .categoriesTitle .data_list li .badge, .bootstrap .categoriesTitle .list-group .list-group-item #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .categoriesTitle .list-group .list-group-item .notifs_badge, .bootstrap .categoriesTitle #dashboard .data_list .list-group-item #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .categoriesTitle #dashboard .data_list .list-group-item .notifs_badge, .bootstrap #dashboard .categoriesTitle .data_list .list-group-item #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap #dashboard .categoriesTitle .data_list .list-group-item .notifs_badge, .bootstrap #dashboard .data_list .categoriesTitle .list-group li #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list .categoriesTitle .list-group li .notifs_badge, .bootstrap .categoriesTitle #dashboard .data_list li #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .categoriesTitle #dashboard .data_list li .notifs_badge, .bootstrap #dashboard .categoriesTitle .data_list li #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap #dashboard .categoriesTitle .data_list li .notifs_badge, .bootstrap .categoriesTitle .list-group .list-group-item .module-badge-popular, .bootstrap .categoriesTitle #dashboard .data_list .list-group-item .module-badge-popular, .bootstrap #dashboard .categoriesTitle .data_list .list-group-item .module-badge-popular, .bootstrap #dashboard .data_list .categoriesTitle .list-group li .module-badge-popular, .bootstrap .categoriesTitle #dashboard .data_list li .module-badge-popular, .bootstrap #dashboard .categoriesTitle .data_list li .module-badge-popular, .bootstrap .categoriesTitle .list-group .list-group-item .module-badge-partner, .bootstrap .categoriesTitle #dashboard .data_list .list-group-item .module-badge-partner, .bootstrap #dashboard .categoriesTitle .data_list .list-group-item .module-badge-partner, .bootstrap #dashboard .data_list .categoriesTitle .list-group li .module-badge-partner, .bootstrap .categoriesTitle #dashboard .data_list li .module-badge-partner, .bootstrap #dashboard .categoriesTitle .data_list li .module-badge-partner, .bootstrap .categoriesTitle .list-group .list-group-item .module-badge-bought, .bootstrap .categoriesTitle #dashboard .data_list .list-group-item .module-badge-bought, .bootstrap #dashboard .categoriesTitle .data_list .list-group-item .module-badge-bought, .bootstrap #dashboard .data_list .categoriesTitle .list-group li .module-badge-bought, .bootstrap .categoriesTitle #dashboard .data_list li .module-badge-bought, .bootstrap #dashboard .categoriesTitle .data_list li .module-badge-bought {
|
||
position: absolute;
|
||
right: 5px;
|
||
}
|
||
.bootstrap .quickview-badge {
|
||
margin-top: 30px;
|
||
}
|
||
.bootstrap .quickview-price {
|
||
color: #666;
|
||
float: right;
|
||
font-size: 1.8em;
|
||
}
|
||
.bootstrap .rating {
|
||
direction: rtl;
|
||
font-size: 20px;
|
||
unicode-bidi: bidi-override;
|
||
}
|
||
.bootstrap .rating span.star {
|
||
display: inline-block;
|
||
font-family: "FontAwesome";
|
||
}
|
||
.bootstrap .rating span.star:before {
|
||
color: #bbb;
|
||
content: "?";
|
||
padding-right: 3px;
|
||
}
|
||
.bootstrap .rating span.star.active:before, .bootstrap .rating span.star.active ~ span.star:before {
|
||
color: #f5ab35;
|
||
content: "?";
|
||
}
|
||
.bootstrap .adminsearch #content .panel .panel, .bootstrap .adminsearch #content #dash_version .panel, .bootstrap .adminsearch #content .message-item-initial .message-item-initial-body .panel, .bootstrap .message-item-initial .adminsearch #content .message-item-initial-body .panel, .bootstrap .adminsearch #content .timeline .timeline-item .timeline-caption .timeline-panel .panel, .bootstrap .timeline .timeline-item .timeline-caption .adminsearch #content .timeline-panel .panel, .bootstrap .adminsearch #content .panel #dash_version, .bootstrap .adminsearch #content #dash_version #dash_version, .bootstrap .adminsearch #content .message-item-initial .message-item-initial-body #dash_version, .bootstrap .message-item-initial .adminsearch #content .message-item-initial-body #dash_version, .bootstrap .adminsearch #content .timeline .timeline-item .timeline-caption .timeline-panel #dash_version, .bootstrap .timeline .timeline-item .timeline-caption .adminsearch #content .timeline-panel #dash_version, .bootstrap .adminsearch #content .panel .message-item-initial .message-item-initial-body, .bootstrap .message-item-initial .adminsearch #content .panel .message-item-initial-body, .bootstrap .adminsearch #content #dash_version .message-item-initial .message-item-initial-body, .bootstrap .message-item-initial .adminsearch #content #dash_version .message-item-initial-body, .bootstrap .adminsearch #content .message-item-initial .message-item-initial-body .message-item-initial-body, .bootstrap .message-item-initial .adminsearch #content .message-item-initial-body .message-item-initial-body, .bootstrap .adminsearch #content .timeline .timeline-item .timeline-caption .timeline-panel .message-item-initial .message-item-initial-body, .bootstrap .message-item-initial .adminsearch #content .timeline .timeline-item .timeline-caption .timeline-panel .message-item-initial-body, .bootstrap .timeline .timeline-item .timeline-caption .adminsearch #content .timeline-panel .message-item-initial .message-item-initial-body, .bootstrap .message-item-initial .timeline .timeline-item .timeline-caption .adminsearch #content .timeline-panel .message-item-initial-body, .bootstrap .adminsearch #content .panel .timeline .timeline-item .timeline-caption .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .adminsearch #content .panel .timeline-panel, .bootstrap .adminsearch #content #dash_version .timeline .timeline-item .timeline-caption .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .adminsearch #content #dash_version .timeline-panel, .bootstrap .adminsearch #content .message-item-initial .message-item-initial-body .timeline .timeline-item .timeline-caption .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .adminsearch #content .message-item-initial .message-item-initial-body .timeline-panel, .bootstrap .message-item-initial .adminsearch #content .message-item-initial-body .timeline .timeline-item .timeline-caption .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .message-item-initial .adminsearch #content .message-item-initial-body .timeline-panel, .bootstrap .adminsearch #content .timeline .timeline-item .timeline-caption .timeline-panel .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .adminsearch #content .timeline-panel .timeline-panel {
|
||
border: medium none;
|
||
border-radius: 0;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
.bootstrap #translations_form .translations-email-panel {
|
||
margin: 0 0 8px 20px;
|
||
padding: 8px 12px;
|
||
}
|
||
.bootstrap #translations_form .block-mail iframe, .bootstrap #translations_form .block-mail textarea {
|
||
height: 500px;
|
||
width: 100%;
|
||
}
|
||
.bootstrap #translations_form .panel-group {
|
||
display: none;
|
||
}
|
||
.bootstrap #translations_form a.panel-title i {
|
||
display: none;
|
||
}
|
||
.bootstrap #translations_form a.panel-title:hover {
|
||
text-decoration: none;
|
||
}
|
||
.bootstrap #translations_form a.panel-title:hover i {
|
||
display: inline-block;
|
||
}
|
||
.bootstrap #translations_form .mails_field {
|
||
border-bottom: 1px solid #eee;
|
||
margin-bottom: 16px;
|
||
padding-bottom: 8px;
|
||
}
|
||
.bootstrap #translations_form .mails_field ul.nav-pills {
|
||
margin-bottom: 5px;
|
||
}
|
||
.bootstrap #translations_form .mails_field h4 .badge, .bootstrap #translations_form .mails_field h4 #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap #translations_form .mails_field h4 .notifs_badge, .bootstrap #translations_form .mails_field h4 .module-badge-popular, .bootstrap #translations_form .mails_field h4 .module-badge-partner, .bootstrap #translations_form .mails_field h4 .module-badge-bought {
|
||
font-size: 12px;
|
||
}
|
||
.bootstrap #translations_form .mails_field h4 .badge.badge-danger, .bootstrap #translations_form .mails_field h4 #header_notifs_icon_wrapper .badge-danger.notifs_badge, #header_notifs_icon_wrapper .bootstrap #translations_form .mails_field h4 .badge-danger.notifs_badge, .bootstrap #translations_form .mails_field h4 .badge-danger.module-badge-popular, .bootstrap #translations_form .mails_field h4 .badge-danger.module-badge-partner, .bootstrap #translations_form .mails_field h4 .badge-danger.module-badge-bought {
|
||
background-color: transparent;
|
||
border: 2px solid #d9534f;
|
||
color: #d9534f;
|
||
}
|
||
.bootstrap #translations_form .mails_field .panel-footer {
|
||
margin: 0 -15px;
|
||
}
|
||
.bootstrap .employee_avatar_small {
|
||
margin-right: 4px;
|
||
vertical-align: middle;
|
||
}
|
||
.bootstrap .employee_avatar_small img {
|
||
border: medium none;
|
||
padding: 0;
|
||
}
|
||
.bootstrap .employee_avatar {
|
||
display: block !important;
|
||
margin: 10px auto !important;
|
||
text-align: center;
|
||
}
|
||
.bootstrap .avatar-xs {
|
||
background-color: #eee;
|
||
border-radius: 16px;
|
||
display: inline-block;
|
||
height: 16px;
|
||
overflow: hidden;
|
||
text-align: center;
|
||
width: 16px;
|
||
}
|
||
.bootstrap .avatar-xs img {
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .avatar-xs i {
|
||
font-size: 10.6667px;
|
||
line-height: 16px;
|
||
}
|
||
.bootstrap .avatar-sm, .bootstrap .employee_avatar_small {
|
||
background-color: #eee;
|
||
border-radius: 32px;
|
||
display: inline-block;
|
||
height: 32px;
|
||
overflow: hidden;
|
||
text-align: center;
|
||
width: 32px;
|
||
}
|
||
.bootstrap .avatar-sm img, .bootstrap .employee_avatar_small img {
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .avatar-sm i, .bootstrap .employee_avatar_small i {
|
||
font-size: 21.3333px;
|
||
line-height: 32px;
|
||
}
|
||
.bootstrap .avatar-md {
|
||
background-color: #eee;
|
||
border-radius: 48px;
|
||
display: inline-block;
|
||
height: 48px;
|
||
overflow: hidden;
|
||
text-align: center;
|
||
width: 48px;
|
||
}
|
||
.bootstrap .avatar-md img {
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .avatar-md i {
|
||
font-size: 32px;
|
||
line-height: 48px;
|
||
}
|
||
.bootstrap .avatar-lg, .bootstrap .employee_avatar {
|
||
background-color: #eee;
|
||
border-radius: 80px;
|
||
display: inline-block;
|
||
height: 80px;
|
||
overflow: hidden;
|
||
text-align: center;
|
||
width: 80px;
|
||
}
|
||
.bootstrap .avatar-lg img, .bootstrap .employee_avatar img {
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .avatar-lg i, .bootstrap .employee_avatar i {
|
||
font-size: 53.3333px;
|
||
line-height: 80px;
|
||
}
|
||
.bootstrap .avatar-xl {
|
||
background-color: #eee;
|
||
border-radius: 128px;
|
||
display: inline-block;
|
||
height: 128px;
|
||
overflow: hidden;
|
||
text-align: center;
|
||
width: 128px;
|
||
}
|
||
.bootstrap .avatar-xl img {
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .avatar-xl i {
|
||
font-size: 85.3333px;
|
||
line-height: 128px;
|
||
}
|
||
.bootstrap #employee-thumbnail {
|
||
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAACWCAIAAACzY+a1AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAB1ZJREFUeNrsnV1PGl0UhcsUbGmtVotYQatVbFqrF973/1+ZJqaJX0hFRKh8CRYBUZyu0KR5k1eBwWFmHV3romlShdPzzN577TMz5wTOz8+fSSbL0hQIoSSEkhAKoSSEkhBKQiiEkhBKQigJoRBKQigJoSSET1bBJ/W/7XQ6rVarXq83Go2rq6ubmxv8/fr6Gv80OTm5vr5uWZYQ0umqq3K5/Pv372q1CoS3t7f//7E3b94oCrmw1Wq1SqWCP//FWQ99+fJlcXFRCP1Xu93O5XLFYhHkkCQH8gKWBX4LCwuqhX4KtICtUCggW4Kio98Nh8NG8zMeIVxJPp/PZrPNZnO4T0CORaYdHx83dxIChj6ECFeSSqXAb8CE2UOhUGhlZWVpaUlR6JFs20bBOzg4gGdx5QMRiHt7eyifnz9/fvHihRCOVmgMMN2oea5/MgIaLQesTTQaVSIdlVDzwO/hmbPXdAQCiUQCeVVR6L4AL51Oe5Clk8kkzNHa2popKzVmjHJ3d9cDfv8N9+/fv/ddEBDCQbW/v398fOzxl5ZKpa2tLSMosiNEQBwdHfny1fCo29vbdy6oCqGDSUQJ9HEAiMWdnR0USCEcRrj8UQJH6j8HTAM/f/4UwmF0dnaGRo1hJKlUirn14kWYyWR48gEoCqEz1et1FEKe8ZTLZarxGICwUqlQWUE4mtPTUyF0oEajwTaki4sLIXQgt+5CuCh4Y87uQg8hGi8hHFSBQEAIzVa73e50OkJosG67EkIH3kG51GyEptyrE0LzvIMQSkIoCaEQeiHbtjkdqRAKoRyppFoohJIQSkIoCaEQSkIoPQmEnC/2oVXlHBjXK6LX19f7+/utVsvp3iMeyLbt8/Pzly9fsm2PwYWwWq1ms1nOfIXLa2trKxQKffv2jWpXBYvtSicvPADJtn7LhTAcDpOvjgaDwefPnwvhvRobG8McMSNELWTbm4bOYvHnUjUVvYQcRR6FGCFbqqdDCMvHjBCpXlHYp30m3wWNcHh0tZB8X8lXr14JYf9cSu5IhbCPpqammBGicxXCPpqcnKR1NAhBDE8I+wj8YrEYJ8JIJEJ4s4Lx7sny8jJhyUHDyrn5MyNCGPeNjQ0qX/P3LAROt0x61/7du3dUxuHt27fxeJxzrngfvKA6gQcIaSeKFyHVNufMrQ4vwomJCRL7B5PMfCgXL0Kee4dwMYQO2QCE4EdyW4C5EFIjDAQCJBWI/PAR6keBI5EIQxYlXFQzBiG6Q9+76bm5OfIzR6gHh3Lo7+GC8KLz8/PPuMX+TkU8HvfxLmssFuM/S40dIQIxkUj4MzWWZcQBvwa82YRQQEHy/ntx6RA+ZmEkQujr16/T09NefuPMzIwp54qagRDpdHNz08sWGzVYh9+5bw69XOUif5zVSIS2bXt58oFB7wUYg7DT6RCefCCEDkT4Yp8QOlOz2fRyg3qDNoEzBqGXu9Pzv9phJEKPT3FSFLoveRnjEbZaLdFSFCqR+mdkrrryuPRyntB0x9XGfNAwlM/nDw8P2+229+fHWJaVSCSWl5cVhcOrVqv9+PHj8vLSl/N/EP3JZJL2CF8zEBYKBX8PK7NtO5fLCeGDotD3MdAe4WsGQob9EPlNDS9CWNBms+n7MDAG8lUFXoRnZ2cMpxhiDBiJEA7jBjOZDMlgMBLOI2CpEZZKpXq9TjIYjATjEULHHb3GYyrCVquVTqfZrnqMB6PiXGpnWWBDsalUKrjY0c7TnsUcCoWi0ejc3Nz09DTPI4r+I4Rlz2azgMdT/PpqfHwcIOfn5xlu7vuJsFarwa+DH+GRBoNobGwMFGdnZ/19AdEHhJ1OB6Xl5OQEmZPZrA/qJiwLeXVhYSESifiy3ZGn+xFcXl7mumJYdnGxipe6CofDsa5ev379CKPw4uLi+Pj4169fptxHHVoIxPfv3y8uLk5MTDwGhLZtF4tFVDtcpI8gZzrKrsirqJQzMzOjfoZjVAjhM2EykTP5b9aMVIjFv+9Hjs67uo8QBe+0Kz02+E/gF+9qFGXSTYQwKZlMBmmTtjf3fWUAqfXDhw/ubvLoDkJ0eCAHtyJ4g4CE3wFLt7rJhyIEvKOjI3ToOqjH2bwHArOzsx8/fnw4yOER1uv1ZDJZKBQE7yEgo9Ho6urqQ3ZIGqa1R81Lp9PInI++yRu1cPUjgaHjQl5dWloarkY6i0KYzL/wVPNGZHYA0mn74QAh3GYqlVKrMOr2Y2VlBa7V5UTaaDQODg5gODXFoxYiZGdnp1KpfPr0acCNi/ojzOfz+FBlTi+FaCmXy2tra4Nse9UHITInbKfm1HshZra3t5H/kFd7/2SvpwcODw/Fz19h/kFhSIQnJyd9f1nyQKAAFo4RVqvV3d1dTR+JwAJEHCBEv7m3t/ekbu+RCyxA5L5VsDsQwtH2YC75IhABl0ERFotFTRmh7uNyB8JCoaD5ItR9XCxNjekSQiGUhFASQiGUhFASQkkIhVAyQo1G486VbiE0RsFg8M6XpP4IMAApALrnMeLgrgAAAABJRU5ErkJggg==");
|
||
background-size: contain;
|
||
border: 1px solid #ccc;
|
||
border-radius: 4px;
|
||
box-shadow: 0 0 0 4px #fff inset;
|
||
height: 104px;
|
||
margin-bottom: 10px;
|
||
position: relative;
|
||
width: 104px;
|
||
}
|
||
.bootstrap #employee-thumbnail:before {
|
||
color: #ccc;
|
||
display: block;
|
||
font-size: 2em;
|
||
left: 10px;
|
||
position: absolute;
|
||
text-align: center;
|
||
top: 10px;
|
||
z-index: 10;
|
||
}
|
||
.bootstrap #employee-thumbnail a {
|
||
background-position: center center;
|
||
background-size: contain;
|
||
border: medium none;
|
||
box-shadow: 0 0 0 3px #fff inset;
|
||
display: block;
|
||
height: 100px;
|
||
left: 1px;
|
||
overflow: hidden;
|
||
position: absolute;
|
||
top: 1px;
|
||
width: 100px;
|
||
z-index: 100;
|
||
}
|
||
.bootstrap .message-item-initial h2 {
|
||
font-size: 1.5em;
|
||
margin: 0 0 5px;
|
||
}
|
||
.bootstrap .message-item-initial .message-item-initial-body {
|
||
margin-top: 10px;
|
||
position: relative;
|
||
}
|
||
.bootstrap .message-item-initial .message-date {
|
||
color: #bbb;
|
||
margin-bottom: 10px;
|
||
}
|
||
.bootstrap .message-item {
|
||
border-bottom: 1px solid #eee;
|
||
margin: 0 0 0 30px;
|
||
padding: 10px 0;
|
||
position: relative;
|
||
}
|
||
.bootstrap .message-item:last-child {
|
||
border: medium none;
|
||
}
|
||
.bootstrap .message-item .message-item-heading {
|
||
display: inline-block;
|
||
}
|
||
.bootstrap .message-item .message-body {
|
||
margin: 0 0 0 80px;
|
||
}
|
||
.bootstrap .message-item .message-body .message-item-text {
|
||
border-left: 2px solid #ccc;
|
||
padding: 0 0 0 10px;
|
||
}
|
||
.bootstrap .message-item .message-avatar {
|
||
left: 10px;
|
||
position: absolute;
|
||
top: 10px;
|
||
}
|
||
.bootstrap .message-item .message-date {
|
||
color: #bbb;
|
||
}
|
||
.bootstrap .arrow:before, .bootstrap .arrow:after {
|
||
border-color: transparent;
|
||
border-style: solid;
|
||
content: "";
|
||
display: inline-block;
|
||
position: absolute;
|
||
}
|
||
.bootstrap .arrow-left:before {
|
||
border-right-color: #d1d4d7;
|
||
border-width: 7px 7px 7px 0;
|
||
left: 0;
|
||
margin-left: -7px;
|
||
top: 6px;
|
||
}
|
||
.bootstrap .arrow-left:after {
|
||
border-right-color: #fff;
|
||
border-width: 6px 6px 6px 0;
|
||
left: 0;
|
||
margin-left: -6px;
|
||
top: 7px;
|
||
}
|
||
.bootstrap .arrow-right:before {
|
||
border-left-color: #d1d4d7;
|
||
border-width: 7px 0 7px 7px;
|
||
margin-right: -7px;
|
||
right: 0;
|
||
top: 6px;
|
||
}
|
||
.bootstrap .arrow-right:after {
|
||
border-left-color: #fff;
|
||
border-width: 6px 0 6px 6px;
|
||
margin-right: -6px;
|
||
right: 0;
|
||
top: 7px;
|
||
}
|
||
.bootstrap .timeline {
|
||
border-collapse: collapse;
|
||
border-spacing: 0;
|
||
display: table;
|
||
position: relative;
|
||
table-layout: fixed;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .timeline:before {
|
||
background-color: #ddd;
|
||
bottom: 30px;
|
||
content: "";
|
||
left: 50%;
|
||
margin-left: -4px;
|
||
position: absolute;
|
||
top: 0;
|
||
width: 6px;
|
||
z-index: 0;
|
||
}
|
||
.bootstrap .timeline .timeline-item {
|
||
display: table-row;
|
||
}
|
||
.bootstrap .timeline .timeline-item .timeline-caption {
|
||
display: table-cell;
|
||
vertical-align: top;
|
||
width: 50%;
|
||
}
|
||
.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel {
|
||
display: inline-block;
|
||
margin-left: 42px;
|
||
position: relative;
|
||
text-align: left;
|
||
}
|
||
.bootstrap .timeline .timeline-item .timeline-caption h5 {
|
||
margin: 0;
|
||
}
|
||
.bootstrap .timeline .timeline-item .timeline-caption h5 span {
|
||
color: #999;
|
||
display: block;
|
||
font-size: 12px;
|
||
margin-bottom: 4px;
|
||
}
|
||
.bootstrap .timeline .timeline-item .timeline-caption p {
|
||
font-size: 12px;
|
||
margin-bottom: 0;
|
||
margin-top: 10px;
|
||
}
|
||
.bootstrap .timeline .timeline-item .timeline-date {
|
||
left: -220px;
|
||
position: absolute;
|
||
text-align: right;
|
||
top: 10px;
|
||
width: 150px;
|
||
}
|
||
.bootstrap .timeline .timeline-item .timeline-icon {
|
||
background-color: #666;
|
||
border: 2px solid #fff;
|
||
border-radius: 40px;
|
||
height: 40px;
|
||
left: -62px;
|
||
line-height: 40px;
|
||
position: absolute;
|
||
text-align: center;
|
||
top: -2px;
|
||
width: 40px;
|
||
}
|
||
.bootstrap .timeline .timeline-item .timeline-icon i {
|
||
color: #fff;
|
||
font-size: 20px;
|
||
margin-top: 5px;
|
||
}
|
||
.bootstrap .timeline .timeline-item:before, .bootstrap .timeline .timeline-item.alt:after {
|
||
content: "";
|
||
display: block;
|
||
width: 50%;
|
||
}
|
||
.bootstrap .timeline .timeline-item.alt {
|
||
text-align: right;
|
||
}
|
||
.bootstrap .timeline .timeline-item.alt:before {
|
||
display: none;
|
||
}
|
||
.bootstrap .timeline .timeline-item.alt .timeline-panel {
|
||
margin-left: 0;
|
||
margin-right: 40px;
|
||
}
|
||
.bootstrap .timeline .timeline-item.alt .timeline-date {
|
||
left: auto;
|
||
right: -220px;
|
||
text-align: left;
|
||
}
|
||
.bootstrap .timeline .timeline-item.alt .timeline-icon {
|
||
left: auto;
|
||
right: -60px;
|
||
}
|
||
.bootstrap .timeline .timeline-item.active {
|
||
display: table-caption;
|
||
text-align: center;
|
||
}
|
||
.bootstrap .timeline .timeline-item.active:before {
|
||
width: 1%;
|
||
}
|
||
.bootstrap .timeline .timeline-item.active .timeline-panel {
|
||
margin-left: 0;
|
||
}
|
||
.bootstrap .timeline .timeline-item.active .timeline-caption {
|
||
display: inline-block;
|
||
width: auto;
|
||
}
|
||
.bootstrap .timeline .timeline-item.active .timeline-date, .bootstrap .timeline .timeline-item.active .timeline-icon {
|
||
display: inline-block;
|
||
margin-bottom: 10px;
|
||
position: static;
|
||
width: auto;
|
||
}
|
||
.bootstrap .command-danger {
|
||
background-color: #d9534f !important;
|
||
}
|
||
.bootstrap .command-success {
|
||
background-color: #79bd3c !important;
|
||
}
|
||
.bootstrap .theme-container {
|
||
background-color: rgba(77, 87, 110, 0.3);
|
||
border: 1px solid #ccc;
|
||
border-radius: 3px;
|
||
height: 300px;
|
||
overflow: hidden;
|
||
position: relative;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .theme-container .theme-title {
|
||
background-color: #4d576e;
|
||
border-bottom: 1px solid #fff;
|
||
color: #fff;
|
||
font-size: 16px;
|
||
height: 40px;
|
||
line-height: 40px;
|
||
margin: 0 0 10px;
|
||
padding: 0;
|
||
text-align: center;
|
||
}
|
||
.bootstrap .theme-container .thumbnail-wrapper .action-wrapper {
|
||
display: none;
|
||
left: 0;
|
||
position: absolute;
|
||
top: 40px;
|
||
}
|
||
.bootstrap .theme-container .thumbnail-wrapper .action-wrapper .action-overlay {
|
||
background-image: linear-gradient(rgba(77, 87, 110, 0.5), #4d576e);
|
||
height: 260px;
|
||
width: 100%;
|
||
}
|
||
.bootstrap .theme-container .thumbnail-wrapper .action-wrapper .action-buttons {
|
||
position: absolute;
|
||
text-align: center;
|
||
top: 130px;
|
||
width: 100%;
|
||
}
|
||
.mce-container {
|
||
background: none repeat scroll 0 0 transparent;
|
||
border: 0 none;
|
||
box-sizing: content-box;
|
||
color: #333;
|
||
cursor: inherit;
|
||
direction: ltr;
|
||
float: none;
|
||
font-size: 12px;
|
||
font-weight: normal;
|
||
height: auto;
|
||
line-height: normal;
|
||
margin: 0;
|
||
outline: 0 none;
|
||
padding: 0;
|
||
position: static;
|
||
text-align: left;
|
||
text-decoration: none;
|
||
vertical-align: top;
|
||
white-space: nowrap;
|
||
width: auto;
|
||
}
|
||
.mce-container * {
|
||
background: none repeat scroll 0 0 transparent;
|
||
border: 0 none;
|
||
box-sizing: content-box;
|
||
color: #333;
|
||
cursor: inherit;
|
||
direction: ltr;
|
||
float: none;
|
||
font-size: 12px;
|
||
font-weight: normal;
|
||
height: auto;
|
||
line-height: normal;
|
||
margin: 0;
|
||
outline: 0 none;
|
||
padding: 0;
|
||
position: static;
|
||
text-align: left;
|
||
text-decoration: none;
|
||
vertical-align: top;
|
||
white-space: nowrap;
|
||
width: auto;
|
||
}
|
||
.mce-widget {
|
||
background: none repeat scroll 0 0 transparent;
|
||
border: 0 none;
|
||
box-sizing: content-box;
|
||
color: #333;
|
||
cursor: inherit;
|
||
direction: ltr;
|
||
float: none;
|
||
font-size: 12px;
|
||
font-weight: normal;
|
||
height: auto;
|
||
line-height: normal;
|
||
margin: 0;
|
||
outline: 0 none;
|
||
padding: 0;
|
||
position: static;
|
||
text-align: left;
|
||
text-decoration: none;
|
||
vertical-align: top;
|
||
white-space: nowrap;
|
||
width: auto;
|
||
}
|
||
.mce-widget * {
|
||
background: none repeat scroll 0 0 transparent;
|
||
border: 0 none;
|
||
box-sizing: content-box;
|
||
color: #333;
|
||
cursor: inherit;
|
||
direction: ltr;
|
||
float: none;
|
||
font-size: 12px;
|
||
font-weight: normal;
|
||
height: auto;
|
||
line-height: normal;
|
||
margin: 0;
|
||
outline: 0 none;
|
||
padding: 0;
|
||
position: static;
|
||
text-align: left;
|
||
text-decoration: none;
|
||
vertical-align: top;
|
||
white-space: nowrap;
|
||
width: auto;
|
||
}
|
||
.mce-widget button {
|
||
box-sizing: border-box;
|
||
}
|
||
.mce-container [unselectable] {
|
||
-moz-user-select: none;
|
||
}
|
||
.mce-fade {
|
||
opacity: 0;
|
||
transition: opacity 0.15s linear 0s;
|
||
}
|
||
.mce-fade.mce-in {
|
||
opacity: 1;
|
||
}
|
||
.mce-tinymce {
|
||
position: relative;
|
||
visibility: visible !important;
|
||
}
|
||
.mce-fullscreen {
|
||
border: 0 none;
|
||
height: 100%;
|
||
margin: 0;
|
||
overflow: hidden;
|
||
padding: 0;
|
||
z-index: 100;
|
||
}
|
||
div.mce-fullscreen {
|
||
height: auto;
|
||
left: 0;
|
||
position: fixed;
|
||
top: 0;
|
||
width: 100%;
|
||
}
|
||
.mce-tinymce {
|
||
border-radius: 2px;
|
||
display: block;
|
||
}
|
||
.mce-wordcount {
|
||
padding: 8px;
|
||
position: absolute;
|
||
right: 0;
|
||
top: 0;
|
||
}
|
||
div.mce-edit-area {
|
||
background: none repeat scroll 0 0 #fff;
|
||
filter: none;
|
||
padding: 1px;
|
||
}
|
||
.mce-statusbar {
|
||
position: relative;
|
||
}
|
||
.mce-statusbar .mce-container-body {
|
||
position: relative;
|
||
}
|
||
.mce-fullscreen .mce-resizehandle {
|
||
display: none;
|
||
}
|
||
.mce-charmap {
|
||
border-collapse: collapse;
|
||
}
|
||
.mce-charmap td {
|
||
border: 1px solid #9e9e9e;
|
||
cursor: default;
|
||
height: 20px;
|
||
line-height: 20px;
|
||
padding: 2px;
|
||
text-align: center;
|
||
vertical-align: middle;
|
||
width: 20px;
|
||
}
|
||
.mce-charmap td div {
|
||
text-align: center;
|
||
}
|
||
.mce-charmap td:hover {
|
||
background: none repeat scroll 0 0 #d9d9d9;
|
||
}
|
||
.mce-grid td div {
|
||
border: 1px solid #d6d6d6;
|
||
border-collapse: separate;
|
||
border-spacing: 2px;
|
||
cursor: pointer;
|
||
height: 12px;
|
||
margin: 2px;
|
||
width: 12px;
|
||
}
|
||
.mce-grid a {
|
||
border: 1px solid transparent;
|
||
display: block;
|
||
}
|
||
.mce-grid a:hover {
|
||
border-color: #a1a1a1;
|
||
}
|
||
.mce-grid-border {
|
||
margin: 0 4px;
|
||
}
|
||
.mce-grid-border a {
|
||
border-color: #d6d6d6;
|
||
height: 13px;
|
||
width: 13px;
|
||
}
|
||
.mce-grid-border a:hover, .mce-grid-border a.mce-active {
|
||
background: none repeat scroll 0 0 #c8def4;
|
||
border-color: #a1a1a1;
|
||
}
|
||
.mce-text-center {
|
||
text-align: center;
|
||
}
|
||
div.mce-tinymce-inline {
|
||
box-shadow: none;
|
||
width: 100%;
|
||
}
|
||
.mce-toolbar-grp {
|
||
padding-bottom: 2px;
|
||
}
|
||
.mce-toolbar-grp .mce-flow-layout-item {
|
||
margin-bottom: 0;
|
||
}
|
||
.mce-rtl .mce-wordcount {
|
||
left: 0;
|
||
right: auto;
|
||
}
|
||
.mce-container, .mce-container-body {
|
||
display: block;
|
||
}
|
||
.mce-autoscroll {
|
||
overflow: hidden;
|
||
}
|
||
.mce-scrollbar {
|
||
height: 100%;
|
||
opacity: 0.4;
|
||
position: absolute;
|
||
right: 2px;
|
||
top: 2px;
|
||
width: 7px;
|
||
}
|
||
.mce-scrollbar-h {
|
||
bottom: 2px;
|
||
height: 7px;
|
||
left: 2px;
|
||
right: auto;
|
||
top: auto;
|
||
width: 100%;
|
||
}
|
||
.mce-scrollbar-thumb {
|
||
background-color: #000;
|
||
border: 1px solid rgba(85, 85, 85, 0.6);
|
||
border-radius: 7px;
|
||
height: 100%;
|
||
position: absolute;
|
||
width: 5px;
|
||
}
|
||
.mce-scrollbar-h .mce-scrollbar-thumb {
|
||
height: 5px;
|
||
width: 100%;
|
||
}
|
||
.mce-scrollbar:hover, .mce-scrollbar.mce-active {
|
||
background-color: #aaa;
|
||
border-radius: 7px;
|
||
opacity: 0.6;
|
||
}
|
||
.mce-scroll {
|
||
position: relative;
|
||
}
|
||
.mce-panel {
|
||
background-color: #fcfdfe;
|
||
border: 0 solid #ccc;
|
||
}
|
||
.mce-floatpanel {
|
||
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||
position: absolute;
|
||
}
|
||
.mce-floatpanel.mce-fixed {
|
||
position: fixed;
|
||
}
|
||
.mce-floatpanel .mce-arrow {
|
||
border-color: transparent;
|
||
border-style: solid;
|
||
border-width: 11px;
|
||
display: block;
|
||
height: 0;
|
||
position: absolute;
|
||
width: 0;
|
||
}
|
||
.mce-floatpanel .mce-arrow:after {
|
||
border-color: transparent;
|
||
border-style: solid;
|
||
border-width: 10px;
|
||
content: "";
|
||
display: block;
|
||
height: 0;
|
||
position: absolute;
|
||
width: 0;
|
||
}
|
||
.mce-floatpanel.mce-popover {
|
||
background: none repeat scroll 0 0 #fff;
|
||
border: 1px solid rgba(0, 0, 0, 0.25);
|
||
border-radius: 6px;
|
||
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||
left: 0;
|
||
top: 0;
|
||
}
|
||
.mce-floatpanel.mce-popover.mce-bottom {
|
||
margin-top: 10px;
|
||
}
|
||
.mce-floatpanel.mce-popover.mce-bottom > .mce-arrow {
|
||
border-bottom-color: rgba(0, 0, 0, 0.25);
|
||
border-top-width: 0;
|
||
left: 50%;
|
||
margin-left: -11px;
|
||
top: -11px;
|
||
}
|
||
.mce-floatpanel.mce-popover.mce-bottom > .mce-arrow:after {
|
||
border-bottom-color: #fff;
|
||
border-top-width: 0;
|
||
margin-left: -10px;
|
||
top: 1px;
|
||
}
|
||
.mce-floatpanel.mce-popover.mce-bottom.mce-start {
|
||
margin-left: -22px;
|
||
}
|
||
.mce-floatpanel.mce-popover.mce-bottom.mce-start > .mce-arrow {
|
||
left: 20px;
|
||
}
|
||
.mce-floatpanel.mce-popover.mce-bottom.mce-end {
|
||
margin-left: 22px;
|
||
}
|
||
.mce-floatpanel.mce-popover.mce-bottom.mce-end > .mce-arrow {
|
||
left: auto;
|
||
right: 10px;
|
||
}
|
||
.mce-fullscreen {
|
||
background: none repeat scroll 0 0 #fff;
|
||
border: 0 none;
|
||
height: 100%;
|
||
margin: 0;
|
||
overflow: hidden;
|
||
padding: 0;
|
||
}
|
||
div.mce-fullscreen {
|
||
left: 0;
|
||
position: fixed;
|
||
top: 0;
|
||
}
|
||
#mce-modal-block {
|
||
background: none repeat scroll 0 0 #000;
|
||
height: 100%;
|
||
left: 0;
|
||
opacity: 0;
|
||
position: fixed;
|
||
top: 0;
|
||
width: 100%;
|
||
}
|
||
#mce-modal-block.mce-in {
|
||
opacity: 0.3;
|
||
}
|
||
.mce-window-move {
|
||
cursor: move;
|
||
}
|
||
.mce-window {
|
||
background: none repeat scroll 0 0 #fff;
|
||
border-radius: 6px;
|
||
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
||
left: 0;
|
||
opacity: 0;
|
||
position: fixed;
|
||
top: 0;
|
||
transition: opacity 150ms ease-in 0s;
|
||
}
|
||
.mce-window.mce-in {
|
||
opacity: 1;
|
||
}
|
||
.mce-window-head {
|
||
border-bottom: 1px solid #c5c5c5;
|
||
padding: 9px 15px;
|
||
position: relative;
|
||
}
|
||
.mce-window-head .mce-close {
|
||
color: #858585;
|
||
cursor: pointer;
|
||
font-size: 18px;
|
||
font-weight: bold;
|
||
height: 20px;
|
||
line-height: 20px;
|
||
overflow: hidden;
|
||
position: absolute;
|
||
right: 15px;
|
||
top: 9px;
|
||
}
|
||
.mce-close:hover {
|
||
color: #adadad;
|
||
}
|
||
.mce-window-head .mce-title {
|
||
font-size: 14px;
|
||
font-weight: normal;
|
||
line-height: 20px;
|
||
padding-right: 10px;
|
||
text-rendering: optimizelegibility;
|
||
}
|
||
.mce-window .mce-container-body {
|
||
display: block;
|
||
}
|
||
.mce-foot {
|
||
background-color: #fff;
|
||
border-radius: 0 0 6px 6px;
|
||
border-top: 1px solid #c5c5c5;
|
||
display: block;
|
||
}
|
||
.mce-window-head .mce-dragh {
|
||
cursor: move;
|
||
height: 100%;
|
||
left: 0;
|
||
position: absolute;
|
||
top: 0;
|
||
width: 90%;
|
||
}
|
||
.mce-window iframe {
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
.mce-window.mce-fullscreen {
|
||
border-radius: 0;
|
||
}
|
||
.mce-window.mce-fullscreen .mce-foot {
|
||
border-radius: 0;
|
||
}
|
||
.mce-rtl .mce-window-head .mce-close {
|
||
left: 15px;
|
||
position: absolute;
|
||
right: auto;
|
||
}
|
||
.mce-rtl .mce-window-head .mce-dragh {
|
||
left: auto;
|
||
right: 0;
|
||
}
|
||
.mce-rtl .mce-window-head .mce-title {
|
||
direction: rtl;
|
||
text-align: right;
|
||
}
|
||
.mce-abs-layout {
|
||
position: relative;
|
||
}
|
||
body .mce-abs-layout-item {
|
||
position: absolute;
|
||
}
|
||
.mce-abs-end {
|
||
height: 1px;
|
||
position: absolute;
|
||
width: 1px;
|
||
}
|
||
.mce-container-body.mce-abs-layout {
|
||
overflow: hidden;
|
||
}
|
||
.mce-tooltip {
|
||
padding: 5px;
|
||
position: absolute;
|
||
}
|
||
.mce-tooltip-inner {
|
||
background-color: #000;
|
||
border-radius: 3px;
|
||
color: #fff;
|
||
font-size: 12px;
|
||
max-width: 200px;
|
||
padding: 5px 8px 4px;
|
||
text-align: center;
|
||
white-space: normal;
|
||
}
|
||
.mce-tooltip-arrow {
|
||
border: 5px dashed #000;
|
||
height: 0;
|
||
line-height: 0;
|
||
position: absolute;
|
||
width: 0;
|
||
}
|
||
.mce-tooltip-arrow-n {
|
||
border-bottom-color: #000;
|
||
}
|
||
.mce-tooltip-arrow-s {
|
||
border-top-color: #000;
|
||
}
|
||
.mce-tooltip-arrow-e {
|
||
border-right-color: #000;
|
||
}
|
||
.mce-tooltip-arrow-w {
|
||
border-left-color: #000;
|
||
}
|
||
.mce-tooltip-nw, .mce-tooltip-sw {
|
||
margin-left: -14px;
|
||
}
|
||
.mce-tooltip-n .mce-tooltip-arrow {
|
||
border-bottom-style: solid;
|
||
border-left-color: transparent;
|
||
border-right-color: transparent;
|
||
border-top: medium none;
|
||
left: 50%;
|
||
margin-left: -5px;
|
||
top: 0;
|
||
}
|
||
.mce-tooltip-nw .mce-tooltip-arrow {
|
||
border-bottom-style: solid;
|
||
border-left-color: transparent;
|
||
border-right-color: transparent;
|
||
border-top: medium none;
|
||
left: 10px;
|
||
top: 0;
|
||
}
|
||
.mce-tooltip-ne .mce-tooltip-arrow {
|
||
border-bottom-style: solid;
|
||
border-left-color: transparent;
|
||
border-right-color: transparent;
|
||
border-top: medium none;
|
||
right: 10px;
|
||
top: 0;
|
||
}
|
||
.mce-tooltip-s .mce-tooltip-arrow {
|
||
border-bottom: medium none;
|
||
border-left-color: transparent;
|
||
border-right-color: transparent;
|
||
border-top-style: solid;
|
||
bottom: 0;
|
||
left: 50%;
|
||
margin-left: -5px;
|
||
}
|
||
.mce-tooltip-sw .mce-tooltip-arrow {
|
||
border-bottom: medium none;
|
||
border-left-color: transparent;
|
||
border-right-color: transparent;
|
||
border-top-style: solid;
|
||
bottom: 0;
|
||
left: 10px;
|
||
}
|
||
.mce-tooltip-se .mce-tooltip-arrow {
|
||
border-bottom: medium none;
|
||
border-left-color: transparent;
|
||
border-right-color: transparent;
|
||
border-top-style: solid;
|
||
bottom: 0;
|
||
right: 10px;
|
||
}
|
||
.mce-tooltip-e .mce-tooltip-arrow {
|
||
border-bottom-color: transparent;
|
||
border-left-style: solid;
|
||
border-right: medium none;
|
||
border-top-color: transparent;
|
||
margin-top: -5px;
|
||
right: 0;
|
||
top: 50%;
|
||
}
|
||
.mce-tooltip-w .mce-tooltip-arrow {
|
||
border-bottom-color: transparent;
|
||
border-left-style: solid;
|
||
border-right: medium none;
|
||
border-top-color: transparent;
|
||
left: 0;
|
||
margin-top: -5px;
|
||
top: 50%;
|
||
}
|
||
.mce-btn {
|
||
background-color: #fff;
|
||
box-shadow: 0 -2px 0 #eee inset;
|
||
display: inline-block;
|
||
position: relative;
|
||
}
|
||
.mce-btn:hover, .mce-btn:focus {
|
||
background-color: #eee;
|
||
box-shadow: 0 -2px 0 #ddd inset;
|
||
color: #eee;
|
||
}
|
||
.mce-btn.mce-disabled button, .mce-btn.mce-disabled:hover button {
|
||
box-shadow: none;
|
||
cursor: default;
|
||
opacity: 0.4;
|
||
}
|
||
.mce-btn.mce-active {
|
||
background-color: #d6d6d6;
|
||
}
|
||
.mce-btn.mce-active:hover {
|
||
background-color: #d6d6d6;
|
||
}
|
||
.mce-btn:active:not(.mce-disabled) {
|
||
background-color: #d6d6d6;
|
||
}
|
||
.mce-btn button {
|
||
color: #333;
|
||
cursor: pointer;
|
||
font-size: 12px;
|
||
overflow: visible;
|
||
padding: 2px 6px;
|
||
text-align: center;
|
||
}
|
||
.mce-btn button::-moz-focus-inner {
|
||
border: 0 none;
|
||
padding: 0;
|
||
}
|
||
.mce-primary {
|
||
-moz-border-bottom-colors: none;
|
||
-moz-border-left-colors: none;
|
||
-moz-border-right-colors: none;
|
||
-moz-border-top-colors: none;
|
||
background-color: #006dcc;
|
||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25) rgba(0, 0, 0, 0.25);
|
||
border-image: none;
|
||
border-style: solid;
|
||
border-width: 1px;
|
||
color: #fff;
|
||
min-width: 50px;
|
||
}
|
||
.mce-primary:hover, .mce-primary:focus {
|
||
background-color: #005fb3;
|
||
}
|
||
.mce-primary.mce-disabled button, .mce-primary.mce-disabled:hover button {
|
||
box-shadow: none;
|
||
cursor: default;
|
||
opacity: 0.4;
|
||
}
|
||
.mce-primary.mce-active {
|
||
background-color: #005299;
|
||
}
|
||
.mce-primary.mce-active:hover {
|
||
background-color: #005299;
|
||
}
|
||
.mce-primary:active:not(.mce-disabled) {
|
||
background-color: #005299;
|
||
}
|
||
.mce-primary button {
|
||
color: #fff;
|
||
}
|
||
.mce-primary button i {
|
||
color: #fff;
|
||
}
|
||
.mce-btn-large button {
|
||
border-radius: 5px;
|
||
font-size: 12px;
|
||
line-height: normal;
|
||
padding: 9px 14px;
|
||
}
|
||
.mce-btn-large i {
|
||
margin-top: 2px;
|
||
}
|
||
.mce-btn-small button {
|
||
font-size: 12px;
|
||
padding: 1px 5px;
|
||
}
|
||
.mce-btn-small i {
|
||
line-height: 20px;
|
||
vertical-align: top;
|
||
}
|
||
.mce-btn .mce-caret, .mce-btn-small .mce-caret {
|
||
margin-left: 0;
|
||
margin-top: 8px;
|
||
}
|
||
.mce-caret {
|
||
border-left: 4px solid transparent;
|
||
border-right: 4px solid transparent;
|
||
border-top: 4px solid #333;
|
||
content: "";
|
||
display: inline-block;
|
||
height: 0;
|
||
vertical-align: top;
|
||
width: 0;
|
||
}
|
||
.mce-disabled .mce-caret {
|
||
border-top-color: #aaa;
|
||
}
|
||
.mce-caret.mce-up {
|
||
border-bottom: 4px solid #333;
|
||
border-top: 0 none;
|
||
}
|
||
.mce-rtl .mce-btn button {
|
||
direction: rtl;
|
||
}
|
||
.mce-btn-group .mce-btn {
|
||
-moz-border-bottom-colors: none;
|
||
-moz-border-left-colors: none;
|
||
-moz-border-right-colors: none;
|
||
-moz-border-top-colors: none;
|
||
border-color: #ccc -moz-use-text-color #ccc #ccc;
|
||
border-image: none;
|
||
border-radius: 0;
|
||
border-style: solid none solid solid;
|
||
border-width: 1px medium 1px 1px;
|
||
}
|
||
.mce-btn-group .mce-first {
|
||
border-radius: 3px 0 0 3px;
|
||
}
|
||
.mce-btn-group .mce-last {
|
||
border-radius: 0 3px 3px 0;
|
||
border-right: 1px solid #ccc;
|
||
}
|
||
.mce-btn-group .mce-first.mce-last {
|
||
border-radius: 3px;
|
||
}
|
||
.mce-btn-group .mce-btn.mce-flow-layout-item {
|
||
margin: 0;
|
||
}
|
||
.mce-checkbox {
|
||
cursor: pointer;
|
||
}
|
||
i.mce-i-checkbox {
|
||
background-color: #f0f0f0;
|
||
border: 1px solid #c5c5c5;
|
||
border-radius: 3px;
|
||
display: inline-block;
|
||
height: 14px;
|
||
margin: 0 3px 0 0;
|
||
overflow: hidden;
|
||
text-align: center;
|
||
text-indent: -10em;
|
||
width: 14px;
|
||
}
|
||
.mce-checked i.mce-i-checkbox {
|
||
color: #333;
|
||
font-size: 12px;
|
||
line-height: 16px;
|
||
text-indent: 0;
|
||
}
|
||
.mce-checkbox:focus i.mce-i-checkbox, .mce-checkbox.mce-focus i.mce-i-checkbox {
|
||
border: 1px solid rgba(82, 168, 236, 0.8);
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.65);
|
||
}
|
||
.mce-checkbox.mce-disabled .mce-label, .mce-checkbox.mce-disabled i.mce-i-checkbox {
|
||
color: #acacac;
|
||
}
|
||
.mce-rtl .mce-checkbox {
|
||
direction: rtl;
|
||
text-align: right;
|
||
}
|
||
.mce-rtl i.mce-i-checkbox {
|
||
margin: 0 0 0 3px;
|
||
}
|
||
.mce-colorbutton .mce-ico {
|
||
position: relative;
|
||
}
|
||
.mce-colorbutton-grid {
|
||
margin: 4px;
|
||
}
|
||
.mce-colorbutton button {
|
||
padding-right: 4px;
|
||
}
|
||
.mce-colorbutton .mce-preview {
|
||
background: none repeat scroll 0 0 gray;
|
||
display: block;
|
||
height: 2px;
|
||
left: 50%;
|
||
margin-left: -14px;
|
||
margin-top: 7px;
|
||
overflow: hidden;
|
||
padding-right: 3px;
|
||
position: absolute;
|
||
top: 50%;
|
||
width: 13px;
|
||
}
|
||
.mce-colorbutton.mce-btn-small .mce-preview {
|
||
margin-left: -16px;
|
||
padding-right: 0;
|
||
width: 16px;
|
||
}
|
||
.mce-colorbutton .mce-open {
|
||
border-left: 1px solid transparent;
|
||
border-right: 1px solid transparent;
|
||
padding-left: 4px;
|
||
}
|
||
.mce-colorbutton:hover .mce-open {
|
||
border-left-color: #bdbdbd;
|
||
border-right-color: #bdbdbd;
|
||
}
|
||
.mce-colorbutton.mce-btn-small .mce-open {
|
||
padding: 0 3px;
|
||
}
|
||
.mce-rtl .mce-colorbutton {
|
||
direction: rtl;
|
||
}
|
||
.mce-rtl .mce-colorbutton .mce-preview {
|
||
margin-left: 0;
|
||
margin-right: 14px;
|
||
padding-left: 4px;
|
||
padding-right: 0;
|
||
}
|
||
.mce-rtl .mce-colorbutton.mce-btn-small .mce-preview {
|
||
margin-left: 0;
|
||
margin-right: -17px;
|
||
padding-left: 0;
|
||
padding-right: 0;
|
||
}
|
||
.mce-rtl .mce-colorbutton button {
|
||
padding-left: 10px;
|
||
padding-right: 10px;
|
||
}
|
||
.mce-rtl .mce-colorbutton .mce-open {
|
||
padding-left: 4px;
|
||
padding-right: 4px;
|
||
}
|
||
.mce-combobox {
|
||
display: inline-block;
|
||
}
|
||
.mce-combobox input {
|
||
border: 1px solid #c5c5c5;
|
||
height: 28px;
|
||
}
|
||
.mce-combobox.mce-disabled input {
|
||
color: #adadad;
|
||
}
|
||
.mce-combobox.mce-has-open input {
|
||
border-radius: 4px 0 0 4px;
|
||
}
|
||
.mce-combobox .mce-btn {
|
||
background-color: #c5c5c5;
|
||
border-left: 0 none;
|
||
border-radius: 0 4px 4px 0;
|
||
box-shadow: 0 -2px 0 #aaa inset;
|
||
}
|
||
.mce-combobox button {
|
||
height: 26px;
|
||
}
|
||
.mce-combobox.mce-disabled .mce-btn button {
|
||
box-shadow: none;
|
||
cursor: default;
|
||
opacity: 0.4;
|
||
}
|
||
.mce-path {
|
||
display: inline-block;
|
||
padding: 8px;
|
||
white-space: normal;
|
||
}
|
||
.mce-path .mce-txt {
|
||
display: inline-block;
|
||
padding-right: 3px;
|
||
}
|
||
.mce-path .mce-path-body {
|
||
display: inline-block;
|
||
}
|
||
.mce-path-item {
|
||
color: #333;
|
||
cursor: pointer;
|
||
display: inline-block;
|
||
}
|
||
.mce-path-item:hover {
|
||
text-decoration: underline;
|
||
}
|
||
.mce-path-item:focus {
|
||
background: none repeat scroll 0 0 #666;
|
||
color: #fff;
|
||
}
|
||
.mce-path .mce-divider {
|
||
display: inline;
|
||
}
|
||
.mce-disabled .mce-path-item {
|
||
color: #aaa;
|
||
}
|
||
.mce-rtl .mce-path {
|
||
direction: rtl;
|
||
}
|
||
.mce-fieldset {
|
||
border: 0 solid #9e9e9e;
|
||
border-radius: 3px;
|
||
}
|
||
.mce-fieldset > .mce-container-body {
|
||
margin-top: -15px;
|
||
}
|
||
.mce-fieldset-title {
|
||
margin-left: 5px;
|
||
padding: 0 5px;
|
||
}
|
||
.mce-fit-layout {
|
||
display: inline-block;
|
||
}
|
||
.mce-fit-layout-item {
|
||
position: absolute;
|
||
}
|
||
.mce-flow-layout-item {
|
||
display: inline-block;
|
||
margin: 2px 0 2px 2px;
|
||
}
|
||
.mce-flow-layout-item.mce-last {
|
||
margin-right: 2px;
|
||
}
|
||
.mce-flow-layout {
|
||
white-space: normal;
|
||
}
|
||
.mce-tinymce-inline .mce-flow-layout {
|
||
white-space: nowrap;
|
||
}
|
||
.mce-rtl .mce-flow-layout {
|
||
direction: rtl;
|
||
text-align: right;
|
||
}
|
||
.mce-rtl .mce-flow-layout-item {
|
||
margin: 2px 2px 2px 0;
|
||
}
|
||
.mce-rtl .mce-flow-layout-item.mce-last {
|
||
margin-left: 2px;
|
||
}
|
||
.mce-iframe {
|
||
border: 0 solid #9e9e9e;
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
.mce-label {
|
||
border: 0 none;
|
||
display: inline-block;
|
||
overflow: hidden;
|
||
}
|
||
.mce-label.mce-autoscroll {
|
||
overflow: auto;
|
||
}
|
||
.mce-label.mce-disabled {
|
||
color: #aaa;
|
||
}
|
||
.mce-label.mce-multiline {
|
||
white-space: pre-wrap;
|
||
}
|
||
.mce-rtl .mce-label {
|
||
direction: rtl;
|
||
text-align: right;
|
||
}
|
||
.mce-menubar {
|
||
border: 1px solid #eee;
|
||
}
|
||
.mce-menubar .mce-menubtn {
|
||
background: none repeat scroll 0 0 transparent;
|
||
border-color: transparent;
|
||
border-radius: 0;
|
||
box-shadow: none;
|
||
filter: none;
|
||
}
|
||
.mce-menubar .mce-menubtn button span {
|
||
color: #333;
|
||
}
|
||
.mce-menubar .mce-caret {
|
||
border-top-color: #333;
|
||
}
|
||
.mce-menubar .mce-menubtn:hover, .mce-menubar .mce-menubtn.mce-active, .mce-menubar .mce-menubtn:focus {
|
||
background: none repeat scroll 0 0 #e6e6e6;
|
||
border-color: transparent;
|
||
box-shadow: none;
|
||
filter: none;
|
||
}
|
||
.mce-menubtn.mce-disabled span {
|
||
color: #aaa;
|
||
}
|
||
.mce-menubtn span {
|
||
color: #333;
|
||
line-height: 20px;
|
||
margin-right: 2px;
|
||
}
|
||
.mce-menubtn.mce-btn-small span {
|
||
font-size: 12px;
|
||
}
|
||
.mce-menubtn.mce-fixed-width span {
|
||
display: inline-block;
|
||
overflow-x: hidden;
|
||
text-overflow: ellipsis;
|
||
width: 90px;
|
||
}
|
||
.mce-menubtn.mce-fixed-width.mce-btn-small span {
|
||
width: 70px;
|
||
}
|
||
.mce-menubtn .mce-caret {
|
||
}
|
||
.mce-rtl .mce-menubtn button {
|
||
direction: rtl;
|
||
text-align: right;
|
||
}
|
||
.mce-listbox button {
|
||
padding-right: 20px;
|
||
position: relative;
|
||
text-align: left;
|
||
}
|
||
.mce-listbox .mce-caret {
|
||
margin-top: -2px;
|
||
position: absolute;
|
||
right: 8px;
|
||
top: 50%;
|
||
}
|
||
.mce-rtl .mce-listbox .mce-caret {
|
||
left: 8px;
|
||
right: auto;
|
||
}
|
||
.mce-rtl .mce-listbox button {
|
||
padding-left: 20px;
|
||
padding-right: 10px;
|
||
}
|
||
.mce-menu-item {
|
||
border-left: 4px solid transparent;
|
||
clear: both;
|
||
color: #333;
|
||
cursor: pointer;
|
||
display: block;
|
||
font-weight: normal;
|
||
line-height: normal;
|
||
margin-bottom: 1px;
|
||
padding: 6px 15px 6px 12px;
|
||
white-space: nowrap;
|
||
}
|
||
.mce-menu-item .mce-ico, .mce-menu-item .mce-text {
|
||
color: #333;
|
||
}
|
||
.mce-menu-item.mce-disabled .mce-text, .mce-menu-item.mce-disabled .mce-ico {
|
||
color: #adadad;
|
||
}
|
||
.mce-menu-item:hover .mce-text, .mce-menu-item.mce-selected .mce-text, .mce-menu-item:hover .mce-ico, .mce-menu-item.mce-selected .mce-ico, .mce-menu-item:focus .mce-ico {
|
||
color: #fff;
|
||
}
|
||
.mce-menu-item.mce-disabled:hover {
|
||
background: none repeat scroll 0 0 #ccc;
|
||
}
|
||
.mce-menu-shortcut {
|
||
color: #adadad;
|
||
display: inline-block;
|
||
padding: 0 15px 0 20px;
|
||
}
|
||
.mce-menu-item:hover .mce-menu-shortcut, .mce-menu-item.mce-selected .mce-menu-shortcut, .mce-menu-item:focus .mce-menu-shortcut {
|
||
color: #fff;
|
||
}
|
||
.mce-menu-item .mce-caret {
|
||
border-bottom: 4px solid transparent;
|
||
border-left: 4px solid #333;
|
||
border-top: 4px solid transparent;
|
||
margin-right: 6px;
|
||
margin-top: 4px;
|
||
}
|
||
.mce-menu-item.mce-selected .mce-caret, .mce-menu-item:focus .mce-caret, .mce-menu-item:hover .mce-caret {
|
||
border-left-color: #fff;
|
||
}
|
||
.mce-menu-align .mce-menu-shortcut {
|
||
position: absolute;
|
||
right: 0;
|
||
}
|
||
.mce-menu-align .mce-caret {
|
||
position: absolute;
|
||
right: 0;
|
||
}
|
||
.mce-menu-item.mce-active i {
|
||
visibility: visible;
|
||
}
|
||
.mce-menu-item-normal.mce-active {
|
||
background-color: #c8def4;
|
||
}
|
||
.mce-menu-item-preview.mce-active {
|
||
border-left: 5px solid #aaa;
|
||
}
|
||
.mce-menu-item-normal.mce-active .mce-text {
|
||
color: #333;
|
||
}
|
||
.mce-menu-item-normal.mce-active:hover .mce-text, .mce-menu-item-normal.mce-active:hover .mce-ico {
|
||
color: #fff;
|
||
}
|
||
.mce-menu-item:hover, .mce-menu-item.mce-selected, .mce-menu-item:focus {
|
||
background-color: #0081c2;
|
||
color: #fff;
|
||
text-decoration: none;
|
||
}
|
||
div.mce-menu .mce-menu-item-sep, .mce-menu-item-sep:hover {
|
||
-moz-border-bottom-colors: none;
|
||
-moz-border-left-colors: none;
|
||
-moz-border-right-colors: none;
|
||
-moz-border-top-colors: none;
|
||
background: none repeat scroll 0 0 #cbcbcb;
|
||
border-color: -moz-use-text-color -moz-use-text-color #fff;
|
||
border-image: none;
|
||
border-style: none none solid;
|
||
border-width: 0 0 1px;
|
||
cursor: default;
|
||
filter: none;
|
||
height: 1px;
|
||
margin: 9px 1px;
|
||
overflow: hidden;
|
||
padding: 0;
|
||
}
|
||
.mce-menu.mce-rtl {
|
||
direction: rtl;
|
||
}
|
||
.mce-rtl .mce-menu-item {
|
||
direction: rtl;
|
||
padding: 6px 12px 6px 15px;
|
||
text-align: right;
|
||
}
|
||
.mce-menu-align.mce-rtl .mce-menu-shortcut, .mce-menu-align.mce-rtl .mce-caret {
|
||
left: 0;
|
||
right: auto;
|
||
}
|
||
.mce-rtl .mce-menu-item .mce-caret {
|
||
border-left: 0 none;
|
||
border-right: 4px solid #333;
|
||
margin-left: 6px;
|
||
margin-right: 0;
|
||
}
|
||
.mce-rtl .mce-menu-item.mce-selected .mce-caret, .mce-rtl .mce-menu-item:focus .mce-caret, .mce-rtl .mce-menu-item:hover .mce-caret {
|
||
border-left-color: transparent;
|
||
border-right-color: #fff;
|
||
}
|
||
.mce-menu {
|
||
background: none repeat scroll 0 0 #fff;
|
||
border: 1px solid rgba(0, 0, 0, 0.2);
|
||
border-radius: 6px;
|
||
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||
left: 0;
|
||
margin: 2px 0 0;
|
||
max-height: 400px;
|
||
min-width: 160px;
|
||
overflow-x: hidden;
|
||
overflow-y: auto;
|
||
padding: 5px 0;
|
||
position: absolute;
|
||
top: 0;
|
||
z-index: 1002;
|
||
}
|
||
.mce-menu i {
|
||
display: none;
|
||
}
|
||
.mce-menu-has-icons i {
|
||
display: inline-block;
|
||
}
|
||
.mce-menu-sub-tr-tl {
|
||
margin: -6px 0 0 -1px;
|
||
}
|
||
.mce-menu-sub-br-bl {
|
||
margin: 6px 0 0 -1px;
|
||
}
|
||
.mce-menu-sub-tl-tr {
|
||
margin: -6px 0 0 1px;
|
||
}
|
||
.mce-menu-sub-bl-br {
|
||
margin: 6px 0 0 1px;
|
||
}
|
||
.mce-container-body .mce-resizehandle {
|
||
bottom: 0;
|
||
cursor: s-resize;
|
||
height: 16px;
|
||
margin: 0;
|
||
position: absolute;
|
||
right: 0;
|
||
visibility: visible;
|
||
width: 16px;
|
||
}
|
||
.mce-container-body .mce-resizehandle-both {
|
||
cursor: se-resize;
|
||
}
|
||
i.mce-i-resize {
|
||
color: #333;
|
||
}
|
||
.mce-spacer {
|
||
visibility: hidden;
|
||
}
|
||
.mce-splitbtn .mce-open {
|
||
border-left: 1px solid transparent;
|
||
border-right: 1px solid transparent;
|
||
}
|
||
.mce-splitbtn button {
|
||
padding-right: 4px;
|
||
}
|
||
.mce-splitbtn .mce-open {
|
||
padding-left: 4px;
|
||
}
|
||
.mce-splitbtn .mce-open.mce-active {
|
||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15) inset, 0 1px 2px rgba(0, 0, 0, 0.05);
|
||
}
|
||
.mce-splitbtn.mce-btn-small .mce-open {
|
||
padding: 0 3px;
|
||
}
|
||
.mce-rtl .mce-splitbtn {
|
||
direction: rtl;
|
||
text-align: right;
|
||
}
|
||
.mce-rtl .mce-splitbtn button {
|
||
padding-left: 10px;
|
||
padding-right: 10px;
|
||
}
|
||
.mce-rtl .mce-splitbtn .mce-open {
|
||
padding-left: 4px;
|
||
padding-right: 4px;
|
||
}
|
||
.mce-stack-layout-item {
|
||
display: block;
|
||
}
|
||
.mce-tabs {
|
||
border-bottom: 1px solid #c5c5c5;
|
||
display: block;
|
||
}
|
||
.mce-tab {
|
||
-moz-border-bottom-colors: none;
|
||
-moz-border-left-colors: none;
|
||
-moz-border-right-colors: none;
|
||
-moz-border-top-colors: none;
|
||
background: none repeat scroll 0 0 #e3e3e3;
|
||
border-color: #c5c5c5;
|
||
border-image: none;
|
||
border-style: solid;
|
||
border-width: 0 1px 0 0;
|
||
cursor: pointer;
|
||
display: inline-block;
|
||
height: 13px;
|
||
padding: 8px;
|
||
}
|
||
.mce-tab:hover {
|
||
background: none repeat scroll 0 0 #fdfdfd;
|
||
}
|
||
.mce-tab.mce-active {
|
||
background: none repeat scroll 0 0 #fdfdfd;
|
||
border-bottom-color: transparent;
|
||
height: 14px;
|
||
margin-bottom: -1px;
|
||
}
|
||
.mce-rtl .mce-tabs {
|
||
direction: rtl;
|
||
text-align: right;
|
||
}
|
||
.mce-rtl .mce-tab {
|
||
border-width: 0 0 0 1px;
|
||
}
|
||
.mce-textbox {
|
||
background: none repeat scroll 0 0 #fff;
|
||
border: 1px solid #c5c5c5;
|
||
border-radius: 3px;
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
||
color: #333;
|
||
display: inline-block;
|
||
height: 28px;
|
||
padding: 0 4px;
|
||
resize: none;
|
||
transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
|
||
white-space: pre-wrap;
|
||
}
|
||
.mce-textbox:focus, .mce-textbox.mce-focus {
|
||
border-color: rgba(82, 168, 236, 0.8);
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.65);
|
||
}
|
||
.mce-placeholder .mce-textbox {
|
||
color: #aaa;
|
||
}
|
||
.mce-textbox.mce-multiline {
|
||
padding: 4px;
|
||
}
|
||
.mce-textbox.mce-disabled {
|
||
color: #adadad;
|
||
}
|
||
.mce-rtl .mce-textbox {
|
||
direction: rtl;
|
||
text-align: right;
|
||
}
|
||
.mce-throbber {
|
||
background: url("img/loader.gif") no-repeat scroll center center #fff;
|
||
height: 100%;
|
||
left: 0;
|
||
opacity: 0.6;
|
||
position: absolute;
|
||
top: 0;
|
||
width: 100%;
|
||
}
|
||
.mce-i-none {
|
||
height: 16px;
|
||
margin: 2px 0;
|
||
width: 16px;
|
||
}
|
||
.mce-ico {
|
||
font-size: 14px;
|
||
line-height: 20px;
|
||
}
|
||
.mce-i-save:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-newdocument:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-fullpage:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-alignleft:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-aligncenter:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-alignright:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-alignjustify:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-cut:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-paste:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-searchreplace:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-bullist:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-numlist:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-indent:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-outdent:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-blockquote:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-undo:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-redo:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-link:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-unlink:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-anchor:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-image:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-media:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-help:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-code:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-inserttime:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-preview:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-forecolor:before, .mce-i-backcolor:before {
|
||
content: "";
|
||
}
|
||
.mce-i-table:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-hr:before {
|
||
content: "";
|
||
}
|
||
.mce-i-removeformat:before {
|
||
content: "";
|
||
}
|
||
.mce-i-subscript:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-superscript:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-charmap:before {
|
||
content: "";
|
||
}
|
||
.mce-i-emoticons:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-print:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-fullscreen:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-spellchecker:before {
|
||
content: "";
|
||
}
|
||
.mce-i-nonbreaking:before {
|
||
content: "";
|
||
}
|
||
.mce-i-template:before {
|
||
content: "";
|
||
}
|
||
.mce-i-pagebreak:before {
|
||
content: "";
|
||
}
|
||
.mce-i-restoredraft:before {
|
||
content: "";
|
||
}
|
||
.mce-i-untitled:before {
|
||
content: "";
|
||
}
|
||
.mce-i-bold:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-italic:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-underline:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-strikethrough:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-visualchars:before, .mce-i-visualblocks:before {
|
||
content: "";
|
||
}
|
||
.mce-i-ltr:before {
|
||
content: "";
|
||
}
|
||
.mce-i-rtl:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-copy:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-resize:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-browse:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-pastetext:before {
|
||
content: "";
|
||
}
|
||
.mce-i-checkbox:before {
|
||
content: "?";
|
||
}
|
||
.mce-i-selected {
|
||
visibility: hidden;
|
||
}
|
||
.mce-i-selected:before {
|
||
content: "?";
|
||
}
|
||
i.mce-i-backcolor {
|
||
background: none repeat scroll 0 0 #bbb;
|
||
}
|
||
#growls {
|
||
position: fixed;
|
||
z-index: 50000;
|
||
}
|
||
#growls.default {
|
||
right: 10px;
|
||
top: 100px;
|
||
}
|
||
#growls.tl {
|
||
left: 10px;
|
||
top: 10px;
|
||
}
|
||
#growls.tr {
|
||
right: 10px;
|
||
top: 10px;
|
||
}
|
||
#growls.bl {
|
||
bottom: 10px;
|
||
left: 10px;
|
||
}
|
||
#growls.br {
|
||
bottom: 10px;
|
||
right: 10px;
|
||
}
|
||
.growl {
|
||
border-radius: 4px;
|
||
opacity: 1;
|
||
position: relative;
|
||
transition: all 0.4s ease-in-out 0s;
|
||
}
|
||
.growl.growl-incoming {
|
||
opacity: 0;
|
||
}
|
||
.growl.growl-outgoing {
|
||
opacity: 0;
|
||
}
|
||
.growl.growl-small {
|
||
margin: 5px;
|
||
padding: 5px;
|
||
width: 200px;
|
||
}
|
||
.growl.growl-medium {
|
||
margin: 10px;
|
||
padding: 10px;
|
||
width: 250px;
|
||
}
|
||
.growl.growl-large {
|
||
margin: 15px;
|
||
padding: 15px;
|
||
width: 300px;
|
||
}
|
||
.growl.growl-default {
|
||
background: none repeat scroll 0 0 gray;
|
||
color: #fff;
|
||
}
|
||
.growl.growl-error {
|
||
background: none repeat scroll 0 0 rgba(217, 83, 79, 0.8);
|
||
color: #fff;
|
||
}
|
||
.growl.growl-notice {
|
||
background: none repeat scroll 0 0 rgba(121, 189, 60, 0.8);
|
||
color: #fff;
|
||
}
|
||
.growl.growl-warning {
|
||
background: none repeat scroll 0 0 rgba(240, 173, 78, 0.8);
|
||
color: #fff;
|
||
}
|
||
.growl .growl-close {
|
||
cursor: pointer;
|
||
float: right;
|
||
font-family: helvetica,verdana,sans-serif;
|
||
font-size: 14px;
|
||
font-weight: normal;
|
||
line-height: 18px;
|
||
}
|
||
.growl .growl-title {
|
||
font-size: 18px;
|
||
line-height: 24px;
|
||
}
|
||
.growl .growl-message {
|
||
font-size: 14px;
|
||
line-height: 18px;
|
||
}
|
||
.chosen-select {
|
||
width: 100%;
|
||
}
|
||
.chosen-select-deselect {
|
||
width: 100%;
|
||
}
|
||
.chosen-container {
|
||
display: inline-block;
|
||
font-size: 12px;
|
||
position: relative;
|
||
vertical-align: middle;
|
||
}
|
||
.chosen-container .chosen-drop {
|
||
-moz-border-bottom-colors: none;
|
||
-moz-border-left-colors: none;
|
||
-moz-border-right-colors: none;
|
||
-moz-border-top-colors: none;
|
||
background: none repeat scroll 0 0 #fff;
|
||
border-bottom-left-radius: 3px;
|
||
border-bottom-right-radius: 3px;
|
||
border-color: #d9d9d9 #999 #999;
|
||
border-image: none;
|
||
border-right: 1px solid #999;
|
||
border-style: solid;
|
||
border-width: 1px;
|
||
box-shadow: 0 8px 8px rgba(0, 0, 0, 0.25);
|
||
left: -9000px;
|
||
margin-top: -1px;
|
||
position: absolute;
|
||
top: 100%;
|
||
z-index: 1060;
|
||
}
|
||
.chosen-container.chosen-with-drop .chosen-drop {
|
||
left: 0;
|
||
right: 0;
|
||
}
|
||
.chosen-container .chosen-results {
|
||
color: #555;
|
||
margin: 0 4px 4px 0;
|
||
max-height: 240px;
|
||
overflow-x: hidden;
|
||
overflow-y: auto;
|
||
padding: 0 0 0 4px;
|
||
position: relative;
|
||
}
|
||
.chosen-container .chosen-results li {
|
||
display: none;
|
||
line-height: 1.42857;
|
||
list-style: outside none none;
|
||
margin: 0;
|
||
padding: 5px 6px;
|
||
}
|
||
.chosen-container .chosen-results li em {
|
||
background: none repeat scroll 0 0 #feffde;
|
||
font-style: normal;
|
||
}
|
||
.chosen-container .chosen-results li.group-result {
|
||
color: #999;
|
||
cursor: default;
|
||
display: list-item;
|
||
font-weight: bold;
|
||
}
|
||
.chosen-container .chosen-results li.group-option {
|
||
padding-left: 15px;
|
||
}
|
||
.chosen-container .chosen-results li.active-result {
|
||
cursor: pointer;
|
||
display: list-item;
|
||
}
|
||
.chosen-container .chosen-results li.highlighted {
|
||
background-color: #00aff0;
|
||
color: #fff;
|
||
}
|
||
.chosen-container .chosen-results li.highlighted em {
|
||
background: none repeat scroll 0 0 transparent;
|
||
}
|
||
.chosen-container .chosen-results li.disabled-result {
|
||
color: #999;
|
||
display: list-item;
|
||
}
|
||
.chosen-container .chosen-results .no-results {
|
||
background: none repeat scroll 0 0 #eee;
|
||
display: list-item;
|
||
}
|
||
.chosen-container .chosen-results-scroll {
|
||
background: none repeat scroll 0 0 #fff;
|
||
margin: 0 4px;
|
||
position: absolute;
|
||
text-align: center;
|
||
width: 321px;
|
||
z-index: 1;
|
||
}
|
||
.chosen-container .chosen-results-scroll span {
|
||
display: inline-block;
|
||
text-indent: -5000px;
|
||
width: 9px;
|
||
}
|
||
.chosen-container .chosen-results-scroll-down {
|
||
bottom: 0;
|
||
}
|
||
.chosen-container .chosen-results-scroll-down span {
|
||
background: url("chosen-sprite.png") no-repeat scroll -4px -3px rgba(0, 0, 0, 0);
|
||
}
|
||
.chosen-container .chosen-results-scroll-up span {
|
||
background: url("chosen-sprite.png") no-repeat scroll -22px -3px rgba(0, 0, 0, 0);
|
||
}
|
||
.chosen-container-single .chosen-single {
|
||
background-color: #fff;
|
||
border: 1px solid #ccc;
|
||
border-radius: 3px;
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
||
color: #555;
|
||
display: block;
|
||
height: 27px;
|
||
line-height: 27px;
|
||
overflow: hidden;
|
||
padding: 0 0 0 8px;
|
||
position: relative;
|
||
text-decoration: none;
|
||
white-space: nowrap;
|
||
}
|
||
.chosen-container-single .chosen-single:hover {
|
||
cursor: pointer;
|
||
text-decoration: none;
|
||
}
|
||
.chosen-container-single .chosen-single.chosen-disabled .chosen-single abbr:hover {
|
||
background-position: right 2px;
|
||
}
|
||
.chosen-container-single .chosen-single div {
|
||
display: block;
|
||
height: 100%;
|
||
position: absolute;
|
||
right: 0;
|
||
top: 0;
|
||
width: 18px;
|
||
}
|
||
.chosen-container-single .chosen-single div b {
|
||
display: block;
|
||
font-size: 14px;
|
||
height: 100%;
|
||
line-height: 28px;
|
||
text-align: center;
|
||
width: 100%;
|
||
}
|
||
.chosen-container-single .chosen-default {
|
||
color: #999;
|
||
}
|
||
.chosen-container-single .chosen-search {
|
||
margin: 0;
|
||
overflow: hidden;
|
||
padding: 3px 4px;
|
||
position: relative;
|
||
white-space: nowrap;
|
||
z-index: 1000;
|
||
}
|
||
.chosen-container-single .chosen-search input {
|
||
border: 1px solid #ccc;
|
||
border-radius: 3px;
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
||
margin: 1px 0;
|
||
padding: 4px 20px 4px 4px;
|
||
width: 100%;
|
||
}
|
||
.chosen-container-single .chosen-search:before {
|
||
color: #00aff0;
|
||
display: block;
|
||
font-size: 14px;
|
||
height: 22px;
|
||
line-height: 22px;
|
||
position: absolute;
|
||
right: 7px;
|
||
text-align: center;
|
||
top: 7px;
|
||
width: 22px;
|
||
}
|
||
.chosen-container-single .chosen-drop {
|
||
background-clip: padding-box;
|
||
border-bottom-left-radius: 3px;
|
||
border-bottom-right-radius: 3px;
|
||
margin-top: -1px;
|
||
}
|
||
.chosen-container-single-nosearch .chosen-search input {
|
||
left: -9000px;
|
||
position: absolute;
|
||
}
|
||
.chosen-container-multi .chosen-choices {
|
||
background-color: #fff;
|
||
border: 1px solid #ccc;
|
||
border-radius: 0;
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
||
cursor: text;
|
||
height: auto !important;
|
||
margin: 0;
|
||
overflow: hidden;
|
||
padding: 0;
|
||
position: relative;
|
||
}
|
||
.chosen-container-multi .chosen-choices li {
|
||
float: left;
|
||
list-style: outside none none;
|
||
}
|
||
.chosen-container-multi .chosen-choices .search-field {
|
||
margin: 0;
|
||
padding: 0;
|
||
white-space: nowrap;
|
||
}
|
||
.chosen-container-multi .chosen-choices .search-field input {
|
||
background: none repeat scroll 0 0 transparent !important;
|
||
border: 0 none !important;
|
||
box-shadow: none;
|
||
color: #555;
|
||
height: 25px;
|
||
margin: 0;
|
||
outline: 0 none;
|
||
padding: 4px;
|
||
}
|
||
.chosen-container-multi .chosen-choices .search-field .default {
|
||
color: #999;
|
||
}
|
||
.chosen-container-multi .chosen-choices .search-choice {
|
||
background-clip: padding-box;
|
||
background-color: #eee;
|
||
background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%);
|
||
background-repeat: repeat-x;
|
||
border: 1px solid #ccc;
|
||
border-radius: 3px;
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
||
color: #333;
|
||
cursor: default;
|
||
line-height: 13px;
|
||
margin: 6px 0 3px 5px;
|
||
padding: 3px 20px 3px 5px;
|
||
position: relative;
|
||
}
|
||
.chosen-container-multi .chosen-choices .search-choice .search-choice-close {
|
||
background: url("chosen-sprite.png") no-repeat scroll right top rgba(0, 0, 0, 0);
|
||
display: block;
|
||
font-size: 1px;
|
||
height: 10px;
|
||
position: absolute;
|
||
right: 4px;
|
||
top: 5px;
|
||
width: 12px;
|
||
}
|
||
.chosen-container-multi .chosen-choices .search-choice .search-choice-close:hover {
|
||
background-position: right -11px;
|
||
}
|
||
.chosen-container-multi .chosen-choices .search-choice-focus {
|
||
background: none repeat scroll 0 0 #d4d4d4;
|
||
}
|
||
.chosen-container-multi .chosen-choices .search-choice-focus .search-choice-close {
|
||
background-position: right -11px;
|
||
}
|
||
.chosen-container-multi .chosen-results {
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
.chosen-container-multi .chosen-drop .result-selected {
|
||
display: none;
|
||
}
|
||
.chosen-container-active .chosen-single {
|
||
border: 1px solid rgba(82, 168, 236, 0.8);
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
|
||
transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
|
||
}
|
||
.chosen-container-active.chosen-with-drop .chosen-single {
|
||
background-color: #eee;
|
||
border: 1px solid rgba(82, 168, 236, 0.8);
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
|
||
transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
|
||
}
|
||
.chosen-container-active.chosen-with-drop .chosen-single div {
|
||
background: none repeat scroll 0 0 transparent;
|
||
border-left: medium none;
|
||
}
|
||
.chosen-container-active.chosen-with-drop .chosen-single div b {
|
||
background-position: -18px 7px;
|
||
}
|
||
.chosen-container-active .chosen-choices {
|
||
border: 1px solid rgba(82, 168, 236, 0.8);
|
||
border-bottom-left-radius: 0;
|
||
border-bottom-right-radius: 0;
|
||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
|
||
transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
|
||
}
|
||
.chosen-container-active .chosen-choices .search-field input {
|
||
color: #111 !important;
|
||
}
|
||
.chosen-disabled {
|
||
cursor: default;
|
||
opacity: 0.5 !important;
|
||
}
|
||
.chosen-disabled .chosen-single {
|
||
cursor: default;
|
||
}
|
||
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
|
||
cursor: default;
|
||
}
|
||
.chosen-rtl {
|
||
text-align: right;
|
||
}
|
||
.chosen-rtl .chosen-single {
|
||
overflow: visible;
|
||
padding: 0 8px 0 0;
|
||
}
|
||
.chosen-rtl .chosen-single span {
|
||
direction: rtl;
|
||
margin-left: 26px;
|
||
margin-right: 0;
|
||
}
|
||
.chosen-rtl .chosen-single div {
|
||
left: 7px;
|
||
right: auto;
|
||
}
|
||
.chosen-rtl .chosen-single abbr {
|
||
left: 26px;
|
||
right: auto;
|
||
}
|
||
.chosen-rtl .chosen-choices .search-field input {
|
||
direction: rtl;
|
||
}
|
||
.chosen-rtl .chosen-choices li {
|
||
float: right;
|
||
}
|
||
.chosen-rtl .chosen-choices .search-choice {
|
||
margin: 6px 5px 3px 0;
|
||
padding: 3px 5px 3px 19px;
|
||
}
|
||
.chosen-rtl .chosen-choices .search-choice .search-choice-close {
|
||
background-position: right top;
|
||
left: 4px;
|
||
right: auto;
|
||
}
|
||
.chosen-rtl.chosen-container-single .chosen-results {
|
||
margin: 0 0 4px 4px;
|
||
padding: 0 4px 0 0;
|
||
}
|
||
.chosen-rtl .chosen-results .group-option {
|
||
padding-left: 0;
|
||
padding-right: 15px;
|
||
}
|
||
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
|
||
border-right: medium none;
|
||
}
|
||
.chosen-rtl .chosen-search input {
|
||
background: url("chosen-sprite.png") no-repeat scroll -28px -20px, none repeat scroll 0 0 #fff;
|
||
direction: rtl;
|
||
padding: 4px 5px 4px 20px;
|
||
}
|
||
.ladda-button {
|
||
position: relative;
|
||
}
|
||
.ladda-button .ladda-spinner {
|
||
display: inline-block;
|
||
height: 32px;
|
||
margin-top: -16px;
|
||
opacity: 0;
|
||
pointer-events: none;
|
||
position: absolute;
|
||
top: 50%;
|
||
width: 32px;
|
||
z-index: 2;
|
||
}
|
||
.ladda-button .ladda-label {
|
||
position: relative;
|
||
z-index: 3;
|
||
}
|
||
.ladda-button .ladda-progress {
|
||
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.2);
|
||
height: 100%;
|
||
left: 0;
|
||
opacity: 0;
|
||
position: absolute;
|
||
top: 0;
|
||
transition: all 0.1s linear 0s !important;
|
||
visibility: hidden;
|
||
width: 0;
|
||
}
|
||
.ladda-button .ladda-progress[data-loading] .ladda-progress {
|
||
opacity: 1;
|
||
visibility: visible;
|
||
}
|
||
.ladda-button, .ladda-button .ladda-spinner, .ladda-button .ladda-label {
|
||
transition: background-color 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s !important;
|
||
}
|
||
.ladda-button[data-style="zoom-in"], .ladda-button[data-style="zoom-in"] .ladda-spinner, .ladda-button[data-style="zoom-in"] .ladda-label, .ladda-button[data-style="zoom-out"], .ladda-button[data-style="zoom-out"] .ladda-spinner, .ladda-button[data-style="zoom-out"] .ladda-label {
|
||
transition: all 0.3s ease 0s !important;
|
||
}
|
||
.ladda-button[data-style="expand-right"] .ladda-spinner {
|
||
right: 14px;
|
||
}
|
||
.ladda-button[data-style="expand-right"][data-size="s"] .ladda-spinner, .ladda-button[data-style="expand-right"][data-size="xs"] .ladda-spinner {
|
||
right: 4px;
|
||
}
|
||
.ladda-button[data-style="expand-right"][data-loading] {
|
||
padding-right: 56px;
|
||
}
|
||
.ladda-button[data-style="expand-right"][data-loading] .ladda-spinner {
|
||
opacity: 1;
|
||
}
|
||
.ladda-button[data-style="expand-right"][data-loading][data-size="s"], .ladda-button[data-style="expand-right"][data-loading][data-size="xs"] {
|
||
padding-right: 40px;
|
||
}
|
||
.ladda-button[data-style="expand-left"] .ladda-spinner {
|
||
left: 14px;
|
||
}
|
||
.ladda-button[data-style="expand-left"][data-size="s"] .ladda-spinner, .ladda-button[data-style="expand-left"][data-size="xs"] .ladda-spinner {
|
||
left: 4px;
|
||
}
|
||
.ladda-button[data-style="expand-left"][data-loading] {
|
||
padding-left: 56px;
|
||
}
|
||
.ladda-button[data-style="expand-left"][data-loading] .ladda-spinner {
|
||
opacity: 1;
|
||
}
|
||
.ladda-button[data-style="expand-left"][data-loading][data-size="s"], .ladda-button[data-style="expand-left"][data-loading][data-size="xs"] {
|
||
padding-left: 40px;
|
||
}
|
||
.ladda-button[data-style="expand-up"] {
|
||
overflow: hidden;
|
||
}
|
||
.ladda-button[data-style="expand-up"] .ladda-spinner {
|
||
left: 50%;
|
||
margin-left: -16px;
|
||
top: -32px;
|
||
}
|
||
.ladda-button[data-style="expand-up"][data-loading] {
|
||
padding-top: 54px;
|
||
}
|
||
.ladda-button[data-style="expand-up"][data-loading] .ladda-spinner {
|
||
margin-top: 0;
|
||
opacity: 1;
|
||
top: 14px;
|
||
}
|
||
.ladda-button[data-style="expand-up"][data-loading][data-size="s"], .ladda-button[data-style="expand-up"][data-loading][data-size="xs"] {
|
||
padding-top: 32px;
|
||
}
|
||
.ladda-button[data-style="expand-up"][data-loading][data-size="s"] .ladda-spinner, .ladda-button[data-style="expand-up"][data-loading][data-size="xs"] .ladda-spinner {
|
||
top: 4px;
|
||
}
|
||
.ladda-button[data-style="slide-left"] {
|
||
overflow: hidden;
|
||
}
|
||
.ladda-button[data-style="slide-left"] .ladda-label {
|
||
position: relative;
|
||
}
|
||
.ladda-button[data-style="slide-left"] .ladda-spinner {
|
||
left: 100%;
|
||
margin-left: -16px;
|
||
}
|
||
.ladda-button[data-style="slide-left"][data-loading] .ladda-label {
|
||
left: -100%;
|
||
opacity: 0;
|
||
}
|
||
.ladda-button[data-style="slide-left"][data-loading] .ladda-spinner {
|
||
left: 50%;
|
||
opacity: 1;
|
||
}
|
||
.ladda-button[data-style="slide-right"] {
|
||
overflow: hidden;
|
||
}
|
||
.ladda-button[data-style="slide-right"] .ladda-label {
|
||
position: relative;
|
||
}
|
||
.ladda-button[data-style="slide-right"] .ladda-spinner {
|
||
margin-left: -16px;
|
||
right: 100%;
|
||
}
|
||
.ladda-button[data-style="slide-right"][data-loading] .ladda-label {
|
||
left: 100%;
|
||
opacity: 0;
|
||
}
|
||
.ladda-button[data-style="slide-right"][data-loading] .ladda-spinner {
|
||
left: 50%;
|
||
opacity: 1;
|
||
}
|
||
.ladda-button[data-style="slide-up"] {
|
||
overflow: hidden;
|
||
}
|
||
.ladda-button[data-style="slide-up"] .ladda-label {
|
||
position: relative;
|
||
}
|
||
.ladda-button[data-style="slide-up"] .ladda-spinner {
|
||
left: 50%;
|
||
margin-left: -16px;
|
||
margin-top: 1em;
|
||
}
|
||
.ladda-button[data-style="slide-up"][data-loading] .ladda-label {
|
||
opacity: 0;
|
||
top: -1em;
|
||
}
|
||
.ladda-button[data-style="slide-up"][data-loading] .ladda-spinner {
|
||
margin-top: -16px;
|
||
opacity: 1;
|
||
}
|
||
.ladda-button[data-style="slide-down"] {
|
||
overflow: hidden;
|
||
}
|
||
.ladda-button[data-style="slide-down"] .ladda-label {
|
||
position: relative;
|
||
}
|
||
.ladda-button[data-style="slide-down"] .ladda-spinner {
|
||
left: 50%;
|
||
margin-left: -16px;
|
||
margin-top: -2em;
|
||
}
|
||
.ladda-button[data-style="slide-down"][data-loading] .ladda-label {
|
||
opacity: 0;
|
||
top: 1em;
|
||
}
|
||
.ladda-button[data-style="slide-down"][data-loading] .ladda-spinner {
|
||
margin-top: -16px;
|
||
opacity: 1;
|
||
}
|
||
.ladda-button[data-style="zoom-out"] {
|
||
overflow: hidden;
|
||
}
|
||
.ladda-button[data-style="zoom-out"] .ladda-spinner {
|
||
left: 50%;
|
||
margin-left: -16px;
|
||
transform: scale(2.5);
|
||
}
|
||
.ladda-button[data-style="zoom-out"] .ladda-label {
|
||
display: inline-block;
|
||
position: relative;
|
||
}
|
||
.ladda-button[data-style="zoom-out"][data-loading] .ladda-label {
|
||
opacity: 0;
|
||
transform: scale(0.5);
|
||
}
|
||
.ladda-button[data-style="zoom-out"][data-loading] .ladda-spinner {
|
||
opacity: 1;
|
||
transform: none;
|
||
}
|
||
.ladda-button[data-style="zoom-in"] {
|
||
overflow: hidden;
|
||
}
|
||
.ladda-button[data-style="zoom-in"] .ladda-spinner {
|
||
left: 50%;
|
||
margin-left: -16px;
|
||
transform: scale(0.2);
|
||
}
|
||
.ladda-button[data-style="zoom-in"] .ladda-label {
|
||
display: inline-block;
|
||
position: relative;
|
||
}
|
||
.ladda-button[data-style="zoom-in"][data-loading] .ladda-label {
|
||
opacity: 0;
|
||
transform: scale(2.2);
|
||
}
|
||
.ladda-button[data-style="zoom-in"][data-loading] .ladda-spinner {
|
||
opacity: 1;
|
||
transform: none;
|
||
}
|
||
.ladda-button[data-style="contract"] {
|
||
overflow: hidden;
|
||
width: 100px;
|
||
}
|
||
.ladda-button[data-style="contract"] .ladda-spinner {
|
||
left: 50%;
|
||
margin-left: -16px;
|
||
}
|
||
.ladda-button[data-style="contract"][data-loading] {
|
||
border-radius: 50%;
|
||
width: 52px;
|
||
}
|
||
.ladda-button[data-style="contract"][data-loading] .ladda-label {
|
||
opacity: 0;
|
||
}
|
||
.ladda-button[data-style="contract"][data-loading] .ladda-spinner {
|
||
opacity: 1;
|
||
}
|
||
.ladda-button[data-style="contract-overlay"] {
|
||
box-shadow: 0 0 0 3000px rgba(0, 0, 0, 0);
|
||
overflow: hidden;
|
||
width: 100px;
|
||
}
|
||
.ladda-button[data-style="contract-overlay"] .ladda-spinner {
|
||
left: 50%;
|
||
margin-left: -16px;
|
||
}
|
||
.ladda-button[data-style="contract-overlay"][data-loading] {
|
||
border-radius: 50%;
|
||
box-shadow: 0 0 0 3000px rgba(0, 0, 0, 0.8);
|
||
width: 52px;
|
||
}
|
||
.ladda-button[data-style="contract-overlay"][data-loading] .ladda-label {
|
||
opacity: 0;
|
||
}
|
||
.ladda-button[data-style="contract-overlay"][data-loading] .ladda-spinner {
|
||
opacity: 1;
|
||
}
|
||
.ladda-button[disabled], .ladda-button[data-loading] {
|
||
background-color: #999;
|
||
border-color: rgba(0, 0, 0, 0.07);
|
||
cursor: default;
|
||
}
|
||
.ladda-button[disabled]:hover, .ladda-button[data-loading]:hover {
|
||
background-color: #999;
|
||
cursor: default;
|
||
}
|
||
.ladda-button[data-size="xs"] {
|
||
padding: 4px 8px;
|
||
}
|
||
.ladda-button[data-size="xs"] .ladda-label {
|
||
font-size: 0.7em;
|
||
}
|
||
.ladda-button[data-size="s"] {
|
||
padding: 6px 10px;
|
||
}
|
||
.ladda-button[data-size="s"] .ladda-label {
|
||
font-size: 0.9em;
|
||
}
|
||
.ladda-button[data-size="l"] .ladda-label {
|
||
font-size: 1.2em;
|
||
}
|
||
.ladda-button[data-size="xl"] .ladda-label {
|
||
font-size: 1.5em;
|
||
}
|
||
.ui-datepicker {
|
||
border-radius: 4px;
|
||
left: 0;
|
||
margin-top: 1px;
|
||
padding: 4px;
|
||
top: 0;
|
||
}
|
||
.ui-datepicker:before {
|
||
border-bottom: 7px solid rgba(0, 0, 0, 0.2);
|
||
border-left: 7px solid transparent;
|
||
border-right: 7px solid transparent;
|
||
content: "";
|
||
display: inline-block !important;
|
||
left: 6px;
|
||
position: absolute;
|
||
top: -7px;
|
||
}
|
||
.ui-datepicker:after {
|
||
border-bottom: 6px solid #fff;
|
||
border-left: 6px solid transparent;
|
||
border-right: 6px solid transparent;
|
||
content: "";
|
||
display: inline-block !important;
|
||
left: 7px;
|
||
position: absolute;
|
||
top: -6px;
|
||
}
|
||
.ui-datepicker .ui-datepicker-header {
|
||
background: none repeat scroll 0 0 transparent !important;
|
||
color: gray;
|
||
font-weight: normal;
|
||
}
|
||
.ui-datepicker .ui-state-default {
|
||
background: none repeat scroll 0 0 transparent !important;
|
||
}
|
||
.ui-datepicker .ui-state-highlight {
|
||
background: none repeat scroll 0 0 #fefbe2 !important;
|
||
border: 1px solid #dac307 !important;
|
||
}
|
||
.ui-datepicker .ui-state-active {
|
||
background: none repeat scroll 0 0 #00aff0 !important;
|
||
border: 1px solid #008abd !important;
|
||
color: #fff !important;
|
||
}
|
||
.select2-container {
|
||
display: inline-block;
|
||
margin: 0;
|
||
position: relative;
|
||
vertical-align: middle;
|
||
}
|
||
.select2-container, .select2-drop, .select2-search, .select2-search input {
|
||
box-sizing: border-box;
|
||
}
|
||
.select2-container .select2-choice {
|
||
-moz-user-select: none;
|
||
background-clip: padding-box;
|
||
background-color: #fff;
|
||
background-image: linear-gradient(to top, #eeeeee 0%, #ffffff 50%);
|
||
border: 1px solid #aaa;
|
||
border-radius: 4px;
|
||
color: #444;
|
||
display: block;
|
||
height: 26px;
|
||
line-height: 26px;
|
||
overflow: hidden;
|
||
padding: 0 0 0 8px;
|
||
position: relative;
|
||
text-decoration: none;
|
||
white-space: nowrap;
|
||
}
|
||
.select2-container.select2-drop-above .select2-choice {
|
||
border-bottom-color: #aaa;
|
||
border-radius: 0 0 4px 4px;
|
||
}
|
||
.select2-container.select2-allowclear .select2-choice .select2-chosen {
|
||
margin-right: 42px;
|
||
}
|
||
.select2-container .select2-choice > .select2-chosen {
|
||
display: block;
|
||
float: none;
|
||
margin-right: 26px;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
width: auto;
|
||
}
|
||
.select2-container .select2-choice abbr {
|
||
background: url("../img/select2.png") no-repeat scroll right top rgba(0, 0, 0, 0);
|
||
border: 0 none;
|
||
cursor: pointer;
|
||
display: none;
|
||
font-size: 1px;
|
||
height: 12px;
|
||
outline: 0 none;
|
||
position: absolute;
|
||
right: 24px;
|
||
text-decoration: none;
|
||
top: 8px;
|
||
width: 12px;
|
||
}
|
||
.select2-container.select2-allowclear .select2-choice abbr {
|
||
display: inline-block;
|
||
}
|
||
.select2-container .select2-choice abbr:hover {
|
||
background-position: right -11px;
|
||
cursor: pointer;
|
||
}
|
||
.select2-drop-mask {
|
||
background-color: #fff;
|
||
border: 0 none;
|
||
height: auto;
|
||
left: 0;
|
||
margin: 0;
|
||
min-height: 100%;
|
||
min-width: 100%;
|
||
opacity: 0;
|
||
padding: 0;
|
||
position: fixed;
|
||
top: 0;
|
||
width: auto;
|
||
z-index: 9998;
|
||
}
|
||
.select2-drop {
|
||
-moz-border-bottom-colors: none;
|
||
-moz-border-left-colors: none;
|
||
-moz-border-right-colors: none;
|
||
-moz-border-top-colors: none;
|
||
background: none repeat scroll 0 0 #fff;
|
||
border-color: -moz-use-text-color #ccc #ccc;
|
||
border-image: none;
|
||
border-radius: 0 0 4px 4px;
|
||
border-right: 1px solid #ccc;
|
||
border-style: none solid solid;
|
||
border-width: 0 1px 1px;
|
||
box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
|
||
color: #000;
|
||
margin-top: -1px;
|
||
position: absolute;
|
||
top: 100%;
|
||
width: 100%;
|
||
z-index: 9999;
|
||
}
|
||
.select2-drop.select2-drop-above {
|
||
border-bottom: 0 none;
|
||
border-radius: 4px 4px 0 0;
|
||
border-top: 1px solid #aaa;
|
||
box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
|
||
margin-top: 1px;
|
||
}
|
||
.select2-drop-active {
|
||
border-top: medium none;
|
||
}
|
||
.select2-drop-auto-width {
|
||
border-top: 1px solid #aaa;
|
||
width: auto;
|
||
}
|
||
.select2-drop-auto-width .select2-search {
|
||
padding-top: 4px;
|
||
}
|
||
.select2-container .select2-choice .select2-arrow {
|
||
background-clip: padding-box;
|
||
background-color: #eeeeee;
|
||
border-left: 1px solid #ccc;
|
||
border-radius: 0 4px 4px 0;
|
||
display: inline-block;
|
||
height: 100%;
|
||
position: absolute;
|
||
right: 0;
|
||
top: 0;
|
||
width: 18px;
|
||
}
|
||
.select2-container .select2-choice .select2-arrow b {
|
||
background: url("../img/select2.png") no-repeat scroll 0 1px rgba(0, 0, 0, 0);
|
||
display: block;
|
||
height: 100%;
|
||
width: 100%;
|
||
}
|
||
.select2-search {
|
||
display: inline-block;
|
||
margin: 0;
|
||
min-height: 26px;
|
||
padding-left: 4px;
|
||
padding-right: 4px;
|
||
padding-top: 4px;
|
||
position: relative;
|
||
white-space: nowrap;
|
||
width: 100%;
|
||
z-index: 10000;
|
||
}
|
||
.select2-search input {
|
||
background: url("../img/select2.png") no-repeat scroll 100% -22px rgba(0, 0, 0, 0);
|
||
border: 1px solid #aaa;
|
||
border-radius: 0;
|
||
box-shadow: none;
|
||
font-family: sans-serif;
|
||
font-size: 1em;
|
||
height: auto !important;
|
||
margin: 0;
|
||
min-height: 26px;
|
||
outline: 0 none;
|
||
padding: 4px 20px 4px 5px;
|
||
width: 100%;
|
||
}
|
||
.select2-drop.select2-drop-above .select2-search input {
|
||
margin-top: 4px;
|
||
}
|
||
.select2-search input.select2-active {
|
||
background: url("../img/select2-spinner.gif") no-repeat scroll 100% center rgba(0, 0, 0, 0);
|
||
}
|
||
.select2-container-active .select2-choice, .select2-container-active .select2-choices {
|
||
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
|
||
outline: medium none;
|
||
}
|
||
.select2-dropdown-open .select2-choice {
|
||
background-color: #eee;
|
||
border-bottom-color: transparent;
|
||
border-bottom-left-radius: 0;
|
||
border-bottom-right-radius: 0;
|
||
box-shadow: 0 1px 0 #fff inset;
|
||
}
|
||
.select2-dropdown-open.select2-drop-above .select2-choice, .select2-dropdown-open.select2-drop-above .select2-choices {
|
||
border-top-color: transparent;
|
||
}
|
||
.select2-dropdown-open .select2-choice .select2-arrow {
|
||
background: none repeat scroll 0 0 transparent;
|
||
border-left: medium none;
|
||
filter: none;
|
||
}
|
||
.select2-dropdown-open .select2-choice .select2-arrow b {
|
||
background-position: -18px 1px;
|
||
}
|
||
.select2-hidden-accessible {
|
||
border: 0 none;
|
||
clip: rect(0px, 0px, 0px, 0px);
|
||
height: 1px;
|
||
margin: -1px;
|
||
overflow: hidden;
|
||
padding: 0;
|
||
position: absolute;
|
||
width: 1px;
|
||
}
|
||
.select2-results {
|
||
margin: 4px 4px 4px 0 !important;
|
||
max-height: 200px;
|
||
overflow-x: hidden;
|
||
overflow-y: auto;
|
||
padding: 0 0 0 4px !important;
|
||
position: relative;
|
||
}
|
||
.select2-results ul.select2-result-sub {
|
||
margin: 0;
|
||
padding-left: 0;
|
||
}
|
||
.select2-results ul.select2-result-sub > li .select2-result-label {
|
||
padding-left: 20px;
|
||
}
|
||
.select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
|
||
padding-left: 40px;
|
||
}
|
||
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
|
||
padding-left: 60px;
|
||
}
|
||
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
|
||
padding-left: 80px;
|
||
}
|
||
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
|
||
padding-left: 100px;
|
||
}
|
||
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
|
||
padding-left: 110px;
|
||
}
|
||
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
|
||
padding-left: 120px;
|
||
}
|
||
.select2-results li {
|
||
background-image: none;
|
||
display: list-item;
|
||
list-style: outside none none;
|
||
}
|
||
.select2-results li.select2-result-with-children > .select2-result-label {
|
||
font-weight: bold;
|
||
}
|
||
.select2-results .select2-result-label {
|
||
-moz-user-select: none;
|
||
cursor: pointer;
|
||
margin: 0;
|
||
min-height: 1em;
|
||
padding: 3px 7px 4px;
|
||
}
|
||
.select2-results .select2-highlighted {
|
||
background: none repeat scroll 0 0 #3875d7;
|
||
color: #fff;
|
||
}
|
||
.select2-results li em {
|
||
background: none repeat scroll 0 0 #feffde;
|
||
font-style: normal;
|
||
}
|
||
.select2-results .select2-highlighted em {
|
||
background: none repeat scroll 0 0 transparent;
|
||
}
|
||
.select2-results .select2-highlighted ul {
|
||
background: none repeat scroll 0 0 #fff;
|
||
color: #000;
|
||
}
|
||
.select2-results .select2-no-results, .select2-results .select2-searching, .select2-results .select2-selection-limit {
|
||
background: none repeat scroll 0 0 #f4f4f4;
|
||
display: list-item;
|
||
padding: 5px;
|
||
}
|
||
.select2-results .select2-disabled.select2-highlighted {
|
||
background: none repeat scroll 0 0 #f4f4f4;
|
||
color: #666;
|
||
cursor: default;
|
||
display: list-item;
|
||
}
|
||
.select2-results .select2-disabled {
|
||
background: none repeat scroll 0 0 #f4f4f4;
|
||
cursor: default;
|
||
display: list-item;
|
||
}
|
||
.select2-results .select2-selected {
|
||
display: none;
|
||
}
|
||
.select2-more-results.select2-active {
|
||
background: url("../img/select2-spinner.gif") no-repeat scroll 100% center #f4f4f4;
|
||
}
|
||
.select2-more-results {
|
||
background: none repeat scroll 0 0 #f4f4f4;
|
||
display: list-item;
|
||
}
|
||
.select2-container.select2-container-disabled .select2-choice {
|
||
background-color: #f4f4f4;
|
||
background-image: none;
|
||
border: 1px solid #ddd;
|
||
cursor: default;
|
||
}
|
||
.select2-container.select2-container-disabled .select2-choice .select2-arrow {
|
||
background-color: #f4f4f4;
|
||
background-image: none;
|
||
border-left: 0 none;
|
||
}
|
||
.select2-container.select2-container-disabled .select2-choice abbr {
|
||
display: none;
|
||
}
|
||
.select2-container-multi .select2-choices {
|
||
background-color: #fff;
|
||
border: 1px solid #aaa;
|
||
cursor: text;
|
||
height: auto !important;
|
||
margin: 0;
|
||
overflow: hidden;
|
||
padding: 0;
|
||
position: relative;
|
||
}
|
||
.select2-locked {
|
||
padding: 3px 5px !important;
|
||
}
|
||
.select2-container-multi .select2-choices {
|
||
min-height: 26px;
|
||
}
|
||
.select2-container-multi.select2-container-active .select2-choices {
|
||
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
|
||
outline: medium none;
|
||
}
|
||
.select2-container-multi .select2-choices li {
|
||
float: left;
|
||
list-style: outside none none;
|
||
}
|
||
html[dir="rtl"] .select2-container-multi .select2-choices li {
|
||
float: right;
|
||
}
|
||
.select2-container-multi .select2-choices .select2-search-field {
|
||
margin: 0;
|
||
padding: 0;
|
||
white-space: nowrap;
|
||
}
|
||
.select2-container-multi .select2-choices .select2-search-field input {
|
||
background: none repeat scroll 0 0 transparent !important;
|
||
border: 0 none;
|
||
box-shadow: none;
|
||
color: #666;
|
||
font-family: sans-serif;
|
||
font-size: 100%;
|
||
margin: 1px 0;
|
||
outline: 0 none;
|
||
padding: 5px;
|
||
}
|
||
.select2-container-multi .select2-choices .select2-search-field input.select2-active {
|
||
background: url("../img/select2-spinner.gif") no-repeat scroll 100% center #fff !important;
|
||
}
|
||
.select2-default {
|
||
color: #999 !important;
|
||
}
|
||
.select2-container-multi .select2-choices .select2-search-choice {
|
||
-moz-user-select: none;
|
||
background-clip: padding-box;
|
||
background-color: #e4e4e4;
|
||
background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
||
border: 1px solid #aaaaaa;
|
||
border-radius: 3px;
|
||
color: #333;
|
||
cursor: default;
|
||
line-height: 13px;
|
||
margin: 3px 0 3px 5px;
|
||
padding: 3px 5px 3px 18px;
|
||
position: relative;
|
||
}
|
||
html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice {
|
||
margin-left: 0;
|
||
margin-right: 5px;
|
||
}
|
||
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
|
||
cursor: default;
|
||
}
|
||
.select2-container-multi .select2-choices .select2-search-choice-focus {
|
||
background: none repeat scroll 0 0 #d4d4d4;
|
||
}
|
||
.select2-search-choice-close {
|
||
background: url("../img/select2.png") no-repeat scroll right top rgba(0, 0, 0, 0);
|
||
display: block;
|
||
font-size: 1px;
|
||
height: 13px;
|
||
outline: medium none;
|
||
position: absolute;
|
||
right: 3px;
|
||
top: 4px;
|
||
width: 12px;
|
||
}
|
||
html[dir="rtl"] .select2-search-choice-close {
|
||
left: 3px;
|
||
right: auto;
|
||
}
|
||
.select2-container-multi .select2-search-choice-close {
|
||
left: 3px;
|
||
}
|
||
.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
|
||
background-position: right -11px;
|
||
}
|
||
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
|
||
background-position: right -11px;
|
||
}
|
||
.select2-container-multi.select2-container-disabled .select2-choices {
|
||
background-color: #f4f4f4;
|
||
background-image: none;
|
||
border: 1px solid #ddd;
|
||
cursor: default;
|
||
}
|
||
.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
|
||
background-color: #f4f4f4;
|
||
background-image: none;
|
||
border: 1px solid #ddd;
|
||
padding: 3px 5px;
|
||
}
|
||
.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
|
||
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
|
||
display: none;
|
||
}
|
||
.select2-result-selectable .select2-match, .select2-result-unselectable .select2-match {
|
||
text-decoration: underline;
|
||
}
|
||
.select2-offscreen, .select2-offscreen:focus {
|
||
border: 0 none !important;
|
||
clip: rect(0px, 0px, 0px, 0px) !important;
|
||
height: 1px !important;
|
||
left: 0 !important;
|
||
margin: 0 !important;
|
||
outline: 0 none !important;
|
||
overflow: hidden !important;
|
||
padding: 0 !important;
|
||
position: absolute !important;
|
||
top: 0 !important;
|
||
width: 1px !important;
|
||
}
|
||
.select2-display-none {
|
||
display: none;
|
||
}
|
||
.select2-measure-scrollbar {
|
||
height: 100px;
|
||
left: -10000px;
|
||
overflow: scroll;
|
||
position: absolute;
|
||
top: -10000px;
|
||
width: 100px;
|
||
}
|
||
@media not all, only screen and (min-resolution: 2dppx) {
|
||
.select2-search input, .select2-search-choice-close, .select2-container .select2-choice abbr, .select2-container .select2-choice .select2-arrow b {
|
||
background-image: url("../img/select2x2.png") !important;
|
||
background-repeat: no-repeat !important;
|
||
background-size: 60px 40px !important;
|
||
}
|
||
.select2-search input {
|
||
background-position: 100% -21px !important;
|
||
}
|
||
}
|
||
.form-control .select2-choice, .bootstrap input[type="text"] .select2-choice, .bootstrap input[type="search"] .select2-choice, .bootstrap input[type="password"] .select2-choice, .bootstrap textarea .select2-choice, .bootstrap select .select2-choice {
|
||
border: 0 none;
|
||
border-radius: 2px;
|
||
}
|
||
.form-control .select2-choice .select2-arrow, .bootstrap input[type="text"] .select2-choice .select2-arrow, .bootstrap input[type="search"] .select2-choice .select2-arrow, .bootstrap input[type="password"] .select2-choice .select2-arrow, .bootstrap textarea .select2-choice .select2-arrow, .bootstrap select .select2-choice .select2-arrow {
|
||
border-radius: 0 2px 2px 0;
|
||
}
|
||
.form-control.select2-container, .bootstrap input.select2-container[type="text"], .bootstrap input.select2-container[type="search"], .bootstrap input.select2-container[type="password"], .bootstrap textarea.select2-container, .bootstrap select.select2-container {
|
||
height: auto !important;
|
||
padding: 0;
|
||
}
|
||
.form-control.select2-container.select2-dropdown-open, .bootstrap input.select2-container.select2-dropdown-open[type="text"], .bootstrap input.select2-container.select2-dropdown-open[type="search"], .bootstrap input.select2-container.select2-dropdown-open[type="password"], .bootstrap textarea.select2-container.select2-dropdown-open, .bootstrap select.select2-container.select2-dropdown-open {
|
||
border-radius: 3px 3px 0 0;
|
||
}
|
||
.form-control .select2-container.select2-dropdown-open .select2-choices, .bootstrap input[type="text"] .select2-container.select2-dropdown-open .select2-choices, .bootstrap input[type="search"] .select2-container.select2-dropdown-open .select2-choices, .bootstrap input[type="password"] .select2-container.select2-dropdown-open .select2-choices, .bootstrap textarea .select2-container.select2-dropdown-open .select2-choices, .bootstrap select .select2-container.select2-dropdown-open .select2-choices {
|
||
border-radius: 3px 3px 0 0;
|
||
}
|
||
.form-control.select2-container .select2-choices, .bootstrap input.select2-container[type="text"] .select2-choices, .bootstrap input.select2-container[type="search"] .select2-choices, .bootstrap input.select2-container[type="password"] .select2-choices, .bootstrap textarea.select2-container .select2-choices, .bootstrap select.select2-container .select2-choices {
|
||
border: 0 none !important;
|
||
border-radius: 3px;
|
||
}
|
||
.control-group.warning .select2-container .select2-choice, .control-group.warning .select2-container .select2-choices, .control-group.warning .select2-container-active .select2-choice, .control-group.warning .select2-container-active .select2-choices, .control-group.warning .select2-dropdown-open.select2-drop-above .select2-choice, .control-group.warning .select2-dropdown-open.select2-drop-above .select2-choices, .control-group.warning .select2-container-multi.select2-container-active .select2-choices {
|
||
border: 1px solid #c09853 !important;
|
||
}
|
||
.control-group.warning .select2-container .select2-choice div {
|
||
background: none repeat scroll 0 0 #fcf8e3 !important;
|
||
border-left: 1px solid #c09853 !important;
|
||
}
|
||
.control-group.error .select2-container .select2-choice, .control-group.error .select2-container .select2-choices, .control-group.error .select2-container-active .select2-choice, .control-group.error .select2-container-active .select2-choices, .control-group.error .select2-dropdown-open.select2-drop-above .select2-choice, .control-group.error .select2-dropdown-open.select2-drop-above .select2-choices, .control-group.error .select2-container-multi.select2-container-active .select2-choices {
|
||
border: 1px solid #b94a48 !important;
|
||
}
|
||
.control-group.error .select2-container .select2-choice div {
|
||
background: none repeat scroll 0 0 #f2dede !important;
|
||
border-left: 1px solid #b94a48 !important;
|
||
}
|
||
.control-group.info .select2-container .select2-choice, .control-group.info .select2-container .select2-choices, .control-group.info .select2-container-active .select2-choice, .control-group.info .select2-container-active .select2-choices, .control-group.info .select2-dropdown-open.select2-drop-above .select2-choice, .control-group.info .select2-dropdown-open.select2-drop-above .select2-choices, .control-group.info .select2-container-multi.select2-container-active .select2-choices {
|
||
border: 1px solid #3a87ad !important;
|
||
}
|
||
.control-group.info .select2-container .select2-choice div {
|
||
background: none repeat scroll 0 0 #d9edf7 !important;
|
||
border-left: 1px solid #3a87ad !important;
|
||
}
|
||
.control-group.success .select2-container .select2-choice, .control-group.success .select2-container .select2-choices, .control-group.success .select2-container-active .select2-choice, .control-group.success .select2-container-active .select2-choices, .control-group.success .select2-dropdown-open.select2-drop-above .select2-choice, .control-group.success .select2-dropdown-open.select2-drop-above .select2-choices, .control-group.success .select2-container-multi.select2-container-active .select2-choices {
|
||
border: 1px solid #468847 !important;
|
||
}
|
||
.control-group.success .select2-container .select2-choice div {
|
||
background: none repeat scroll 0 0 #dff0d8 !important;
|
||
border-left: 1px solid #468847 !important;
|
||
}
|
||
.nobootstrap {
|
||
background-color: #fff;
|
||
min-width: 1200px;
|
||
padding: 100px 30px;
|
||
}
|
||
.nobootstrap form p {
|
||
margin: 0.5em 0 0;
|
||
padding: 0 0 0.5em;
|
||
}
|
||
.nobootstrap fieldset {
|
||
background-color: #ebedf4;
|
||
border: 1px solid #ccced7;
|
||
color: #585a69;
|
||
margin: 0 0 10px;
|
||
padding: 1em;
|
||
}
|
||
.nobootstrap fieldset img {
|
||
padding: 0 4px 0 0;
|
||
vertical-align: bottom;
|
||
}
|
||
.nobootstrap legend {
|
||
background: none repeat scroll 0 0 #ebedf4;
|
||
border: 1px solid #ccced7;
|
||
font-weight: 700;
|
||
margin: 0;
|
||
padding: 0.2em 0.5em;
|
||
text-align: left;
|
||
}
|
||
.nobootstrap legend a {
|
||
color: #585984;
|
||
text-decoration: none;
|
||
}
|
||
.nobootstrap label {
|
||
color: #585a69;
|
||
float: left;
|
||
font-weight: bold;
|
||
padding: 0.2em 0.5em 0 0;
|
||
text-align: right;
|
||
text-shadow: 0 1px 0 #fff;
|
||
width: 250px;
|
||
}
|
||
.nobootstrap label.t {
|
||
clear: none;
|
||
float: none;
|
||
font-size: 12px;
|
||
font-weight: normal;
|
||
margin: 0;
|
||
padding: 0 5px;
|
||
text-shadow: none;
|
||
}
|
||
.nobootstrap a {
|
||
color: #415260;
|
||
}
|
||
.nobootstrap .pull-right, .nobootstrap .pull-left {
|
||
float: none;
|
||
}
|
||
.nobootstrap .clear {
|
||
clear: both;
|
||
}
|
||
.nobootstrap .margin-form {
|
||
color: #7f7f7f;
|
||
font-size: 0.85em;
|
||
padding: 0 0 1em 260px;
|
||
}
|
||
.nobootstrap .button {
|
||
background: -moz-linear-gradient(center top , #f9f9f9, #e3e3e3) repeat scroll 0 0 transparent;
|
||
border-color: #ccc #bbb #a0a0a0;
|
||
border-radius: 3px;
|
||
border-style: solid;
|
||
border-width: 1px;
|
||
color: #000;
|
||
cursor: pointer;
|
||
margin: 5px 0;
|
||
outline: medium none;
|
||
padding: 3px 8px;
|
||
text-align: center;
|
||
text-decoration: none;
|
||
text-shadow: 0 1px 0 #fff;
|
||
vertical-align: middle;
|
||
white-space: nowrap;
|
||
}
|
||
.nobootstrap .button:hover {
|
||
border-color: #aaa #999 #888;
|
||
}
|
||
.nobootstrap input {
|
||
vertical-align: middle;
|
||
}
|
||
.nobootstrap select {
|
||
border: 1px solid #ccc;
|
||
font-size: 12px;
|
||
}
|
||
.nobootstrap input, .nobootstrap textarea, .nobootstrap option {
|
||
color: #000;
|
||
font-size: 12px;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
.nobootstrap input[type="text"], .nobootstrap input[type="password"], .nobootstrap input[type="file"], .nobootstrap textarea {
|
||
background-color: #fff;
|
||
border: 1px solid #ccc;
|
||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
|
||
padding: 2px 4px;
|
||
}
|
||
.nobootstrap .table_grid {
|
||
width: 100%;
|
||
}
|
||
.nobootstrap .table {
|
||
background-color: #fff;
|
||
border: 1px solid #ccc;
|
||
border-radius: 3px;
|
||
padding: 0;
|
||
}
|
||
.nobootstrap .table th a {
|
||
text-decoration: underline;
|
||
}
|
||
.nobootstrap .table th a:hover {
|
||
text-decoration: none;
|
||
}
|
||
.nobootstrap .table tr th {
|
||
background-color: #f1f1f1;
|
||
color: #333;
|
||
font-size: 13px;
|
||
padding: 4px 6px;
|
||
text-align: left;
|
||
}
|
||
.nobootstrap .table tr th.right {
|
||
text-align: center;
|
||
}
|
||
.nobootstrap .table tr td {
|
||
border-bottom: 1px solid #ccc;
|
||
color: #333;
|
||
font-size: 12px;
|
||
padding: 4px 4px 4px 6px;
|
||
}
|
||
.nobootstrap .table tr.row_hover.filter:hover td {
|
||
background: none repeat scroll 0 0 #f1f9ff;
|
||
}
|
||
.nobootstrap .table tr td.row_hover:hover table tr td {
|
||
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
|
||
}
|
||
.nobootstrap .table tr.action_details td {
|
||
background: none repeat scroll 0 0 #fafafa;
|
||
}
|
||
.nobootstrap .table tr.alt_row.action_details td {
|
||
background: none repeat scroll 0 0 #e8e8e8;
|
||
}
|
||
.nobootstrap .table tr td.empty {
|
||
background: none repeat scroll 0 0 #fff !important;
|
||
border-bottom: medium none;
|
||
}
|
||
.nobootstrap .table tr td.first {
|
||
border-left: 1px solid #dedede;
|
||
}
|
||
.nobootstrap .table tr td.last {
|
||
border-right: 1px solid #dedede;
|
||
}
|
||
.nobootstrap .table tr.small td {
|
||
height: 15px;
|
||
}
|
||
.nobootstrap .table tr.last td {
|
||
border-bottom: medium none;
|
||
}
|
||
.nobootstrap .table tr .filter {
|
||
background-color: #f1f9ff;
|
||
}
|
||
.nobootstrap .form-group {
|
||
clear: both;
|
||
float: left;
|
||
margin-bottom: 1em;
|
||
width: 100%;
|
||
}
|
||
.nobootstrap .form-group > div {
|
||
float: left;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap), .nobootstrap .bootstrap #dash_version:not(.bootstrap), .bootstrap .nobootstrap #dash_version:not(.bootstrap), .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap), .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap), .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap), .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) {
|
||
background-color: #ebedf4;
|
||
border: 1px solid #ccced7;
|
||
box-sizing: border-box;
|
||
color: #585a69;
|
||
float: left;
|
||
margin: 0 0 10px;
|
||
padding: 1em;
|
||
width: 100%;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) img, .nobootstrap .bootstrap #dash_version:not(.bootstrap) img, .bootstrap .nobootstrap #dash_version:not(.bootstrap) img, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) img, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) img, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) img, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) img {
|
||
padding: 0 4px 0 0;
|
||
vertical-align: bottom;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) h3, .nobootstrap .bootstrap #dash_version:not(.bootstrap) h3, .bootstrap .nobootstrap #dash_version:not(.bootstrap) h3, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) h3, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) h3, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) h3, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) h3 {
|
||
background: none repeat scroll 0 0 #ebedf4;
|
||
border: 1px solid #ccced7;
|
||
display: inline-block;
|
||
font-weight: 700;
|
||
margin: 0;
|
||
padding: 0.2em 0.5em;
|
||
position: relative;
|
||
text-align: left;
|
||
top: -25px;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) h3 a, .nobootstrap .bootstrap #dash_version:not(.bootstrap) h3 a, .bootstrap .nobootstrap #dash_version:not(.bootstrap) h3 a, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) h3 a, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) h3 a, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) h3 a, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) h3 a {
|
||
color: #585984;
|
||
text-decoration: none;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) h3 i, .nobootstrap .bootstrap #dash_version:not(.bootstrap) h3 i, .bootstrap .nobootstrap #dash_version:not(.bootstrap) h3 i, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) h3 i, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) h3 i, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) h3 i, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) h3 i {
|
||
font-family: "FontAwesome";
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) .help-block, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .help-block, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .help-block, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .help-block, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .help-block, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .help-block, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .help-block {
|
||
clear: both;
|
||
float: left;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) .switch, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .switch, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .switch, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .switch, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .switch, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .switch, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .switch {
|
||
clear: both;
|
||
float: left;
|
||
line-height: 1.3em;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) .switch label, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .switch label, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .switch label, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .switch label, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .switch label, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .switch label, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .switch label {
|
||
float: left;
|
||
padding: 0 10px 0 5px;
|
||
width: auto;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) .switch input[type="checkbox"], .nobootstrap .bootstrap #dash_version:not(.bootstrap) .switch input[type="checkbox"], .bootstrap .nobootstrap #dash_version:not(.bootstrap) .switch input[type="checkbox"], .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .switch input[type="checkbox"], .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .switch input[type="checkbox"], .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .switch input[type="checkbox"], .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .switch input[type="checkbox"], .nobootstrap .panel:not(.bootstrap) .switch input[type="radio"], .nobootstrap .bootstrap #dash_version:not(.bootstrap) .switch input[type="radio"], .bootstrap .nobootstrap #dash_version:not(.bootstrap) .switch input[type="radio"], .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .switch input[type="radio"], .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .switch input[type="radio"], .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .switch input[type="radio"], .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .switch input[type="radio"] {
|
||
float: left;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) .radio label, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .radio label, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .radio label, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .radio label, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .radio label, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .radio label, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .radio label {
|
||
clear: both;
|
||
margin-right: 4px;
|
||
width: auto;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) button, .nobootstrap .bootstrap #dash_version:not(.bootstrap) button, .bootstrap .nobootstrap #dash_version:not(.bootstrap) button, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) button, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) button, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) button, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) button {
|
||
background: -moz-linear-gradient(center top , #f9f9f9, #e3e3e3) repeat scroll 0 0 transparent;
|
||
border-color: #ccc #bbb #a0a0a0;
|
||
border-radius: 3px;
|
||
border-style: solid;
|
||
border-width: 1px;
|
||
color: #000;
|
||
cursor: pointer;
|
||
margin: 5px 0;
|
||
outline: medium none;
|
||
padding: 3px 8px;
|
||
text-align: center;
|
||
text-decoration: none;
|
||
text-shadow: 0 1px 0 #fff;
|
||
vertical-align: middle;
|
||
white-space: nowrap;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) button:hover, .nobootstrap .bootstrap #dash_version:not(.bootstrap) button:hover, .bootstrap .nobootstrap #dash_version:not(.bootstrap) button:hover, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) button:hover, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) button:hover, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) button:hover, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) button:hover {
|
||
border-color: #aaa #999 #888;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) .tree-panel-heading-controls, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree-panel-heading-controls, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree-panel-heading-controls, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree-panel-heading-controls, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree-panel-heading-controls, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree-panel-heading-controls, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree-panel-heading-controls {
|
||
background-color: #dde0e9;
|
||
border-bottom: 1px solid #dfdfdf;
|
||
font-size: 13px;
|
||
margin: -8px -8px 20px;
|
||
padding: 5px;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) .tree-panel-heading-controls a, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree-panel-heading-controls a, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree-panel-heading-controls a, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree-panel-heading-controls a, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree-panel-heading-controls a, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree-panel-heading-controls a, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree-panel-heading-controls a {
|
||
border-right: 1px solid #888;
|
||
display: inline-block;
|
||
padding: 0 8px;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) .tree, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree {
|
||
list-style: outside none none;
|
||
padding: 0 0 0 20px;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) .tree input, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree input, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree input, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree input, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree input, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree input, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree input {
|
||
line-height: normal;
|
||
margin-right: 4px;
|
||
vertical-align: baseline;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) .tree i, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree i, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree i, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree i, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree i, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree i, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree i {
|
||
font-size: 14px;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) .tree .tree-item-name, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-item-name, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-item-name, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-item-name, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-item-name, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-item-name, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-item-name, .nobootstrap .panel:not(.bootstrap) .tree .tree-folder-name, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-folder-name, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-folder-name, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-folder-name, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-folder-name, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-folder-name, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-folder-name {
|
||
border-radius: 4px;
|
||
padding: 2px 5px;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) .tree .tree-item-name label, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-item-name label, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-item-name label, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-item-name label, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-item-name label, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-item-name label, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-item-name label, .nobootstrap .panel:not(.bootstrap) .tree .tree-folder-name label, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-folder-name label, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-folder-name label, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-folder-name label, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-folder-name label, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-folder-name label, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-folder-name label {
|
||
float: none;
|
||
font-size: 13px;
|
||
font-weight: 400;
|
||
text-shadow: none;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) .tree .tree-item-name:hover, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-item-name:hover, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-item-name:hover, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-item-name:hover, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-item-name:hover, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-item-name:hover, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-item-name:hover, .nobootstrap .panel:not(.bootstrap) .tree .tree-folder-name:hover, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-folder-name:hover, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-folder-name:hover, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-folder-name:hover, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-folder-name:hover, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-folder-name:hover, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-folder-name:hover {
|
||
background-color: #eee;
|
||
cursor: pointer;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) .tree .tree-selected, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-selected, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-selected, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-selected, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-selected, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-selected, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-selected {
|
||
background-color: #ccced7;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) .tree .tree-selected:hover, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-selected:hover, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-selected:hover, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-selected:hover, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-selected:hover, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-selected:hover, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-selected:hover {
|
||
background-color: #a1a5b5;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) .tree .tree-selected i.tree-dot, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-selected i.tree-dot, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-selected i.tree-dot, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-selected i.tree-dot, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-selected i.tree-dot, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-selected i.tree-dot, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-selected i.tree-dot {
|
||
background-color: #eee;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) .tree .tree-folder, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-folder, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-folder, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-folder, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-folder, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-folder, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-folder, .nobootstrap .panel:not(.bootstrap) .tree .tree-item, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-item, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-item, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-item, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-item, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-item, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-item {
|
||
margin: 3px 0;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) .tree i.tree-dot, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree i.tree-dot, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree i.tree-dot, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree i.tree-dot, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree i.tree-dot, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree i.tree-dot, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree i.tree-dot {
|
||
background-color: #ccc;
|
||
border-radius: 6px;
|
||
display: inline-block;
|
||
height: 6px;
|
||
margin: 0 4px;
|
||
position: relative;
|
||
width: 6px;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) .tree .tree-item-disable, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-item-disable, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-item-disable, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-item-disable, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-item-disable, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-item-disable, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-item-disable, .nobootstrap .panel:not(.bootstrap) .tree .tree-folder-name-disable, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-folder-name-disable, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-folder-name-disable, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-folder-name-disable, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-folder-name-disable, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-folder-name-disable, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-folder-name-disable {
|
||
color: #ccc;
|
||
}
|
||
.nobootstrap .panel:not(.bootstrap) .tree .tree-item-disable:hover, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-item-disable:hover, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-item-disable:hover, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-item-disable:hover, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-item-disable:hover, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-item-disable:hover, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-item-disable:hover, .nobootstrap .panel:not(.bootstrap) .tree .tree-folder-name-disable:hover, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-folder-name-disable:hover, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-folder-name-disable:hover, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-folder-name-disable:hover, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-folder-name-disable:hover, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-folder-name-disable:hover, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-folder-name-disable:hover {
|
||
color: #ccc;
|
||
}
|
||
@media print {
|
||
* {
|
||
background: none repeat scroll 0 0 transparent !important;
|
||
border-color: #000 !important;
|
||
box-shadow: none !important;
|
||
color: #000 !important;
|
||
font-family: Georgia,"Times New Roman",Times,serif !important;
|
||
text-shadow: none !important;
|
||
}
|
||
[class^="icon-"], [class^="process-icon-"] {
|
||
font-family: "FontAwesome" !important;
|
||
}
|
||
#header, #footer, #nav-sidebar, #nav-topbar, .hidden-print {
|
||
display: none !important;
|
||
}
|
||
.visible-print {
|
||
display: block !important;
|
||
}
|
||
hr {
|
||
display: none !important;
|
||
}
|
||
#main {
|
||
float: none !important;
|
||
margin: 0 auto !important;
|
||
padding: 0 !important;
|
||
width: 8.5in !important;
|
||
}
|
||
#main #content.bootstrap {
|
||
margin: 0 !important;
|
||
padding: 0 !important;
|
||
}
|
||
#main #content.bootstrap .page-head {
|
||
display: none !important;
|
||
}
|
||
#main #content.bootstrap .panel, #main #content.bootstrap #dash_version, #main #content.bootstrap .message-item-initial .message-item-initial-body, #main #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel {
|
||
border: medium none !important;
|
||
box-shadow: none !important;
|
||
clear: both !important;
|
||
margin: 0 0 40px !important;
|
||
padding: 0 !important;
|
||
page-break-inside: avoid !important;
|
||
}
|
||
#main #content.bootstrap .panel .panel-heading, #main #content.bootstrap #dash_version .panel-heading, #main #content.bootstrap .message-item-initial .message-item-initial-body .panel-heading, #main #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel-heading {
|
||
margin: 0 0 20px !important;
|
||
}
|
||
#main #content.bootstrap .panel .panel, #main #content.bootstrap #dash_version .panel, #main #content.bootstrap .message-item-initial .message-item-initial-body .panel, #main #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel, #main #content.bootstrap .panel #dash_version, #main #content.bootstrap #dash_version #dash_version, #main #content.bootstrap .message-item-initial .message-item-initial-body #dash_version, #main #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel #dash_version, #main #content.bootstrap .panel .message-item-initial .message-item-initial-body, #main #content.bootstrap .message-item-initial .panel .message-item-initial-body, #main #content.bootstrap #dash_version .message-item-initial .message-item-initial-body, #main #content.bootstrap .message-item-initial #dash_version .message-item-initial-body, #main #content.bootstrap .message-item-initial .message-item-initial-body .message-item-initial-body, #main #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .message-item-initial .message-item-initial-body, #main #content.bootstrap .message-item-initial .timeline .timeline-item .timeline-caption .timeline-panel .message-item-initial-body, #main #content.bootstrap .panel .timeline .timeline-item .timeline-caption .timeline-panel, #main #content.bootstrap .timeline .timeline-item .timeline-caption .panel .timeline-panel, #main #content.bootstrap #dash_version .timeline .timeline-item .timeline-caption .timeline-panel, #main #content.bootstrap .timeline .timeline-item .timeline-caption #dash_version .timeline-panel, #main #content.bootstrap .message-item-initial .message-item-initial-body .timeline .timeline-item .timeline-caption .timeline-panel, #main #content.bootstrap .timeline .timeline-item .timeline-caption .message-item-initial .message-item-initial-body .timeline-panel, #main #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .timeline-panel, #main #content.bootstrap .panel .well, #main #content.bootstrap #dash_version .well, #main #content.bootstrap .message-item-initial .message-item-initial-body .well, #main #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .well {
|
||
margin: 0 !important;
|
||
}
|
||
#main #content.bootstrap .tab-pane {
|
||
margin-bottom: 20px !important;
|
||
}
|
||
#main #content.bootstrap .row, #main #content.bootstrap .multishop-well, #main #content.bootstrap #dashboard .data_list_vertical {
|
||
margin-bottom: 20px !important;
|
||
}
|
||
#main #content.bootstrap .panel, #main #content.bootstrap #dash_version, #main #content.bootstrap .message-item-initial .message-item-initial-body, #main #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel {
|
||
clear: both !important;
|
||
}
|
||
#main #content.bootstrap .btn {
|
||
display: none !important;
|
||
}
|
||
#main #content.bootstrap .panel-heading-action {
|
||
display: none;
|
||
}
|
||
#main #content.bootstrap .nav-tabs li a {
|
||
background-color: #fff !important;
|
||
border-bottom-color: #fff !important;
|
||
display: none;
|
||
}
|
||
#main #content.bootstrap .tab-content > .tab-pane {
|
||
display: block !important;
|
||
opacity: 1 !important;
|
||
}
|
||
#main #content.bootstrap h4 {
|
||
margin: 0 0 10px !important;
|
||
}
|
||
#main #content.bootstrap #shipping .form-horizontal {
|
||
padding-bottom: 10px !important;
|
||
}
|
||
#main #content.bootstrap #addressShipping {
|
||
float: left !important;
|
||
margin-bottom: 0 !important;
|
||
width: 49% !important;
|
||
}
|
||
#main #content.bootstrap #addressInvoice {
|
||
float: right !important;
|
||
margin-bottom: 0 !important;
|
||
width: 49% !important;
|
||
}
|
||
#main #content.bootstrap #status tr:first-child td {
|
||
font-weight: bold !important;
|
||
}
|
||
#main #content.bootstrap .table {
|
||
border: 1px solid #000 !important;
|
||
margin-bottom: 10px !important;
|
||
}
|
||
#main #content.bootstrap .table th {
|
||
font-style: italic;
|
||
}
|
||
#main #content.bootstrap .label-inactive {
|
||
font-size: 11pt !important;
|
||
text-decoration: line-through !important;
|
||
}
|
||
#main #content.bootstrap .label-inactive i {
|
||
display: none !important;
|
||
}
|
||
#main #content.bootstrap .kpi-container.panel, #main #content.bootstrap #dash_version.kpi-container, #main #content.bootstrap .message-item-initial .kpi-container.message-item-initial-body, #main #content.bootstrap .timeline .timeline-item .timeline-caption .kpi-container.timeline-panel {
|
||
border: 1px solid #000 !important;
|
||
margin: 30px 0 20px !important;
|
||
}
|
||
#main #content.bootstrap .kpi-container.panel .box-stats, #main #content.bootstrap #dash_version.kpi-container .box-stats, #main #content.bootstrap .message-item-initial .kpi-container.message-item-initial-body .box-stats, #main #content.bootstrap .timeline .timeline-item .timeline-caption .kpi-container.timeline-panel .box-stats {
|
||
font-size: 8pt !important;
|
||
height: auto !important;
|
||
padding: 10px 0 !important;
|
||
width: 25% !important;
|
||
}
|
||
#main #content.bootstrap .kpi-container.panel .box-stats i, #main #content.bootstrap #dash_version.kpi-container .box-stats i, #main #content.bootstrap .message-item-initial .kpi-container.message-item-initial-body .box-stats i, #main #content.bootstrap .timeline .timeline-item .timeline-caption .kpi-container.timeline-panel .box-stats i {
|
||
font-size: 20pt !important;
|
||
}
|
||
#main #content.bootstrap .alert, #main #content.bootstrap #carrier_wizard .wizard_error {
|
||
border: 1px solid #000 !important;
|
||
}
|
||
#main #content.bootstrap .alert:before, #main #content.bootstrap #carrier_wizard .wizard_error:before {
|
||
color: #000 !important;
|
||
}
|
||
#main #content.bootstrap .table-responsive {
|
||
border: medium none !important;
|
||
margin: 0 !important;
|
||
}
|
||
#main #content.bootstrap .panel-total td {
|
||
font-size: 13pt !important;
|
||
}
|
||
}
|
||
.row{background:#fff !important;}
|
||
|
||
#content.bootstrap {
|
||
margin: 0;
|
||
padding: 30px;
|
||
}
|
||
#content .table:nth-child(1) tr th, #content .table:last-child tr th {
|
||
background: -moz-linear-gradient(center top , #f9f9f9, #ececec) repeat-x scroll left top #ececec;
|
||
color: #333;
|
||
font-size: 13px;
|
||
padding: 4px 6px;
|
||
text-align: left;
|
||
text-shadow: 0 1px 0 #fff;
|
||
}
|
||
#main {
|
||
float: left;
|
||
margin: 0;
|
||
padding: 0;
|
||
width: 100%;
|
||
z-index: 10;
|
||
}
|
||
.table tr th{background:#fff !important; border:0 !important; background-image:none !important;}
|
||
.table{border:0 !important;}
|
||
.mceLayout{width:100% !important;}
|
||
.cirkuitSkin table.mceToolbar {
|
||
float: left ;
|
||
}
|
||
#content.bootstrap .template-generator form .label{float:none !important;}
|
||
label{float:none;text-align:left;}
|
||
#content .alert.alert-success{background:#90CB5C; border:1px solid #90CB5C}
|
||
|
||
.input-group > span {
|
||
-moz-border-bottom-colors: none;
|
||
-moz-border-left-colors: none;
|
||
-moz-border-right-colors: none;
|
||
-moz-border-top-colors: none;
|
||
background: #eee none repeat scroll 0 0;
|
||
border-color: #cdcdcd #cdcdcd #cdcdcd -moz-use-text-color;
|
||
border-image: none;
|
||
border-style: solid solid solid none;
|
||
border-width: 1px 1px 1px 0;
|
||
display: table-cell;
|
||
padding: 1px;
|
||
vertical-align: middle;
|
||
width: 24px;
|
||
}
|
||
|
||
|
||
.process-icon-save:before{
|
||
content:"\f0c7";
|
||
font-family:"FontAwesome"
|
||
|
||
} |