welcome_css 0.53 → 0.54

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: 0de67aa2aebfc1f9182195ab2411282614e19e98c742d06b5cac3b8aed505ddb
4
+ data.tar.gz: 6dd614f57241c0d8b4a9577c33d31c47e028044703ff5ed615faaf563b7301ae
5
5
  SHA512:
6
- metadata.gz: d95ebb960a36abaf20133cc0af31b944e0e604a1ff94fefd88d0abe4f0afa158a21984281b9bd814f6c67e3695a609ead3b21fdd4041d61d0ca62ac2e6193d41
7
- data.tar.gz: cac930bd68df5313ff04e462f52772c663788e359f20fb599a80cd424f75a8129c06d42cef033777e183030d7ac504fbdf69c5058f98cff221b7864d476bf689
6
+ metadata.gz: c1a1c6e5055e1ee2370760a6d077b38fe38714cd3141dbaf77b5b48b66804df107ea7ea3c8bf8bc3892f1c28323c40f0cbaf020cc8b9fe67720bc5ad7349d526
7
+ data.tar.gz: 0aceb98c06462107fbc7965e9bee2a85334e42be9dbe9b1d574ff30fada765b6bac76358a229979e2abd93cede60969f924fa97d01695e1f6574c5d02d7bef6c
@@ -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;
@@ -1,3 +1,3 @@
1
1
  module WelcomeCss
2
- VERSION = "0.53"
2
+ VERSION = "0.54"
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.54'
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