Lines 2585-2695
td.bundle {
Link Here
|
2585 |
display: none; |
2585 |
display: none; |
2586 |
} |
2586 |
} |
2587 |
|
2587 |
|
2588 |
// Override core jQueryUI widgets |
|
|
2589 |
.ui-widget-content { |
2590 |
background: #FFFFFF none; |
2591 |
border-radius: 4px; |
2592 |
border: 3px solid $background-color-primary; |
2593 |
color: #222222; |
2594 |
} |
2595 |
|
2596 |
.ui-widget-header { |
2597 |
background: #b5dbad none; |
2598 |
border: 1px solid #bfd9b9; |
2599 |
color: #222222; |
2600 |
font-weight: bold; |
2601 |
} |
2602 |
|
2603 |
.ui-state-default, |
2604 |
.ui-widget-content .ui-state-default, |
2605 |
.ui-widget-header .ui-state-default { |
2606 |
border: 1px solid #bfd9b9; |
2607 |
color: #555555; |
2608 |
font-weight: normal; |
2609 |
} |
2610 |
|
2611 |
.ui-state-hover, |
2612 |
.ui-widget-content .ui-state-hover, |
2613 |
.ui-widget-header .ui-state-hover, |
2614 |
.ui-state-focus, |
2615 |
.ui-widget-content .ui-state-focus, |
2616 |
.ui-widget-header .ui-state-focus { |
2617 |
background: #cad8c6 none; |
2618 |
border: 1px solid #bfd9b9; |
2619 |
color: #212121; |
2620 |
font-weight: normal; |
2621 |
} |
2622 |
|
2623 |
.ui-state-highlight, |
2624 |
.ui-widget-content .ui-state-highlight, |
2625 |
.ui-widget-header .ui-state-highlight { |
2626 |
background: #FFF4C6; |
2627 |
border: 1px solid #FED22F; |
2628 |
color: #363636; |
2629 |
} |
2630 |
|
2631 |
.ui-state-error, |
2632 |
.ui-widget-content .ui-state-error, |
2633 |
.ui-widget-header .ui-state-error { |
2634 |
background: #FEF1EC; |
2635 |
border: 1px solid #CD0A0A; |
2636 |
color: #CD0A0A; |
2637 |
} |
2638 |
|
2639 |
// Override jQuery Autocomplete |
2640 |
.ui-autocomplete { |
2641 |
box-shadow: 2px 2px 2px rgba(0, 0, 0, .3); |
2642 |
cursor: default; |
2643 |
position: absolute; |
2644 |
z-index: 2000; |
2645 |
|
2646 |
&.ui-menu { |
2647 |
li { |
2648 |
&.ui-menu-item { |
2649 |
padding: 3px 1em 3px .4em; |
2650 |
|
2651 |
&:hover { |
2652 |
background: #e3f1df none; |
2653 |
color: #212121; |
2654 |
font-weight: normal; |
2655 |
} |
2656 |
|
2657 |
.ui-state-active { |
2658 |
background: transparent none; |
2659 |
border: 0; |
2660 |
} |
2661 |
|
2662 |
.ui-menu-item-wrapper { |
2663 |
padding: unset; |
2664 |
} |
2665 |
|
2666 |
.ui-state-active, |
2667 |
.ui-state-focus { |
2668 |
background: #e3f1df none; |
2669 |
color: #212121; |
2670 |
font-weight: normal; |
2671 |
margin: 0; |
2672 |
} |
2673 |
} |
2674 |
} |
2675 |
} |
2676 |
} |
2677 |
|
2678 |
.ui-autocomplete-loading { |
2679 |
background: #FFF url("../img/spinner-small.gif") right center no-repeat; |
2680 |
} |
2681 |
|
2682 |
.ui-widget { |
2683 |
font-family: inherit; |
2684 |
|
2685 |
input, |
2686 |
select, |
2687 |
textarea, |
2688 |
button { |
2689 |
font-family: inherit; |
2690 |
} |
2691 |
} |
2692 |
|
2693 |
.toptabs { |
2588 |
.toptabs { |
2694 |
margin-top: 5px; |
2589 |
margin-top: 5px; |
2695 |
} |
2590 |
} |
2696 |
- |
|
|