❌ Don't
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fandom.com##[data-tracking-opt-in-overlay] | |
fandom.com##body:style(overflow: auto !Important) | |
fandom.com###WikiaBar | |
fandom.com##.wds-global-navigation:style(position: relative !important) | |
fandom.com##.wds-global-navigation__content-bar-left | |
fandom.com##.wds-global-navigation__start-a-wiki | |
fandom.com##.wds-global-footer | |
fandom.com##.wds-banner-notification__container | |
fandom.com##.recirculation-prefooter | |
fandom.com##.show-comments-btn |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
duckduckgo.com##.header__logo-wrap:style(visibility: hidden) | |
duckduckgo.com##.header--aside:style(visibility: hidden) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
! Sport | |
ard-text.de##.cluster:has(h4>[href="/mobil/200"]) | |
! Celebrities | |
ard-text.de##.cluster:has(h4>[href="/mobil/420"]) | |
! Navigation elements | |
ard-text.de##.fixedNavigation | |
ard-text.de##.footer | |
ard-text.de##.master[style]:style(padding:1em!important) | |
ard-text.de##.browse |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
redmine.loom.de###issue_custom_field_values_2 | |
redmine.loom.de##[for="issue_custom_field_values_2"] | |
redmine.loom.de###time_entry_custom_field_values_3 | |
redmine.loom.de##[for="time_entry_custom_field_values_3"] | |
redmine.loom.de###issue_tracker_id | |
redmine.loom.de##[for="issue_tracker_id"] | |
redmine.loom.de###issue_description_and_toolbar:style(display: block !important) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
/ @import url('https://gist.githubusercontent.com/loominade/58b5bec1de176950fe580abed425b746/raw/redmine.css'); | |
*/ | |
@import url(https://cdn.jsdelivr.net/gh/tonsky/FiraCode@4/distr/fira_code.css); | |
@import url(https://icons.loom.de/loomicons.css) | |
body { | |
font-family: "helvetica neue",helvetica,arial,basic,sans-serif; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
toggl.com##.left-nav:style(display:none !Important) | |
toggl.com##.right-pane:style(margin: 0 !important) | |
toggl.com##[class*="-Header-block-NewTimeEntry"]:style(right:0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
duckduckgo.com##[data-domain="www.w3schools.com"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// $vars['id'] = GermanHtml::getUniqueId('Öktöberfest'); | |
// → <h1 id="oekoeberfest">Öktöberfest</h1> | |
class GermanHtml extends Drupal\Component\Utility\Html { | |
public static function getId($id) { | |
$id = str_replace([ | |
' ', | |
'_', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const SOFTHYPHEN = 'softHyphen'; | |
class insertSoftHyphenCommand extends CKEditor5.core.Command { | |
execute(options = {}) { | |
const insertPosition = editor.model.document.selection.getFirstPosition(); | |
this.editor.model.change(writer => { | |
const insertPosition = editor.model.document.selection.getFirstPosition(); | |
writer.insertText('', {}, insertPosition); | |
}); |