From ae499e5d0716dc131c50c4f7002429aadf47d9f8 Mon Sep 17 00:00:00 2001 From: feihaozi77 Date: Sat, 30 Sep 2017 16:08:15 -0400 Subject: [PATCH 01/17] Added text toggle functionality for auto complete --- public/editor/scripts/ui/menus.js | 17 +++++++++++++++++ public/editor/stylesheets/editor.less | 9 ++++++++- views/editor/nav-options.html | 2 +- 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/public/editor/scripts/ui/menus.js b/public/editor/scripts/ui/menus.js index 88dec7f1e..71f1a5b8a 100644 --- a/public/editor/scripts/ui/menus.js +++ b/public/editor/scripts/ui/menus.js @@ -263,6 +263,23 @@ function setupOptionsMenu(bramble) { return false; }); + //allow text clickable to Eable/Disable Autocomplete + $("#autocomplete-toggle-text").click(function() { + var $autocompleteToggle = $("#autocomplete-toggle"); + var $autocompleteToggleText = $("#autocomplete-toggle-text"); + var toggle = !$autocompleteToggle.hasClass("switch-enabled"); + + if (toggle) { + $autocompleteToggle.addClass("switch-enabled"); + bramble.enableAutocomplete(); + } else { + $autocompleteToggle.removeClass("switch-enabled"); + bramble.disableAutocomplete(); + } + + return false; + }); + //Edit SVG as XML $("#edit-SVG-toggle").click(function() { // Toggle current value diff --git a/public/editor/stylesheets/editor.less b/public/editor/stylesheets/editor.less index 6ae028ece..fe3916114 100755 --- a/public/editor/stylesheets/editor.less +++ b/public/editor/stylesheets/editor.less @@ -536,6 +536,10 @@ body { padding: 20px 100px 20px 20px; position: relative; color: rgba(0, 0, 0, 0.6); + + .toggle-text{ + cursor: pointer; + } } li + li { @@ -558,6 +562,7 @@ body { // Line wrap toggle #editor-pane-nav-options-menu { + .switch-toggle { position: absolute; right: 18px; @@ -565,7 +570,9 @@ body { width: 60px; top: 16px; cursor: pointer; - + &.show-border{ + display:none !important; + } &.switch-enabled { .toggle-backing { background: @buttonGreen; diff --git a/views/editor/nav-options.html b/views/editor/nav-options.html index 0720e5f50..727a30063 100644 --- a/views/editor/nav-options.html +++ b/views/editor/nav-options.html @@ -162,7 +162,7 @@

