welcome_css 0.6 → 0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/_welcome-ui-buttons.scss +13 -1
- data/app/assets/stylesheets/_welcome-ui-tables.scss +364 -0
- data/app/assets/stylesheets/_welcome-ui.scss +21 -5
- data/app/assets/stylesheets/_welcome_bootstrap_variables.scss +1 -0
- data/lib/welcome_css/version.rb +1 -1
- metadata +2 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: b7934522cfaade72c696df02fdeae5545f667cd6543c851b4025a37705ea5428
         | 
| 4 | 
            +
              data.tar.gz: bba084691b3f08ee65531e3ac8d3f539cc886063356cf527d61ae92282793e83
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: a46c8f65000b5b7e8216a96247c20afba5bc102da269888e189d7f3aed40f72b1bb7773adc980c90595770cfe5e7848977acc9d6e8797b1b3ef325618cdbae8c
         | 
| 7 | 
            +
              data.tar.gz: 3976f609cf60f803355903aa59e09f61180da7de82c6657ff30c57c607b28d232354001d2966a8c8dd7168709209be6a0041c13ee5d1481adb81aa799b9c36d0
         | 
| @@ -71,6 +71,13 @@ | |
| 71 71 | 
             
              border: 1px solid $ui_blue;
         | 
| 72 72 | 
             
              color: $ui_blue;
         | 
| 73 73 | 
             
            }
         | 
| 74 | 
            +
            .ui-app-area .btn-alternative {
         | 
| 75 | 
            +
              font-family: 'gt-eesti-medium';
         | 
| 76 | 
            +
              background-color: transparent;
         | 
| 77 | 
            +
              border: 1px solid #D9D9D9;
         | 
| 78 | 
            +
              font-weight: normal;
         | 
| 79 | 
            +
              color: $ui_back;
         | 
| 80 | 
            +
            }
         | 
| 74 81 |  | 
| 75 82 | 
             
            /* ========================================= */
         | 
| 76 83 |  | 
| @@ -140,4 +147,9 @@ | |
| 140 147 | 
             
              float: right;
         | 
| 141 148 | 
             
              position: relative;
         | 
| 142 149 | 
             
              margin: 0 0 0 12px;
         | 
| 143 | 
            -
            }
         | 
| 150 | 
            +
            }
         | 
| 151 | 
            +
            /*.btn-dot a {
         | 
| 152 | 
            +
              display: block;
         | 
| 153 | 
            +
              width: 30px;
         | 
| 154 | 
            +
              height: 30px;
         | 
| 155 | 
            +
            }*/
         | 
| @@ -713,4 +713,368 @@ table .ui-table-row { | |
| 713 713 | 
             
              background-repeat: no-repeat;
         | 
| 714 714 | 
             
              background-size: 13px;
         | 
| 715 715 | 
             
              background-position: right 10px top 8px;
         | 
| 716 | 
            +
            }
         | 
| 717 | 
            +
             | 
| 718 | 
            +
            /* =========================== */
         | 
| 719 | 
            +
             | 
| 720 | 
            +
            .calculator-container {
         | 
| 721 | 
            +
              display: block;
         | 
| 722 | 
            +
              width: 100%;
         | 
| 723 | 
            +
              background-color: #292926;
         | 
| 724 | 
            +
              padding: 12px;
         | 
| 725 | 
            +
            }
         | 
| 726 | 
            +
            .calculator-container #screen {
         | 
| 727 | 
            +
              color: $ui_white;
         | 
| 728 | 
            +
              font-size: 26px;
         | 
| 729 | 
            +
            }
         | 
| 730 | 
            +
            .calculator-container .row {
         | 
| 731 | 
            +
              margin-right: 0;
         | 
| 732 | 
            +
              margin-left: 0;
         | 
| 733 | 
            +
            }
         | 
| 734 | 
            +
            .calculator-container .row button {
         | 
| 735 | 
            +
              width: 100%;
         | 
| 736 | 
            +
              background-color: transparent;
         | 
| 737 | 
            +
              color: #fff;
         | 
| 738 | 
            +
              border: 2px solid #292926;
         | 
| 739 | 
            +
              transition: all .2s;
         | 
| 740 | 
            +
              cursor: pointer;
         | 
| 741 | 
            +
            }
         | 
