├── .gitignore ├── assets ├── css │ ├── font-awesome.css │ ├── fontawesome-iconpicker.css │ ├── ssb-admin-style.css │ └── ssb-ui-style.css ├── fonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 └── js │ ├── fontawesome-iconpicker.js │ ├── ssb-admin-js.js │ └── ssb-ui-js.js ├── readme.txt ├── screenshot-1.jpg ├── screenshot-2.jpg ├── screenshot-3.jpg ├── screenshot-4.jpg ├── screenshot-5.jpg ├── screenshot-6.jpg ├── ssb-main.php ├── ssb-ui.php ├── sticky-side-buttons.php └── uninstall.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /assets/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/css/font-awesome.css -------------------------------------------------------------------------------- /assets/css/fontawesome-iconpicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/css/fontawesome-iconpicker.css -------------------------------------------------------------------------------- /assets/css/ssb-admin-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/css/ssb-admin-style.css -------------------------------------------------------------------------------- /assets/css/ssb-ui-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/css/ssb-ui-style.css -------------------------------------------------------------------------------- /assets/fonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/fonts/fa-brands-400.eot -------------------------------------------------------------------------------- /assets/fonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/fonts/fa-brands-400.svg -------------------------------------------------------------------------------- /assets/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /assets/fonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/fonts/fa-brands-400.woff -------------------------------------------------------------------------------- /assets/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /assets/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /assets/fonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/fonts/fa-regular-400.svg -------------------------------------------------------------------------------- /assets/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /assets/fonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/fonts/fa-regular-400.woff -------------------------------------------------------------------------------- /assets/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /assets/fonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/fonts/fa-solid-900.eot -------------------------------------------------------------------------------- /assets/fonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/fonts/fa-solid-900.svg -------------------------------------------------------------------------------- /assets/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /assets/fonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/fonts/fa-solid-900.woff -------------------------------------------------------------------------------- /assets/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /assets/js/fontawesome-iconpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/js/fontawesome-iconpicker.js -------------------------------------------------------------------------------- /assets/js/ssb-admin-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/js/ssb-admin-js.js -------------------------------------------------------------------------------- /assets/js/ssb-ui-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/assets/js/ssb-ui-js.js -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/readme.txt -------------------------------------------------------------------------------- /screenshot-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/screenshot-1.jpg -------------------------------------------------------------------------------- /screenshot-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/screenshot-2.jpg -------------------------------------------------------------------------------- /screenshot-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/screenshot-3.jpg -------------------------------------------------------------------------------- /screenshot-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/screenshot-4.jpg -------------------------------------------------------------------------------- /screenshot-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/screenshot-5.jpg -------------------------------------------------------------------------------- /screenshot-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/screenshot-6.jpg -------------------------------------------------------------------------------- /ssb-main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/ssb-main.php -------------------------------------------------------------------------------- /ssb-ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/ssb-ui.php -------------------------------------------------------------------------------- /sticky-side-buttons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/sticky-side-buttons.php -------------------------------------------------------------------------------- /uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maevelander/sticky-side-buttons/HEAD/uninstall.php --------------------------------------------------------------------------------