welcome_css 0.47 → 0.48
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 +14 -0
- 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: 9975c71eb1bb4acca218667bb5b690d6a37ca114fae646cc05aecfb8d4563b13
|
|
4
|
+
data.tar.gz: 5f405868f91f4ad1fb5c269dacf40722fab724497eeca2e0a4fb8f9cdb7e2fdf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c528876b38ed8b412e8051683253106a09c5673f818c8df20c46c38e07f58b7a5ef83c5b1fa0add79764f9a2a164378ef3f57fd441ec79de1f214ba53d171746
|
|
7
|
+
data.tar.gz: 94f538b00ece9876f42bfc9e59b476770fce866d55766b16bdfc26c930930d1aa8ce2ef7f5dd7868d6e3de0e8c6e19751cd79afe2813409c5e647ee1ebe7fa40
|
|
@@ -2709,6 +2709,20 @@ table .ui-table-row {
|
|
|
2709
2709
|
text-indent: -9999px;
|
|
2710
2710
|
z-index: 2;
|
|
2711
2711
|
}
|
|
2712
|
+
.ui-app-area .activate_deactivate input[type=submit] {
|
|
2713
|
+
display: block;
|
|
2714
|
+
position: absolute;
|
|
2715
|
+
width: 100%;
|
|
2716
|
+
height: 100%;
|
|
2717
|
+
text-indent: -9999px;
|
|
2718
|
+
z-index: 2;
|
|
2719
|
+
background-color: transparent;
|
|
2720
|
+
border: none;
|
|
2721
|
+
}
|
|
2722
|
+
.ui-app-area .activate_deactivate input[type=submit]:hover {
|
|
2723
|
+
background-color: transparent !important;
|
|
2724
|
+
border: none !important;
|
|
2725
|
+
}
|
|
2712
2726
|
.ui-app-area .activate_deactivate img.img-responsive {
|
|
2713
2727
|
display: block;
|
|
2714
2728
|
width: 22px !important;
|
data/lib/welcome_css/version.rb
CHANGED