Make empty sate of roles/permissions more empty looking
parent
e0b6104d7b
commit
f8cf1466cb
|
@ -1,6 +1,7 @@
|
|||
import React, {PropTypes} from 'react'
|
||||
|
||||
import _ from 'lodash'
|
||||
import classnames from 'classnames'
|
||||
|
||||
import UserEditName from 'src/admin/components/UserEditName'
|
||||
import UserNewPassword from 'src/admin/components/UserNewPassword'
|
||||
|
@ -88,7 +89,9 @@ const UserRow = ({
|
|||
onApply={handleUpdateRoles}
|
||||
buttonSize="btn-xs"
|
||||
buttonColor="btn-primary"
|
||||
customClass="dropdown-190"
|
||||
customClass={classnames('dropdown-190', {
|
||||
'admin-table--multi-select-empty': !roles.length,
|
||||
})}
|
||||
/>
|
||||
</td>
|
||||
: null}
|
||||
|
@ -103,7 +106,9 @@ const UserRow = ({
|
|||
onApply={handleUpdatePermissions}
|
||||
buttonSize="btn-xs"
|
||||
buttonColor="btn-primary"
|
||||
customClass="dropdown-190"
|
||||
customClass={classnames('dropdown-190', {
|
||||
'admin-table--multi-select-empty': !roles.length,
|
||||
})}
|
||||
/>
|
||||
: null}
|
||||
</td>
|
||||
|
|
|
@ -77,12 +77,15 @@ table > thead > tr > th.admin-table--left-offset {padding-left: 15px;}
|
|||
}
|
||||
.dropdown-toggle {
|
||||
background-color: transparent;
|
||||
font-weight: 500;
|
||||
font-weight: 600;
|
||||
color: $g14-chromium;
|
||||
transition: none !important;
|
||||
|
||||
.caret {opacity: 0;}
|
||||
}
|
||||
.admin-table--multi-select-empty .dropdown-toggle {
|
||||
color: $g8-storm;
|
||||
}
|
||||
tbody tr:hover {
|
||||
.admin-table--hidden {
|
||||
visibility: visible;
|
||||
|
@ -90,7 +93,6 @@ table > thead > tr > th.admin-table--left-offset {padding-left: 15px;}
|
|||
.dropdown-toggle {
|
||||
color: $g20-white !important;
|
||||
background-color: $c-pool;
|
||||
font-weight: 600;
|
||||
|
||||
.caret {opacity: 1;}
|
||||
|
||||
|
|
Loading…
Reference in New Issue