mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-23 10:51:30 +00:00
* autoscale and manual radiobuutton fixes * alt text attribute for images * Revert "alt text attribute for images" This reverts commit5a660551c6. * alt text for decorative images * sev2 accessibilitydefects in data explorer * Revert "sev2 accessibilitydefects in data explorer" This reverts commitb84d5b572c. * Sev2 accessibilitydefects * Revert "Sev2 accessibilitydefects" This reverts commita4e60f106c. * accessibilitydefects-data explorer * Accessibility sev-2 defects-2 * corrections for 2278347,2278096 and fix for 2264174 * color for placeholder changed to 767474, margin is set to accommodate height between treeheader elements * padding added for databaseheader, removed margin and restored padding to treenodeheader
90 lines
1.5 KiB
Plaintext
90 lines
1.5 KiB
Plaintext
@import "../../../../less/Common/Constants";
|
|
|
|
.treeComponent {
|
|
.nodeItem {
|
|
&:focus {
|
|
outline: 2px @AccentMedium;
|
|
}
|
|
|
|
.treeNodeHeader {
|
|
padding: @SmallSpace 2px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
|
|
&:hover {
|
|
background-color: @AccentLight;
|
|
|
|
.treeMenuEllipsis {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
&.showingMenu {
|
|
background-color: #eee;
|
|
}
|
|
|
|
.treeMenuEllipsis {
|
|
max-height: 17px;
|
|
padding-right: 6px;
|
|
position: relative;
|
|
left: 0px;
|
|
float: right;
|
|
padding-left: 6px;
|
|
opacity: 0;
|
|
&:focus {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.nodeIcon {
|
|
width: 16px;
|
|
height: 16px;
|
|
vertical-align: text-top;
|
|
margin-right: @SmallSpace;
|
|
}
|
|
|
|
.expandCollapseIcon {
|
|
width: 10px;
|
|
height: 10px;
|
|
vertical-align: middle;
|
|
margin: 2px @DefaultSpace 2px @SmallSpace;
|
|
}
|
|
|
|
.nodeLabel {
|
|
line-height: 18px;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
|
|
.selected {
|
|
& > .treeNodeHeader {
|
|
background-color: @AccentExtra;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.treeComponentMenuItemContainer {
|
|
font-size: @mediumFontSize;
|
|
|
|
.treeComponentMenuItemLabel {
|
|
margin-left: @SmallSpace;
|
|
}
|
|
|
|
img {
|
|
vertical-align: text-bottom;
|
|
}
|
|
}
|
|
|
|
.loadingIconContainer {
|
|
width: 100%;
|
|
|
|
.loadingIcon {
|
|
height: 6px;
|
|
margin-left: 38px;
|
|
}
|
|
}
|