|
|
| Line 1: |
Line 1: |
| /* 1. Esconde o ícone original teimoso */
| |
| #ca-watch .vector-icon,
| |
| #ca-unwatch .vector-icon {
| |
| display: none !important;
| |
| }
| |
|
| |
|
| /* 2. Cria o novo ícone usando Material Icons */
| |
| #ca-watch a::before,
| |
| #ca-unwatch a::before {
| |
| font-family: 'Material Symbols Rounded';
| |
| content: "bookmark_add"; /* Ícone da estrela vazia */
| |
| font-size: 20px;
| |
| color: #000000;
| |
| display: inline-flex;
| |
| align-items: center;
| |
| justify-content: center;
| |
| width: 28px;
| |
| height: 28px;
| |
| vertical-align: middle;
| |
| }
| |
|
| |
| /* 3. Muda para a estrela cheia quando a página já está vigiada */
| |
| #ca-unwatch a::before {
| |
| content: "bookmark_remove"; /* Ícone da estrela preenchida */
| |
| }
| |
|
| |
|
|
| |
|