| 742 | 
            +
            .calculator-container .row button:hover {
         | 
| 743 | 
            +
              transform :scale(1.03);
         | 
| 744 | 
            +
            }
         | 
| 745 | 
            +
            .calculator-container .row button:active {
         | 
| 746 | 
            +
              transform: scale(.98);
         | 
| 747 | 
            +
            }
         | 
| 748 | 
            +
            .calculator-container .gray_light {
         | 
| 749 | 
            +
              background-color: #5F5E5C;
         | 
| 750 | 
            +
            }
         | 
| 751 | 
            +
            .calculator-container .gray_dark {
         | 
| 752 | 
            +
              background-color: #3E3D3A;
         | 
| 753 | 
            +
            }
         | 
| 754 | 
            +
            .calculator-container .bg_blue {
         | 
| 755 | 
            +
              background-color: $ui_blue;
         | 
| 756 | 
            +
            }
         | 
| 757 | 
            +
             | 
| 758 | 
            +
            /* =========================== */
         | 
| 759 | 
            +
             | 
| 760 | 
            +
            .block-stats {
         | 
| 761 | 
            +
              display: block;
         | 
| 762 | 
            +
              float: left;
         | 
| 763 | 
            +
              position: relative;
         | 
| 764 | 
            +
              width: 100%;
         | 
| 765 | 
            +
              margin-bottom: $md-marginbottom;
         | 
| 766 | 
            +
            }
         | 
| 767 | 
            +
            .block-stats select {
         | 
| 768 | 
            +
              display: block;
         | 
| 769 | 
            +
              float: left;
         | 
| 770 | 
            +
              position: relative;
         | 
| 771 | 
            +
              min-width: 140px;
         | 
| 772 | 
            +
              height: 36px;
         | 
| 773 | 
            +
              border: 1px solid #D9D9D9;
         | 
| 774 | 
            +
              border-radius: $ui-radius;
         | 
| 775 | 
            +
              padding: 4px 6px;
         | 
| 776 | 
            +
            }
         | 
| 777 | 
            +
            .block-stats .block-stats-area {
         | 
| 778 | 
            +
              display: block;
         | 
| 779 | 
            +
              float: left;
         | 
| 780 | 
            +
              position: relative;
         | 
| 781 | 
            +
              width: 100%;
         | 
| 782 | 
            +
              background-color: $ui_white;
         | 
| 783 | 
            +
              border-radius: $ui-radius;
         | 
| 784 | 
            +
              min-height: 100px;
         | 
| 785 | 
            +
              padding: 15px 20px;
         | 
| 786 | 
            +
            }
         | 
| 787 | 
            +
            .block-stats div {
         | 
| 788 | 
            +
              display: block;
         | 
| 789 | 
            +
              float: left;
         | 
| 790 | 
            +
              position: relative;
         | 
| 791 | 
            +
              margin-bottom: 12px;
         | 
| 792 | 
            +
            }
         | 
| 793 | 
            +
            .widget-box {
         | 
| 794 | 
            +
              display: block;
         | 
| 795 | 
            +
              float: left;
         | 
| 796 | 
            +
              position: relative;
         | 
| 797 | 
            +
              padding: 0 3px;
         | 
| 798 | 
            +
            }
         | 
| 799 | 
            +
            .widget {
         | 
| 800 | 
            +
              display: block;
         | 
| 801 | 
            +
              float: left;
         | 
| 802 | 
            +
              position: relative;
         | 
| 803 | 
            +
              background-color: #EEF2F7;
         | 
| 804 | 
            +
              border: 1px solid #D2D5DA;
         | 
| 805 | 
            +
              border-radius: $ui-radius;
         | 
| 806 | 
            +
              padding: 15px 20px;
         | 
| 807 | 
            +
              min-height: 300px;
         | 
| 808 | 
            +
            }
         | 
| 809 | 
            +
            .am-content .widget {
         | 
| 810 | 
            +
              float: none;
         | 
| 811 | 
            +
              padding: 0;
         | 
| 812 | 
            +
              background-color: transparent;
         | 
| 813 | 
            +
              border: none;
         | 
| 814 | 
            +
            }
         | 
