welcome_css 0.54 → 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 +23 -3
- data/lib/welcome_css/version.rb +1 -1
- metadata +1 -1
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
|
|
@@ -2848,7 +2848,7 @@ table .ui-table-row {
|
|
|
2848
2848
|
}
|
|
2849
2849
|
.ui-app-area .estimates-drop-container .products-column {
|
|
2850
2850
|
display: block;
|
|
2851
|
-
width:
|
|
2851
|
+
width: 44%;
|
|
2852
2852
|
float: left;
|
|
2853
2853
|
margin-top: 0px;
|
|
2854
2854
|
top: 20px;
|
|
@@ -2870,7 +2870,7 @@ table .ui-table-row {
|
|
|
2870
2870
|
}
|
|
2871
2871
|
.ui-app-area .estimates-drop-container .products-column .product-item h5.card-title {
|
|
2872
2872
|
font-size: 14px;
|
|
2873
|
-
min-height:
|
|
2873
|
+
min-height: 40px;
|
|
2874
2874
|
|
|
2875
2875
|
display: -webkit-box;
|
|
2876
2876
|
overflow: hidden;
|
|
@@ -2890,9 +2890,29 @@ table .ui-table-row {
|
|
|
2890
2890
|
max-height: 150px;
|
|
2891
2891
|
height: 130px;
|
|
2892
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
|
+
|
|
2893
2913
|
.ui-app-area .estimates-drop-container .themes-column {
|
|
2894
2914
|
display: block;
|
|
2895
|
-
width:
|
|
2915
|
+
width: 55%;
|
|
2896
2916
|
float: right;
|
|
2897
2917
|
}
|
|
2898
2918
|
.ui-app-area .estimates-drop-container .themes-column .card-body {
|
data/lib/welcome_css/version.rb
CHANGED