From 2ddd2ede42ead3729cb211b7d10f0f703b92cf1e Mon Sep 17 00:00:00 2001 From: Alexandra Nantel Date: Fri, 28 Apr 2017 14:26:10 -0400 Subject: [PATCH 1/8] Update for Symphony 4.x Update release version. Update editor style to fit in with Symphony 4.x layout. --- assets/publish.editor.css | 40 +++++++++++++++++++-------------------- extension.meta.xml | 5 ++++- 2 files changed, 24 insertions(+), 21 deletions(-) diff --git a/assets/publish.editor.css b/assets/publish.editor.css index f3866af..873dec1 100644 --- a/assets/publish.editor.css +++ b/assets/publish.editor.css @@ -1,26 +1,26 @@ /* start Symphony-esque look for editor */ .editor-toolbar { - margin-top: 4px; /* slightly bigger margin as component is massive */ + margin-top: 1rem; /* slightly bigger margin as component is massive */ padding: 4px; font-size: 14px; - border: 1px solid rgba(0, 0, 0, 0.2); - -webkit-border-top-left-radius: 2px; - -moz-border-radius-topleft: 2px; - border-top-left-radius: 2px; - -webkit-border-top-right-radius: 2px; - -moz-border-radius-topright: 2px; - border-top-right-radius: 2px; - box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.1); + border: 1px solid #d3dce2; + -webkit-border-top-left-radius: 5px; + -moz-border-radius-topleft: 5px; + border-top-left-radius: 5px; + -webkit-border-top-right-radius: 5px; + -moz-border-radius-topright: 5px; + border-top-right-radius: 5px; opacity: 1 !important; z-index: 5; } -.editor-toolbar:hover > * { - opacity: 0.8; + +.editor-toolbar a { + color: #757c84!important; } -.editor-toolbar > * { - opacity: 0.6; +.editor-toolbar a:hover { + color: #2f77eb!important; } .editor-toolbar:before, .editor-toolbar:after { @@ -38,14 +38,14 @@ width: 100%; padding: 6px 6px 2px; font-size: 109.09%; - border: 1px solid rgba(0, 0, 0, 0.25); + border: 1px solid #d3dce2; border-width: 0 1px 1px 1px; - -webkit-border-bottom-right-radius: 2px; - -moz-border-radius-bottomright: 2px; - border-bottom-right-radius: 2px; - -webkit-border-bottom-left-radius: 2px; - -moz-border-radius-bottomleft: 2px; - border-bottom-left-radius: 2px; + -webkit-border-bottom-right-radius: 5px; + -moz-border-radius-bottomright: 5px; + border-bottom-right-radius: 5px; + -webkit-border-bottom-left-radius: 5px; + -moz-border-radius-bottomleft: 5px; + border-bottom-left-radius: 5px; background: #fff; outline: none; height: auto; diff --git a/extension.meta.xml b/extension.meta.xml index 19efc35..fdbbb2d 100755 --- a/extension.meta.xml +++ b/extension.meta.xml @@ -20,6 +20,9 @@ + + - Update for Symphony 4.x + - Minor javascript fixes - Officially release the thing! @@ -44,4 +47,4 @@ - Alpha version. Not working yet. Ran into javascript issue. - \ No newline at end of file + From b306a1f028681178646c45e35bbdc8faa59c33e0 Mon Sep 17 00:00:00 2001 From: Alexandra Nantel Date: Mon, 1 May 2017 11:51:36 -0400 Subject: [PATCH 2/8] Remove superfluous border on status bar. --- assets/publish.editor.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/assets/publish.editor.css b/assets/publish.editor.css index 873dec1..ed92b06 100644 --- a/assets/publish.editor.css +++ b/assets/publish.editor.css @@ -66,4 +66,8 @@ background: #fbfbfb; } +.editor-statusbar { + border: none; +} + /* end Symphony-esque look for editor */ From 4a2fa818cdffdd014c8035d879fbd2d71facf1fb Mon Sep 17 00:00:00 2001 From: Alexandra Nantel Date: Thu, 4 May 2017 11:48:04 -0400 Subject: [PATCH 3/8] Fix text all in uppercase problem in PRE tag. --- assets/publish.editor.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/assets/publish.editor.css b/assets/publish.editor.css index ed92b06..5542da2 100644 --- a/assets/publish.editor.css +++ b/assets/publish.editor.css @@ -52,6 +52,11 @@ min-height: 5em; } +.CodeMirror pre { + text-transform: none; + line-height: 1.8em; +} + .invalid .CodeMirror { color: #000; } From dd92b6d534e585832affcc8d4a89a5dac1e74528 Mon Sep 17 00:00:00 2001 From: Alexandra Nantel Date: Wed, 17 May 2017 10:57:06 -0400 Subject: [PATCH 4/8] Update php-min/php-max info --- extension.meta.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extension.meta.xml b/extension.meta.xml index fdbbb2d..89ae89b 100755 --- a/extension.meta.xml +++ b/extension.meta.xml @@ -20,7 +20,7 @@ - + - Update for Symphony 4.x From e488aca1fc658396b6990416039a24c622cf8d8f Mon Sep 17 00:00:00 2001 From: Alexandra Nantel Date: Tue, 23 May 2017 10:53:36 -0400 Subject: [PATCH 5/8] Update dependencies Update dependencies information. Fix small style problem in editor. --- assets/publish.editor.css | 3 +-- extension.meta.xml | 3 +++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/assets/publish.editor.css b/assets/publish.editor.css index 5542da2..cb627b5 100644 --- a/assets/publish.editor.css +++ b/assets/publish.editor.css @@ -36,8 +36,7 @@ -moz-box-sizing: border-box; box-sizing: border-box; width: 100%; - padding: 6px 6px 2px; - font-size: 109.09%; + padding: 1rem 1.5rem; border: 1px solid #d3dce2; border-width: 0 1px 1px 1px; -webkit-border-bottom-right-radius: 5px; diff --git a/extension.meta.xml b/extension.meta.xml index 89ae89b..4e19aee 100755 --- a/extension.meta.xml +++ b/extension.meta.xml @@ -19,6 +19,9 @@ http://getsymphony.com + + markdown + - Update for Symphony 4.x From d1499d73c138eab21a90990629edcfc3dd295c73 Mon Sep 17 00:00:00 2001 From: Alexandra Nantel Date: Mon, 18 Dec 2017 09:41:56 -0500 Subject: [PATCH 6/8] Fix black color. --- assets/publish.editor.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/publish.editor.css b/assets/publish.editor.css index cb627b5..c457916 100644 --- a/assets/publish.editor.css +++ b/assets/publish.editor.css @@ -16,7 +16,7 @@ } .editor-toolbar a { - color: #757c84!important; + color: #657685!important; } .editor-toolbar a:hover { From 1d3d7167762aaa267faf884edc6e8a5f73d45673 Mon Sep 17 00:00:00 2001 From: Alexandra Nantel Date: Wed, 20 Dec 2017 11:27:00 -0500 Subject: [PATCH 7/8] Fix layout for markdown zone --- assets/publish.editor.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/assets/publish.editor.css b/assets/publish.editor.css index c457916..7c00d7b 100644 --- a/assets/publish.editor.css +++ b/assets/publish.editor.css @@ -36,7 +36,7 @@ -moz-box-sizing: border-box; box-sizing: border-box; width: 100%; - padding: 1rem 1.5rem; + padding: 1rem; border: 1px solid #d3dce2; border-width: 0 1px 1px 1px; -webkit-border-bottom-right-radius: 5px; @@ -51,9 +51,14 @@ min-height: 5em; } +.CodeMirror-lines { + padding: 0; +} + .CodeMirror pre { text-transform: none; line-height: 1.8em; + padding: 0; } .invalid .CodeMirror { From fbb341a2ca94bb4b77755620f68439e02ef748a6 Mon Sep 17 00:00:00 2001 From: Alexandra Nantel Date: Fri, 29 Jun 2018 09:54:28 -0400 Subject: [PATCH 8/8] Remove unnecessary top margin on editor toolbar --- assets/publish.editor.css | 1 - 1 file changed, 1 deletion(-) diff --git a/assets/publish.editor.css b/assets/publish.editor.css index 7c00d7b..9de72a3 100644 --- a/assets/publish.editor.css +++ b/assets/publish.editor.css @@ -1,7 +1,6 @@ /* start Symphony-esque look for editor */ .editor-toolbar { - margin-top: 1rem; /* slightly bigger margin as component is massive */ padding: 4px; font-size: 14px; border: 1px solid #d3dce2;