move to icons defined in main.css

pull/854/head
Gordon Williams 2021-10-21 11:43:30 +01:00
parent 47f32f34fa
commit 69c5c9d8a2
2 changed files with 18 additions and 3 deletions

2
core

@ -1 +1 @@
Subproject commit cdbf46feaeefcb0d48ce9c170e90786dab11a03f Subproject commit 3a2c706b4cdf02e5365b191103c80d587b3ace5a

View File

@ -35,6 +35,21 @@
top: 36px; top: 36px;
left: -24px; left: -24px;
} }
.btn-favourite { .btn.btn-favourite { color: red; }
color: red; .btn.btn-favourite:hover { color: red; }
.icon.icon-emulator { text-indent: 0px; } /*override spectre*/
.icon.icon-emulator::before {
content: "\01F5B5";
}
.icon.icon-favourite { text-indent: 0px; } /*override spectre*/
.icon.icon-favourite::before {
content: "\02661"; /* 0x2661 = empty heart; 0x2606 = empty star */
}
.icon.icon-favourite-active::before {
content: "\02665"; /* 0x2665 = solid heart; 0x2605 = solid star */
}
.icon.icon-interface {text-indent: 0px;font-size: 130%;vertical-align: -30%;} /*override spectre*/
.icon.icon-interface::before {
content: "\01F5AB";
} }