Fix toast close icon
This commit is contained in:
parent
cf387740f2
commit
75264e371c
2 changed files with 14 additions and 1 deletions
|
@ -41,7 +41,7 @@
|
||||||
<my-global-icon iconName="home"></my-global-icon>
|
<my-global-icon iconName="home"></my-global-icon>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<a class="plugin-icon" target="_blank" rel="noopener noreferrer" [href]="'https://www.npmjs.com/package/peertube-plugin-' + plugin.name" i18n-title title="Go to the plugin homepage">
|
<a class="plugin-icon" target="_blank" rel="noopener noreferrer" [href]="'https://www.npmjs.com/package/peertube-plugin-' + plugin.name" i18n-title title="Go to the plugin npm package">
|
||||||
<my-global-icon iconName="npm"></my-global-icon>
|
<my-global-icon iconName="npm"></my-global-icon>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
|
|
@ -413,6 +413,19 @@ p-toast {
|
||||||
z-index: z(notification) !important;
|
z-index: z(notification) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ui-toast-close-icon {
|
||||||
|
font-family: "Glyphicons Halflings";
|
||||||
|
|
||||||
|
opacity: .5;
|
||||||
|
&:hover {
|
||||||
|
opacity: .8;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
content: "\e014";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.ui-toast-message {
|
.ui-toast-message {
|
||||||
font-family: $main-fonts;
|
font-family: $main-fonts;
|
||||||
background-color: var(--mainBackgroundColor) !important;
|
background-color: var(--mainBackgroundColor) !important;
|
||||||
|
|
Loading…
Reference in a new issue