mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-20 07:55:06 +00:00
25 lines
726 B
CSS
25 lines
726 B
CSS
#sidebarToggle::before {
|
|
-webkit-mask-image: url('./images/custom/thumbnail.svg');
|
|
mask-image: url('./images/custom/thumbnail.svg');
|
|
}
|
|
|
|
#previous::before {
|
|
-webkit-mask-image: url('./images/custom/previous-page.svg');
|
|
mask-image: url('./images/custom/previous-page.svg');
|
|
}
|
|
|
|
#next::before {
|
|
-webkit-mask-image: url('./images/custom/next-page.svg');
|
|
mask-image: url('./images/custom/next-page.svg');
|
|
}
|
|
|
|
#firstPage::before {
|
|
-webkit-mask-image: url('./images/custom/first-page.svg');
|
|
mask-image: url('./images/custom/first-page.svg');
|
|
}
|
|
|
|
#lastPage::before {
|
|
-webkit-mask-image: url('./images/custom/last-page.svg');
|
|
mask-image: url('./images/custom/last-page.svg');
|
|
}
|