| 815 | 
            +
            .widget .widget-title {
         | 
| 816 | 
            +
              font-size: 18px;
         | 
| 817 | 
            +
              line-height: 22px;
         | 
| 818 | 
            +
              margin-top: 12px;
         | 
| 819 | 
            +
              min-height: 48px;
         | 
| 820 | 
            +
            }
         | 
| 821 | 
            +
            .widget .widget-information {
         | 
| 822 | 
            +
              font-size: 13px;
         | 
| 823 | 
            +
              margin-top: 12px;
         | 
| 824 | 
            +
              min-height: 90px;
         | 
| 825 | 
            +
            }
         | 
| 826 | 
            +
            .widget .phase {
         | 
| 827 | 
            +
              border-radius: $ui-radius;
         | 
| 828 | 
            +
              padding: 0 2px;
         | 
| 829 | 
            +
              color: $ui_white;
         | 
| 830 | 
            +
            }
         | 
| 831 | 
            +
            .widget .phase.p-pass {
         | 
| 832 | 
            +
              background-color: $ui_blue;
         | 
| 833 | 
            +
            }
         | 
| 834 | 
            +
            .widget .phase.p-questionable {
         | 
| 835 | 
            +
              background-color: #FAC15F;
         | 
| 836 | 
            +
              color: $ui_back;
         | 
| 837 | 
            +
            }
         | 
| 838 | 
            +
            .widget .phase.p-offmarket {
         | 
| 839 | 
            +
              background-color: #FF411D;
         | 
| 840 | 
            +
            }
         | 
| 841 | 
            +
            .widget .phase.p-reject {
         | 
| 842 | 
            +
              background-color: #FF411D;
         | 
| 843 | 
            +
            }
         | 
| 844 | 
            +
             | 
| 845 | 
            +
            .block-stats .progress {
         | 
| 846 | 
            +
              display: block;
         | 
| 847 | 
            +
              float: left;
         | 
| 848 | 
            +
              position: relative;
         | 
| 849 | 
            +
              width: 100%;
         | 
| 850 | 
            +
              height: 10px;
         | 
| 851 | 
            +
              background-color: transparent;
         | 
| 852 | 
            +
            }
         | 
| 853 | 
            +
            .block-stats .progress-small {
         | 
| 854 | 
            +
              height: 8px;
         | 
| 855 | 
            +
              margin-bottom: 0;
         | 
| 856 | 
            +
              background-color: #e9ecef;
         | 
| 857 | 
            +
            }
         | 
| 858 | 
            +
            .block-stats .progress-bar {
         | 
| 859 | 
            +
              height: 10px;
         | 
| 860 | 
            +
              border-radius: $ui-radius;
         | 
| 861 | 
            +
            }
         | 
| 862 | 
            +
            .block-stats .progress-small .progress-bar {
         | 
| 863 | 
            +
              height: 8px;
         | 
| 864 | 
            +
              border-radius: $ui-radius;
         | 
| 865 | 
            +
            }
         | 
| 866 | 
            +
            .block-stats label {
         | 
| 867 | 
            +
              display: block;
         | 
| 868 | 
            +
            }
         | 
| 869 | 
            +
            .block-stats .separate {
         | 
| 870 | 
            +
              border-top: 1px solid #D9D9D9;
         | 
| 871 | 
            +
              padding-top: 12px;
         | 
| 872 | 
            +
            }
         | 
| 873 | 
            +
             | 
| 874 | 
            +
            .approval-requirements-area .w-33 {
         | 
| 875 | 
            +
              padding-left: 5px;
         | 
| 876 | 
            +
              padding-right: 5px;
         | 
| 877 | 
            +
            }
         | 
| 878 | 
            +
            .approval-requirements-area .w-33 .w-50,
         | 
| 879 | 
            +
            .approval-requirements-area .w-33 .w-100 {
         | 
| 880 | 
            +
              padding-left: 5px;
         | 
| 881 | 
            +
              padding-right: 5px;
         | 
| 882 | 
            +
            }
         | 
| 883 | 
            +
             | 
