Remove remaining Cloudant references
Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/8e462cbd Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/8e462cbd Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/8e462cbd Branch: refs/heads/fauxton-rebase Commit: 8e462cbde8003ae9fc641c87d738aebf600cb4ed Parents: 265047c Author: Russell Branca <[email protected]> Authored: Wed Feb 6 12:53:16 2013 -0800 Committer: Russell Branca <[email protected]> Committed: Fri Mar 15 14:35:13 2013 -0700 ---------------------------------------------------------------------- src/fauxton/assets/less/cloudant.less | 95 ---------------------------- src/fauxton/assets/less/fauxton.less | 95 ++++++++++++++++++++++++++++ src/fauxton/grunt.js | 2 +- 3 files changed, 96 insertions(+), 96 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/8e462cbd/src/fauxton/assets/less/cloudant.less ---------------------------------------------------------------------- diff --git a/src/fauxton/assets/less/cloudant.less b/src/fauxton/assets/less/cloudant.less deleted file mode 100644 index 1af92ee..0000000 --- a/src/fauxton/assets/less/cloudant.less +++ /dev/null @@ -1,95 +0,0 @@ -/* Licensed under the Apache License, Version 2.0 (the "License"); you may not - * use this file except in compliance with the License. You may obtain a copy of - * the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the - * License for the specific language governing permissions and limitations under - * the License. - */ - -/*! - * - * Cloudant less style files - * - */ -@import "bootstrap/bootstrap.less"; -@import "config.less"; -@import "logs.less"; -@import "prettyprint.less"; -@import "database.less"; - -/*! - * - * OVERRIDES - * - * Override styles from included less files here. Record where the style is - * originally defined. - * - */ - -// -// Breadcrumbs - -.breadcrumb { - background-color: transparent; - padding-left: 0px; - li { - color: @grayLight; - background-color: transparent; - a { - color: @grayLight; - } - } - .divider { - padding: 0 5px; - color: @grayLight; //ccc - } - .active { - color: @black; - font-weight: bold; - } -} - - -// Navs -// ------ - -.nav-tabs > li > a { - background-color: @grayLighter; -} - -.dropdown-menu li > a { - font-size: 12px; -} - -.nav-list .divider { - color: @grayLight; - // This function is defined in mixins - .nav-divider(transparent, @white); -} - - -// Misc -// ------ - -pre.view-code-error { - color: red !important; // yuck -} - -.CodeMirror-scroll { - height: auto; - overflow-y: visible; -} - -#define-view form textarea.js-editor { - width: 95%; -} - -#define-view .CodeMirror-scroll { - height: auto; - min-height: 50px; -} http://git-wip-us.apache.org/repos/asf/couchdb/blob/8e462cbd/src/fauxton/assets/less/fauxton.less ---------------------------------------------------------------------- diff --git a/src/fauxton/assets/less/fauxton.less b/src/fauxton/assets/less/fauxton.less new file mode 100644 index 0000000..0bbde28 --- /dev/null +++ b/src/fauxton/assets/less/fauxton.less @@ -0,0 +1,95 @@ +/* Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ + +/*! + * + * Fauxton less style files + * + */ +@import "bootstrap/bootstrap.less"; +@import "config.less"; +@import "logs.less"; +@import "prettyprint.less"; +@import "database.less"; + +/*! + * + * OVERRIDES + * + * Override styles from included less files here. Record where the style is + * originally defined. + * + */ + +// +// Breadcrumbs + +.breadcrumb { + background-color: transparent; + padding-left: 0px; + li { + color: @grayLight; + background-color: transparent; + a { + color: @grayLight; + } + } + .divider { + padding: 0 5px; + color: @grayLight; //ccc + } + .active { + color: @black; + font-weight: bold; + } +} + + +// Navs +// ------ + +.nav-tabs > li > a { + background-color: @grayLighter; +} + +.dropdown-menu li > a { + font-size: 12px; +} + +.nav-list .divider { + color: @grayLight; + // This function is defined in mixins + .nav-divider(transparent, @white); +} + + +// Misc +// ------ + +pre.view-code-error { + color: red !important; // yuck +} + +.CodeMirror-scroll { + height: auto; + overflow-y: visible; +} + +#define-view form textarea.js-editor { + width: 95%; +} + +#define-view .CodeMirror-scroll { + height: auto; + min-height: 50px; +} http://git-wip-us.apache.org/repos/asf/couchdb/blob/8e462cbd/src/fauxton/grunt.js ---------------------------------------------------------------------- diff --git a/src/fauxton/grunt.js b/src/fauxton/grunt.js index a595da5..428ec14 100644 --- a/src/fauxton/grunt.js +++ b/src/fauxton/grunt.js @@ -53,7 +53,7 @@ module.exports = function(grunt) { paths: ["assets/less"] }, files: { - "dist/debug/css/index.css": "assets/less/cloudant.less" + "dist/debug/css/index.css": "assets/less/fauxton.less" } } },
