icn3d 3.13.2 → 3.14.0
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.
- package/css/icn3d.css +8 -2
- package/icn3d.js +414 -32
- package/icn3d.min.js +1 -1
- package/icn3d.module.js +414 -32
- package/package.json +1 -1
package/css/icn3d.css
CHANGED
|
@@ -163,7 +163,7 @@ input:checked + .icn3d-slider:before {
|
|
|
163
163
|
border-radius: 50%;
|
|
164
164
|
}
|
|
165
165
|
|
|
166
|
-
/* jquery UI 1.
|
|
166
|
+
/* jquery UI 1.13.2
|
|
167
167
|
for jquery tooltip */
|
|
168
168
|
.icn3d-tooltip {
|
|
169
169
|
display: inline-block;
|
|
@@ -228,11 +228,17 @@ input:checked + .icn3d-slider:before {
|
|
|
228
228
|
}
|
|
229
229
|
.icn3d-rad > input:checked + .ui-icon{ /* (RADIO CHECKED) IMAGE STYLES */
|
|
230
230
|
/*border:2px solid #f00;*/
|
|
231
|
+
background-image: url("https://www.ncbi.nlm.nih.gov/Structure/icn3d/lib/images/ui-icons_222222_256x240.png");
|
|
231
232
|
background-position: -64px -144px; /*ui-icon-check */
|
|
232
233
|
}
|
|
234
|
+
.icn3d-rad > input:not(:checked) + .ui-icon{ /* (RADIO CHECKED) IMAGE STYLES */
|
|
235
|
+
/*border:2px solid #f00;*/
|
|
236
|
+
background-image: url("https://www.ncbi.nlm.nih.gov/Structure/icn3d/lib/images/ui-icons_222222_256x240.png");
|
|
237
|
+
background-position: -160px 0px; /*empty */
|
|
238
|
+
}
|
|
233
239
|
|
|
234
240
|
.ui-menu-icons .ui-menu-item-wrapper, .ui-menu-icons .ui-menu-item {
|
|
235
|
-
padding-left: 0.4em;
|
|
241
|
+
padding-left: 0.4em!important;
|
|
236
242
|
}
|
|
237
243
|
|
|
238
244
|
.icn3d-rad-text, .icn3d-color-rad-text {
|