welcome_css 0.7 → 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
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
|
|
|
@@ -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,356 @@ 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
|
+
.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;
|
|
716
1068
|
}
|
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-08-
|
|
11
|
+
date: 2021-08-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|