# What this PR does UID has been added to Integrations table, Integration page and routes
50 lines
914 B
SCSS
50 lines
914 B
SCSS
.input {
|
|
&--short {
|
|
width: 500px;
|
|
}
|
|
&--long {
|
|
width: 700px;
|
|
}
|
|
}
|
|
|
|
.integrations-actionsList {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 200px;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.integrations-actionItem {
|
|
padding: 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
flex-shrink: 0;
|
|
white-space: nowrap;
|
|
border-left: 2px solid transparent;
|
|
cursor: pointer;
|
|
min-width: 84px;
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-direction: row;
|
|
|
|
&:hover {
|
|
background: var(--gray-9);
|
|
}
|
|
}
|
|
|
|
.hamburgerMenu-small {
|
|
display: inline-flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
vertical-align: middle;
|
|
justify-content: center;
|
|
background-color: rgba(204, 204, 220, 0.16);
|
|
color: var(--secondary-background);
|
|
border: 1px solid transparent;
|
|
height: 24px;
|
|
width: 22px;
|
|
padding: 4px;
|
|
cursor: pointer;
|
|
color: var(--primary-text-color);
|
|
}
|