mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
2.0 KiB
122 lines
2.0 KiB
@import 'mixins';
|
|
@import 'vars';
|
|
|
|
gridster-item {
|
|
position: absolute;
|
|
}
|
|
|
|
.dashboard {
|
|
@include absolute(0, 0, 0, 0);
|
|
|
|
&-summary {
|
|
@include absolute(2rem, null, null, 16px);
|
|
z-index: 0;
|
|
}
|
|
|
|
&-settings {
|
|
@include absolute(1rem, 1rem, null, null);
|
|
z-index: 1000;
|
|
}
|
|
|
|
&-title {
|
|
font-size: 1.4rem;
|
|
}
|
|
|
|
/* stylelint-disable */
|
|
gridster {
|
|
background: none;
|
|
}
|
|
|
|
gridster-item {
|
|
background: none;
|
|
border: 0;
|
|
border-radius: 0;
|
|
overflow: visible;
|
|
|
|
&.gridster-item-moving,
|
|
&.gridster-item-resizing {
|
|
box-shadow: none;
|
|
}
|
|
}
|
|
/* stylelint-enable */
|
|
}
|
|
|
|
.btn {
|
|
z-index: 1000;
|
|
}
|
|
|
|
:host ::ng-deep {
|
|
/* stylelint-disable */
|
|
chart {
|
|
@include absolute(0, 1rem, 1rem, 1rem);
|
|
}
|
|
/* stylelint-enable */
|
|
|
|
.subtext {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.card {
|
|
@include absolute(0, 0, 0, 0);
|
|
|
|
&-image {
|
|
text-align: center;
|
|
|
|
img {
|
|
height: 5rem;
|
|
}
|
|
}
|
|
|
|
h4 {
|
|
a {
|
|
color: $color-title;
|
|
text-align: left;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
&-header {
|
|
@include truncate;
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
&-body {
|
|
position: relative;
|
|
}
|
|
|
|
&-title {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
&-history {
|
|
overflow-y: auto;
|
|
}
|
|
|
|
&-text {
|
|
color: $color-text-decent;
|
|
font-size: $font-small;
|
|
font-weight: normal;
|
|
}
|
|
|
|
&-href {
|
|
&:hover {
|
|
@include box-shadow-outer(0, 3px, 16px, .2);
|
|
}
|
|
}
|
|
}
|
|
|
|
.aggregation {
|
|
text-align: center;
|
|
|
|
&-label {
|
|
color: $color-text-decent;
|
|
}
|
|
|
|
&-value {
|
|
font-size: 3rem;
|
|
margin-bottom: .5rem;
|
|
margin-top: 1rem;
|
|
}
|
|
}
|
|
}
|