-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed align of Delete buttons for Disks #553
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,12 +8,14 @@ | |
list-style-type: none; | ||
padding: 0; | ||
margin-bottom: 0px !important; | ||
display: table; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I find this difficult to read and debug. This actually relies on generation of virtual, DOM invisible, |
||
} | ||
|
||
.smaller { | ||
font-size: 50%; | ||
vertical-align: middle; | ||
margin-left: 0.5em; | ||
display: inline-block; | ||
} | ||
|
||
.light { | ||
|
@@ -27,3 +29,22 @@ | |
font-size: small; | ||
cursor: pointer; | ||
} | ||
|
||
.disks-list li { | ||
display: table-row; | ||
} | ||
|
||
.disks-list li > span { | ||
display: table-cell; | ||
} | ||
|
||
.vmdisk-item-info > *:last-child { | ||
margin-right: 5px; | ||
} | ||
|
||
.vmdisk-item-delete { | ||
vertical-align: middle; | ||
} | ||
.vmdisk-item-delete button { | ||
display: block; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please do not remove
id
attributes, they are referenced from Selenium tests