| 884 | 
            +
            .block-stats-area .counties {
         | 
| 885 | 
            +
              font-size: 14px;
         | 
| 886 | 
            +
            }
         | 
| 887 | 
            +
            .block-stats-area .counties label {
         | 
| 888 | 
            +
              margin-bottom: 2px;
         | 
| 889 | 
            +
            }
         | 
| 890 | 
            +
             | 
| 891 | 
            +
            .approval-requirements-area .block-title {
         | 
| 892 | 
            +
              font-size: 18px;
         | 
| 893 | 
            +
            }
         | 
| 894 | 
            +
            .approval-requirements-area .block-title img {
         | 
| 895 | 
            +
              margin-top: -4px;
         | 
| 896 | 
            +
            }
         | 
| 897 | 
            +
            .month-stats {
         | 
| 898 | 
            +
              margin-bottom: 0 !important;
         | 
| 899 | 
            +
            }
         | 
| 900 | 
            +
            .month-stats .month {
         | 
| 901 | 
            +
              width: 8.33%;
         | 
| 902 | 
            +
              margin-bottom: 0;
         | 
| 903 | 
            +
              font-size: 10px;
         | 
| 904 | 
            +
              text-align: center;
         | 
| 905 | 
            +
            }
         | 
| 906 | 
            +
            .month-stats .month-chart {
         | 
| 907 | 
            +
              width: 8.33%;
         | 
| 908 | 
            +
              margin-bottom: 0;
         | 
| 909 | 
            +
            }
         | 
| 910 | 
            +
             | 
| 911 | 
            +
            .month-stats .month-chart .progress.vertical {
         | 
| 912 | 
            +
              width: 100%;
         | 
| 913 | 
            +
              min-height: 60px;
         | 
| 914 | 
            +
              background-color: transparent;
         | 
| 915 | 
            +
              display: -webkit-box;
         | 
| 916 | 
            +
              display: -ms-flexbox;
         | 
| 917 | 
            +
              display: -webkit-flex;
         | 
| 918 | 
            +
              display: flex;
         | 
| 919 | 
            +
              align-items: flex-end;
         | 
| 920 | 
            +
              -webkit-align-items: flex-end;
         | 
| 921 | 
            +
              padding: 0 3px;
         | 
| 922 | 
            +
            }
         | 
| 923 | 
            +
             | 
| 924 | 
            +
            .month-stats .month-chart .progress.vertical .progress-bar {
         | 
| 925 | 
            +
              width: 100%;
         | 
| 926 | 
            +
              height: 0;
         | 
| 927 | 
            +
              -webkit-transition: height 0.6s ease;
         | 
| 928 | 
            +
              -o-transition: height 0.6s ease;
         | 
| 929 | 
            +
              transition: height 0.6s ease;
         | 
| 930 | 
            +
              background-color: #007bff;
         | 
| 931 | 
            +
              margin-bottom: 0;
         | 
| 932 | 
            +
              border-radius: $ui-radius;
         | 
| 933 | 
            +
            }
         | 
| 934 | 
            +
             | 
| 935 | 
            +
            .new-properties-area .widget .widget-title {
         | 
| 936 | 
            +
              margin-top: 6px;
         | 
| 937 | 
            +
              margin-bottom: 6px;
         | 
| 938 | 
            +
              min-height: 40px;
         | 
| 939 | 
            +
            }
         | 
| 940 | 
            +
            .new-properties-area .widget .widget-information {
         | 
| 941 | 
            +
              margin-top: 4px;
         | 
| 942 | 
            +
              min-height: 90px;
         | 
| 943 | 
            +
            }
         | 
| 944 | 
            +
            .new-properties-area .widget .widget-information div {
         | 
| 945 | 
            +
              margin-bottom: 2px;
         | 
| 946 | 
            +
            }
         | 
| 947 | 
            +
            .new-properties-area .widget .widget-subtitle {
         | 
| 948 | 
            +
              font-size: 16px;
         | 
| 949 | 
            +
            }
         | 
