From 69c5c9d8a2335a2910248ccf2d7dbea1f3e8c673 Mon Sep 17 00:00:00 2001 From: Gordon Williams Date: Thu, 21 Oct 2021 11:43:30 +0100 Subject: [PATCH] move to icons defined in main.css --- core | 2 +- css/main.css | 19 +++++++++++++++++-- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/core b/core index cdbf46fea..3a2c706b4 160000 --- a/core +++ b/core @@ -1 +1 @@ -Subproject commit cdbf46feaeefcb0d48ce9c170e90786dab11a03f +Subproject commit 3a2c706b4cdf02e5365b191103c80d587b3ace5a diff --git a/css/main.css b/css/main.css index 90b4ff280..44137e9b1 100644 --- a/css/main.css +++ b/css/main.css @@ -35,6 +35,21 @@ top: 36px; left: -24px; } -.btn-favourite { - color: red; +.btn.btn-favourite { 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"; }