2016-03-11 00:48:53 +00:00
|
|
|
.dataview {
|
|
|
|
&.inner {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
.empty-text {
|
|
|
|
text-align: center;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2020-12-17 08:16:45 +00:00
|
|
|
color: var(--text-tertiary);
|
2020-02-27 10:31:31 +00:00
|
|
|
td {
|
|
|
|
padding: 5px;
|
|
|
|
}
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .item {
|
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
|
|
|
margin: 4px;
|
|
|
|
cursor: pointer;
|
|
|
|
|
2020-12-17 08:16:45 +00:00
|
|
|
.box-shadow(0 0 0 1px var(--border-regular-control));
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&.selected {
|
2020-12-17 08:16:45 +00:00
|
|
|
.box-shadow(0 0 0 2px var(--highlight-button-pressed));
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.grouped-data {
|
|
|
|
clear: left;
|
|
|
|
overflow: hidden;
|
|
|
|
|
2016-12-16 08:37:57 +00:00
|
|
|
&.inline {
|
2016-03-11 00:48:53 +00:00
|
|
|
display: inline-block;
|
2016-12-16 08:37:57 +00:00
|
|
|
&.margin .group-items-container {
|
|
|
|
margin-right: 20px;
|
|
|
|
}
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.group-items-container {
|
|
|
|
overflow: hidden;
|
2016-12-16 08:37:57 +00:00
|
|
|
margin-bottom: 5px;
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
& > div {
|
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
2016-12-16 08:37:57 +00:00
|
|
|
margin: 2px 4px 4px;
|
2016-12-28 11:28:27 +00:00
|
|
|
|
|
|
|
&:not(.disabled) {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2016-03-11 00:48:53 +00:00
|
|
|
|
2020-12-17 08:16:45 +00:00
|
|
|
.box-shadow(0 0 0 1px var(--border-regular-control));
|
2016-03-11 00:48:53 +00:00
|
|
|
|
2016-12-28 11:28:27 +00:00
|
|
|
&:hover:not(.disabled),
|
|
|
|
&.selected:not(.disabled) {
|
2020-12-17 08:16:45 +00:00
|
|
|
.box-shadow(0 0 0 2px var(--highlight-button-pressed));
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-16 08:37:57 +00:00
|
|
|
|
|
|
|
.header-name {
|
|
|
|
padding: 10px 2px 12px 4px;
|
|
|
|
font-weight: bold;
|
|
|
|
cursor: default;
|
|
|
|
}
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|