| 950 | 
            +
            .new-properties-area .widget .phase-number {
         | 
| 951 | 
            +
              background-color: $ui_back;
         | 
| 952 | 
            +
              border-radius: 50%;
         | 
| 953 | 
            +
              width: 18px;
         | 
| 954 | 
            +
              height: 18px;
         | 
| 955 | 
            +
              color: $ui_white;
         | 
| 956 | 
            +
              text-align: center;
         | 
| 957 | 
            +
              display: block;
         | 
| 958 | 
            +
              float: left;
         | 
| 959 | 
            +
              position: relative;
         | 
| 960 | 
            +
              margin-right: 4px;
         | 
| 961 | 
            +
            }
         | 
| 962 | 
            +
            .new-properties-area .widget .phase-number.phase-questionable {
         | 
| 963 | 
            +
              background-color: #FAC15F !important;
         | 
| 964 | 
            +
              color: $ui_back;
         | 
| 965 | 
            +
            }
         | 
| 966 | 
            +
            .new-properties-area .widget .phase-number.phase-pass {
         | 
| 967 | 
            +
              background-color: #528DE9 !important;
         | 
| 968 | 
            +
            }
         | 
| 969 | 
            +
            .new-properties-area .widget .phase-number.phase-offmarket,
         | 
| 970 | 
            +
            .new-properties-area .widget .phase-number.phase-reject {
         | 
| 971 | 
            +
              background-color: #FF411D !important;
         | 
| 972 | 
            +
            }
         | 
| 973 | 
            +
             | 
| 974 | 
            +
            .block-stats-area .select-filters select {
         | 
| 975 | 
            +
              margin-right: 10px;
         | 
| 976 | 
            +
            }
         | 
| 977 | 
            +
            .block-stats-area .with-select select {
         | 
| 978 | 
            +
              float: right;
         | 
| 979 | 
            +
            }
         | 
| 980 | 
            +
            .block-stats-area .content-right {
         | 
| 981 | 
            +
              padding-right: 0;
         | 
| 982 | 
            +
            }
         | 
| 983 | 
            +
            .block-stats-area .content-right select {
         | 
| 984 | 
            +
              float: right;
         | 
| 985 | 
            +
            }
         | 
| 986 | 
            +
            .block-stats-area .btn.btn-success,
         | 
| 987 | 
            +
            .block-stats-area .btn.btn-alternative {
         | 
| 988 | 
            +
              margin-bottom: 0 !important;
         | 
| 989 | 
            +
            }
         | 
| 990 | 
            +
             | 
| 991 | 
            +
            .search-area {
         | 
| 992 | 
            +
              display: block;
         | 
| 993 | 
            +
              position: relative;
         | 
| 994 | 
            +
              width: 100%;
         | 
| 995 | 
            +
              margin-bottom: 30px;
         | 
| 996 | 
            +
            }
         | 
| 997 | 
            +
            .search-area .search-lp {
         | 
| 998 | 
            +
              height: 50px;
         | 
| 999 | 
            +
              border-radius: 4px;
         | 
| 1000 | 
            +
              -webkit-border-top-right-radius: 0px;
         | 
| 1001 | 
            +
              -webkit-border-bottom-right-radius: 0px;
         | 
| 1002 | 
            +
              -moz-border-radius-topright: 0px;
         | 
| 1003 | 
            +
              -moz-border-radius-bottomright: 0px;
         | 
| 1004 | 
            +
              border-top-right-radius: 0px;
         | 
| 1005 | 
            +
              border-bottom-right-radius: 0px;
         | 
| 1006 | 
            +
              border-color: #D9D9D9 !important;
         | 
| 1007 | 
            +
              border-style: solid;
         | 
| 1008 | 
            +
              background-color: #fff;
         | 
| 1009 | 
            +
              border-width: 1px;
         | 
| 1010 | 
            +
              padding: 5px 10px;
         | 
| 1011 | 
            +
              border-image: none;
         | 
| 1012 | 
            +
            }
         | 
