From 13d6df24fbd4e307678edd01752e86ba775716f4 Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 13 Dec 2018 09:11:42 -0600 Subject: [PATCH 1/5] smartblock ui: add collapsed "advanced options" section --- .../scripts/form/smart-block-criteria.phtml | 165 +++++++++--------- .../views/scripts/playlist/smart-block.phtml | 21 ++- airtime_mvc/public/css/dashboard.css | 14 -- airtime_mvc/public/css/playlist_builder.css | 37 ++++ .../js/airtime/playlist/smart_blockbuilder.js | 5 + 5 files changed, 141 insertions(+), 101 deletions(-) diff --git a/airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml b/airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml index 7dccbb7d6..2d61c7d96 100644 --- a/airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml +++ b/airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml @@ -1,87 +1,8 @@
-
- -
-
- element->getElement('sp_type')->getValue(); - foreach ($this->element->getElement('sp_type')->getMultiOptions() as $radio) : ?> - - - - - -
- -
- -
-
- element->getElement('sp_repeat_tracks')?> - element->getElement("sp_repeat_tracks")->hasErrors()) : ?> - element->getElement("sp_repeat_tracks")->getMessages() as $error): ?> - - - - - - -
-
- -
-
- element->getElement('sp_overflow_tracks')?> - element->getElement("sp_overflow_tracks")->hasErrors()) : ?> - element->getElement("sp_overflow_tracks")->getMessages() as $error): ?> - - - - - - -
- - -
- -
-
- element->getElement('sp_sort_options') ?> - element->getElement("sp_sort_options")->hasErrors()) : ?> - element->getElement("sp_sort_options")->getMessages() as $error): ?> - - - - - -
- -
- -
-
- element->getElement('sp_limit_value')?> - element->getElement('sp_limit_options') ?> - element->getElement("sp_limit_value")->hasErrors()) : ?> - element->getElement("sp_limit_value")->getMessages() as $error): ?> - - - - - -
-
- - criteriasLength; $i++) { // modRowMap holds the number of modifier rows for each criteria element // i.e. if we have 'Album contains 1' and 'Album contains 2' the modRowMap @@ -138,7 +59,93 @@ + +
+
+
+
+ +
+
+ element->getElement('sp_limit_value')?> + element->getElement('sp_limit_options') ?> + element->getElement("sp_limit_value")->hasErrors()) : ?> + element->getElement("sp_limit_value")->getMessages() as $error): ?> + + + + +
+
Advanced options
+
+
+
+ +
+
+ element->getElement('sp_type')->getValue(); + foreach ($this->element->getElement('sp_type')->getMultiOptions() as $radio) : ?> + + + + + +
+
+
+
+ +
+
+ element->getElement('sp_repeat_tracks')?> + element->getElement("sp_repeat_tracks")->hasErrors()) : ?> + element->getElement("sp_repeat_tracks")->getMessages() as $error): ?> + + + + + + +
+
+
+
+ +
+
+ element->getElement('sp_overflow_tracks')?> + element->getElement("sp_overflow_tracks")->hasErrors()) : ?> + element->getElement("sp_overflow_tracks")->getMessages() as $error): ?> + + + + + + +
+
+
+
+ +
+
+ element->getElement('sp_sort_options') ?> + element->getElement("sp_sort_options")->hasErrors()) : ?> + element->getElement("sp_sort_options")->getMessages() as $error): ?> + + + + + +
+
+
diff --git a/airtime_mvc/application/views/scripts/playlist/smart-block.phtml b/airtime_mvc/application/views/scripts/playlist/smart-block.phtml index eb80e402c..47ce144bc 100644 --- a/airtime_mvc/application/views/scripts/playlist/smart-block.phtml +++ b/airtime_mvc/application/views/scripts/playlist/smart-block.phtml @@ -10,7 +10,7 @@ if (isset($this->obj)) {

"unsavedName)) echo $this->unsavedName; else echo $this->escape($this->obj->getName());?>"

-
+
@@ -25,17 +25,22 @@ if (isset($this->obj)) { else echo $this->escape($this->obj->getName()); ?>"> -
-
- -
form; ?> +
+
+
+
+ +
+
+
+
diff --git a/airtime_mvc/public/css/dashboard.css b/airtime_mvc/public/css/dashboard.css index d94b0f941..8df5161b0 100644 --- a/airtime_mvc/public/css/dashboard.css +++ b/airtime_mvc/public/css/dashboard.css @@ -684,20 +684,6 @@ li.ui-state-default { height: 26px; } -.smart-block-form input[type='radio'] { - vertical-align: bottom; - margin: 0 5px -2px; -} - -.smart-block-form input[type='checkbox'] { - vertical-align: bottom; - margin: 0 4px; -} - -.smart-block-form ~ .btn-toolbar { - padding-top: 4px; -} - /* Schedule tab DataTable */ #show_builder_table_wrapper .fg-toolbar.ui-corner-tl.ui-corner-tr { diff --git a/airtime_mvc/public/css/playlist_builder.css b/airtime_mvc/public/css/playlist_builder.css index 73a855634..0e344047a 100644 --- a/airtime_mvc/public/css/playlist_builder.css +++ b/airtime_mvc/public/css/playlist_builder.css @@ -634,4 +634,41 @@ li.spl_empty { #criteria_add { margin-bottom: 5px; +} + +.smart-block-form dt, .smart-block-form dd { + float: none; +} +.smart-block-form dl:not(.search-criteria) { + display: flex; + width: 100%; +} +.smart-block-form dt { + flex: 1 0 20%; + margin: 0; +} +.smart-block-form dd { + flex: 0 0 80%; + margin: 0; +} +.collapsible-header .arrow-icon { + transition: 0.3s; +} +.collapsible-header.visible .arrow-icon { + transform: rotate(90deg); +} +.smart-block-advanced { + display: none; +} +.smart-block-form .smart-block-advanced dt { + flex: 0 0 40%; + margin: 0; +} +.smart-block-form .smart-block-advanced dd { + flex: 0 0 60%; + margin: 0; +} +.smart-block-form input[type='radio'], .smart-block-form input[type='checkbox'] { + vertical-align: middle; + margin: 0 5px; } \ No newline at end of file diff --git a/airtime_mvc/public/js/airtime/playlist/smart_blockbuilder.js b/airtime_mvc/public/js/airtime/playlist/smart_blockbuilder.js index 6794e8855..e4e170978 100644 --- a/airtime_mvc/public/js/airtime/playlist/smart_blockbuilder.js +++ b/airtime_mvc/public/js/airtime/playlist/smart_blockbuilder.js @@ -566,6 +566,11 @@ function setupUI() { at: "right center" } }); + + activeTab.find('.smart-block-form .collapsible-header').click(function(){ + $(this).toggleClass('visible'); + $('.smart-block-advanced').toggle(); + }) } /* Utilizing jQuery this function finds the #datetime_select element on the given row From eec07d38f74d9213ead1374e4b878e58bcfe967e Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 13 Dec 2018 15:05:41 -0600 Subject: [PATCH 2/5] prevent multiple event bindings on collapsible advanced options header --- airtime_mvc/public/js/airtime/playlist/smart_blockbuilder.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/public/js/airtime/playlist/smart_blockbuilder.js b/airtime_mvc/public/js/airtime/playlist/smart_blockbuilder.js index e4e170978..035567389 100644 --- a/airtime_mvc/public/js/airtime/playlist/smart_blockbuilder.js +++ b/airtime_mvc/public/js/airtime/playlist/smart_blockbuilder.js @@ -567,10 +567,10 @@ function setupUI() { } }); - activeTab.find('.smart-block-form .collapsible-header').click(function(){ + activeTab.find('.collapsible-header').off('click').on('click', function(){ $(this).toggleClass('visible'); $('.smart-block-advanced').toggle(); - }) + }); } /* Utilizing jQuery this function finds the #datetime_select element on the given row From b56357309fba97c6fe1a547002917ad5a026623c Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 13 Dec 2018 16:29:41 -0600 Subject: [PATCH 3/5] Make Advanced Options string translatable --- .../application/views/scripts/form/smart-block-criteria.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml b/airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml index 2d61c7d96..34c8375e6 100644 --- a/airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml +++ b/airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml @@ -79,7 +79,7 @@ -
Advanced options
+
From 65550f940f3fec43b3016ac7e4993ab35e0afe08 Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 13 Dec 2018 16:30:14 -0600 Subject: [PATCH 4/5] add missing smartblock strings to translation files --- airtime_mvc/locale/ast/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/az/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/hy/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/ja/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/ka/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/lt/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/si/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po | 12 ++++++++++++ .../locale/sr_RS@latin/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/template/airtime.po | 12 ++++++++++++ airtime_mvc/locale/tr/LC_MESSAGES/airtime.po | 12 ++++++++++++ airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po | 12 ++++++++++++ 34 files changed, 408 insertions(+) diff --git a/airtime_mvc/locale/ast/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ast/LC_MESSAGES/airtime.po index f76b852b9..b7e4e67f3 100644 --- a/airtime_mvc/locale/ast/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ast/LC_MESSAGES/airtime.po @@ -3379,6 +3379,18 @@ msgstr "" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po index 952c3f7ae..7a97e7e58 100644 --- a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po @@ -3379,6 +3379,18 @@ msgstr "" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po index ebc588c72..18c9e24e0 100644 --- a/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po @@ -3383,6 +3383,18 @@ msgstr "Dynamický" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po b/airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po index 65c1dc92d..c39759bb5 100644 --- a/airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po @@ -3379,6 +3379,18 @@ msgstr "" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po index 089555c0c..56542f78b 100644 --- a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po @@ -3396,6 +3396,18 @@ msgstr "Dynamisch" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po b/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po index 2d4ba44c0..e0b2a98ba 100644 --- a/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po @@ -3398,6 +3398,18 @@ msgstr "Dynamisch" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po index 7bf24c41f..811f2cc33 100644 --- a/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po @@ -3383,6 +3383,18 @@ msgstr "Δυναμικό" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po index 329447ab9..909fae53a 100644 --- a/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po @@ -3383,6 +3383,18 @@ msgstr "Dynamic" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po index 4d83b2e2d..70717361d 100644 --- a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po @@ -3384,6 +3384,18 @@ msgstr "Dynamic" msgid "Allow Repeated Tracks:" msgstr "Allow Repeated Tracks:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "Sort Tracks:" diff --git a/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po index 8477016d5..8fcd0a71b 100644 --- a/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po @@ -3383,6 +3383,18 @@ msgstr "Dynamic" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po b/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po index 4a0f091a8..78aff978e 100644 --- a/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po @@ -3395,6 +3395,18 @@ msgstr "Dinámico" msgid "Allow Repeated Tracks:" msgstr "Permitir Pistas Repetidas:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "Ordenar Pistas:" diff --git a/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po index f29caed5d..0c86021f5 100644 --- a/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po @@ -3383,6 +3383,18 @@ msgstr "Dynamique" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po index 0d89c8418..958dcbd10 100644 --- a/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po @@ -3382,6 +3382,18 @@ msgstr "Dinamički" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po index 6f1a6fe02..70522bc48 100644 --- a/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po @@ -3567,6 +3567,18 @@ msgstr "Dinamikus" msgid "Allow Repeated Tracks:" msgstr "Ismétlődő sávok engedélyezése:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "Sávok rendezése:" diff --git a/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po index 1c246b1a1..52bf3c7af 100644 --- a/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po @@ -3376,6 +3376,18 @@ msgstr "" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po index 25bbe9f2d..3f4ec08ac 100644 --- a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po @@ -3379,6 +3379,18 @@ msgstr "" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po b/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po index 1c7de0a44..d0231319d 100644 --- a/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po @@ -3379,6 +3379,18 @@ msgstr "" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po b/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po index 3982903d0..64c0ea64d 100644 --- a/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po @@ -3384,6 +3384,18 @@ msgstr "Dinamico" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po index ee02e1e92..c761b6f29 100644 --- a/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po @@ -3382,6 +3382,18 @@ msgstr "自動生成スマート・ブロック" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po index 6d7e963d3..0a9896f58 100644 --- a/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po @@ -3377,6 +3377,18 @@ msgstr "" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po index b8de4d740..d27a90f8d 100644 --- a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po @@ -3379,6 +3379,18 @@ msgstr "" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po index d033f559d..b1e6178f2 100644 --- a/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po @@ -3380,6 +3380,18 @@ msgstr "동적(Dynamic)" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po b/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po index f50e162b4..e7f64ba2c 100644 --- a/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po @@ -3380,6 +3380,18 @@ msgstr "" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po index 55fb4d204..ef103279f 100644 --- a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po @@ -3386,6 +3386,18 @@ msgstr "Dynamisch" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po b/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po index da8f49d83..8decd1ebb 100644 --- a/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po @@ -3383,6 +3383,18 @@ msgstr "Dynamiczny" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po index bef98e329..47f8b063e 100644 --- a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po @@ -3384,6 +3384,18 @@ msgstr "Dinâmico" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po index 52492e749..5552b9f3e 100644 --- a/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po @@ -3379,6 +3379,18 @@ msgstr "" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po index 98d34e14a..f256aba77 100644 --- a/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po @@ -3402,6 +3402,18 @@ msgstr "Динамический" msgid "Allow Repeated Tracks:" msgstr "Разрешить повторение треков:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "Сортировка треков:" diff --git a/airtime_mvc/locale/si/LC_MESSAGES/airtime.po b/airtime_mvc/locale/si/LC_MESSAGES/airtime.po index d5d98b2b2..d0f0e4f9d 100644 --- a/airtime_mvc/locale/si/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/si/LC_MESSAGES/airtime.po @@ -3379,6 +3379,18 @@ msgstr "" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po b/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po index 3d217c6f7..d5903931f 100644 --- a/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po @@ -3382,6 +3382,18 @@ msgstr "Динамички" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po b/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po index cececa3e4..3a1886849 100644 --- a/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po @@ -3382,6 +3382,18 @@ msgstr "Dinamički" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/template/airtime.po b/airtime_mvc/locale/template/airtime.po index acf00adde..c4bd1a53c 100644 --- a/airtime_mvc/locale/template/airtime.po +++ b/airtime_mvc/locale/template/airtime.po @@ -3379,6 +3379,18 @@ msgstr "" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po index 946f16cb4..334270f4a 100644 --- a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po @@ -3380,6 +3380,18 @@ msgstr "Dinamik" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" diff --git a/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po b/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po index 918c1b86f..a7fda2121 100644 --- a/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po @@ -3382,6 +3382,18 @@ msgstr "动态" msgid "Allow Repeated Tracks:" msgstr "" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 +msgid "
This is only a preview of possible content generated by the smart block based upon the above criteria." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 +msgid "Advanced options" +msgstr "" + #: airtime_mvc/application/forms/SmartBlockCriteria.php:308 msgid "Sort Tracks:" msgstr "" From 4e172944aca6efc12654cb74f3cb6d6e9d404d69 Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 13 Dec 2018 17:59:23 -0600 Subject: [PATCH 5/5] remove space below smartblock advanced options --- airtime_mvc/public/css/dashboard.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/airtime_mvc/public/css/dashboard.css b/airtime_mvc/public/css/dashboard.css index 8df5161b0..596d9514e 100644 --- a/airtime_mvc/public/css/dashboard.css +++ b/airtime_mvc/public/css/dashboard.css @@ -518,6 +518,7 @@ li.ui-state-default { left: 4px; overflow-x: hidden; /* Show the y-direction scrollbar (magic!) */ color: #efefef; + justify-content: stretch; } .angular_wrapper a { @@ -549,6 +550,13 @@ li.ui-state-default { -moz-box-sizing: border-box; box-sizing: border-box; } +.inner_editor_wrapper.smart-block-form { + -webkit-flex: 0 0 auto; + -moz-flex: 0 0 auto; + -ms-flex: 0 0 auto; + -o-flex: 0 0 auto; + flex: 0 0 auto; +} .angular_wrapper > .inner_editor_wrapper { max-height: none;