mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
* [ADF-4552] Rating component refactoring, add ability to unRate * [ADF-4552] RTL support added * [ADF-4552] Improve behaviour and styling structure in RTL languages * [ADF-4552] Improve behaviour and styling structure in RTL languages * [ADF-4552] Added refresh rating when the node Id input changes * [ADF-4552][ADF-4482] Refactor social component, add ability to unrate, add e2e automation * [ADF-4552][ADF-4482] Added unsibscribe from Observables, added css variables, removed unused class id's * [ADF-4552][ADF-4482] Improve structure and behaviour of e2e automation tests * [ADF-4552][ADF-4482] Improve structure and behaviour of e2e automation tests * [ADF-4552][ADF-4482] fix expected single space * [ADF-4552][ADF-4482] fix lint check failure * Fix circular dependency error
42 lines
636 B
SCSS
42 lines
636 B
SCSS
@mixin selected {
|
|
color: #2196f3;
|
|
}
|
|
|
|
@mixin unselected {
|
|
color: #808080;
|
|
}
|
|
|
|
.adf-like-container {
|
|
display: flex;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
align-items: center;
|
|
margin-top: 13px;
|
|
|
|
.adf-like-counter-container {
|
|
display: inherit;
|
|
padding: 0 6px;
|
|
}
|
|
|
|
.adf-left {
|
|
padding: 0 6px;
|
|
}
|
|
|
|
.adf-like-select {
|
|
cursor: pointer;
|
|
@include selected;
|
|
&:hover {
|
|
@include unselected;
|
|
}
|
|
}
|
|
|
|
.adf-like-grey {
|
|
cursor: pointer;
|
|
@include unselected;
|
|
&:hover {
|
|
@include selected;
|
|
}
|
|
}
|
|
|
|
}
|