salix/front/core/components/smart-table/style.scss

69 lines
1.3 KiB
SCSS
Raw Normal View History

@import "effects";
@import "variables";
2021-10-23 12:26:42 +00:00
smart-table {
2021-10-25 12:20:17 +00:00
th[field] {
overflow: visible;
cursor: pointer;
&.asc > :after, &.desc > :after {
color: $color-font;
opacity: 1;
}
&.asc > :after {
content: 'arrow_drop_up';
}
&.desc > :after {
content: 'arrow_drop_down';
}
& > :after {
font-family: 'Material Icons';
content: 'arrow_drop_down';
position: absolute;
color: $color-spacer;
font-size: 1.5em;
margin-top: -2px;
opacity: 0
}
&:hover > :after {
opacity: 1;
}
}
.actions-left {
display: flex;
justify-content: flex-start;
}
.actions {
display: flex;
justify-content: flex-end;
.button-group {
display: flex;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .3);
margin-left: 10px;
& > vn-button {
box-shadow: 0 0 0 0
}
}
}
2021-10-23 12:26:42 +00:00
vn-tbody a[ng-repeat].vn-tr:focus {
background-color: $color-primary-light
}
.new-row {
background-color: $color-success-light
}
.changed-row {
background-color: $color-primary-light
}
}