hnakamur / FormatLink-Firefox

A Firefox web-extension to copy the URL and the title or the selected text to clipboard
https://addons.mozilla.org/ja/firefox/addon/format-link3/
MIT License
45 stars 8 forks source link

dark theme (example code) #58

Open atomGit opened 11 months ago

atomGit commented 11 months ago

for the options page...

@-moz-document url("moz-extension://<INSERT EXTENSION ID>/options.html") {
    body {
        background-color: #272727;
        color: #ccc;
    }
    input[type="text"] {
        -moz-default-appearance: unset;
        background-color: #1f1f1f;
        color: #e7f874;
        text-rendering: unset;
    }
}

for the pop-up...

@-moz-document url("moz-extension://<INSERT EXTENSION ID>/popup.html") {
    body {
        background: #242424;
        color: #d9d9d9;
        border: 2px solid gray;
    }
    #formatGroup {
        display: grid;
        min-width: 40em;
    }
}