├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── Makefile ├── README.md ├── css ├── userChrome-vibrancy.css └── userChrome.css ├── img ├── preview-legacy.png ├── preview-vertical.png └── preview.png └── scss └── userChrome.scss /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaweb/firefox-safari-style/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaweb/firefox-safari-style/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaweb/firefox-safari-style/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaweb/firefox-safari-style/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaweb/firefox-safari-style/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaweb/firefox-safari-style/HEAD/README.md -------------------------------------------------------------------------------- /css/userChrome-vibrancy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaweb/firefox-safari-style/HEAD/css/userChrome-vibrancy.css -------------------------------------------------------------------------------- /css/userChrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaweb/firefox-safari-style/HEAD/css/userChrome.css -------------------------------------------------------------------------------- /img/preview-legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaweb/firefox-safari-style/HEAD/img/preview-legacy.png -------------------------------------------------------------------------------- /img/preview-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaweb/firefox-safari-style/HEAD/img/preview-vertical.png -------------------------------------------------------------------------------- /img/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaweb/firefox-safari-style/HEAD/img/preview.png -------------------------------------------------------------------------------- /scss/userChrome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideaweb/firefox-safari-style/HEAD/scss/userChrome.scss --------------------------------------------------------------------------------