﻿.acl-editor .user,
.acl-editor .group,
.acl-editor .privilege
{
    background-color: transparent;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: left center;
    padding-left: 18px;
    white-space: nowrap;
    position: relative;
}

.acl-editor .user 
{
    background-image: url('../images/user.png');
}

.acl-editor .group
{
    background-image: url('../images/group.png');
}

.acl-editor .privilege 
{
    background-image: url('../images/shield.png');
}

.acl-editor .acl-input-users,
.acl-editor .acl-input-groups
{
    visibility: collapse;
}

.acl-editor ul 
{
    list-style: none;
    position: relative;
    overflow: visible;
    margin: 0;
    padding: 0;
}

.acl-editor li 
{
    padding-right: 18px;
    position: relative;
    display: inline;
}

.acl-editor .acl-toggle-button 
{
    visibility: hidden;
    display: block;
    z-index: 2001;
    width: 16px;
    height: 16px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    right: 0;
    top: 0;
    position: absolute;
    cursor: pointer;
}

.acl-editor li:hover .acl-toggle-button
{
    visibility: visible;
}

.acl-editor .selected li .acl-toggle-button 
{
    background-image: url('../images/cross.png');
}

.acl-editor .not-selected li .acl-toggle-button 
{
    background-image: url('../images/add.png');
}

.acl-editor .acl-popup 
{
    position: relative;
    width: 18px;
    height: 18px;
    display: inline-block;
    cursor: pointer;
    overflow: visible;
    background: transparent url('../images/add.png') no-repeat scroll center center;
} 

.ie-8 .acl-editor .acl-popup
{
    height: auto;
    min-height: 18px;
    background-position: center top;
}

.acl-editor .acl-popup .not-selected, 
body .acl-editor div.acl-popup ul.not-selected /* meer specifiek voor .ie-6 .form-layout div.form-row ul */
{
    width: 300px;
    min-width: 300px;
    min-height: 100px;
    max-height: 250px;
    overflow: auto;
    display: none;
    position: absolute;
    top: 18px;
    left: 0;
    background: white;
    border: 1px solid #999999;
    z-index: 2000;
    padding: 3px;
}

.ie-8 .acl-editor .acl-popup .not-selected 
{
    position: relative;
}
