`, and ``.
443 | SET_PROPERTY(font-family-monospace, "Menlo, Monaco, Consolas, \"Courier New\", monospace")
444 | SET_PROPERTY_BY_ID(font-family-base, font-family-sans-serif)
445 | */
446 |
447 | SET_PROPERTY(font-size-base, 14) // dp
448 | SET_PROPERTY(font-size-large, qCeil(GET_VALUE(font-size-base).toFloat() * 1.25f)) // 18dp
449 | SET_PROPERTY(font-size-small, qCeil(GET_VALUE(font-size-base).toFloat() * 0.85f)) // 12dp
450 | SET_PROPERTY(font-size-xsmall, qCeil(GET_VALUE(font-size-base).toFloat() * 0.85f)) // 12dp
451 |
452 | SET_PROPERTY(font-size-h1, qFloor(GET_VALUE(font-size-base).toFloat() * 2.6f)) // 36dp
453 | SET_PROPERTY(font-size-h2, qFloor(GET_VALUE(font-size-base).toFloat() * 2.15f)) // 30dp
454 | SET_PROPERTY(font-size-h3, qCeil(GET_VALUE(font-size-base).toFloat() * 1.7f)) // 24dp
455 | SET_PROPERTY(font-size-h4, qCeil(GET_VALUE(font-size-base).toFloat() * 1.25f)) // 18dp
456 | SET_PROPERTY_BY_ID(font-size-h5, font-size-base)
457 | SET_PROPERTY(font-size-h6, qCeil(GET_VALUE(font-size-base).toFloat() * 0.85f)) // 12dp
458 |
459 | /* not used
460 | // Unit-less `line-height` for use in components like buttons.
461 | SET_PROPERTY(line-height-base, 1.428571429f) // 20/14
462 | // Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
463 | SET_PROPERTY(line-height-computed, qFloor((font-size-base * line-height-base))) // ~20px
464 |
465 | // By default, this inherits from the ``.
466 | SET_PROPERTY(headings-font-family, inherit)
467 | SET_PROPERTY(headings-font-weight, 500)
468 | SET_PROPERTY(headings-line-height, 1.1)
469 | SET_PROPERTY(headings-color, inherit)
470 | */
471 |
472 |
473 | /* needless
474 | // == Iconography ==
475 | // Specify custom locations of the include Glyphicons icon font. Useful for those including Bootstrap via Bower.
476 | SET_PROPERTY(icon-font-path, "../fonts/")
477 | SET_PROPERTY(icon-font-name, "glyphicons-halflings-regular")
478 | SET_PROPERTY(icon-font-svg-id, "glyphicons_halflingsregular")
479 | */
480 |
481 |
482 | // == Components ==
483 | // Define common padding and border radius sizes and more.
484 | // Values based on 14px text.
485 | SET_PROPERTY(padding-base-vertical, 6)
486 | SET_PROPERTY(padding-base-horizontal, 12)
487 |
488 | SET_PROPERTY(padding-large-vertical, 10)
489 | SET_PROPERTY(padding-large-horizontal, 16)
490 |
491 | SET_PROPERTY(padding-small-vertical, 5)
492 | SET_PROPERTY(padding-small-horizontal, 10)
493 |
494 | SET_PROPERTY(padding-xsmall-vertical, 1)
495 | SET_PROPERTY(padding-xsmall-horizontal, 5)
496 |
497 | // SET_PROPERTY(line-height-large, 1.33)
498 | // SET_PROPERTY(line-height-small, 1.5)
499 |
500 | SET_PROPERTY(border-radius-base, 4)
501 | SET_PROPERTY(border-radius-large, 6)
502 | SET_PROPERTY(border-radius-small, 3)
503 | SET_PROPERTY(border-radius-xsmall, 3)
504 |
505 | // Global color for active items (e.g., navs or dropdowns).
506 | SET_PROPERTY(component-active-color, "#fff")
507 | // Global background color for active items (e.g., navs or dropdowns).
508 | SET_PROPERTY_BY_ID(component-active-bg, brand-primary)
509 |
510 | // Width of the `border` for generating carets that indicator dropdowns.
511 | SET_PROPERTY(caret-width-base, 4)
512 | SET_PROPERTY(caret-width-small, 4)
513 | SET_PROPERTY(caret-width-xsmall, 4)
514 | // Carets increase slightly in size for larger components.
515 | SET_PROPERTY(caret-width-large, 5)
516 |
517 |
518 | /*
519 | // == Tables ==
520 | // Customizes the table component with basic values, each used across all table variations.
521 |
522 | SET_PROPERTY(table-cell-padding, 8)
523 | // Padding for cells in `.table-condensed`.
524 | SET_PROPERTY(table-condensed-cell-padding, 5)
525 |
526 | // Default background color used for all tables.
527 | SET_PROPERTY(table-bg, transparent)
528 | // Background color used for `.table-striped`.
529 | SET_PROPERTY(table-bg-accent, #f9f9f9)
530 | // Background color used for `.table-hover`.
531 | SET_PROPERTY(table-bg-hover, #f5f5f5)
532 | SET_PROPERTY(table-bg-active, table-bg-hover)
533 |
534 | // Border color for table and cell borders.
535 | SET_PROPERTY(table-border-color, #ddd)
536 | */
537 |
538 | // == Buttons ==
539 | // For each of buttons, define text, background and border color.
540 | // SET_PROPERTY(btn-font-weight, normal)
541 |
542 | SET_PROPERTY(btn-default-color, "#333")
543 | SET_PROPERTY(btn-default-bg, "#fff")
544 | SET_PROPERTY(btn-default-border, "#ccc")
545 |
546 | SET_PROPERTY(btn-primary-color, "#fff")
547 | SET_PROPERTY_BY_ID(btn-primary-bg, brand-primary)
548 | SET_PROPERTY(btn-primary-border, darken(GET_COLOR(btn-primary-bg), 5))
549 |
550 | SET_PROPERTY(btn-success-color, "#fff")
551 | SET_PROPERTY_BY_ID(btn-success-bg, brand-success)
552 | SET_PROPERTY(btn-success-border, darken(GET_COLOR(btn-success-bg), 5))
553 |
554 | SET_PROPERTY(btn-info-color, "#fff")
555 | SET_PROPERTY_BY_ID(btn-info-bg, brand-info)
556 | SET_PROPERTY(btn-info-border, darken(GET_COLOR(btn-info-bg), 5))
557 |
558 | SET_PROPERTY(btn-warning-color, "#fff")
559 | SET_PROPERTY_BY_ID(btn-warning-bg, brand-warning)
560 | SET_PROPERTY(btn-warning-border, darken(GET_COLOR(btn-warning-bg), 5))
561 |
562 | SET_PROPERTY(btn-danger-color, "#fff")
563 | SET_PROPERTY_BY_ID(btn-danger-bg, brand-danger)
564 | SET_PROPERTY(btn-danger-border, darken(GET_COLOR(btn-danger-bg), 5))
565 |
566 | SET_PROPERTY_BY_ID(btn-link-disabled-color, gray-light)
567 |
568 |
569 | // == Forms ==
570 | SET_PROPERTY(input-bg, "#fff") // input background color
571 | SET_PROPERTY_BY_ID(input-bg-disabled, gray-lighter) // input disabled background color
572 | SET_PROPERTY_BY_ID(input-color, gray) // Text color for inputs
573 | SET_PROPERTY(input-border, "#ccc") // input border color
574 | SET_PROPERTY_BY_ID(input-border-radius, border-radius-base) // input border radius
575 | SET_PROPERTY(input-border-focus, "#66afe9") // Border color for inputs on focus
576 |
577 | SET_PROPERTY_BY_ID(input-color-placeholder, gray-light) // Placeholder text color
578 |
579 | /* needless
580 | // Default form-control height
581 | SET_PROPERTY(input-height-base, (line-height-computed + (padding-base-vertical * 2) + 2))
582 | // Large form-control height
583 | SET_PROPERTY(input-height-large, (qCeil(font-size-large * line-height-large) + (padding-large-vertical * 2) + 2))
584 | // Small form-control height
585 | SET_PROPERTY(input-height-small, (qFloor(font-size-small * line-height-small) + (padding-small-vertical * 2) + 2))
586 | */
587 |
588 | SET_PROPERTY_BY_ID(legend-color, gray-dark)
589 | SET_PROPERTY(legend-border-color, "#e5e5e5")
590 |
591 | // Background color for textual input addons
592 | SET_PROPERTY_BY_ID(input-group-addon-bg, gray-lighter)
593 | // Border color for textual input addons
594 | SET_PROPERTY_BY_ID(input-group-addon-border-color, input-border)
595 |
596 |
597 | // == Dropdowns ==
598 | // Dropdown menu container and contents.
599 | SET_PROPERTY(dropdown-bg, "#fff") // Background for the dropdown menu.
600 | SET_PROPERTY(dropdown-border, QColor(0, 0, 0, 38)) // Dropdown menu `border-color`.
601 | // SET_PROPERTY(dropdown-fallback-border, "#ccc") // Dropdown menu `border-color` for IE8.
602 | SET_PROPERTY(dropdown-divider-bg, "#e5e5e5") // Divider color for between dropdown items.
603 |
604 | SET_PROPERTY_BY_ID(dropdown-link-color, gray-dark) // Dropdown link text color.
605 | // Hover color for dropdown links.
606 | SET_PROPERTY(dropdown-link-hover-color, darken(GET_COLOR(gray-dark), 5))
607 | SET_PROPERTY(dropdown-link-hover-bg, "#f5f5f5") // Hover background for dropdown links.
608 |
609 | // Active dropdown menu item text color.
610 | SET_PROPERTY_BY_ID(dropdown-link-active-color, component-active-color)
611 | // Active dropdown menu item background color.
612 | SET_PROPERTY_BY_ID(dropdown-link-active-bg, component-active-bg)
613 |
614 | // Disabled dropdown menu item background color.
615 | SET_PROPERTY_BY_ID(dropdown-link-disabled-color, gray-light)
616 |
617 | // Text color for headers within dropdown menus.
618 | SET_PROPERTY_BY_ID(dropdown-header-color, gray-light)
619 |
620 | // Note, Deprecated dropdown-caret-color as of v3.1.0
621 | SET_PROPERTY(dropdown-caret-color, "#000")
622 |
623 |
624 | /*
625 | //-- Z-index master list
626 | //
627 | // Warning, Avoid customizing these values. They're used for a bird's eye view
628 | // of components dependent on the z-axis and are designed to all work together.
629 | //
630 | // Note, These variables are not generated into the Customizer.
631 |
632 | SET_PROPERTY(zindex-navbar, 1000)
633 | SET_PROPERTY(zindex-dropdown, 1000)
634 | SET_PROPERTY(zindex-popover, 1010)
635 | SET_PROPERTY(zindex-tooltip, 1030)
636 | SET_PROPERTY(zindex-navbar-fixed, 1030)
637 | SET_PROPERTY(zindex-modal-background, 1040)
638 | SET_PROPERTY(zindex-modal, 1050)
639 |
640 |
641 | //== Media queries breakpoints
642 | //
643 | // Define the breakpoints at which your layout will change, adapting to different screen sizes.
644 |
645 | // Extra small screen / phone
646 | // Note, Deprecated screen-xs and screen-phone as of v3.0.1
647 | SET_PROPERTY(screen-xs, 480px)
648 | SET_PROPERTY(screen-xs-min, screen-xs)
649 | SET_PROPERTY(screen-phone, screen-xs-min)
650 |
651 | // Small screen / tablet
652 | // Note, Deprecated screen-sm and screen-tablet as of v3.0.1
653 | SET_PROPERTY(screen-sm, 768px)
654 | SET_PROPERTY(screen-sm-min, screen-sm)
655 | SET_PROPERTY(screen-tablet, screen-sm-min)
656 |
657 | // Medium screen / desktop
658 | // Note, Deprecated screen-md and screen-desktop as of v3.0.1
659 | SET_PROPERTY(screen-md, 992px)
660 | SET_PROPERTY(screen-md-min, screen-md)
661 | SET_PROPERTY(screen-desktop, screen-md-min)
662 |
663 | // Large screen / wide desktop
664 | // Note, Deprecated screen-lg and screen-lg-desktop as of v3.0.1
665 | SET_PROPERTY(screen-lg, 1200px)
666 | SET_PROPERTY(screen-lg-min, screen-lg)
667 | SET_PROPERTY(screen-lg-desktop, screen-lg-min)
668 |
669 | // So media queries don't overlap when required, provide a maximum
670 | SET_PROPERTY(screen-xs-max, (screen-sm-min - 1))
671 | SET_PROPERTY(screen-sm-max, (screen-md-min - 1))
672 | SET_PROPERTY(screen-md-max, (screen-lg-min - 1))
673 |
674 |
675 | //== Grid system
676 | //
677 | // Define your custom responsive grid.
678 |
679 | // Number of columns in the grid.
680 | SET_PROPERTY(grid-columns, 12)
681 | // Padding between columns. Gets divided in half for the left and right.
682 | SET_PROPERTY(grid-gutter-width, 30px)
683 | // Navbar collapse
684 | // Point at which the navbar becomes uncollapsed.
685 | SET_PROPERTY(grid-float-breakpoint, screen-sm-min)
686 | // Point at which the navbar begins collapsing.
687 | SET_PROPERTY(grid-float-breakpoint-max, (grid-float-breakpoint - 1))
688 |
689 |
690 | //== Container sizes
691 | //
692 | // Define the maximum width of `.container` for different screen sizes.
693 |
694 | // Small screen / tablet
695 | SET_PROPERTY(container-tablet, ((720px + grid-gutter-width)))
696 | // For `screen-sm-min` and up.
697 | SET_PROPERTY(container-sm, container-tablet)
698 |
699 | // Medium screen / desktop
700 | SET_PROPERTY(container-desktop, ((940px + grid-gutter-width)))
701 | // For `screen-md-min` and up.
702 | SET_PROPERTY(container-md, container-desktop)
703 |
704 | // Large screen / wide desktop
705 | SET_PROPERTY(container-large-desktop, ((1140px + grid-gutter-width)))
706 | // For `screen-lg-min` and up.
707 | SET_PROPERTY(container-lg, container-large-desktop)
708 |
709 |
710 | //== Navbar
711 | //
712 | //
713 |
714 | // Basics of a navbar
715 | SET_PROPERTY(navbar-height, 50px)
716 | SET_PROPERTY(navbar-margin-bottom, line-height-computed)
717 | SET_PROPERTY(navbar-border-radius, border-radius-base)
718 | SET_PROPERTY(navbar-padding-horizontal, qFloor((grid-gutter-width / 2)))
719 | SET_PROPERTY(navbar-padding-vertical, ((navbar-height - line-height-computed) / 2))
720 | SET_PROPERTY(navbar-collapse-max-height, 340px)
721 |
722 | SET_PROPERTY(navbar-default-color, #777)
723 | SET_PROPERTY(navbar-default-bg, #f8f8f8)
724 | SET_PROPERTY(navbar-default-border, darken(navbar-default-bg, 6.5%))
725 |
726 | // Navbar links
727 | SET_PROPERTY(navbar-default-link-color, #777)
728 | SET_PROPERTY(navbar-default-link-hover-color, #333)
729 | SET_PROPERTY(navbar-default-link-hover-bg, transparent)
730 | SET_PROPERTY(navbar-default-link-active-color, #555)
731 | SET_PROPERTY(navbar-default-link-active-bg, darken(navbar-default-bg, 6.5%))
732 | SET_PROPERTY(navbar-default-link-disabled-color, #ccc)
733 | SET_PROPERTY(navbar-default-link-disabled-bg, transparent)
734 |
735 | // Navbar brand label
736 | SET_PROPERTY(navbar-default-brand-color, navbar-default-link-color)
737 | SET_PROPERTY(navbar-default-brand-hover-color, darken(navbar-default-brand-color, 10%))
738 | SET_PROPERTY(navbar-default-brand-hover-bg, transparent)
739 |
740 | // Navbar toggle
741 | SET_PROPERTY(navbar-default-toggle-hover-bg, #ddd)
742 | SET_PROPERTY(navbar-default-toggle-icon-bar-bg, #888)
743 | SET_PROPERTY(navbar-default-toggle-border-color, #ddd)
744 |
745 |
746 | // Inverted navbar
747 | // Reset inverted navbar basics
748 | SET_PROPERTY(navbar-inverse-color, gray-light)
749 | SET_PROPERTY(navbar-inverse-bg, #222)
750 | SET_PROPERTY(navbar-inverse-border, darken(navbar-inverse-bg, 10%))
751 |
752 | // Inverted navbar links
753 | SET_PROPERTY(navbar-inverse-link-color, gray-light)
754 | SET_PROPERTY(navbar-inverse-link-hover-color, #fff)
755 | SET_PROPERTY(navbar-inverse-link-hover-bg, transparent)
756 | SET_PROPERTY(navbar-inverse-link-active-color, navbar-inverse-link-hover-color)
757 | SET_PROPERTY(navbar-inverse-link-active-bg, darken(navbar-inverse-bg, 10%))
758 | SET_PROPERTY(navbar-inverse-link-disabled-color, #444)
759 | SET_PROPERTY(navbar-inverse-link-disabled-bg, transparent)
760 |
761 | // Inverted navbar brand label
762 | SET_PROPERTY(navbar-inverse-brand-color, navbar-inverse-link-color)
763 | SET_PROPERTY(navbar-inverse-brand-hover-color, #fff)
764 | SET_PROPERTY(navbar-inverse-brand-hover-bg, transparent)
765 |
766 | // Inverted navbar toggle
767 | SET_PROPERTY(navbar-inverse-toggle-hover-bg, #333)
768 | SET_PROPERTY(navbar-inverse-toggle-icon-bar-bg, #fff)
769 | SET_PROPERTY(navbar-inverse-toggle-border-color, #333)
770 |
771 |
772 | //== Navs
773 | //
774 | //
775 |
776 | //=== Shared nav styles
777 | SET_PROPERTY(nav-link-padding, 10px 15px)
778 | SET_PROPERTY(nav-link-hover-bg, gray-lighter)
779 |
780 | SET_PROPERTY(nav-disabled-link-color, gray-light)
781 | SET_PROPERTY(nav-disabled-link-hover-color, gray-light)
782 |
783 | SET_PROPERTY(nav-open-link-hover-color, #fff)
784 |
785 | //== Tabs
786 | SET_PROPERTY(nav-tabs-border-color, #ddd)
787 |
788 | SET_PROPERTY(nav-tabs-link-hover-border-color, gray-lighter)
789 |
790 | SET_PROPERTY(nav-tabs-active-link-hover-bg, body-bg)
791 | SET_PROPERTY(nav-tabs-active-link-hover-color, gray)
792 | SET_PROPERTY(nav-tabs-active-link-hover-border-color, #ddd)
793 |
794 | SET_PROPERTY(nav-tabs-justified-link-border-color, #ddd)
795 | SET_PROPERTY(nav-tabs-justified-active-link-border-color, body-bg)
796 |
797 | //== Pills
798 | SET_PROPERTY(nav-pills-border-radius, border-radius-base)
799 | SET_PROPERTY(nav-pills-active-link-hover-bg, component-active-bg)
800 | SET_PROPERTY(nav-pills-active-link-hover-color, component-active-color)
801 |
802 |
803 | //== Pagination
804 | //
805 | //
806 |
807 | SET_PROPERTY(pagination-color, link-color)
808 | SET_PROPERTY(pagination-bg, #fff)
809 | SET_PROPERTY(pagination-border, #ddd)
810 |
811 | SET_PROPERTY(pagination-hover-color, link-hover-color)
812 | SET_PROPERTY(pagination-hover-bg, gray-lighter)
813 | SET_PROPERTY(pagination-hover-border, #ddd)
814 |
815 | SET_PROPERTY(pagination-active-color, #fff)
816 | SET_PROPERTY(pagination-active-bg, brand-primary)
817 | SET_PROPERTY(pagination-active-border, brand-primary)
818 |
819 | SET_PROPERTY(pagination-disabled-color, gray-light)
820 | SET_PROPERTY(pagination-disabled-bg, #fff)
821 | SET_PROPERTY(pagination-disabled-border, #ddd)
822 |
823 |
824 | //== Pager
825 | //
826 | //
827 |
828 | SET_PROPERTY(pager-bg, pagination-bg)
829 | SET_PROPERTY(pager-border, pagination-border)
830 | SET_PROPERTY(pager-border-radius, 15px)
831 |
832 | SET_PROPERTY(pager-hover-bg, pagination-hover-bg)
833 |
834 | SET_PROPERTY(pager-active-bg, pagination-active-bg)
835 | SET_PROPERTY(pager-active-color, pagination-active-color)
836 |
837 | SET_PROPERTY(pager-disabled-color, pagination-disabled-color)
838 |
839 |
840 | //== Jumbotron
841 | //
842 | //
843 |
844 | SET_PROPERTY(jumbotron-padding, 30px)
845 | SET_PROPERTY(jumbotron-color, inherit)
846 | SET_PROPERTY(jumbotron-bg, gray-lighter)
847 | SET_PROPERTY(jumbotron-heading-color, inherit)
848 | SET_PROPERTY(jumbotron-font-size, qCeil((font-size-base * 1.5)))
849 |
850 |
851 | //== Form states and alerts
852 | //
853 | // Define colors for form feedback states and, by default, alerts.
854 |
855 | SET_PROPERTY(state-success-text, #3c763d)
856 | SET_PROPERTY(state-success-bg, #dff0d8)
857 | SET_PROPERTY(state-success-border, darken(spin(state-success-bg, -10), 5%))
858 |
859 | SET_PROPERTY(state-info-text, #31708f)
860 | SET_PROPERTY(state-info-bg, #d9edf7)
861 | SET_PROPERTY(state-info-border, darken(spin(state-info-bg, -10), 7%))
862 |
863 | SET_PROPERTY(state-warning-text, #8a6d3b)
864 | SET_PROPERTY(state-warning-bg, #fcf8e3)
865 | SET_PROPERTY(state-warning-border, darken(spin(state-warning-bg, -10), 5%))
866 |
867 | SET_PROPERTY(state-danger-text, #a94442)
868 | SET_PROPERTY(state-danger-bg, #f2dede)
869 | SET_PROPERTY(state-danger-border, darken(spin(state-danger-bg, -10), 5%))
870 |
871 |
872 | //== Tooltips
873 | //
874 | //
875 |
876 | // Tooltip max width
877 | SET_PROPERTY(tooltip-max-width, 200px)
878 | // Tooltip text color
879 | SET_PROPERTY(tooltip-color, #fff)
880 | // Tooltip background color
881 | SET_PROPERTY(tooltip-bg, #000)
882 | SET_PROPERTY(tooltip-opacity, .9)
883 |
884 | // Tooltip arrow width
885 | SET_PROPERTY(tooltip-arrow-width, 5px)
886 | // Tooltip arrow color
887 | SET_PROPERTY(tooltip-arrow-color, tooltip-bg)
888 |
889 |
890 | //== Popovers
891 | //
892 | //
893 |
894 | // Popover body background color
895 | SET_PROPERTY(popover-bg, #fff)
896 | // Popover maximum width
897 | SET_PROPERTY(popover-max-width, 276px)
898 | // Popover border color
899 | SET_PROPERTY(popover-border-color, rgba(0,0,0,.2))
900 | // Popover fallback border color
901 | SET_PROPERTY(popover-fallback-border-color, #ccc)
902 |
903 | // Popover title background color
904 | SET_PROPERTY(popover-title-bg, darken(popover-bg, 3%))
905 |
906 | // Popover arrow width
907 | SET_PROPERTY(popover-arrow-width, 10px)
908 | // Popover arrow color
909 | SET_PROPERTY(popover-arrow-color, #fff)
910 |
911 | // Popover outer arrow width
912 | SET_PROPERTY(popover-arrow-outer-width, (popover-arrow-width + 1))
913 | // Popover outer arrow color
914 | SET_PROPERTY(popover-arrow-outer-color, fadein(popover-border-color, 5%))
915 | // Popover outer arrow fallback color
916 | SET_PROPERTY(popover-arrow-outer-fallback-color, darken(popover-fallback-border-color, 20%))
917 |
918 |
919 | //== Labels
920 | //
921 | //
922 |
923 | // Default label background color
924 | SET_PROPERTY(label-default-bg, gray-light)
925 | // Primary label background color
926 | SET_PROPERTY(label-primary-bg, brand-primary)
927 | // Success label background color
928 | SET_PROPERTY(label-success-bg, brand-success)
929 | // Info label background color
930 | SET_PROPERTY(label-info-bg, brand-info)
931 | // Warning label background color
932 | SET_PROPERTY(label-warning-bg, brand-warning)
933 | // Danger label background color
934 | SET_PROPERTY(label-danger-bg, brand-danger)
935 |
936 | // Default label text color
937 | SET_PROPERTY(label-color, #fff)
938 | // Default text color of a linked label
939 | SET_PROPERTY(label-link-hover-color, #fff)
940 |
941 |
942 | //== Modals
943 | //
944 | //
945 |
946 | // Padding applied to the modal body
947 | SET_PROPERTY(modal-inner-padding, 20px)
948 |
949 | // Padding applied to the modal title
950 | SET_PROPERTY(modal-title-padding, 15px)
951 | // Modal title line-height
952 | SET_PROPERTY(modal-title-line-height, line-height-base)
953 |
954 | // Background color of modal content area
955 | SET_PROPERTY(modal-content-bg, #fff)
956 | // Modal content border color
957 | SET_PROPERTY(modal-content-border-color, rgba(0,0,0,.2))
958 | // Modal content border color for IE8
959 | SET_PROPERTY(modal-content-fallback-border-color, #999)
960 |
961 | // Modal backdrop background color
962 | SET_PROPERTY(modal-backdrop-bg, #000)
963 | // Modal backdrop opacity
964 | SET_PROPERTY(modal-backdrop-opacity, .5)
965 | // Modal header border color
966 | SET_PROPERTY(modal-header-border-color, #e5e5e5)
967 | // Modal footer border color
968 | SET_PROPERTY(modal-footer-border-color, modal-header-border-color)
969 |
970 | SET_PROPERTY(modal-lg, 900px)
971 | SET_PROPERTY(modal-md, 600px)
972 | SET_PROPERTY(modal-sm, 300px)
973 |
974 |
975 | //== Alerts
976 | //
977 | // Define alert colors, border radius, and padding.
978 |
979 | SET_PROPERTY(alert-padding, 15px)
980 | SET_PROPERTY(alert-border-radius, border-radius-base)
981 | SET_PROPERTY(alert-link-font-weight, bold)
982 |
983 | SET_PROPERTY(alert-success-bg, state-success-bg)
984 | SET_PROPERTY(alert-success-text, state-success-text)
985 | SET_PROPERTY(alert-success-border, state-success-border)
986 |
987 | SET_PROPERTY(alert-info-bg, state-info-bg)
988 | SET_PROPERTY(alert-info-text, state-info-text)
989 | SET_PROPERTY(alert-info-border, state-info-border)
990 |
991 | SET_PROPERTY(alert-warning-bg, state-warning-bg)
992 | SET_PROPERTY(alert-warning-text, state-warning-text)
993 | SET_PROPERTY(alert-warning-border, state-warning-border)
994 |
995 | SET_PROPERTY(alert-danger-bg, state-danger-bg)
996 | SET_PROPERTY(alert-danger-text, state-danger-text)
997 | SET_PROPERTY(alert-danger-border, state-danger-border)
998 |
999 |
1000 | //== Progress bars
1001 | //
1002 | //
1003 |
1004 | // Background color of the whole progress component
1005 | SET_PROPERTY(progress-bg, #f5f5f5)
1006 | // Progress bar text color
1007 | SET_PROPERTY(progress-bar-color, #fff)
1008 |
1009 | // Default progress bar color
1010 | SET_PROPERTY(progress-bar-bg, brand-primary)
1011 | // Success progress bar color
1012 | SET_PROPERTY(progress-bar-success-bg, brand-success)
1013 | // Warning progress bar color
1014 | SET_PROPERTY(progress-bar-warning-bg, brand-warning)
1015 | // Danger progress bar color
1016 | SET_PROPERTY(progress-bar-danger-bg, brand-danger)
1017 | // Info progress bar color
1018 | SET_PROPERTY(progress-bar-info-bg, brand-info)
1019 |
1020 |
1021 | //== List group
1022 | //
1023 | //
1024 |
1025 | // Background color on `.list-group-item`
1026 | SET_PROPERTY(list-group-bg, #fff)
1027 | // `.list-group-item` border color
1028 | SET_PROPERTY(list-group-border, #ddd)
1029 | // List group border radius
1030 | SET_PROPERTY(list-group-border-radius, border-radius-base)
1031 |
1032 | // Background color of single list elements on hover
1033 | SET_PROPERTY(list-group-hover-bg, #f5f5f5)
1034 | // Text color of active list elements
1035 | SET_PROPERTY(list-group-active-color, component-active-color)
1036 | // Background color of active list elements
1037 | SET_PROPERTY(list-group-active-bg, component-active-bg)
1038 | // Border color of active list elements
1039 | SET_PROPERTY(list-group-active-border, list-group-active-bg)
1040 | SET_PROPERTY(list-group-active-text-color, lighten(list-group-active-bg, 40%))
1041 |
1042 | SET_PROPERTY(list-group-link-color, #555)
1043 | SET_PROPERTY(list-group-link-heading-color, #333)
1044 |
1045 |
1046 | //== Panels
1047 | //
1048 | //
1049 |
1050 | SET_PROPERTY(panel-bg, #fff)
1051 | SET_PROPERTY(panel-body-padding, 15px)
1052 | SET_PROPERTY(panel-border-radius, border-radius-base)
1053 |
1054 | // Border color for elements within panels
1055 | SET_PROPERTY(panel-inner-border, #ddd)
1056 | SET_PROPERTY(panel-footer-bg, #f5f5f5)
1057 |
1058 | SET_PROPERTY(panel-default-text, gray-dark)
1059 | SET_PROPERTY(panel-default-border, #ddd)
1060 | SET_PROPERTY(panel-default-heading-bg, #f5f5f5)
1061 |
1062 | SET_PROPERTY(panel-primary-text, #fff)
1063 | SET_PROPERTY(panel-primary-border, brand-primary)
1064 | SET_PROPERTY(panel-primary-heading-bg, brand-primary)
1065 |
1066 | SET_PROPERTY(panel-success-text, state-success-text)
1067 | SET_PROPERTY(panel-success-border, state-success-border)
1068 | SET_PROPERTY(panel-success-heading-bg, state-success-bg)
1069 |
1070 | SET_PROPERTY(panel-info-text, state-info-text)
1071 | SET_PROPERTY(panel-info-border, state-info-border)
1072 | SET_PROPERTY(panel-info-heading-bg, state-info-bg)
1073 |
1074 | SET_PROPERTY(panel-warning-text, state-warning-text)
1075 | SET_PROPERTY(panel-warning-border, state-warning-border)
1076 | SET_PROPERTY(panel-warning-heading-bg, state-warning-bg)
1077 |
1078 | SET_PROPERTY(panel-danger-text, state-danger-text)
1079 | SET_PROPERTY(panel-danger-border, state-danger-border)
1080 | SET_PROPERTY(panel-danger-heading-bg, state-danger-bg)
1081 | */
1082 |
1083 | // == Thumbnails ==
1084 | // Padding around the thumbnail image
1085 | SET_PROPERTY(thumbnail-padding, 4)
1086 | // Thumbnail background color
1087 | SET_PROPERTY_BY_ID(thumbnail-bg, body-bg)
1088 | // Thumbnail border color
1089 | SET_PROPERTY(thumbnail-border, "#ddd")
1090 | // Thumbnail border radius
1091 | SET_PROPERTY_BY_ID(thumbnail-border-radius, border-radius-base)
1092 |
1093 | // needless
1094 | // Custom text color for thumbnail captions
1095 | // SET_PROPERTY_BY_ID(thumbnail-caption-color, text-color)
1096 | // Padding around the thumbnail caption
1097 | // SET_PROPERTY(thumbnail-caption-padding, 9)
1098 |
1099 | /*
1100 | //== Wells
1101 | //
1102 | //
1103 |
1104 | SET_PROPERTY(well-bg, #f5f5f5)
1105 | SET_PROPERTY(well-border, darken(well-bg, 7%))
1106 |
1107 |
1108 | //== Badges
1109 | //
1110 | //
1111 |
1112 | SET_PROPERTY(badge-color, #fff)
1113 | // Linked badge text color on hover
1114 | SET_PROPERTY(badge-link-hover-color, #fff)
1115 | SET_PROPERTY(badge-bg, gray-light)
1116 |
1117 | // Badge text color in active nav link
1118 | SET_PROPERTY(badge-active-color, link-color)
1119 | // Badge background color in active nav link
1120 | SET_PROPERTY(badge-active-bg, #fff)
1121 |
1122 | SET_PROPERTY(badge-font-weight, bold)
1123 | SET_PROPERTY(badge-line-height, 1)
1124 | SET_PROPERTY(badge-border-radius, 10px)
1125 |
1126 |
1127 | //== Breadcrumbs
1128 | //
1129 | //
1130 |
1131 | SET_PROPERTY(breadcrumb-padding-vertical, 8px)
1132 | SET_PROPERTY(breadcrumb-padding-horizontal, 15px)
1133 | // Breadcrumb background color
1134 | SET_PROPERTY(breadcrumb-bg, #f5f5f5)
1135 | // Breadcrumb text color
1136 | SET_PROPERTY(breadcrumb-color, #ccc)
1137 | // Text color of current page in the breadcrumb
1138 | SET_PROPERTY(breadcrumb-active-color, gray-light)
1139 | // Textual separator for between breadcrumb elements
1140 | SET_PROPERTY(breadcrumb-separator, "/")
1141 |
1142 |
1143 | //== Carousel
1144 | //
1145 | //
1146 |
1147 | SET_PROPERTY(carousel-text-shadow, 0 1px 2px rgba(0,0,0,.6))
1148 |
1149 | SET_PROPERTY(carousel-control-color, #fff)
1150 | SET_PROPERTY(carousel-control-width, 15%)
1151 | SET_PROPERTY(carousel-control-opacity, .5)
1152 | SET_PROPERTY(carousel-control-font-size, 20px)
1153 |
1154 | SET_PROPERTY(carousel-indicator-active-bg, #fff)
1155 | SET_PROPERTY(carousel-indicator-border-color, #fff)
1156 |
1157 | SET_PROPERTY(carousel-caption-color, #fff)
1158 |
1159 |
1160 | //== Close
1161 | //
1162 | //
1163 |
1164 | SET_PROPERTY(close-font-weight, bold)
1165 | SET_PROPERTY(close-color, #000)
1166 | SET_PROPERTY(close-text-shadow, 0 1px 0 #fff)
1167 |
1168 |
1169 | //== Code
1170 | //
1171 | //
1172 |
1173 | SET_PROPERTY(code-color, #c7254e)
1174 | SET_PROPERTY(code-bg, #f9f2f4)
1175 |
1176 | SET_PROPERTY(kbd-color, #fff)
1177 | SET_PROPERTY(kbd-bg, #333)
1178 |
1179 | SET_PROPERTY(pre-bg, #f5f5f5)
1180 | SET_PROPERTY(pre-color, gray-dark)
1181 | SET_PROPERTY(pre-border-color, #ccc)
1182 | SET_PROPERTY(pre-scrollable-max-height, 340px)
1183 |
1184 |
1185 | //== Type
1186 | //
1187 | //
1188 |
1189 | // Text muted color
1190 | SET_PROPERTY(text-muted, gray-light)
1191 | // Abbreviations and acronyms border color
1192 | SET_PROPERTY(abbr-border-color, gray-light)
1193 | // Headings small color
1194 | SET_PROPERTY(headings-small-color, gray-light)
1195 | // Blockquote small color
1196 | SET_PROPERTY(blockquote-small-color, gray-light)
1197 | // Blockquote font size
1198 | SET_PROPERTY(blockquote-font-size, (font-size-base * 1.25))
1199 | // Blockquote border color
1200 | SET_PROPERTY(blockquote-border-color, gray-lighter)
1201 | // Page header border color
1202 | SET_PROPERTY(page-header-border-color, gray-lighter)
1203 |
1204 |
1205 | //== Miscellaneous
1206 | //
1207 | //
1208 |
1209 | // Horizontal line color.
1210 | SET_PROPERTY(hr-border, gray-lighter)
1211 |
1212 | // Horizontal offset for forms and lists.
1213 | SET_PROPERTY(component-offset-horizontal, 180px)
1214 | */
1215 | }
1216 |
--------------------------------------------------------------------------------