Skip to content

Commit

Permalink
Fixing dimensions tooltip and updating versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
ronaldhuereca committed Nov 29, 2022
1 parent f7870f0 commit 9be884d
Show file tree
Hide file tree
Showing 13 changed files with 199 additions and 131 deletions.
1 change: 0 additions & 1 deletion dist/ThemeCustomizer.0.0.1.js.map

This file was deleted.

70 changes: 35 additions & 35 deletions dist/ThemeCustomizer.0.0.1.js → dist/ThemeCustomizer.0.0.2.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/ThemeCustomizer.0.0.2.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/has-admin-appearance.js
Original file line number Diff line number Diff line change
Expand Up @@ -17671,7 +17671,7 @@ __webpack_require__.r(__webpack_exports__);

// Lazy load theme customizer.
var ThemeCustomizer = /*#__PURE__*/(0,react__WEBPACK_IMPORTED_MODULE_0__.lazy)(function () {
return Promise.all(/*! import() | ThemeCustomizer.0.0.1 */[__webpack_require__.e("vendors-node_modules_wordpress_components_build-module_button-group_index_js-node_modules_wor-f40fee"), __webpack_require__.e("ThemeCustomizer.0.0.1")]).then(__webpack_require__.bind(__webpack_require__, /*! ../Components/ThemeCustomizer */ "./src/react/Components/ThemeCustomizer/index.js"));
return Promise.all(/*! import() | ThemeCustomizer.0.0.2 */[__webpack_require__.e("vendors-node_modules_wordpress_components_build-module_button-group_index_js-node_modules_wor-f40fee"), __webpack_require__.e("ThemeCustomizer.0.0.2")]).then(__webpack_require__.bind(__webpack_require__, /*! ../Components/ThemeCustomizer */ "./src/react/Components/ThemeCustomizer/index.js"));
});
var Appearance = function Appearance() {
var getIcons = function getIcons() {
Expand Down
2 changes: 1 addition & 1 deletion dist/has-admin-appearance.js.map

Large diffs are not rendered by default.

30 changes: 30 additions & 0 deletions dist/has-admin-style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/has-admin-style.css.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions highlight-and-share.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Plugin URI: https://dlxplugins.com/plugins/highlight-and-share/
* Description: Allows you to highlight text and enable social sharing to share with services including Twitter, * Facebook, LinkedIn, Xing, Telegram, Reddit, WhatsApp, email, and others.
* Author: DLX Plugins
* Version: 3.9.9.1
* Version: 3.9.9.2
* Requires at least: 5.1
* Requires PHP: 7.2
* Author URI: https://dlxplugins.com
Expand All @@ -17,7 +17,7 @@

namespace DLXPlugins\HAS;

define( 'HIGHLIGHT_AND_SHARE_VERSION', '3.9.9.1' );
define( 'HIGHLIGHT_AND_SHARE_VERSION', '3.9.9.2' );
define( 'HIGHLIGHT_AND_SHARE_FILE', __FILE__ );

// Support for site-level autoloading.
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: ronalfy
Tags: highlight, social sharing, click to tweet, sharing, highlight text
Requires at least: 5.1
Tested up to: 6.1
Stable tag: 3.9.9.1
Stable tag: 3.9.9.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Donate link: https://github.com/sponsors/DLXPlugins
Expand Down
34 changes: 34 additions & 0 deletions src/admin.scss
Original file line number Diff line number Diff line change
Expand Up @@ -823,6 +823,40 @@ h2.has-admin-content-subheading {
text-align: center;
}

.components-has-dimensions-control__input {
display: inline-block;
position: relative;
overflow: visible;

&:hover:after,
&:focus-within:after {
z-index: 1000;
animation-duration: 0.8s;
animation-name: hasFadeIn;
opacity: 1;
transition: all 0.2s ease-in-out;
display: block;
position: absolute;
padding: 8px;
content: attr(data-tooltip);
font-family: "FranklinGothic", Helvetica, sans-serif;
background-color: #333;
color: #FFF;
font-size: 13px;
line-height: 1.2;
top: -40px;
left: 0;
text-align: center;
border-radius: 3px;
min-width: 100px;
}
}

svg {
width: auto;
height: 16px;
}

.components-has-dimensions-control__number {
display: inline;

Expand Down
2 changes: 1 addition & 1 deletion src/react/Appearance/appearance.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import ErrorBoundary from '../Components/ErrorBoundary';

// Lazy load theme customizer.
const ThemeCustomizer = lazy( () =>
import( /* webpackChunkName: "ThemeCustomizer.0.0.1" */ '../Components/ThemeCustomizer' )
import( /* webpackChunkName: "ThemeCustomizer.0.0.2" */ '../Components/ThemeCustomizer' )
);

const Appearance = () => {
Expand Down
Loading

0 comments on commit 9be884d

Please sign in to comment.