mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
66 lines
1.3 KiB
SCSS
66 lines
1.3 KiB
SCSS
@use '../../styles/mat-selectors' as ms;
|
|
|
|
aca-open-in-app {
|
|
.aca-open-in-app {
|
|
.aca-open-in-app-button-container {
|
|
display: flex;
|
|
place-content: center;
|
|
padding: 0;
|
|
border-radius: 8px;
|
|
background-color: var(--theme-primary-color);
|
|
height: 48px;
|
|
overflow-x: hidden;
|
|
font-size: 16px;
|
|
color: white;
|
|
font-weight: 600;
|
|
|
|
&:focus-visible {
|
|
outline: none;
|
|
border-radius: unset;
|
|
}
|
|
}
|
|
|
|
.aca-download-app-container {
|
|
display: flex;
|
|
place-content: center;
|
|
margin-top: 12px;
|
|
margin-bottom: 16px;
|
|
|
|
&-button {
|
|
background: var(--theme-dialog-background-color);
|
|
color: var(--theme-primary-color);
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
.aca-mobile-application-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: 14px;
|
|
padding: 6px 0;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.aca-cross-button {
|
|
padding-right: 0;
|
|
|
|
&:focus-visible {
|
|
outline: none;
|
|
border-radius: unset;
|
|
}
|
|
|
|
&-icon {
|
|
font-weight: bold;
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
|
|
#{ms.$mat-button} {
|
|
--mat-mdc-button-persistent-ripple-color: unset;
|
|
--mat-mdc-button-ripple-color: unset;
|
|
}
|
|
}
|
|
}
|