mirror of https://github.com/portainer/portainer
parent
6b27ba9121
commit
f26e1fa21b
|
@ -27,6 +27,10 @@
|
|||
gap: 5px;
|
||||
}
|
||||
|
||||
.btn-group {
|
||||
display: inline-flex;
|
||||
}
|
||||
|
||||
pr-icon {
|
||||
display: inline-block;
|
||||
}
|
||||
|
@ -277,10 +281,13 @@ input:checked + .slider:before {
|
|||
.toolBar {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
.toolBar > .toolBarTitle {
|
||||
flex: auto;
|
||||
display: inline-flex;
|
||||
flex-wrap: nowarp;
|
||||
}
|
||||
|
||||
.toolBar > .searchBar {
|
||||
|
@ -288,6 +295,7 @@ input:checked + .slider:before {
|
|||
margin-right: 10px;
|
||||
width: 500px;
|
||||
height: 30px;
|
||||
display: inline-flex;
|
||||
}
|
||||
|
||||
.datatable .searchBar {
|
||||
|
@ -296,8 +304,8 @@ input:checked + .slider:before {
|
|||
}
|
||||
|
||||
.toolBar > .actionBar {
|
||||
flex: right;
|
||||
margin-right: 10px;
|
||||
display: inline-flex;
|
||||
}
|
||||
|
||||
.datatable .actionBar {
|
||||
|
@ -307,6 +315,7 @@ input:checked + .slider:before {
|
|||
.toolBar > .settings {
|
||||
width: 60px;
|
||||
text-align: right;
|
||||
display: inline-flex;
|
||||
}
|
||||
|
||||
.datatable .toolBar .settings {
|
||||
|
|
|
@ -67,7 +67,7 @@ export function ContainersDatatableActions({
|
|||
}
|
||||
|
||||
return (
|
||||
<div className="actionBar">
|
||||
<>
|
||||
<ButtonGroup>
|
||||
<Authorized authorizations="DockerContainerStart">
|
||||
<Button
|
||||
|
@ -157,7 +157,7 @@ export function ContainersDatatableActions({
|
|||
</Link>
|
||||
</Authorized>
|
||||
)}
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
|
||||
function onStartClick(selectedItems: DockerContainer[]) {
|
||||
|
|
Loading…
Reference in New Issue