From 8b5b3d1e07c07a2d3c9ffd17e3303770c933f80c Mon Sep 17 00:00:00 2001 From: Morteza Karimi Date: Mon, 12 Feb 2018 22:03:35 +0330 Subject: [PATCH 1/6] Fix Spinner Icons in spin when add `.fa-spin` class Fix `spinning icons example` link,when click on it add `.fa-spin` to icons --- production/icons.html | 18 +++++++++++++++--- src/scss/custom.scss | 1 - 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/production/icons.html b/production/icons.html index 16c0d6fc..dd903a7c 100755 --- a/production/icons.html +++ b/production/icons.html @@ -1354,12 +1354,12 @@ -
+
@@ -2344,5 +2344,17 @@ + - \ No newline at end of file + diff --git a/src/scss/custom.scss b/src/scss/custom.scss index 1ee778d9..909a7057 100644 --- a/src/scss/custom.scss +++ b/src/scss/custom.scss @@ -1710,7 +1710,6 @@ h4.graph_title { vertical-align: -6px; } .fontawesome-icon-list .fa-hover a .fa { - width: 32px; font-size: 16px; display: inline-block; text-align: right; From f0a294f91209d877fd738c4b83ab63df6127eb91 Mon Sep 17 00:00:00 2001 From: AndreiCN Date: Tue, 13 Feb 2018 14:13:16 +0200 Subject: [PATCH 2/6] Revert "Fix Spinner Icons in spin when add .fa-spin class in Icons.html" --- production/icons.html | 18 +++--------------- src/scss/custom.scss | 1 + 2 files changed, 4 insertions(+), 15 deletions(-) diff --git a/production/icons.html b/production/icons.html index dd903a7c..16c0d6fc 100755 --- a/production/icons.html +++ b/production/icons.html @@ -1354,12 +1354,12 @@
-
+
@@ -2344,17 +2344,5 @@ - - + \ No newline at end of file diff --git a/src/scss/custom.scss b/src/scss/custom.scss index 909a7057..1ee778d9 100644 --- a/src/scss/custom.scss +++ b/src/scss/custom.scss @@ -1710,6 +1710,7 @@ h4.graph_title { vertical-align: -6px; } .fontawesome-icon-list .fa-hover a .fa { + width: 32px; font-size: 16px; display: inline-block; text-align: right; From 9315a26044af9ffddf27abaaced990bb0e7f4b36 Mon Sep 17 00:00:00 2001 From: christianesperar Date: Tue, 20 Mar 2018 17:01:04 +0800 Subject: [PATCH 3/6] Add yarn --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 722bdc6d..5d364cf8 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,12 @@ bower install gentelella --save ``` npm install gentelella --save ``` + +**yarn** + +``` +yarn add gentelella --save +``` ## How to contribute To contribute, please ensure that you have stable [Node.js](https://nodejs.org/) and [npm](https://npmjs.com) installed. From 622ed7a89a364461a00f550ddd4418e7fbb21225 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erman=20G=C3=BClhan?= Date: Wed, 21 Mar 2018 17:27:06 +0300 Subject: [PATCH 4/6] .left class makes daterangepicker plugin unusable on mobile devices --- src/scss/custom.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/scss/custom.scss b/src/scss/custom.scss index 1ee778d9..6700fe09 100644 --- a/src/scss/custom.scss +++ b/src/scss/custom.scss @@ -3480,6 +3480,9 @@ a.hiddenanchor { .left { float: left; } +.calendar.left { + float: initial !important; +} .alignleft { float: left; margin-right: 15px; From 85ff8ddf3bfd056e09f55e73b24418ed0ae1eced Mon Sep 17 00:00:00 2001 From: junjie Date: Mon, 28 May 2018 17:15:08 +0800 Subject: [PATCH 5/6] Bug fix of multilevel menu in the small mode. --- build/js/custom.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/js/custom.js b/build/js/custom.js index ac95d6b2..1b9f875b 100644 --- a/build/js/custom.js +++ b/build/js/custom.js @@ -87,8 +87,8 @@ var setContentHeight = function () { { if ( $BODY.is( ".nav-sm" ) ) { - $SIDEBAR_MENU.find( "li" ).removeClass( "active active-sm" ); - $SIDEBAR_MENU.find( "li ul" ).slideUp(); + $li.parent().find( "li" ).removeClass( "active active-sm" ); + $li.parent().find( "li ul" ).slideUp(); } } $li.addClass('active'); From 9781a14092040071aba31f8eab4b7487599a3fb5 Mon Sep 17 00:00:00 2001 From: Morteza Karimi Date: Mon, 9 Jul 2018 01:07:48 +0430 Subject: [PATCH 6/6] add Gentelella-rtl on Yii2 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 5d364cf8..60e8dfd5 100644 --- a/README.md +++ b/README.md @@ -69,6 +69,7 @@ If `gulp` is installed, follow the steps below. * [Gentelella on Flask](https://github.com/afourmy/flask-gentelella) Gentelella modified to fit as a Flask app * [Gentelella on CakePHP 3](https://github.com/backstageel/cakephp-gentelella-theme) Gentelella modified to work on CakePHP * [Gentelella right to left](https://github.com/mortezakarimi/gentelella-rtl) Gentelella modified to work with right to left languages like Persian +* [Gentelella-rtl on Yii framework 2](https://github.com/mortezakarimi/yii2-gentelella-rtl) with an asset bundle, a layout template and some widgets. inspired from [Gentelella on Yii framework 2](https://github.com/yiister/yii2-gentelella) Let us know if you have done integration for this admin template on other platforms and frameworks and we'll be happy to share your work.