welcome_css 0.4 → 0.8
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 +36 -1
- data/app/assets/stylesheets/_welcome-ui-tables.scss +440 -3
- data/app/assets/stylesheets/_welcome-ui.scss +183 -0
- 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: c13e3a6b1f29326e25dc05e391e3c0b66059a376a247d2b488e2b7d709e8f5ba
|
|
4
|
+
data.tar.gz: 99a348b4586f5491b9112bff8b9b771609e97dde118828cb2032f32bdbb40041
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4952efb873d94565bb1b7406ab2964d21ef32b0508084ca66d81582dfab044d5f795586bbef78964e3298832867bf70a6a199b2df7fa83dd888efb1055ad2ea9
|
|
7
|
+
data.tar.gz: ca1c1cf3e426a474181500760ef5667ab6400f257848970576ca2a31772457e802da6a9940b3fb36354f0f000d73d1b7ff6722eeffc61ee685608efada18e80b
|
|
@@ -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
|
|
|
@@ -117,4 +124,32 @@
|
|
|
117
124
|
}
|
|
118
125
|
#ui-tabs .dropdown.dropdown-select .dropdown-menu {
|
|
119
126
|
width: 420px;
|
|
120
|
-
}
|
|
127
|
+
}
|
|
128
|
+
.btn-dot {
|
|
129
|
+
top: 6px;
|
|
130
|
+
background-color: #fff;
|
|
131
|
+
display: block;
|
|
132
|
+
float: left;
|
|
133
|
+
position: relative;
|
|
134
|
+
width: 30px;
|
|
135
|
+
height: 30px;
|
|
136
|
+
text-align: center;
|
|
137
|
+
box-shadow: -1px 1px 5px -1px rgba(123,123,123,0.25);
|
|
138
|
+
-webkit-box-shadow: -1px 1px 5px -1px rgba(123,123,123,0.25);
|
|
139
|
+
-moz-box-shadow: -1px 1px 5px -1px rgba(123,123,123,0.25);
|
|
140
|
+
}
|
|
141
|
+
.btn-dot img {
|
|
142
|
+
width: 4px;
|
|
143
|
+
margin-top: -12px;
|
|
144
|
+
}
|
|
145
|
+
.btn-offcanvas {
|
|
146
|
+
display: block;
|
|
147
|
+
float: right;
|
|
148
|
+
position: relative;
|
|
149
|
+
margin: 0 0 0 12px;
|
|
150
|
+
}
|
|
151
|
+
/*.btn-dot a {
|
|
152
|
+
display: block;
|
|
153
|
+
width: 30px;
|
|
154
|
+
height: 30px;
|
|
155
|
+
}*/
|
|
@@ -24,6 +24,37 @@
|
|
|
24
24
|
padding: 0;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
+
.land-app .header-fixed {
|
|
28
|
+
display: block;
|
|
29
|
+
/*position: fixed;*/
|
|
30
|
+
height: 130px;
|
|
31
|
+
margin-top: -22px;
|
|
32
|
+
/*background-color: #f2f2f2;*/
|
|
33
|
+
/*margin-left: -15px;*/
|
|
34
|
+
width: 100%;
|
|
35
|
+
max-width: 100%;
|
|
36
|
+
z-index: 2;
|
|
37
|
+
border-bottom: none !important;
|
|
38
|
+
margin-left: -14px;
|
|
39
|
+
}
|
|
40
|
+
.header-fixed .row-title {
|
|
41
|
+
margin-bottom: 5px;
|
|
42
|
+
margin-left: -14px;
|
|
43
|
+
}
|
|
44
|
+
.land-app .header-fixed hr {
|
|
45
|
+
margin-top: 0px;
|
|
46
|
+
}
|
|
47
|
+
.land-app .header-fixed-box {
|
|
48
|
+
position: fixed;
|
|
49
|
+
background-color: #f2f2f2;
|
|
50
|
+
top: 20px;
|
|
51
|
+
padding-right: 18%;
|
|
52
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
|
53
|
+
}
|
|
54
|
+
.land-app .form-padding {
|
|
55
|
+
margin-top: 140px !important;
|
|
56
|
+
}
|
|
57
|
+
|
|
27
58
|
/* Table Header */
|
|
28
59
|
|
|
29
60
|
table .ui-table-row {
|
|
@@ -116,7 +147,7 @@ table .ui-table-row {
|
|
|
116
147
|
}
|
|
117
148
|
.ui-app-area table .ui-menu-dots {
|
|
118
149
|
width: 20px;
|
|
119
|
-
height:
|
|
150
|
+
height: 70px;
|
|
120
151
|
text-align: right;
|
|
121
152
|
}
|
|
122
153
|
.ui-app-area table .dropdown-menu {
|
|
@@ -427,8 +458,9 @@ table .ui-table-row {
|
|
|
427
458
|
/* =========================== */
|
|
428
459
|
|
|
429
460
|
#parcel_form {
|
|
430
|
-
background-color: $ui_white
|
|
431
|
-
padding: 30px;
|
|
461
|
+
/*background-color: $ui_white;*/
|
|
462
|
+
padding: 30px 0px;
|
|
463
|
+
/*margin-top: 80px;*/
|
|
432
464
|
}
|
|
433
465
|
|
|
434
466
|
/* =========================== */
|
|
@@ -628,4 +660,409 @@ table .ui-table-row {
|
|
|
628
660
|
}
|
|
629
661
|
.main-app .am-datatable-footer .btn-outline-primary {
|
|
630
662
|
border-color: transparent;
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
/* =========================== */
|
|
666
|
+
|
|
667
|
+
.edit-form-group {
|
|
668
|
+
display: block;
|
|
669
|
+
margin-bottom: 30px;
|
|
670
|
+
}
|
|
671
|
+
.edit-form-group .form-row {
|
|
672
|
+
background: #FFFFFF;
|
|
673
|
+
border: 1px solid #FFFFFF;
|
|
674
|
+
box-shadow: 0 0 6px 0 rgba(207,207,207,0.50);
|
|
675
|
+
border-radius: 4px;
|
|
676
|
+
padding: 20px;
|
|
677
|
+
}
|
|
678
|
+
.edit-form-group.form-group-complete .form-row {
|
|
679
|
+
background: #FFFFFF;
|
|
680
|
+
border: 1px solid #91CF97;
|
|
681
|
+
box-shadow: 0 0 6px 0 rgba(207,207,207,0.50);
|
|
682
|
+
}
|
|
683
|
+
.edit-form-group .form-group {
|
|
684
|
+
margin-bottom: 0;
|
|
685
|
+
}
|
|
686
|
+
.edit-form-group .col-lg-12,
|
|
687
|
+
.edit-form-group .col-lg-6,
|
|
688
|
+
.edit-form-group .col-lg-4 {
|
|
689
|
+
margin-bottom: 15px;
|
|
690
|
+
}
|
|
691
|
+
.edit-form-group .btn-outline-primary {
|
|
692
|
+
padding-left: 15px;
|
|
693
|
+
}
|
|
694
|
+
.edit-form-group .btn-outline-primary:hover {
|
|
695
|
+
background-color: $ui_back;
|
|
696
|
+
color: $ui_white;
|
|
697
|
+
}
|
|
698
|
+
.form-pill {
|
|
699
|
+
background-color:$ui_white;
|
|
700
|
+
padding: 6px 10px;
|
|
701
|
+
border: 1px solid #D9D9D9;
|
|
702
|
+
border-radius: 4px;
|
|
703
|
+
color: $ui_back;
|
|
704
|
+
font-size: 14px;
|
|
705
|
+
}
|
|
706
|
+
.form-pill:hover {
|
|
707
|
+
text-decoration: none;
|
|
708
|
+
}
|
|
709
|
+
.pill-complete {
|
|
710
|
+
border: 1px solid #7EB984;
|
|
711
|
+
padding-right: 33px;
|
|
712
|
+
background-image: image-url('icons/icn-check.svg');
|
|
713
|
+
background-repeat: no-repeat;
|
|
714
|
+
background-size: 13px;
|
|
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
|
+
.widget .widget-title {
|
|
810
|
+
font-size: 18px;
|
|
811
|
+
line-height: 22px;
|
|
812
|
+
margin-top: 12px;
|
|
813
|
+
min-height: 48px;
|
|
814
|
+
}
|
|
815
|
+
.widget .widget-information {
|
|
816
|
+
font-size: 13px;
|
|
817
|
+
margin-top: 12px;
|
|
818
|
+
min-height: 90px;
|
|
819
|
+
}
|
|
820
|
+
.widget .phase {
|
|
821
|
+
border-radius: $ui-radius;
|
|
822
|
+
padding: 0 2px;
|
|
823
|
+
color: $ui_white;
|
|
824
|
+
}
|
|
825
|
+
.widget .phase.p-pass {
|
|
826
|
+
background-color: $ui_blue;
|
|
827
|
+
}
|
|
828
|
+
.widget .phase.p-questionable {
|
|
829
|
+
background-color: #FAC15F;
|
|
830
|
+
color: $ui_back;
|
|
831
|
+
}
|
|
832
|
+
.widget .phase.p-offmarket {
|
|
833
|
+
background-color: #FF411D;
|
|
834
|
+
}
|
|
835
|
+
.widget .phase.p-reject {
|
|
836
|
+
background-color: #FF411D;
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
.block-stats .progress {
|
|
840
|
+
display: block;
|
|
841
|
+
float: left;
|
|
842
|
+
position: relative;
|
|
843
|
+
width: 100%;
|
|
844
|
+
height: 10px;
|
|
845
|
+
background-color: transparent;
|
|
846
|
+
}
|
|
847
|
+
.block-stats .progress-small {
|
|
848
|
+
height: 8px;
|
|
849
|
+
margin-bottom: 0;
|
|
850
|
+
background-color: #e9ecef;
|
|
851
|
+
}
|
|
852
|
+
.block-stats .progress-bar {
|
|
853
|
+
height: 10px;
|
|
854
|
+
border-radius: $ui-radius;
|
|
855
|
+
}
|
|
856
|
+
.block-stats .progress-small .progress-bar {
|
|
857
|
+
height: 8px;
|
|
858
|
+
border-radius: $ui-radius;
|
|
859
|
+
}
|
|
860
|
+
.block-stats label {
|
|
861
|
+
display: block;
|
|
862
|
+
}
|
|
863
|
+
.block-stats .separate {
|
|
864
|
+
border-top: 1px solid #D9D9D9;
|
|
865
|
+
padding-top: 12px;
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
.approval-requirements-area .w-33 {
|
|
869
|
+
padding-left: 5px;
|
|
870
|
+
padding-right: 5px;
|
|
871
|
+
}
|
|
872
|
+
.approval-requirements-area .w-33 .w-50,
|
|
873
|
+
.approval-requirements-area .w-33 .w-100 {
|
|
874
|
+
padding-left: 5px;
|
|
875
|
+
padding-right: 5px;
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
.block-stats-area .counties {
|
|
879
|
+
font-size: 14px;
|
|
880
|
+
}
|
|
881
|
+
.block-stats-area .counties label {
|
|
882
|
+
margin-bottom: 2px;
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
.approval-requirements-area .block-title {
|
|
886
|
+
font-size: 18px;
|
|
887
|
+
}
|
|
888
|
+
.approval-requirements-area .block-title img {
|
|
889
|
+
margin-top: -4px;
|
|
890
|
+
}
|
|
891
|
+
.month-stats {
|
|
892
|
+
margin-bottom: 0 !important;
|
|
893
|
+
}
|
|
894
|
+
.month-stats .month {
|
|
895
|
+
width: 8.33%;
|
|
896
|
+
margin-bottom: 0;
|
|
897
|
+
font-size: 10px;
|
|
898
|
+
text-align: center;
|
|
899
|
+
}
|
|
900
|
+
.month-stats .month-chart {
|
|
901
|
+
width: 8.33%;
|
|
902
|
+
margin-bottom: 0;
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
.month-stats .month-chart .progress.vertical {
|
|
906
|
+
width: 100%;
|
|
907
|
+
min-height: 60px;
|
|
908
|
+
background-color: transparent;
|
|
909
|
+
display: -webkit-box;
|
|
910
|
+
display: -ms-flexbox;
|
|
911
|
+
display: -webkit-flex;
|
|
912
|
+
display: flex;
|
|
913
|
+
align-items: flex-end;
|
|
914
|
+
-webkit-align-items: flex-end;
|
|
915
|
+
padding: 0 3px;
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
.month-stats .month-chart .progress.vertical .progress-bar {
|
|
919
|
+
width: 100%;
|
|
920
|
+
height: 0;
|
|
921
|
+
-webkit-transition: height 0.6s ease;
|
|
922
|
+
-o-transition: height 0.6s ease;
|
|
923
|
+
transition: height 0.6s ease;
|
|
924
|
+
background-color: #007bff;
|
|
925
|
+
margin-bottom: 0;
|
|
926
|
+
border-radius: $ui-radius;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
.new-properties-area .widget .widget-title {
|
|
930
|
+
margin-top: 6px;
|
|
931
|
+
margin-bottom: 6px;
|
|
932
|
+
min-height: 40px;
|
|
933
|
+
}
|
|
934
|
+
.new-properties-area .widget .widget-information {
|
|
935
|
+
margin-top: 4px;
|
|
936
|
+
min-height: 90px;
|
|
937
|
+
}
|
|
938
|
+
.new-properties-area .widget .widget-information div {
|
|
939
|
+
margin-bottom: 2px;
|
|
940
|
+
}
|
|
941
|
+
.new-properties-area .widget .widget-subtitle {
|
|
942
|
+
font-size: 16px;
|
|
943
|
+
}
|
|
944
|
+
.new-properties-area .widget .phase-number {
|
|
945
|
+
background-color: $ui_back;
|
|
946
|
+
border-radius: 50%;
|
|
947
|
+
width: 18px;
|
|
948
|
+
height: 18px;
|
|
949
|
+
color: $ui_white;
|
|
950
|
+
text-align: center;
|
|
951
|
+
display: block;
|
|
952
|
+
float: left;
|
|
953
|
+
position: relative;
|
|
954
|
+
margin-right: 4px;
|
|
955
|
+
}
|
|
956
|
+
.new-properties-area .widget .phase-number.phase-questionable {
|
|
957
|
+
background-color: #FAC15F !important;
|
|
958
|
+
color: $ui_back;
|
|
959
|
+
}
|
|
960
|
+
.new-properties-area .widget .phase-number.phase-pass {
|
|
961
|
+
background-color: #528DE9 !important;
|
|
962
|
+
}
|
|
963
|
+
.new-properties-area .widget .phase-number.phase-offmarket,
|
|
964
|
+
.new-properties-area .widget .phase-number.phase-reject {
|
|
965
|
+
background-color: #FF411D !important;
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
.block-stats-area .select-filters select {
|
|
969
|
+
margin-right: 10px;
|
|
970
|
+
}
|
|
971
|
+
.block-stats-area .with-select select {
|
|
972
|
+
float: right;
|
|
973
|
+
}
|
|
974
|
+
.block-stats-area .content-right {
|
|
975
|
+
padding-right: 0;
|
|
976
|
+
}
|
|
977
|
+
.block-stats-area .content-right select {
|
|
978
|
+
float: right;
|
|
979
|
+
}
|
|
980
|
+
.block-stats-area .btn.btn-success,
|
|
981
|
+
.block-stats-area .btn.btn-alternative {
|
|
982
|
+
margin-bottom: 0 !important;
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
.search-area {
|
|
986
|
+
display: block;
|
|
987
|
+
position: relative;
|
|
988
|
+
width: 100%;
|
|
989
|
+
margin-bottom: 30px;
|
|
990
|
+
}
|
|
991
|
+
.search-area .search-lp {
|
|
992
|
+
height: 50px;
|
|
993
|
+
-webkit-border-top-right-radius: 0px;
|
|
994
|
+
-webkit-border-bottom-right-radius: 0px;
|
|
995
|
+
-moz-border-radius-topright: 0px;
|
|
996
|
+
-moz-border-radius-bottomright: 0px;
|
|
997
|
+
border-top-right-radius: 0px;
|
|
998
|
+
border-bottom-right-radius: 0px;
|
|
999
|
+
}
|
|
1000
|
+
.search-area button {
|
|
1001
|
+
height: 50px;
|
|
1002
|
+
-webkit-border-top-left-radius: 0px;
|
|
1003
|
+
-webkit-border-bottom-left-radius: 0px;
|
|
1004
|
+
-moz-border-radius-topleft: 0px;
|
|
1005
|
+
-moz-border-radius-bottomleft: 0px;
|
|
1006
|
+
border-top-left-radius: 0px;
|
|
1007
|
+
border-bottom-left-radius: 0px;
|
|
1008
|
+
height: 50px;
|
|
1009
|
+
padding: 5px;
|
|
1010
|
+
}
|
|
1011
|
+
.search-area button.btn-primary {
|
|
1012
|
+
background-color: #EEF2F7 !important;
|
|
1013
|
+
font-size: 16px;
|
|
1014
|
+
border: 1px solid #D9D9D9;
|
|
1015
|
+
color: #AFAFAF;
|
|
1016
|
+
text-align: center;
|
|
1017
|
+
}
|
|
1018
|
+
.search-area button img {
|
|
1019
|
+
width: -moz-available;
|
|
1020
|
+
width: -webkit-fill-available;
|
|
1021
|
+
width: fill-available;
|
|
1022
|
+
max-width: 35px;
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
.compared-area {
|
|
1026
|
+
font-size: 14px;
|
|
1027
|
+
}
|
|
1028
|
+
.compared-area .compared-to select {
|
|
1029
|
+
width: 100px;
|
|
1030
|
+
min-width: auto;
|
|
1031
|
+
margin-right: 10px;
|
|
1032
|
+
}
|
|
1033
|
+
.compared-area label {
|
|
1034
|
+
margin-bottom: 0;
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
.daily-stats .daily-widget {
|
|
1038
|
+
min-height: auto;
|
|
1039
|
+
padding: 15px 20px 25px 20px;
|
|
1040
|
+
margin-bottom: 30px;
|
|
1041
|
+
}
|
|
1042
|
+
.daily-stats .daily-widget_last-child {
|
|
1043
|
+
margin-bottom: 0px;
|
|
1044
|
+
}
|
|
1045
|
+
.daily-stats .daily-widget .title-data {
|
|
1046
|
+
display: block;
|
|
1047
|
+
position: relative;
|
|
1048
|
+
width: 100%;
|
|
1049
|
+
margin: 6px 0 -4px 0;
|
|
1050
|
+
}
|
|
1051
|
+
.daily-stats .daily-widget .subtitle-data {
|
|
1052
|
+
font-size: 10px;
|
|
1053
|
+
}
|
|
1054
|
+
.daily-stats .phase {
|
|
1055
|
+
font-size: 12px;
|
|
1056
|
+
}
|
|
1057
|
+
.daily-stats .widget .widget-title {
|
|
1058
|
+
min-height: auto;
|
|
1059
|
+
}
|
|
1060
|
+
.daily-stats .quick-links .widget a {
|
|
1061
|
+
display: block;
|
|
1062
|
+
width: 100%;
|
|
1063
|
+
left: 0;
|
|
1064
|
+
right: 0;
|
|
1065
|
+
top: 0;
|
|
1066
|
+
bottom: 0;
|
|
1067
|
+
color: #000;
|
|
631
1068
|
}
|
|
@@ -280,4 +280,187 @@ $lg-paddingbottom: 60px;
|
|
|
280
280
|
}
|
|
281
281
|
.am-left-sidebar .sidebar-elements > li > ul > .nav-items .am-scroller .content > ul > li > a:hover {
|
|
282
282
|
background-color: transparent !important;
|
|
283
|
+
}
|
|
284
|
+
.admin-options {
|
|
285
|
+
padding-right: 0 !important;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
/* ====================================== */
|
|
289
|
+
|
|
290
|
+
@media (max-width: 1024px) and (min-width: 769px) {
|
|
291
|
+
.am-wrapper.main-app .menu-app {
|
|
292
|
+
width: 20% !important;
|
|
293
|
+
max-width: 20% !important;
|
|
294
|
+
}
|
|
295
|
+
.am-wrapper.main-app .ui-app-area {
|
|
296
|
+
width: 80%;
|
|
297
|
+
}
|
|
298
|
+
.main-app .ui-app-area .page-head {
|
|
299
|
+
margin-left: 0px !important;
|
|
300
|
+
margin-right: 0px !important;
|
|
301
|
+
}
|
|
302
|
+
.am-wrapper.main-app .ui-app-area .main-content, .am-wrapper.main-app .ui-app-area .page-head {
|
|
303
|
+
padding: 20px 0;
|
|
304
|
+
}
|
|
305
|
+
.admin-options {
|
|
306
|
+
margin-right: -15px;
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
@media (min-width: 769px) {
|
|
310
|
+
input[type="radio"], input[type="checkbox"] {
|
|
311
|
+
display: none;
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
@media (max-width: 768px) {
|
|
315
|
+
.page-head .col-md-6 {
|
|
316
|
+
width: 50%;
|
|
317
|
+
display: block;
|
|
318
|
+
float: left;
|
|
319
|
+
position: relative;
|
|
320
|
+
}
|
|
321
|
+
.am-wrapper.main-app .navbar {
|
|
322
|
+
height: 50px;
|
|
323
|
+
display: block;
|
|
324
|
+
}
|
|
325
|
+
.am-top-header {
|
|
326
|
+
position: fixed !important;
|
|
327
|
+
top: 0;
|
|
328
|
+
width: 100%;
|
|
329
|
+
z-index: 9999;
|
|
330
|
+
}
|
|
331
|
+
.am-left-sidebar .am-logo {
|
|
332
|
+
height: 50px !important;
|
|
333
|
+
}
|
|
334
|
+
.am-wrapper.main-app .ui-app-area {
|
|
335
|
+
width: 100%;
|
|
336
|
+
margin-top: 50px;
|
|
337
|
+
display: block;
|
|
338
|
+
}
|
|
339
|
+
.am-wrapper.main-app .menu-app {
|
|
340
|
+
width: 100%;
|
|
341
|
+
transform: translate3d(0, 0, 0);
|
|
342
|
+
}
|
|
343
|
+
.am-left-sidebar.menu-app {
|
|
344
|
+
transform: translate3d(260px, 0px, 0px) !important;
|
|
345
|
+
position: fixed !important;
|
|
346
|
+
width: 260px !important;
|
|
347
|
+
background: #112e66;
|
|
348
|
+
color: #eee;
|
|
349
|
+
right: 0;
|
|
350
|
+
left: auto;
|
|
351
|
+
height: 100%;
|
|
352
|
+
transition: all 0.3s;
|
|
353
|
+
}
|
|
354
|
+
.am-left-sidebar .sidebar-elements > li.parent > a:after {
|
|
355
|
+
display: none;
|
|
356
|
+
}
|
|
357
|
+
.am-left-sidebar .sidebar-elements > li > a {
|
|
358
|
+
padding: 10px 10px 10px 0px;
|
|
359
|
+
}
|
|
360
|
+
.am-navbar-header .page-title img {
|
|
361
|
+
margin-left: -18px;
|
|
362
|
+
position: fixed;
|
|
363
|
+
margin-top: 2px;
|
|
364
|
+
}
|
|
365
|
+
.button {
|
|
366
|
+
position: absolute;
|
|
367
|
+
top: 10px;
|
|
368
|
+
left: 10px;
|
|
369
|
+
z-index: 10000;
|
|
370
|
+
color: white;
|
|
371
|
+
padding: 10px;
|
|
372
|
+
font-size: 30px;
|
|
373
|
+
cursor: pointer;
|
|
374
|
+
}
|
|
375
|
+
.button .fa {
|
|
376
|
+
transition: color 1000ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
|
|
377
|
+
transition-delay: 0.75s;
|
|
378
|
+
}
|
|
379
|
+
input[data-function*=swipe] {
|
|
380
|
+
position: absolute;
|
|
381
|
+
opacity: 0;
|
|
382
|
+
}
|
|
383
|
+
label[data-function*=swipe] {
|
|
384
|
+
position: fixed;
|
|
385
|
+
top: 0px;
|
|
386
|
+
right: 5px;
|
|
387
|
+
display: block;
|
|
388
|
+
width: 36px;
|
|
389
|
+
height: 50px;
|
|
390
|
+
text-align: center;
|
|
391
|
+
color: #444;
|
|
392
|
+
cursor: pointer;
|
|
393
|
+
transform: translate3d(0, 0, 0);
|
|
394
|
+
transition: transform 0.3s;
|
|
395
|
+
z-index: 9999;
|
|
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;
|
|
401
|
+
}
|
|
402
|
+
.am-content.ui-app-area {
|
|
403
|
+
flex: 1;
|
|
404
|
+
transform: translate3d(0, 0, 0);
|
|
405
|
+
transition: transform 0.3s;
|
|
406
|
+
}
|
|
407
|
+
input[data-function*=swipe]:checked ~ .am-content {
|
|
408
|
+
transform: translate3d(0, 0px, 0px) !important;
|
|
409
|
+
}
|
|
410
|
+
input[data-function*=swipe]:checked ~ .am-left-sidebar.col-12.col-lg-2.p-0.menu-app {
|
|
411
|
+
transform: translate3d(0px, 0px, 0px) !important;
|
|
412
|
+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
|
|
413
|
+
}
|
|
414
|
+
.nav-menu-btn {
|
|
415
|
+
display: none;
|
|
416
|
+
/*vertical-align: middle;
|
|
417
|
+
padding: 5px;
|
|
418
|
+
cursor: pointer;
|
|
419
|
+
margin-top: 14px;
|
|
420
|
+
border: 1px solid #000;
|
|
421
|
+
z-index: 9999;*/
|
|
422
|
+
}
|
|
423
|
+
.nav-menu-btn .menu-bar {
|
|
424
|
+
background: #000;
|
|
425
|
+
width: 15px;
|
|
426
|
+
height: 2px;
|
|
427
|
+
margin: 0 0 3px;
|
|
428
|
+
transition: all .2s ease-in-out;
|
|
429
|
+
}
|
|
430
|
+
.nav-menu-btn .menu-bar:last-child {
|
|
431
|
+
margin: 0;
|
|
432
|
+
}
|
|
433
|
+
.am-wrapper.main-app .ui-app-area .main-content,
|
|
434
|
+
.am-wrapper.main-app .ui-app-area .page-head {
|
|
435
|
+
padding: 20px 0;
|
|
436
|
+
}
|
|
437
|
+
.main-app .ui-app-area .page-head {
|
|
438
|
+
margin-left: 0px !important;
|
|
439
|
+
margin-right: 0px !important;
|
|
440
|
+
}
|
|
441
|
+
.user-profile {
|
|
442
|
+
position: fixed;
|
|
443
|
+
top: 11px;
|
|
444
|
+
right: 46px;
|
|
445
|
+
}
|
|
446
|
+
.user-notifications {
|
|
447
|
+
position: fixed;
|
|
448
|
+
top: 11px;
|
|
449
|
+
right: 78px;
|
|
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
|
+
}
|
|
461
|
+
}
|
|
462
|
+
@media (max-width: 480px) {
|
|
463
|
+
.am-content.ui-app-area table {
|
|
464
|
+
table-layout: auto !important;
|
|
465
|
+
}
|
|
283
466
|
}
|
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.8'
|
|
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-
|
|
11
|
+
date: 2021-08-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|