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%;
|
|
|
|
color: #b2b2b2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .item {
|
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
|
|
|
margin: 4px;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
.box-shadow(0 0 0 1px @gray);
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&.selected {
|
|
|
|
.box-shadow(0 0 0 2px @primary);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.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-03-11 00:48:53 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
.box-shadow(0 0 0 1px @gray);
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&.selected {
|
|
|
|
.box-shadow(0 0 0 2px @primary);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
}
|