{{ gettext("snippetMenuTitle") }}

  • - {{ gettext("navAutoComplete") }} + {{ gettext("navAutoComplete") }}
    From 5ba1b9523f498a7e56f182b8599623ab671cdd64 Mon Sep 17 00:00:00 2001 From: feihaozi77 Date: Sat, 30 Sep 2017 16:19:04 -0400 Subject: [PATCH 02/17] removed add border LESS --- public/editor/stylesheets/editor.less | 3 --- 1 file changed, 3 deletions(-) diff --git a/public/editor/stylesheets/editor.less b/public/editor/stylesheets/editor.less index fe3916114..df6415e5e 100755 --- a/public/editor/stylesheets/editor.less +++ b/public/editor/stylesheets/editor.less @@ -570,9 +570,6 @@ body { width: 60px; top: 16px; cursor: pointer; - &.show-border{ - display:none !important; - } &.switch-enabled { .toggle-backing { background: @buttonGreen; From 41f0b41dc9824154b6c95002818140609cf69b3e Mon Sep 17 00:00:00 2001 From: feihaozi77 Date: Sat, 30 Sep 2017 17:01:21 -0400 Subject: [PATCH 03/17] fixed space in less --- public/editor/stylesheets/editor.less | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/editor/stylesheets/editor.less b/public/editor/stylesheets/editor.less index df6415e5e..fee456d26 100755 --- a/public/editor/stylesheets/editor.less +++ b/public/editor/stylesheets/editor.less @@ -537,8 +537,8 @@ body { position: relative; color: rgba(0, 0, 0, 0.6); - .toggle-text{ - cursor: pointer; + .toggle-text { + cursor: pointer; } } @@ -562,7 +562,6 @@ body { // Line wrap toggle #editor-pane-nav-options-menu { - .switch-toggle { position: absolute; right: 18px; @@ -570,6 +569,7 @@ body { width: 60px; top: 16px; cursor: pointer; + &.switch-enabled { .toggle-backing { background: @buttonGreen; From 13d040f36fb6c44e0dcd4adbb4bc322d9f02f36d Mon Sep 17 00:00:00 2001 From: feihaozi77 Date: Sat, 30 Sep 2017 17:07:11 -0400 Subject: [PATCH 04/17] fixed space in less again --- public/editor/stylesheets/editor.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/editor/stylesheets/editor.less b/public/editor/stylesheets/editor.less index fee456d26..4855bcb2b 100755 --- a/public/editor/stylesheets/editor.less +++ b/public/editor/stylesheets/editor.less @@ -569,8 +569,8 @@ body { width: 60px; top: 16px; cursor: pointer; - - &.switch-enabled { + + &.switch-enabled { .toggle-backing { background: @buttonGreen; opacity: 0.3; From 637bf63a2c8e40b324c9f92a6d3a634a8638a888 Mon Sep 17 00:00:00 2001 From: feihaozi77 Date: Sat, 30 Sep 2017 17:10:53 -0400 Subject: [PATCH 05/17] fixed space in less againX2 --- public/editor/stylesheets/editor.less | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/public/editor/stylesheets/editor.less b/public/editor/stylesheets/editor.less index 4855bcb2b..5365b5a32 100755 --- a/public/editor/stylesheets/editor.less +++ b/public/editor/stylesheets/editor.less @@ -569,8 +569,7 @@ body { width: 60px; top: 16px; cursor: pointer; - - &.switch-enabled { + &.switch-enabled { .toggle-backing { background: @buttonGreen; opacity: 0.3; From 12dbb3a46cceefcc11aab21caabf5af7b1b710e0 Mon Sep 17 00:00:00 2001 From: feihaozi77 Date: Sat, 30 Sep 2017 17:18:01 -0400 Subject: [PATCH 06/17] fixed space in less againX3 --- public/editor/stylesheets/editor.less | 1 + 1 file changed, 1 insertion(+) diff --git a/public/editor/stylesheets/editor.less b/public/editor/stylesheets/editor.less index 5365b5a32..fee456d26 100755 --- a/public/editor/stylesheets/editor.less +++ b/public/editor/stylesheets/editor.less @@ -569,6 +569,7 @@ body { width: 60px; top: 16px; cursor: pointer; + &.switch-enabled { .toggle-backing { background: @buttonGreen; From 051945f116da5a21dbabc73cffc226cb1708faa6 Mon Sep 17 00:00:00 2001 From: feihaozi77 Date: Sat, 30 Sep 2017 17:22:05 -0400 Subject: [PATCH 07/17] fixed space in less againX4 --- public/editor/stylesheets/editor.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/editor/stylesheets/editor.less b/public/editor/stylesheets/editor.less index fee456d26..c369efbaa 100755 --- a/public/editor/stylesheets/editor.less +++ b/public/editor/stylesheets/editor.less @@ -569,7 +569,7 @@ body { width: 60px; top: 16px; cursor: pointer; - + &.switch-enabled { .toggle-backing { background: @buttonGreen; From d6d99cc1b31430e122fcdd524064430118a5ca5a Mon Sep 17 00:00:00 2001 From: feihaozi77 Date: Sat, 30 Sep 2017 17:26:09 -0400 Subject: [PATCH 08/17] fixed space in less againX3 --- public/editor/stylesheets/editor.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/editor/stylesheets/editor.less b/public/editor/stylesheets/editor.less index c369efbaa..fee456d26 100755 --- a/public/editor/stylesheets/editor.less +++ b/public/editor/stylesheets/editor.less @@ -569,7 +569,7 @@ body { width: 60px; top: 16px; cursor: pointer; - + &.switch-enabled { .toggle-backing { background: @buttonGreen; From 294e5f49543fe039af7baa2effa71b363422b9ed Mon Sep 17 00:00:00 2001 From: feihaozi77 Date: Sat, 30 Sep 2017 17:32:54 -0400 Subject: [PATCH 09/17] fixed space in less againX5 --- public/editor/stylesheets/editor.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/editor/stylesheets/editor.less b/public/editor/stylesheets/editor.less index fee456d26..b53eb60ab 100755 --- a/public/editor/stylesheets/editor.less +++ b/public/editor/stylesheets/editor.less @@ -569,7 +569,7 @@ body { width: 60px; top: 16px; cursor: pointer; - + &.switch-enabled { .toggle-backing { background: @buttonGreen; From b802ffacd6a01db8e4acfc46f80ac808e068918f Mon Sep 17 00:00:00 2001 From: feihaozi77 Date: Sat, 30 Sep 2017 17:34:56 -0400 Subject: [PATCH 10/17] fixed space in less againX6 --- public/editor/stylesheets/editor.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/editor/stylesheets/editor.less b/public/editor/stylesheets/editor.less index b53eb60ab..926042d5f 100755 --- a/public/editor/stylesheets/editor.less +++ b/public/editor/stylesheets/editor.less @@ -569,7 +569,7 @@ body { width: 60px; top: 16px; cursor: pointer; - + &.switch-enabled { .toggle-backing { background: @buttonGreen; From 1be4e73856beb51d0680dbe84b3a7ebc3e8da2c2 Mon Sep 17 00:00:00 2001 From: feihaozi77 Date: Mon, 2 Oct 2017 12:39:39 -0400 Subject: [PATCH 11/17] make each Li element in option menu clickable to toggle sliders in option menu --- public/editor/scripts/ui/menus.js | 34 +++++++-------------------- public/editor/stylesheets/editor.less | 6 +---- views/editor/nav-options.html | 16 ++++++------- 3 files changed, 18 insertions(+), 38 deletions(-) diff --git a/public/editor/scripts/ui/menus.js b/public/editor/scripts/ui/menus.js index 71f1a5b8a..3b5b44259 100644 --- a/public/editor/scripts/ui/menus.js +++ b/public/editor/scripts/ui/menus.js @@ -163,7 +163,7 @@ function setupOptionsMenu(bramble) { setWordWrapUI(value); }); } - $("#line-wrap-toggle").click(function() { + $("#wraptext-toggle-li").click(function() { // Toggle current value setWordWrap(!bramble.getWordWrap()); var mode = !bramble.getWordWrap() ? "Enabled" : "Disabled"; @@ -191,7 +191,7 @@ function setupOptionsMenu(bramble) { } // Enable/Disable JavaScript in Preview - $("#allow-scripts-toggle").click(function() { + $("#allowjs-toggle-li").click(function() { // Toggle current value var $allowScriptsToggle = $("#allow-scripts-toggle"); var toggle = !$allowScriptsToggle.hasClass("switch-enabled"); @@ -223,8 +223,9 @@ function setupOptionsMenu(bramble) { } else { $("#allow-whitespace-toggle").removeClass("switch-enabled"); } + // Enable/Disable Whitespace Indicator - $("#allow-whitespace-toggle").click(function() { + $("#allowws-toggle-li").click(function() { // Toggle current value var $allowWhitespaceToggle = $("#allow-whitespace-toggle"); var toggle = !$allowWhitespaceToggle.hasClass("switch-enabled"); @@ -246,8 +247,9 @@ function setupOptionsMenu(bramble) { } else { $("#autocomplete-toggle").removeClass("switch-enabled"); } + // Enable/Disable Autocomplete - $("#autocomplete-toggle").click(function() { + $("#autocomplete-toggle-li").click(function() { // Toggle current value var $autocompleteToggle = $("#autocomplete-toggle"); var toggle = !$autocompleteToggle.hasClass("switch-enabled"); @@ -263,25 +265,8 @@ function setupOptionsMenu(bramble) { return false; }); - //allow text clickable to Eable/Disable Autocomplete - $("#autocomplete-toggle-text").click(function() { - var $autocompleteToggle = $("#autocomplete-toggle"); - var $autocompleteToggleText = $("#autocomplete-toggle-text"); - var toggle = !$autocompleteToggle.hasClass("switch-enabled"); - - if (toggle) { - $autocompleteToggle.addClass("switch-enabled"); - bramble.enableAutocomplete(); - } else { - $autocompleteToggle.removeClass("switch-enabled"); - bramble.disableAutocomplete(); - } - - return false; - }); - //Edit SVG as XML - $("#edit-SVG-toggle").click(function() { + $("#svgedit-toggle-li").click(function() { // Toggle current value var $editSVGToggle = $("#edit-SVG-toggle"); var toggle = !$editSVGToggle.hasClass("switch-enabled"); @@ -305,7 +290,7 @@ function setupOptionsMenu(bramble) { $("#auto-tags-toggle").removeClass("switch-enabled"); } - $("#auto-tags-toggle").click(function() { + $("#autoenclosetags-toggle-li").click(function() { var $autoTagsToggle = $("#auto-tags-toggle"); var autoCloseTagsEnabled = $autoTagsToggle.hasClass("switch-enabled"); @@ -393,8 +378,7 @@ function setupOptionsMenu(bramble) { }); } } - $("#theme-light").click(toggleTheme); - $("#theme-dark").click(toggleTheme); + $("#colortheme-toggle-li").click(toggleTheme); // If the user explicitly set the light-theme last time, use that // otherwise default to using the dark-theme. diff --git a/public/editor/stylesheets/editor.less b/public/editor/stylesheets/editor.less index 926042d5f..e4256a9cc 100755 --- a/public/editor/stylesheets/editor.less +++ b/public/editor/stylesheets/editor.less @@ -536,10 +536,7 @@ body { padding: 20px 100px 20px 20px; position: relative; color: rgba(0, 0, 0, 0.6); - - .toggle-text { - cursor: pointer; - } + cursor: pointer; } li + li { @@ -568,7 +565,6 @@ body { height: 30px; width: 60px; top: 16px; - cursor: pointer; &.switch-enabled { .toggle-backing { diff --git a/views/editor/nav-options.html b/views/editor/nav-options.html index 727a30063..f4d42ed5f 100644 --- a/views/editor/nav-options.html +++ b/views/editor/nav-options.html @@ -119,7 +119,7 @@

    {{ gettext("snippetMenuTitle") }}

  • -
  • +
  • {{ gettext("navColorTheme") }}
    @@ -133,42 +133,42 @@

    {{ gettext("snippetMenuTitle") }}

  • -
  • +
  • {{ gettext("navWrapText") }}
  • -
  • +
  • {{ gettext("navAllowJS") }}
  • -
  • +
  • {{ gettext("navAllowWS") }}
  • -
  • +
  • {{ gettext("navAutoEncloseTags") }}
  • -
  • - {{ gettext("navAutoComplete") }} +
  • + {{ gettext("navAutoComplete") }}
  • -
  • +
  • {{ gettext("navSVGedit") }}
    From b814735166ba33d0d33494d5873598a003cbf21c Mon Sep 17 00:00:00 2001 From: feihaozi77 Date: Mon, 2 Oct 2017 14:58:11 -0400 Subject: [PATCH 12/17] Naming convention changed for
  • elements --- public/editor/scripts/ui/menus.js | 14 +++++++------- views/editor/nav-options.html | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/public/editor/scripts/ui/menus.js b/public/editor/scripts/ui/menus.js index 3b5b44259..6246f2ad7 100644 --- a/public/editor/scripts/ui/menus.js +++ b/public/editor/scripts/ui/menus.js @@ -163,7 +163,7 @@ function setupOptionsMenu(bramble) { setWordWrapUI(value); }); } - $("#wraptext-toggle-li").click(function() { + $("#editor-option-wraptext").click(function() { // Toggle current value setWordWrap(!bramble.getWordWrap()); var mode = !bramble.getWordWrap() ? "Enabled" : "Disabled"; @@ -191,7 +191,7 @@ function setupOptionsMenu(bramble) { } // Enable/Disable JavaScript in Preview - $("#allowjs-toggle-li").click(function() { + $("#editor-option-allowjs").click(function() { // Toggle current value var $allowScriptsToggle = $("#allow-scripts-toggle"); var toggle = !$allowScriptsToggle.hasClass("switch-enabled"); @@ -225,7 +225,7 @@ function setupOptionsMenu(bramble) { } // Enable/Disable Whitespace Indicator - $("#allowws-toggle-li").click(function() { + $("#editor-option-allowws").click(function() { // Toggle current value var $allowWhitespaceToggle = $("#allow-whitespace-toggle"); var toggle = !$allowWhitespaceToggle.hasClass("switch-enabled"); @@ -249,7 +249,7 @@ function setupOptionsMenu(bramble) { } // Enable/Disable Autocomplete - $("#autocomplete-toggle-li").click(function() { + $("#editor-option-autocomplete").click(function() { // Toggle current value var $autocompleteToggle = $("#autocomplete-toggle"); var toggle = !$autocompleteToggle.hasClass("switch-enabled"); @@ -266,7 +266,7 @@ function setupOptionsMenu(bramble) { }); //Edit SVG as XML - $("#svgedit-toggle-li").click(function() { + $("#editor-option-svgedit").click(function() { // Toggle current value var $editSVGToggle = $("#edit-SVG-toggle"); var toggle = !$editSVGToggle.hasClass("switch-enabled"); @@ -290,7 +290,7 @@ function setupOptionsMenu(bramble) { $("#auto-tags-toggle").removeClass("switch-enabled"); } - $("#autoenclosetags-toggle-li").click(function() { + $("#editor-option-autoenclosetags").click(function() { var $autoTagsToggle = $("#auto-tags-toggle"); var autoCloseTagsEnabled = $autoTagsToggle.hasClass("switch-enabled"); @@ -378,7 +378,7 @@ function setupOptionsMenu(bramble) { }); } } - $("#colortheme-toggle-li").click(toggleTheme); + $("#editor-option-colortheme").click(toggleTheme); // If the user explicitly set the light-theme last time, use that // otherwise default to using the dark-theme. diff --git a/views/editor/nav-options.html b/views/editor/nav-options.html index f4d42ed5f..c5e7e5e0b 100644 --- a/views/editor/nav-options.html +++ b/views/editor/nav-options.html @@ -119,7 +119,7 @@

    {{ gettext("snippetMenuTitle") }}

  • -
  • +
  • {{ gettext("navColorTheme") }}
    @@ -133,42 +133,42 @@

    {{ gettext("snippetMenuTitle") }}

  • -
  • +
  • {{ gettext("navWrapText") }}
  • -
  • +
  • {{ gettext("navAllowJS") }}
  • -
  • +
  • {{ gettext("navAllowWS") }}
  • -
  • +
  • {{ gettext("navAutoEncloseTags") }}
  • -
  • +
  • {{ gettext("navAutoComplete") }}
  • -
  • +
  • {{ gettext("navSVGedit") }}
    From 1325a511de311b1af84aa66272c192c61c1047e4 Mon Sep 17 00:00:00 2001 From: feihaozi77 Date: Wed, 4 Oct 2017 11:25:20 -0400 Subject: [PATCH 13/17] removed pointer cursor from textsize option menu --- public/editor/stylesheets/editor.less | 4 ++++ views/editor/nav-options.html | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/public/editor/stylesheets/editor.less b/public/editor/stylesheets/editor.less index e4256a9cc..18a5fa1af 100755 --- a/public/editor/stylesheets/editor.less +++ b/public/editor/stylesheets/editor.less @@ -539,6 +539,10 @@ body { cursor: pointer; } + #editor-option-textsize { + cursor: default; + } + li + li { border-top: 1px solid #e5e5e5; } diff --git a/views/editor/nav-options.html b/views/editor/nav-options.html index c5e7e5e0b..7687c6fc8 100644 --- a/views/editor/nav-options.html +++ b/views/editor/nav-options.html @@ -112,7 +112,7 @@

    {{ gettext("snippetMenuTitle") }}

      -
    • +
    • {{ gettext("navTextSize") }}
      From 8d67cbc47a0a6d44f73fdf2abfe5b6a867b1e8de Mon Sep 17 00:00:00 2001 From: feihaozi77 Date: Wed, 4 Oct 2017 11:27:52 -0400 Subject: [PATCH 14/17] removed pointer cursor from textsize option menuX2 --- public/editor/stylesheets/editor.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/editor/stylesheets/editor.less b/public/editor/stylesheets/editor.less index 18a5fa1af..cabe1ea65 100755 --- a/public/editor/stylesheets/editor.less +++ b/public/editor/stylesheets/editor.less @@ -541,7 +541,7 @@ body { #editor-option-textsize { cursor: default; - } + } li + li { border-top: 1px solid #e5e5e5; From 190674c87d92491191c8a0837739aad04980cae4 Mon Sep 17 00:00:00 2001 From: feihaozi77 Date: Tue, 19 Dec 2017 12:57:53 -0500 Subject: [PATCH 15/17] Added Localized strings for InlineBorderRadiusEditor --- locales/en-US/editor.properties | 3 +++ 1 file changed, 3 insertions(+) diff --git a/locales/en-US/editor.properties b/locales/en-US/editor.properties index 4403c719c..039272a21 100644 --- a/locales/en-US/editor.properties +++ b/locales/en-US/editor.properties @@ -208,6 +208,9 @@ PDF_FILE_TITLE=PDF File ################ ## EXTENSIONS ## ################ +# extensions/default/InlineBorderRadiusEditor +ALL_CORNERS=All Corners +INDIVIDUAL_CORNERS=Individual Corners # extensions/default/InlineColorEditor From ca7495b7c2df1492904e732fad144705e0d31369 Mon Sep 17 00:00:00 2001 From: feihaozi77 Date: Tue, 19 Dec 2017 16:56:16 -0500 Subject: [PATCH 16/17] added few more localized strings --- locales/en-US/editor.properties | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/locales/en-US/editor.properties b/locales/en-US/editor.properties index 039272a21..b3754dbe1 100644 --- a/locales/en-US/editor.properties +++ b/locales/en-US/editor.properties @@ -211,6 +211,21 @@ PDF_FILE_TITLE=PDF File # extensions/default/InlineBorderRadiusEditor ALL_CORNERS=All Corners INDIVIDUAL_CORNERS=Individual Corners +TL_RADIO_PX=pixels +TL_RADIO_PERCENT=percentage +TL_RADIO_EM=em +TR_RADIO_PX=pixels +TR_RADIO_PERCENT=percentage +TR_RADIO_EM=em +BR_RADIO_PX=pixels +BR_RADIO_PERCENT=percentage +BR_RADIO_EM=em +BL_RADIO_PX=pixels +BL_RADIO_PERCENT=percentage +BL_RADIO_EM=em +ALL_RADIO_PX=pixels +ALL_RADIO_PERCENT=percentage +ALL_RADIO_EM=em # extensions/default/InlineColorEditor From 97c1da62839e81c2bb0b0b15022867e44d690d00 Mon Sep 17 00:00:00 2001 From: feihaozi77 Date: Thu, 4 Jan 2018 17:58:41 -0500 Subject: [PATCH 17/17] Modified editor.properties for border-radius editor localized strings --- locales/en-US/editor.properties | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/locales/en-US/editor.properties b/locales/en-US/editor.properties index b3754dbe1..6a586caf2 100644 --- a/locales/en-US/editor.properties +++ b/locales/en-US/editor.properties @@ -209,23 +209,14 @@ PDF_FILE_TITLE=PDF File ## EXTENSIONS ## ################ # extensions/default/InlineBorderRadiusEditor -ALL_CORNERS=All Corners + +# "Individual Corners" is an option that can be selected for border-radius in case when users want to change border-radius value for just one specific corner. INDIVIDUAL_CORNERS=Individual Corners -TL_RADIO_PX=pixels -TL_RADIO_PERCENT=percentage -TL_RADIO_EM=em -TR_RADIO_PX=pixels -TR_RADIO_PERCENT=percentage -TR_RADIO_EM=em -BR_RADIO_PX=pixels -BR_RADIO_PERCENT=percentage -BR_RADIO_EM=em -BL_RADIO_PX=pixels -BL_RADIO_PERCENT=percentage -BL_RADIO_EM=em -ALL_RADIO_PX=pixels -ALL_RADIO_PERCENT=percentage -ALL_RADIO_EM=em +# "All Corners" is an option that can be selected for border-radius in case when users want to change border-radius value for all four corners at once +ALL_CORNERS=All Corners +PIXEL_UNIT=pixels +PERCENTAGE_UNIT=percentage +EM_UNIT=em font unit # extensions/default/InlineColorEditor