37 lines
686 B
SCSS
37 lines
686 B
SCSS
@import "effects";
|
|
@import "variables";
|
|
|
|
smart-table {
|
|
.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
|
|
}
|
|
}
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|