| 1013 | 
            +
            .search-area input[type="image"] {
         | 
| 1014 | 
            +
              height: 50px;
         | 
| 1015 | 
            +
              -webkit-border-top-left-radius: 0px;
         | 
| 1016 | 
            +
              -webkit-border-bottom-left-radius: 0px;
         | 
| 1017 | 
            +
              -moz-border-radius-topleft: 0px;
         | 
| 1018 | 
            +
              -moz-border-radius-bottomleft: 0px;
         | 
| 1019 | 
            +
              border-top-left-radius: 0px;
         | 
| 1020 | 
            +
              border-bottom-left-radius: 0px;
         | 
| 1021 | 
            +
              height: 50px;
         | 
| 1022 | 
            +
              padding: 5px;
         | 
| 1023 | 
            +
              background-color: #EEF2F7 !important;
         | 
| 1024 | 
            +
              font-size: 16px;
         | 
| 1025 | 
            +
              border: 1px solid #D9D9D9;
         | 
| 1026 | 
            +
              color: #AFAFAF;
         | 
| 1027 | 
            +
              text-align: center;
         | 
| 1028 | 
            +
              margin: -4px 0 0 -6px;
         | 
| 1029 | 
            +
            }
         | 
| 1030 | 
            +
            .search-area button img {
         | 
| 1031 | 
            +
              width: -moz-available; 
         | 
| 1032 | 
            +
              width: -webkit-fill-available;
         | 
| 1033 | 
            +
              width: fill-available;
         | 
| 1034 | 
            +
              max-width: 35px;
         | 
| 1035 | 
            +
            }
         | 
| 1036 | 
            +
             | 
| 1037 | 
            +
            .compared-area {
         | 
| 1038 | 
            +
              font-size: 14px;
         | 
| 1039 | 
            +
            }
         | 
| 1040 | 
            +
            .compared-area .compared-to select {
         | 
| 1041 | 
            +
              width: 100px;
         | 
| 1042 | 
            +
              min-width: auto;
         | 
| 1043 | 
            +
              margin-right: 10px;
         | 
| 1044 | 
            +
            }
         | 
| 1045 | 
            +
            .compared-area label {
         | 
| 1046 | 
            +
              margin-bottom: 0;
         | 
| 1047 | 
            +
            }
         | 
| 1048 | 
            +
             | 
| 1049 | 
            +
            .daily-stats .daily-widget {
         | 
| 1050 | 
            +
              min-height: auto;
         | 
| 1051 | 
            +
              padding: 15px 20px 25px 20px;
         | 
| 1052 | 
            +
              margin-bottom: 30px;
         | 
| 1053 | 
            +
            }
         | 
| 1054 | 
            +
            .daily-stats .daily-widget_last-child {
         | 
| 1055 | 
            +
              margin-bottom: 0px;
         | 
| 1056 | 
            +
            }
         | 
| 1057 | 
            +
            .daily-stats .daily-widget .title-data {
         | 
| 1058 | 
            +
              display: block;
         | 
| 1059 | 
            +
              position: relative;
         | 
| 1060 | 
            +
              width: 100%;
         | 
| 1061 | 
            +
              margin: 6px 0 -4px 0;
         | 
| 1062 | 
            +
            }
         | 
| 1063 | 
            +
            .daily-stats .daily-widget .subtitle-data {
         | 
| 1064 | 
            +
              font-size: 10px;
         | 
| 1065 | 
            +
            }
         | 
| 1066 | 
            +
            .daily-stats .phase {
         | 
| 1067 | 
            +
              font-size: 12px;
         | 
| 1068 | 
            +
            }
         | 
| 1069 | 
            +
            .daily-stats .widget .widget-title {
         | 
| 1070 | 
            +
              min-height: auto;
         | 
| 1071 | 
            +
            }
         | 
| 1072 | 
            +
            .daily-stats .quick-links .widget a {
         | 
| 1073 | 
            +
              display: block;
         | 
| 1074 | 
            +
              width: 100%;
         | 
| 1075 | 
            +
              left: 0;
         | 
| 1076 | 
            +
              right: 0;
         | 
| 1077 | 
            +
              top: 0;
         | 
| 1078 | 
            +
              bottom: 0;
         | 
| 1079 | 
            +
              color: #000;
         | 
| 716 1080 | 
             
            }
         | 
| @@ -307,8 +307,8 @@ $lg-paddingbottom: 60px; | |
| 307 307 | 
             
              }
         | 
| 308 308 | 
             
            }
         | 
