diff options
Diffstat (limited to 'rt/share/html/NoAuth/css/base/rights-editor.css')
-rw-r--r-- | rt/share/html/NoAuth/css/base/rights-editor.css | 177 |
1 files changed, 177 insertions, 0 deletions
diff --git a/rt/share/html/NoAuth/css/base/rights-editor.css b/rt/share/html/NoAuth/css/base/rights-editor.css new file mode 100644 index 000000000..5443b0a19 --- /dev/null +++ b/rt/share/html/NoAuth/css/base/rights-editor.css @@ -0,0 +1,177 @@ +%# BEGIN BPS TAGGED BLOCK {{{ +%# +%# COPYRIGHT: +%# +%# This software is Copyright (c) 1996-2012 Best Practical Solutions, LLC +%# <sales@bestpractical.com> +%# +%# (Except where explicitly superseded by other copyright notices) +%# +%# +%# LICENSE: +%# +%# This work is made available to you under the terms of Version 2 of +%# the GNU General Public License. A copy of that license should have +%# been provided with this software, but in any event can be snarfed +%# from www.gnu.org. +%# +%# This work is distributed in the hope that it will be useful, but +%# WITHOUT ANY WARRANTY; without even the implied warranty of +%# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +%# General Public License for more details. +%# +%# You should have received a copy of the GNU General Public License +%# along with this program; if not, write to the Free Software +%# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +%# 02110-1301 or visit their web page on the internet at +%# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. +%# +%# +%# CONTRIBUTION SUBMISSION POLICY: +%# +%# (The following paragraph is not intended to limit the rights granted +%# to you to modify and distribute this software under the terms of +%# the GNU General Public License and is only of importance to you if +%# you choose to contribute your changes and enhancements to the +%# community by submitting them to Best Practical Solutions, LLC.) +%# +%# By intentionally submitting any modifications, corrections or +%# derivatives to this work, or any other work intended for use with +%# Request Tracker, to Best Practical Solutions, LLC, you confirm that +%# you are the copyright holder for those contributions and you grant +%# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, +%# royalty-free, perpetual, license to use, copy, create derivative +%# works based on those contributions, and sublicense and distribute +%# those contributions and any derivatives thereof. +%# +%# END BPS TAGGED BLOCK }}} +/* Styles for putting jQuery UI tabs on the left */ +.rights-editor { + border: none; + background: transparent; + width: 100%; + font-size: 110%; +} + +/* Position and style the left tabs */ +.rights-editor > .ui-tabs-nav { + float: left; + background: transparent; + border: none; + color: black; + width: 25%; +} + +.rights-editor > .ui-tabs-nav li { + float: none; + display: block; + border: none; + background: transparent; +} + +.rights-editor > .ui-tabs-nav li a { + float: none; + display: block; + padding: 0 0 0.2em 1em; + overflow: hidden; + text-overflow: ellipsis; +} + +.rights-editor .ui-tabs-nav li.category { + text-transform: uppercase; +} + +li.category ~ li.category { + margin-top: 1em; +} + +.rights-editor li.addprincipal .warning { + color: #a00; + display: none; +} + +/* Position the outer-most panel */ +.rights-editor > .ui-tabs-panel { + position: static; + float: left; + width: 72%; +} + +.rights-editor .ui-tabs-panel { + padding: 2px; +} + +.rights-editor .ui-tabs-panel h3 { + color: black; + margin-top: 0; + line-height: 0.8em; +} + +.rights-editor .ui-tabs-panel h3 .subgroups { + color: #444; + font-size: 80%; +} + +.category-tabs { + width: 100%; + border: none; + background: none; +} + +.category-tabs .ui-tabs-nav { + border: none; + background: none; +} + +.category-tabs .ui-tabs-panel { + background: none; + border: 1px solid #aaa; +} + +.rights-editor li.ui-tabs-selected { + background: white !important; + color: #222 !important; + border-color: #aaa !important; + font-weight: bold; +} + +.rights-editor .ui-state-active a, +.rights-editor .ui-state-hover a { + color: #222 !important; +} + +.rights-editor .category-tabs li.ui-state-hover { + background: #f6f6f6; + border-color: #aaa !important; +} + +.rights-editor .separator { + display: none; +} + +.rights-editor ul.rights-list { + list-style: none; +} + +.rights-editor ul.rights-list li { + padding: 0.2em 0; +} + +.rights-editor ul.rights-list li:nth-child(even) { + background: #f4f4f4; +} + +.rights-editor ul.rights-list li label { + cursor: pointer; +} + +.rights-editor .rightname { + color: #888; + font-size: 0.9em; + + position: absolute; + right: 1em; + margin-top: 0.3em; + + text-align: right; +} |