style.admin.css
36 lines
| 1 | .wcmp-file-name,.wcmp-file-url{width:100% !important;} |
| 2 | #wcmp_woocommerce_metabox .widefat{border:0;} |
| 3 | .wcmp-tooltip{position:relative;display:inline-block;} |
| 4 | .wcmp-tooltip .wcmp-tooltiptext{visibility:hidden;width:240px;background-color:#555;color:#fff;text-align:center;padding:5px;border-radius:6px;position:absolute;z-index:9999;bottom:125%;left:50%;margin-left:-120px;opacity:0;transition:opacity 1s;} |
| 5 | .wcmp-tooltip .wcmp-tooltiptext::after{content:"";position:absolute;top:100%;left:50%;margin-left:-10px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent;} |
| 6 | .wcmp-tooltip:hover .wcmp-tooltiptext{visibility:visible;opacity:1;} |
| 7 | .wcmp-highlight-box{border:1px solid #E6DB55;margin-bottom:10px;padding:5px;background-color: #FFFFE0;} |
| 8 | #wcmp_tips_body,.wcmp-tip-text{display:none;} |
| 9 | |
| 10 | /* PRODUCTS LIST */ |
| 11 | table.wp-list-table.fixed{table-layout:auto;} |
| 12 | .column-wcmp_playback_counter{ white-space:nowrap; } |
| 13 | .column-wcmp_playback_counter>a{ display:flex !important;} |
| 14 | .wcmp-playback-counter{display:block;text-align:center;} |
| 15 | |
| 16 | /* LOADING ANIMATION */ |
| 17 | |
| 18 | .wcmp-skin-generate-btn, |
| 19 | .wcmp-skin-preview-btn{display:flex;flex-direction:row;align-items:center;} |
| 20 | .wcmp-skin-generate-btn:disabled::after, |
| 21 | .wcmp-skin-preview-btn:disabled::after{ |
| 22 | content: " "; |
| 23 | display: inline-block; |
| 24 | width: 10px; |
| 25 | height: 10px; |
| 26 | border: 2px solid transparent; |
| 27 | border-top: 2px solid #999999; |
| 28 | border-radius: 50%; |
| 29 | animation: wcmp-spin 1s linear infinite; |
| 30 | margin: 0 0 0 10px; |
| 31 | } |
| 32 | |
| 33 | @keyframes wcmp-spin { |
| 34 | 0% { transform: rotate(0deg); } |
| 35 | 100% { transform: rotate(360deg); } |
| 36 | } |