welcome_css 0.53 → 0.56

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: a7b7e42e7958254838cb5d062a254c813771aadd6bbece5ecb8137eadb5e9ff7
4
- data.tar.gz: 66154b95403dce3ab64cb20fa6fa1fabcd3dddac42e800342ee1a522b97deeb7
3
+ metadata.gz: 6ab9a64369a15f3912cf36fce2347fd9c5fc53da723c068f164f6a31082dd1be
4
+ data.tar.gz: af3cc58313f1a56f410c017eaae48cea6825e6bc30fc3c08fdbb7b702297d1d3
5
5
  SHA512:
6
- metadata.gz: d95ebb960a36abaf20133cc0af31b944e0e604a1ff94fefd88d0abe4f0afa158a21984281b9bd814f6c67e3695a609ead3b21fdd4041d61d0ca62ac2e6193d41
7
- data.tar.gz: cac930bd68df5313ff04e462f52772c663788e359f20fb599a80cd424f75a8129c06d42cef033777e183030d7ac504fbdf69c5058f98cff221b7864d476bf689
6
+ metadata.gz: 82069df5b333da165bee7ba4b288572bd1f5cdf38dd266143cd9b00f93ddbb1d44fe790e853176d7b0814b09677e05ff1dc4cb049567f2c99c5de1ed5edb5b76
7
+ data.tar.gz: 28f5a12701290b5adac7c58696c6868f2db340455f7ddd5e227af4eb0e332dd854d9a88e05410b0795d22622be5ab34323a0d983d75927e184a1ad597de85592
@@ -2641,7 +2641,10 @@ table .ui-table-row {
2641
2641
  width: 19%;
2642
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
2650
  .ui-app-area .items-container .table-item .img-container {
@@ -2707,6 +2710,15 @@ table .ui-table-row {
2707
2710
  right: 12px;
2708
2711
  bottom: 15px;
2709
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
+ }
2710
2722
  .ui-app-area nav.pagination {
2711
2723
  width: 100%;
2712
2724
  margin: 30px 0;
@@ -2726,9 +2738,9 @@ table .ui-table-row {
2726
2738
  position: absolute;
2727
2739
  right: 10px;
2728
2740
  bottom: 18px;
2729
- border: 1px solid #000;
2730
- width: 34px;
2731
- height: 34px;
2741
+ /*border: 1px solid #000;*/
2742
+ width: 40px;
2743
+ height: 22px;
2732
2744
  border-radius: 4px;
2733
2745
  box-shadow: 1px -1px 13px 0px rgba(174,174,174,0.30);
2734
2746
  -webkit-box-shadow: 1px -1px 13px 0px rgba(174,174,174,0.30);
@@ -2766,6 +2778,68 @@ table .ui-table-row {
2766
2778
 
2767
2779
  /* =========================== */
2768
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
+
2769
2843
  .ui-app-area .estimates-container .btn-new {
2770
2844
  display: block;
2771
2845
  position: absolute;
@@ -2774,7 +2848,7 @@ table .ui-table-row {
2774
2848
  }
2775
2849
  .ui-app-area .estimates-drop-container .products-column {
2776
2850
  display: block;
2777
- width: 34%;
2851
+ width: 44%;
2778
2852
  float: left;
2779
2853
  margin-top: 0px;
2780
2854
  top: 20px;
@@ -2796,7 +2870,7 @@ table .ui-table-row {
2796
2870
  }
2797
2871
  .ui-app-area .estimates-drop-container .products-column .product-item h5.card-title {
2798
2872
  font-size: 14px;
2799
- min-height: 60px;
2873
+ min-height: 40px;
2800
2874
 
2801
2875
  display: -webkit-box;
2802
2876
  overflow: hidden;
@@ -2816,9 +2890,29 @@ table .ui-table-row {
2816
2890
  max-height: 150px;
2817
2891
  height: 130px;
2818
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
+
2819
2913
  .ui-app-area .estimates-drop-container .themes-column {
2820
2914
  display: block;
2821
- width: 64%;
2915
+ width: 55%;
2822
2916
  float: right;
2823
2917
  }
2824
2918
  .ui-app-area .estimates-drop-container .themes-column .card-body {
@@ -2848,6 +2942,18 @@ table .ui-table-row {
2848
2942
  color: #000;
2849
2943
  }
2850
2944
 
2945
+ /* =========================== */
2946
+
2947
+ .ui-app-area .estimates-drop-container #ui-tabs {
2948
+ display: block;
2949
+ float: left;
2950
+ position: relative;
2951
+ padding-left: 0;
2952
+ }
2953
+ .ui-app-area .estimates-drop-container #ui-tabs .btn.btn-select {
2954
+ margin-top: 0px;
2955
+ width: 200px;
2956
+ }
2851
2957
 
2852
2958
 
2853
2959
 
@@ -1,3 +1,3 @@
1
1
  module WelcomeCss
2
- VERSION = "0.53"
2
+ VERSION = "0.56"
3
3
  end
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.53'
4
+ version: '0.56'
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-09 00:00:00.000000000 Z
11
+ date: 2022-03-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails