mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
styling changes
This commit is contained in:
parent
2067718c0e
commit
8fa9535b98
@ -285,9 +285,11 @@
|
|||||||
|
|
||||||
.OrgsTab-closeButton {
|
.OrgsTab-closeButton {
|
||||||
color: black;
|
color: black;
|
||||||
float:right;
|
float: right;
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -60px;
|
top: -25px;
|
||||||
|
margin: 0 10px;
|
||||||
|
right: 10px;
|
||||||
}
|
}
|
||||||
.awx-c-form-action-group {
|
.awx-c-form-action-group {
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -72,15 +72,23 @@ class Organization extends Component {
|
|||||||
match,
|
match,
|
||||||
history
|
history
|
||||||
} = this.props;
|
} = this.props;
|
||||||
|
|
||||||
const {
|
const {
|
||||||
organization,
|
organization,
|
||||||
error,
|
error,
|
||||||
loading
|
loading
|
||||||
} = this.state;
|
} = this.state;
|
||||||
|
|
||||||
|
const tabsPaddingOverride = {
|
||||||
|
padding: '0'
|
||||||
|
};
|
||||||
|
|
||||||
let cardHeader = (
|
let cardHeader = (
|
||||||
loading ? ''
|
loading ? ''
|
||||||
: (
|
: (
|
||||||
<CardHeader>
|
<CardHeader
|
||||||
|
style={tabsPaddingOverride}
|
||||||
|
>
|
||||||
<I18n>
|
<I18n>
|
||||||
{({ i18n }) => (
|
{({ i18n }) => (
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
|
Loading…
Reference in New Issue
Block a user