Added Highlight to the admin party to make it stand out more.
Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/0df722e6 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/0df722e6 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/0df722e6 Branch: refs/heads/Query-Options-UI Commit: 0df722e66b66bbad172a237b6fd1521b4a346676 Parents: 48f586f Author: suelockwood <[email protected]> Authored: Fri Feb 28 09:55:05 2014 -0500 Committer: suelockwood <[email protected]> Committed: Fri Feb 28 09:55:05 2014 -0500 ---------------------------------------------------------------------- src/Makefile.am | 1 + src/fauxton/app/addons/auth/assets/less/auth.less | 15 +++++++++++++++ .../app/addons/auth/templates/nav_link_title.html | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/0df722e6/src/Makefile.am ---------------------------------------------------------------------- diff --git a/src/Makefile.am b/src/Makefile.am index 32a1a6a..59aa6bf 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -52,6 +52,7 @@ FAUXTON_FILES = \ fauxton/app/addons/auth/base.js \ fauxton/app/addons/auth/resources.js \ fauxton/app/addons/auth/routes.js \ + fauxton/app/addons/auth/assets/less/auth.less \ fauxton/app/addons/auth/templates/change_password.html \ fauxton/app/addons/auth/templates/create_admin.html \ fauxton/app/addons/auth/templates/login.html \ http://git-wip-us.apache.org/repos/asf/couchdb/blob/0df722e6/src/fauxton/app/addons/auth/assets/less/auth.less ---------------------------------------------------------------------- diff --git a/src/fauxton/app/addons/auth/assets/less/auth.less b/src/fauxton/app/addons/auth/assets/less/auth.less new file mode 100644 index 0000000..8a71817 --- /dev/null +++ b/src/fauxton/app/addons/auth/assets/less/auth.less @@ -0,0 +1,15 @@ +/* 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. + */ +#primary-navbar .navbar nav .nav li a#user-create-admin{ + background-color: #af2d24; +} http://git-wip-us.apache.org/repos/asf/couchdb/blob/0df722e6/src/fauxton/app/addons/auth/templates/nav_link_title.html ---------------------------------------------------------------------- diff --git a/src/fauxton/app/addons/auth/templates/nav_link_title.html b/src/fauxton/app/addons/auth/templates/nav_link_title.html index 699ea80..863955c 100644 --- a/src/fauxton/app/addons/auth/templates/nav_link_title.html +++ b/src/fauxton/app/addons/auth/templates/nav_link_title.html @@ -12,7 +12,7 @@ License for the specific language governing permissions and limitations under the License. --> <% if (admin_party) { %> - <a id="user-create-admin" href="#createAdmin"> + <a id="user-create-admin" class="alert_nav" href="#createAdmin"> <span class="fonticon-user fonticon"></span> Admin Party! [FIX THIS] <small>Everyone is an admin.</small>