| 309 309 | 
             
            @media (min-width: 769px) {
         | 
| 310 | 
            -
              input[type="radio"], input[type="checkbox"] {
         | 
| 311 | 
            -
                display: none;
         | 
| 310 | 
            +
              input[type="radio"]#swipe, input[type="checkbox"]#swipe {
         | 
| 311 | 
            +
                display: none; 
         | 
| 312 312 | 
             
              }
         | 
| 313 313 | 
             
            }
         | 
| 314 314 | 
             
            @media (max-width: 768px) {
         | 
| @@ -320,6 +320,7 @@ $lg-paddingbottom: 60px; | |
| 320 320 | 
             
              }
         | 
| 321 321 | 
             
              .am-wrapper.main-app .navbar {
         | 
| 322 322 | 
             
                height: 50px;
         | 
| 323 | 
            +
                display: block;
         | 
| 323 324 | 
             
              }
         | 
| 324 325 | 
             
              .am-top-header {
         | 
| 325 326 | 
             
                position: fixed !important;
         | 
| @@ -393,6 +394,10 @@ $lg-paddingbottom: 60px; | |
| 393 394 | 
             
                transition: transform 0.3s;
         | 
| 394 395 | 
             
                z-index: 9999;
         | 
| 395 396 | 
             
                font-size: 14px;
         | 
| 397 | 
            +
                background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMjQgNmgtMjR2LTRoMjR2NHptMCA0aC0yNHY0aDI0di00em0wIDhoLTI0djRoMjR2LTR6Ii8+PC9zdmc+');
         | 
| 398 | 
            +
                background-repeat: no-repeat;
         | 
| 399 | 
            +
                background-size: 18px;
         | 
| 400 | 
            +
                background-position: top 16px right 12px;
         | 
| 396 401 | 
             
              }
         | 
| 397 402 | 
             
              .am-content.ui-app-area {
         | 
| 398 403 | 
             
                flex: 1;
         | 
| @@ -407,12 +412,13 @@ $lg-paddingbottom: 60px; | |
| 407 412 | 
             
                box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
         | 
| 408 413 | 
             
              }
         | 
| 409 414 | 
             
              .nav-menu-btn {
         | 
| 410 | 
            -
                display:  | 
| 411 | 
            -
                vertical-align: middle;
         | 
| 415 | 
            +
                display: none;
         | 
| 416 | 
            +
                /*vertical-align: middle;
         | 
| 412 417 | 
             
                padding: 5px;
         | 
| 413 | 
            -
                font-size: 24px;
         | 
| 414 418 | 
             
                cursor: pointer;
         | 
| 415 419 | 
             
                margin-top: 14px;
         | 
| 420 | 
            +
                border: 1px solid #000;
         | 
| 421 | 
            +
                z-index: 9999;*/
         | 
| 416 422 | 
             
              }
         | 
| 417 423 | 
             
              .nav-menu-btn .menu-bar {
         | 
| 418 424 | 
             
                background: #000;
         | 
| @@ -442,6 +448,16 @@ $lg-paddingbottom: 60px; | |
| 442 448 | 
             
                top: 11px;
         | 
| 443 449 | 
             
                right: 78px;
         | 
| 444 450 | 
             
              }
         | 
| 451 | 
            +
              .navbar-toggler {
         | 
| 452 | 
            +
                display: none;
         | 
| 453 | 
            +
              }
         | 
| 454 | 
            +
              .col-6.admin-options {
         | 
| 455 | 
            +
                display: block;
         | 
| 456 | 
            +
                float: right;
         | 
| 457 | 
            +
                position: relative;
         | 
| 458 | 
            +
                padding-right: 40px !important;
         | 
| 459 | 
            +
                height: 30px;
         | 
| 460 | 
            +
              }
         | 
| 445 461 | 
             
            }
         | 
| 446 462 | 
             
            @media (max-width: 480px) {
         | 
| 447 463 | 
             
              .am-content.ui-app-area table {
         | 
    
        data/lib/welcome_css/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: welcome_css
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: '0. | 
| 4 | 
            +
              version: '0.10'
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Jose Camacho
         | 
| 8 8 | 
             
            autorequire:
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2021-08- | 
| 11 | 
            +
            date: 2021-08-31 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: rails
         |