-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2319 from avivtur/tree-view-6
CNV-53212: Tree-view alignments
- Loading branch information
Showing
17 changed files
with
82 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
src/views/virtualmachines/list/components/VMNotMigratableLabel/VMNotMigratableLabel.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
src/views/virtualmachines/tree/icons/TreeViewVirtualMachineIcon.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import React, { FC } from 'react'; | ||
|
||
const TreeViewVirtualMachineIcon: FC = () => ( | ||
<svg | ||
fill="none" | ||
height="1.5em" | ||
viewBox="0 0 35 34" | ||
width="1.5em" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<rect fill="transparent" height="34" width="35" /> | ||
<path | ||
clipRule="evenodd" | ||
d="M28 26.3333V13H21.3333V11.6667H20V13H8V19.6667H6.66667V21H8V26.3333H16V27.5833H12V29H24V27.5833H20V26.3333H28ZM10.6667 23.6667V15.6667H25.3333V23.6667H10.6667ZM20 10.3333H21.3333V9H20V10.3333ZM17.3333 10.3333H18.6667V9H17.3333V10.3333ZM14.6667 10.3333H16V9H14.6667V10.3333ZM12 10.3333H13.3333V9H12V10.3333ZM9.33333 10.3333H10.6667V9H9.33333V10.3333ZM6.66667 10.3333H8V9H6.66667V10.3333ZM4 10.3333H5.33333V9H4V10.3333ZM4 13H5.33333V11.6667H4V13ZM4 15.6667H5.33333V14.3333H4V15.6667ZM20 18.3333H21.3333V17H20V18.3333ZM4 18.3333H5.33333V17H4V18.3333ZM20 21H21.3333V19.6667H20V21ZM17.3333 21H18.6667V19.6667H17.3333V21ZM14.6667 21H16V19.6667H14.6667V21ZM12 21H13.3333V19.6667H12V21ZM4 21H5.33333V19.6667H4V21Z" | ||
fill="#6A6E73" | ||
fillRule="evenodd" | ||
/> | ||
<defs> | ||
<clipPath id="clip0_360_10401"> | ||
<rect fill="white" height="6" transform="translate(24 5)" width="6" /> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
); | ||
|
||
export default TreeViewVirtualMachineIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters