diff --git a/dev/Styles/_BootstrapFix.less b/dev/Styles/_BootstrapFix.less index 3c7544cd0..e1af89908 100644 --- a/dev/Styles/_BootstrapFix.less +++ b/dev/Styles/_BootstrapFix.less @@ -181,6 +181,19 @@ html.rgba.textshadow { } } +.popover { + width: auto; + min-width: 250px; + max-width: 550px; + + .popover-content pre { + border: none; + background: rgba(0, 0, 0, 0); + padding: 0; + word-break: break-word; + } +} + .btn-group > .btn { border-radius: 0 !important; } diff --git a/dev/View/Popup/Plugin.js b/dev/View/Popup/Plugin.js index 9ca435493..9ce7a40a4 100644 --- a/dev/View/Popup/Plugin.js +++ b/dev/View/Popup/Plugin.js @@ -46,12 +46,15 @@ }, this); this.readmePopoverConf = { - 'placement': 'top', + 'placement': 'right', 'trigger': 'hover', +// 'trigger': 'click', 'title': Translator.i18n('POPUPS_PLUGIN/TOOLTIP_ABOUT_TITLE'), 'container': 'body', + 'html': true, 'content': function () { - return self.readme(); + return '
' + self.readme() + '
'; +// .replace(/[\r]/g, '').replace(/[\n]/g, '
').replace(/[\t]/g, '   '); } }; diff --git a/plugins/auto-domain-grab/README b/plugins/auto-domain-grab/README index c7d82ba48..ad56f159e 100644 --- a/plugins/auto-domain-grab/README +++ b/plugins/auto-domain-grab/README @@ -8,7 +8,7 @@ hostname from the inputted email address (for example, it would detect "example. How to Use: 1) Activate plugin -2) Visit Settings, and add a new wildcard domain ' * ' +2) Visit Settings, and add a new wildcard domain "*" 3) Set your ports/ssl requirements as needed. These will not be changed by the plugin. 4) In the SMTP and/or IMAP host fields, place the single word "auto". This will be replaced when the plugin is active. 5) That's it! The plugin should now work! \ No newline at end of file