Skip to content
This repository has been archived by the owner on Sep 11, 2020. It is now read-only.

Commit

Permalink
v2.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
linkesch committed Jul 20, 2016
1 parent 1a309c3 commit 9f99531
Show file tree
Hide file tree
Showing 9 changed files with 183 additions and 95 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

2.3.3 / 2016-07-20
==================

* Fix buttons and toolbars positions when editor is initialized inside absolute positioned container (#356)
* Use buttons instead of links to avoid medium-editor conflicts (#355)

2.3.2 / 2016-04-26
==================

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "medium-editor-insert-plugin",
"version": "2.3.2",
"version": "2.3.3",
"description": "jQuery insert plugin for MediumEditor",
"homepage": "http://linkesch.com/medium-editor-insert-plugin",
"main": [
Expand Down
2 changes: 1 addition & 1 deletion dist/css/medium-editor-insert-plugin-frontend.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* medium-editor-insert-plugin v2.3.2 - jQuery insert plugin for MediumEditor
* medium-editor-insert-plugin v2.3.3 - jQuery insert plugin for MediumEditor
*
* http://linkesch.com/medium-editor-insert-plugin
*
Expand Down
2 changes: 1 addition & 1 deletion dist/css/medium-editor-insert-plugin-frontend.min.css

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

43 changes: 17 additions & 26 deletions dist/css/medium-editor-insert-plugin.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* medium-editor-insert-plugin v2.3.2 - jQuery insert plugin for MediumEditor
* medium-editor-insert-plugin v2.3.3 - jQuery insert plugin for MediumEditor
*
* http://linkesch.com/medium-editor-insert-plugin
*
Expand Down Expand Up @@ -103,27 +103,29 @@
position: absolute;
color: #ddd;
font-size: 0.9em; }
.medium-editor-insert-plugin .medium-insert-buttons a {
text-decoration: underline;
cursor: pointer; }
.medium-editor-insert-plugin .medium-insert-buttons .medium-insert-buttons-show {
box-sizing: border-box;
.medium-editor-insert-plugin .medium-insert-buttons button {
display: block;
cursor: pointer;
color: #ddd;
background: #fff;
width: 32px;
height: 32px;
margin-top: -5px;
box-sizing: border-box;
border-radius: 20px;
border: 1px solid;
font-size: 25px;
line-height: 28px;
border: 1px solid #ddd;
line-height: 30px;
text-align: center;
text-decoration: none;
background: #fff;
padding: 0; }
.medium-editor-insert-plugin .medium-insert-buttons .medium-insert-buttons-show {
font-size: 25px;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
-webkit-transition: -webkit-transform 100ms;
transition: transform 100ms; }
.medium-editor-insert-plugin .medium-insert-buttons .medium-insert-buttons-show span {
display: block;
margin-top: -4px; }
.medium-editor-insert-plugin .medium-insert-buttons .medium-insert-buttons-show.medium-insert-buttons-rotate {
-webkit-transition: -webkit-transform 250ms;
transition: transform 250ms;
Expand All @@ -141,20 +143,9 @@
top: -32px; }
.medium-editor-insert-plugin .medium-insert-buttons .medium-insert-buttons-addons li {
display: inline-block;
background-color: #fff; }
.medium-editor-insert-plugin .medium-insert-buttons .medium-insert-buttons-addons li a {
box-sizing: border-box;
display: inline-block;
margin: 0 5px;
width: 32px;
height: 32px;
border-radius: 20px;
border: 1px solid;
font-size: 20px;
line-height: 28px;
text-align: center; }
.medium-editor-insert-plugin .medium-insert-buttons .medium-insert-buttons-addons li a .fa {
font-size: 15px; }
margin: 0 5px; }
.medium-editor-insert-plugin .medium-insert-buttons .medium-insert-buttons-addons li .fa {
font-size: 15px; }

.medium-insert-caption-placeholder {
position: relative; }
Expand Down
4 changes: 2 additions & 2 deletions dist/css/medium-editor-insert-plugin.min.css

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

Loading

0 comments on commit 9f99531

Please sign in to comment.