2018-10-03 16:04:30 +02:00
|
|
|
.add-data-source-header {
|
2019-03-11 11:33:15 +01:00
|
|
|
margin-bottom: $space-xl;
|
2018-10-05 12:55:34 -07:00
|
|
|
padding-top: $spacer;
|
2018-10-03 16:04:30 +02:00
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-04 11:42:17 +02:00
|
|
|
.add-data-source-search {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
2019-03-12 08:10:31 +01:00
|
|
|
margin-bottom: $space-lg;
|
2018-10-04 11:42:17 +02:00
|
|
|
}
|
|
|
|
|
|
2019-05-09 11:45:39 +02:00
|
|
|
.add-data-source-category {
|
|
|
|
|
margin-bottom: $space-md;
|
2018-10-03 16:04:30 +02:00
|
|
|
}
|
|
|
|
|
|
2019-05-09 11:45:39 +02:00
|
|
|
.add-data-source-category__header {
|
|
|
|
|
font-size: $font-size-h5;
|
|
|
|
|
margin-bottom: $space-sm;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.add-data-source-item {
|
|
|
|
|
padding: $space-md;
|
2018-10-03 16:04:30 +02:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
cursor: pointer;
|
2019-05-09 11:45:39 +02:00
|
|
|
background: $panel-editor-viz-item-bg;
|
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
margin-bottom: $space-xxs;
|
2018-10-03 16:04:30 +02:00
|
|
|
|
|
|
|
|
&:hover {
|
2019-05-09 11:45:39 +02:00
|
|
|
box-shadow: $panel-editor-viz-item-shadow-hover;
|
|
|
|
|
background: $panel-editor-viz-item-bg-hover;
|
|
|
|
|
border: $panel-editor-viz-item-border-hover;
|
2018-10-06 19:22:16 +02:00
|
|
|
color: $text-color-strong;
|
2019-05-09 11:45:39 +02:00
|
|
|
|
|
|
|
|
.add-data-source-item-actions {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transition: 0.15s opacity ease-in-out;
|
|
|
|
|
}
|
2018-10-03 16:04:30 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-09 11:45:39 +02:00
|
|
|
.add-data-source-item-text-wrapper {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.add-data-source-item-desc {
|
|
|
|
|
font-size: $font-size-sm;
|
|
|
|
|
color: $text-color-weak;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-18 11:51:27 +01:00
|
|
|
.add-data-source-item-badge {
|
|
|
|
|
margin-top: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-09 11:45:39 +02:00
|
|
|
.add-data-source-item-text {
|
2018-10-03 16:04:30 +02:00
|
|
|
font-size: $font-size-h5;
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-09 11:45:39 +02:00
|
|
|
.add-data-source-item-logo {
|
|
|
|
|
margin-right: $space-lg;
|
|
|
|
|
margin-left: $space-sm;
|
2018-10-03 16:04:30 +02:00
|
|
|
width: 55px;
|
2019-05-09 11:45:39 +02:00
|
|
|
max-height: 55px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.add-data-source-item-actions {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
padding-left: $space-md;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
> button {
|
|
|
|
|
margin-left: $space-md;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-29 09:37:29 +02:00
|
|
|
.add-datasource-item-actions__btn-icon {
|
|
|
|
|
margin-left: $space-sm;
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-09 11:45:39 +02:00
|
|
|
.add-data-source-more {
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin: $space-xl;
|
2018-10-03 16:04:30 +02:00
|
|
|
}
|