2017-12-15 23:22:34 -05:00
|
|
|
// component styles are encapsulated and only applied to their components
|
2018-10-22 02:41:35 -04:00
|
|
|
@import "../../style/themes/themes";
|
|
|
|
|
|
|
|
@include themifyComponent() {
|
|
|
|
.integration-bag {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: stretch;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.integration {
|
|
|
|
border: 1px solid themed(integrationBorderColor);
|
2021-12-03 02:33:53 -05:00
|
|
|
margin-right: 16px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
padding: 12px;
|
2018-10-22 02:41:35 -04:00
|
|
|
width: calc(325px - 14px);
|
|
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
2021-11-30 22:06:59 -05:00
|
|
|
border-radius: 8px;
|
2021-12-09 17:44:15 -05:00
|
|
|
|
|
|
|
.bot-toggle {
|
|
|
|
position: absolute;
|
|
|
|
top: 6px;
|
|
|
|
right: 6px;
|
|
|
|
}
|
2018-10-22 02:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.integration .integration-avatar {
|
2021-12-03 02:33:53 -05:00
|
|
|
width: 52px;
|
|
|
|
height: 52px;
|
2018-10-22 02:41:35 -04:00
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.integration .integration-name {
|
|
|
|
display: inline-block;
|
2021-11-30 22:06:59 -05:00
|
|
|
font-weight: 600;
|
2021-12-03 02:33:53 -05:00
|
|
|
padding-left: 12px;
|
2018-10-22 02:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.integration .integration-description {
|
|
|
|
display: block;
|
|
|
|
font-size: 0.8em;
|
2021-12-03 02:33:53 -05:00
|
|
|
margin-left: 65px;
|
2018-10-22 02:41:35 -04:00
|
|
|
margin-right: 5px;
|
|
|
|
color: themed(integrationDescriptionColor);
|
|
|
|
}
|
2019-04-13 18:31:02 -04:00
|
|
|
|
|
|
|
.integration .integration-offline {
|
|
|
|
position: absolute;
|
|
|
|
top: 5px;
|
|
|
|
right: 6px;
|
|
|
|
}
|
2021-11-30 22:06:59 -05:00
|
|
|
}
|