Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 124CA1179B for ; Tue, 22 Jul 2014 07:32:04 +0000 (UTC) Received: (qmail 28117 invoked by uid 500); 22 Jul 2014 07:32:02 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 27958 invoked by uid 500); 22 Jul 2014 07:32:02 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 27054 invoked by uid 99); 22 Jul 2014 07:32:02 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Jul 2014 07:32:02 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id BCFB49AE91B; Tue, 22 Jul 2014 07:32:01 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: garren@apache.org To: commits@couchdb.apache.org Date: Tue, 22 Jul 2014 07:32:19 -0000 Message-Id: <683cf7de2f1941718bcb37fc0aa70d39@git.apache.org> In-Reply-To: <0f519c14a89641fb8a4b5588bbe481a7@git.apache.org> References: <0f519c14a89641fb8a4b5588bbe481a7@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [20/51] [abbrv] fauxton commit: updated refs/heads/Update-Sidebar to c713f63 Fauxton: add missing mixin Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/ae058529 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/ae058529 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/ae058529 Branch: refs/heads/Update-Sidebar Commit: ae058529331d5ea9436a9bb767b232e8923693b7 Parents: c46cca7 Author: sean barclay Authored: Mon Jun 23 19:19:07 2014 +0200 Committer: Garren Smith Committed: Tue Jul 22 09:28:59 2014 +0200 ---------------------------------------------------------------------- app/addons/documents/assets/less/documents.less | 3 ++- assets/less/mixins.less | 21 ++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/ae058529/app/addons/documents/assets/less/documents.less ---------------------------------------------------------------------- diff --git a/app/addons/documents/assets/less/documents.less b/app/addons/documents/assets/less/documents.less index 3b00039..1281b06 100644 --- a/app/addons/documents/assets/less/documents.less +++ b/app/addons/documents/assets/less/documents.less @@ -11,8 +11,9 @@ // the License. /*ALL DOCS TABLE*/ -@import "../../../style/assets/less/mixins.less"; @import "../../../../../assets/less/variables.less"; +@import "../../../../../assets/less/bootstrap/variables.less"; +@import "../../../../../assets/less/bootstrap/mixins.less"; tr.all-docs-item { border: none; http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/ae058529/assets/less/mixins.less ---------------------------------------------------------------------- diff --git a/assets/less/mixins.less b/assets/less/mixins.less new file mode 100644 index 0000000..63eda35 --- /dev/null +++ b/assets/less/mixins.less @@ -0,0 +1,21 @@ +.translate-origin(@x, @y) { + -webkit-transform-origin: @x @y; + -moz-transform-origin: @x @y; + -ms-transform-origin: @x @y; + -o-transform-origin: @x @y; + transform-origin: @x @y; +} + +.customTransition(@prop, @delay, @a, @b, @c, @d){ +-webkit-transition: @prop, @delay cubic-bezier(@a, @b, @c, @d); + -moz-transition: @prop, @delay cubic-bezier(@a, @b, @c, @d); + -ms-transition: @prop, @delay cubic-bezier(@a, @b, @c, @d); + -o-transition: @prop, @delay cubic-bezier(@a, @b, @c, @d); + transition: @prop, @delay cubic-bezier(@a, @b, @c, @d); /* custom */ + +-webkit-transition-timing-function: cubic-bezier(@a, @b, @c, @d); + -moz-transition-timing-function: cubic-bezier(@a, @b, @c, @d); + -ms-transition-timing-function: cubic-bezier(@a, @b, @c, @d); + -o-transition-timing-function: cubic-bezier(@a, @b, @c, @d); + transition-timing-function: cubic-bezier(@a, @b, @c, @d); /* custom */ +}