welcome_css 0.52 → 0.55
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-tables.scss +136 -21
- 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: 9bc625708eb947f9c64c8d864686f8d4c2723930452adadbc387286af275ffe0
|
|
4
|
+
data.tar.gz: 723be16b9ef30dab1dc59064e3d2983d41c848be57309f72faad782fb814d177
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d7e8ae470611125585c7af44da2b9529e14185930ee169cb2e368de6bca47e71894fff2a9029fcf40bd9a463d3cdfe4c5d668f6b0741fa0d347627fb7859feb7
|
|
7
|
+
data.tar.gz: e6f4cac95d9c4178c0bbe8087f57a0e56b79359460918096c3ece0e6839609d67968037d56df8a66f0b60987e9bdd6b5541e63758e547f3621b5df81f24bac1e
|
|
@@ -2639,28 +2639,51 @@ table .ui-table-row {
|
|
|
2639
2639
|
padding: 12px 12px 15px 12px !important;
|
|
2640
2640
|
font-size: 14px;
|
|
2641
2641
|
width: 19%;
|
|
2642
|
-
margin-bottom:
|
|
2642
|
+
margin-bottom: 30px;
|
|
2643
2643
|
}
|
|
2644
|
-
.ui-app-area .items-container .table-item.Activate
|
|
2644
|
+
.ui-app-area .items-container .table-item.Activate .img-container,
|
|
2645
|
+
.ui-app-area .items-container .table-item.Activate h4,
|
|
2646
|
+
.ui-app-area .items-container .table-item.Activate .product-price,
|
|
2647
|
+
.ui-app-area .items-container .table-item.Activate .product-brand {
|
|
2645
2648
|
opacity: 50%;
|
|
2646
2649
|
}
|
|
2647
|
-
.ui-app-area .items-container .table-item
|
|
2650
|
+
.ui-app-area .items-container .table-item .img-container {
|
|
2651
|
+
display: block;
|
|
2652
|
+
position: relative;
|
|
2653
|
+
width: 100%;
|
|
2654
|
+
height: 150px;
|
|
2655
|
+
|
|
2656
|
+
overflow: hidden;
|
|
2657
|
+
margin-bottom: 6px;
|
|
2658
|
+
background-size: cover;
|
|
2659
|
+
background-position: center center;
|
|
2660
|
+
}
|
|
2661
|
+
.ui-app-area .items-container .table-item .img-container a {
|
|
2662
|
+
display: block;
|
|
2663
|
+
position: absolute;
|
|
2664
|
+
left: 0;
|
|
2665
|
+
right: 0;
|
|
2666
|
+
top: 0;
|
|
2667
|
+
bottom: 0;
|
|
2668
|
+
}
|
|
2669
|
+
.ui-app-area .items-container .table-item h4,
|
|
2670
|
+
.ui-app-area .items-container .table-item .h4 {
|
|
2648
2671
|
font-size: 14px;
|
|
2649
|
-
min-height:
|
|
2650
|
-
min-height: 75px;
|
|
2672
|
+
min-height: 45px !important;
|
|
2651
2673
|
|
|
2652
2674
|
display: -webkit-box;
|
|
2653
2675
|
overflow: hidden;
|
|
2654
|
-
-webkit-line-clamp:
|
|
2676
|
+
-webkit-line-clamp: 2;
|
|
2655
2677
|
-webkit-box-orient: vertical;
|
|
2656
2678
|
}
|
|
2657
|
-
.ui-app-area .items-container .table-item h4 a
|
|
2679
|
+
.ui-app-area .items-container .table-item h4 a,
|
|
2680
|
+
.ui-app-area .items-container .table-item .h4 a {
|
|
2658
2681
|
color: #000;
|
|
2659
2682
|
text-decoration: none;
|
|
2660
2683
|
|
|
2661
2684
|
display: -webkit-box;
|
|
2662
2685
|
overflow: hidden;
|
|
2663
|
-
-webkit-line-clamp:
|
|
2686
|
+
-webkit-line-clamp: 2;
|
|
2664
2687
|
-webkit-box-orient: vertical;
|
|
2665
2688
|
}
|
|
2666
2689
|
.ui-app-area .items-container .table-item h4 a:hover {
|
|
@@ -2687,6 +2710,15 @@ table .ui-table-row {
|
|
|
2687
2710
|
right: 12px;
|
|
2688
2711
|
bottom: 15px;
|
|
2689
2712
|
}
|
|
2713
|
+
.ui-app-area .items-container .table-item .product-price {
|
|
2714
|
+
border-top: 1px solid #CCCCCC;
|
|
2715
|
+
border-bottom: 1px solid #CCCCCC;
|
|
2716
|
+
padding-top: 4px;
|
|
2717
|
+
padding-bottom: 4px;
|
|
2718
|
+
}
|
|
2719
|
+
.ui-app-area .items-container .table-item .product-price .float-right {
|
|
2720
|
+
float: right;
|
|
2721
|
+
}
|
|
2690
2722
|
.ui-app-area nav.pagination {
|
|
2691
2723
|
width: 100%;
|
|
2692
2724
|
margin: 30px 0;
|
|
@@ -2706,9 +2738,9 @@ table .ui-table-row {
|
|
|
2706
2738
|
position: absolute;
|
|
2707
2739
|
right: 10px;
|
|
2708
2740
|
bottom: 18px;
|
|
2709
|
-
border: 1px solid #000
|
|
2710
|
-
width:
|
|
2711
|
-
height:
|
|
2741
|
+
/*border: 1px solid #000;*/
|
|
2742
|
+
width: 40px;
|
|
2743
|
+
height: 22px;
|
|
2712
2744
|
border-radius: 4px;
|
|
2713
2745
|
box-shadow: 1px -1px 13px 0px rgba(174,174,174,0.30);
|
|
2714
2746
|
-webkit-box-shadow: 1px -1px 13px 0px rgba(174,174,174,0.30);
|
|
@@ -2746,6 +2778,68 @@ table .ui-table-row {
|
|
|
2746
2778
|
|
|
2747
2779
|
/* =========================== */
|
|
2748
2780
|
|
|
2781
|
+
.ui-app-area .items-container .table-item .switch {
|
|
2782
|
+
position: relative;
|
|
2783
|
+
display: inline-block;
|
|
2784
|
+
width: 40px;
|
|
2785
|
+
height: 22px;
|
|
2786
|
+
}
|
|
2787
|
+
.ui-app-area .items-container .table-item .switch input {
|
|
2788
|
+
opacity: 0;
|
|
2789
|
+
width: 0;
|
|
2790
|
+
height: 0;
|
|
2791
|
+
}
|
|
2792
|
+
|
|
2793
|
+
.ui-app-area .items-container .table-item .slider {
|
|
2794
|
+
position: absolute;
|
|
2795
|
+
cursor: pointer;
|
|
2796
|
+
top: 0;
|
|
2797
|
+
left: 0;
|
|
2798
|
+
right: 0;
|
|
2799
|
+
bottom: 0;
|
|
2800
|
+
background-color: #ccc;
|
|
2801
|
+
-webkit-transition: .4s;
|
|
2802
|
+
transition: .4s;
|
|
2803
|
+
}
|
|
2804
|
+
|
|
2805
|
+
.ui-app-area .items-container .table-item .slider:before {
|
|
2806
|
+
position: absolute;
|
|
2807
|
+
content: "";
|
|
2808
|
+
height: 15px;
|
|
2809
|
+
width: 15px;
|
|
2810
|
+
left: 4px;
|
|
2811
|
+
bottom: 4px;
|
|
2812
|
+
background-color: white;
|
|
2813
|
+
-webkit-transition: .4s;
|
|
2814
|
+
transition: .4s;
|
|
2815
|
+
}
|
|
2816
|
+
|
|
2817
|
+
.ui-app-area .items-container .table-item .slider {
|
|
2818
|
+
background-color: #5DD687;
|
|
2819
|
+
}
|
|
2820
|
+
.ui-app-area .items-container .table-item .slider-off {
|
|
2821
|
+
background-color: #CCC;
|
|
2822
|
+
}
|
|
2823
|
+
|
|
2824
|
+
.ui-app-area .items-container .table-item input:focus + .slider {
|
|
2825
|
+
box-shadow: 0 0 1px #5DD687;
|
|
2826
|
+
}
|
|
2827
|
+
|
|
2828
|
+
.ui-app-area .items-container .table-item input:checked + .slider:before {
|
|
2829
|
+
-webkit-transform: translateX(15px);
|
|
2830
|
+
-ms-transform: translateX(15px);
|
|
2831
|
+
transform: translateX(15px);
|
|
2832
|
+
}
|
|
2833
|
+
|
|
2834
|
+
.ui-app-area .items-container .table-item .slider.round {
|
|
2835
|
+
border-radius: 34px;
|
|
2836
|
+
}
|
|
2837
|
+
.ui-app-area .items-container .table-item .slider.round:before {
|
|
2838
|
+
border-radius: 50%;
|
|
2839
|
+
}
|
|
2840
|
+
|
|
2841
|
+
/* =========================== */
|
|
2842
|
+
|
|
2749
2843
|
.ui-app-area .estimates-container .btn-new {
|
|
2750
2844
|
display: block;
|
|
2751
2845
|
position: absolute;
|
|
@@ -2754,12 +2848,13 @@ table .ui-table-row {
|
|
|
2754
2848
|
}
|
|
2755
2849
|
.ui-app-area .estimates-drop-container .products-column {
|
|
2756
2850
|
display: block;
|
|
2757
|
-
width:
|
|
2851
|
+
width: 44%;
|
|
2758
2852
|
float: left;
|
|
2759
|
-
margin-top:
|
|
2853
|
+
margin-top: 0px;
|
|
2760
2854
|
top: 20px;
|
|
2761
2855
|
background-color: #F9FAFC !important;
|
|
2762
2856
|
border: 1px solid #D8D9DF;
|
|
2857
|
+
|
|
2763
2858
|
height: calc(100vh - 20px);
|
|
2764
2859
|
overflow: scroll;
|
|
2765
2860
|
}
|
|
@@ -2775,18 +2870,17 @@ table .ui-table-row {
|
|
|
2775
2870
|
}
|
|
2776
2871
|
.ui-app-area .estimates-drop-container .products-column .product-item h5.card-title {
|
|
2777
2872
|
font-size: 14px;
|
|
2778
|
-
min-height:
|
|
2779
|
-
min-height: 75px;
|
|
2873
|
+
min-height: 40px;
|
|
2780
2874
|
|
|
2781
2875
|
display: -webkit-box;
|
|
2782
2876
|
overflow: hidden;
|
|
2783
|
-
-webkit-line-clamp:
|
|
2877
|
+
-webkit-line-clamp: 2;
|
|
2784
2878
|
-webkit-box-orient: vertical;
|
|
2785
2879
|
}
|
|
2786
2880
|
.ui-app-area .estimates-drop-container .products-column .product-item h5.card-title span {
|
|
2787
2881
|
display: -webkit-box;
|
|
2788
2882
|
overflow: hidden;
|
|
2789
|
-
-webkit-line-clamp:
|
|
2883
|
+
-webkit-line-clamp: 2;
|
|
2790
2884
|
-webkit-box-orient: vertical;
|
|
2791
2885
|
}
|
|
2792
2886
|
.ui-app-area .estimates-drop-container .products-column .product-item img.img-responsive {
|
|
@@ -2796,25 +2890,46 @@ table .ui-table-row {
|
|
|
2796
2890
|
max-height: 150px;
|
|
2797
2891
|
height: 130px;
|
|
2798
2892
|
}
|
|
2893
|
+
|
|
2894
|
+
.ui-app-area .estimates-drop-container .products-column .product-item .img-container {
|
|
2895
|
+
display: block;
|
|
2896
|
+
position: relative;
|
|
2897
|
+
width: 100%;
|
|
2898
|
+
height: 150px;
|
|
2899
|
+
|
|
2900
|
+
overflow: hidden;
|
|
2901
|
+
margin-bottom: 6px;
|
|
2902
|
+
background-size: cover;
|
|
2903
|
+
background-position: center center;
|
|
2904
|
+
}
|
|
2905
|
+
|
|
2906
|
+
.ui-app-area .estimates-drop-container .products-column .btn-filter {
|
|
2907
|
+
margin-left: 8px !important;
|
|
2908
|
+
}
|
|
2909
|
+
.ui-app-area .estimates-drop-container .products-column .float-right {
|
|
2910
|
+
float: right;
|
|
2911
|
+
}
|
|
2912
|
+
|
|
2799
2913
|
.ui-app-area .estimates-drop-container .themes-column {
|
|
2800
2914
|
display: block;
|
|
2801
|
-
width:
|
|
2915
|
+
width: 55%;
|
|
2802
2916
|
float: right;
|
|
2803
2917
|
}
|
|
2804
2918
|
.ui-app-area .estimates-drop-container .themes-column .card-body {
|
|
2805
2919
|
display: block;
|
|
2806
|
-
width:
|
|
2920
|
+
width: 100%;
|
|
2807
2921
|
float: left;
|
|
2808
2922
|
position: relative;
|
|
2809
2923
|
}
|
|
2810
2924
|
.ui-app-area .estimates-drop-container .themes-column .price-container {
|
|
2811
2925
|
display: block;
|
|
2812
|
-
width:
|
|
2926
|
+
width: 100% !important;
|
|
2813
2927
|
float: right;
|
|
2814
|
-
margin-top:
|
|
2928
|
+
margin-top: 0px;
|
|
2815
2929
|
top: 20px;
|
|
2816
2930
|
background-color: #F9FAFC !important;
|
|
2817
2931
|
border: 1px solid #D8D9DF;
|
|
2932
|
+
text-align: center;
|
|
2818
2933
|
}
|
|
2819
2934
|
.ui-app-area .estimates-drop-container .component-addition {
|
|
2820
2935
|
padding-top: 6px;
|
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.55'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jose Camacho
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-03-
|
|
11
|
+
date: 2022-03-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|