├── .browserslistrc ├── .gitignore ├── LICENSE ├── README.md ├── babel.config.json ├── composer.json ├── composer.lock ├── dist ├── css │ ├── styles-bs.css │ ├── styles-bs.min.css │ ├── styles.css │ ├── styles.min.css │ ├── variables.css │ └── variables.min.css └── js │ ├── dispatchEvent.js │ ├── dispatchEvent.js.map │ ├── fetchData.js │ ├── fetchData.js.map │ ├── getTweetId.js │ ├── getTweetId.js.map │ ├── processTweets.js │ ├── processTweets.js.map │ ├── ready.js │ ├── ready.js.map │ ├── renderTweet.js │ ├── renderTweet.js.map │ ├── scripts.js │ └── scripts.js.map ├── gulpfile.js ├── images ├── assets │ ├── banner-1544x500.png │ ├── banner-772x250.png │ ├── icon-128x128.png │ ├── icon-256x256.png │ ├── screenshot-1.png │ └── screenshot-2.png ├── banner-1544x500.psd ├── blog │ ├── performance.png │ ├── test-demo │ │ ├── desktop-off.png │ │ ├── desktop-on.png │ │ ├── mobile-off.png │ │ └── mobile-on.png │ └── test-fourtonfish │ │ ├── desktop-off.png │ │ ├── desktop-on.png │ │ ├── mobile-off.png │ │ └── mobile-on.png └── thumbnail │ ├── tweet-embeds-bw-tint.png │ ├── tweet-embeds-bw.png │ └── tweet-embeds.png ├── includes ├── Cleanup.php ├── Database.php ├── Embed_Tweets.php ├── Enqueue_Assets.php ├── Helpers.php ├── Media_Proxy.php ├── Settings.php ├── Site_Info.php └── simple_html_dom.php ├── index.php ├── package.json ├── readme.txt ├── src └── frontend │ ├── scripts │ ├── dispatchEvent.js │ ├── fetchData.js │ ├── getTweetId.js │ ├── processTweets.js │ ├── ready.js │ ├── renderTweet.js │ └── scripts.js │ └── styles │ ├── bootstrap │ ├── _alert.scss │ ├── _badge.scss │ ├── _breadcrumb.scss │ ├── _button-group.scss │ ├── _buttons.scss │ ├── _card.scss │ ├── _carousel.scss │ ├── _close.scss │ ├── _code.scss │ ├── _custom-forms.scss │ ├── _dropdown.scss │ ├── _forms.scss │ ├── _functions.scss │ ├── _grid.scss │ ├── _images.scss │ ├── _input-group.scss │ ├── _jumbotron.scss │ ├── _list-group.scss │ ├── _media.scss │ ├── _mixins.scss │ ├── _modal.scss │ ├── _nav.scss │ ├── _navbar.scss │ ├── _pagination.scss │ ├── _popover.scss │ ├── _print.scss │ ├── _progress.scss │ ├── _reboot.scss │ ├── _root.scss │ ├── _spinners.scss │ ├── _tables.scss │ ├── _toasts.scss │ ├── _tooltip.scss │ ├── _transitions.scss │ ├── _type.scss │ ├── _utilities.scss │ ├── _variables.scss │ ├── bootstrap-grid.scss │ ├── bootstrap-reboot.scss │ ├── bootstrap.scss │ ├── mixins │ │ ├── _alert.scss │ │ ├── _background-variant.scss │ │ ├── _badge.scss │ │ ├── _border-radius.scss │ │ ├── _box-shadow.scss │ │ ├── _breakpoints.scss │ │ ├── _buttons.scss │ │ ├── _caret.scss │ │ ├── _clearfix.scss │ │ ├── _deprecate.scss │ │ ├── _float.scss │ │ ├── _forms.scss │ │ ├── _gradients.scss │ │ ├── _grid-framework.scss │ │ ├── _grid.scss │ │ ├── _hover.scss │ │ ├── _image.scss │ │ ├── _list-group.scss │ │ ├── _lists.scss │ │ ├── _nav-divider.scss │ │ ├── _pagination.scss │ │ ├── _reset-text.scss │ │ ├── _resize.scss │ │ ├── _screen-reader.scss │ │ ├── _size.scss │ │ ├── _table-row.scss │ │ ├── _text-emphasis.scss │ │ ├── _text-hide.scss │ │ ├── _text-truncate.scss │ │ ├── _transition.scss │ │ └── _visibility.scss │ ├── utilities │ │ ├── _align.scss │ │ ├── _background.scss │ │ ├── _borders.scss │ │ ├── _clearfix.scss │ │ ├── _display.scss │ │ ├── _embed.scss │ │ ├── _flex.scss │ │ ├── _float.scss │ │ ├── _interactions.scss │ │ ├── _overflow.scss │ │ ├── _position.scss │ │ ├── _screenreaders.scss │ │ ├── _shadows.scss │ │ ├── _sizing.scss │ │ ├── _spacing.scss │ │ ├── _stretched-link.scss │ │ ├── _text.scss │ │ └── _visibility.scss │ └── vendor │ │ └── _rfs.scss │ ├── styles-bs.scss │ ├── styles.scss │ └── variables.scss └── tests └── .jshintrc /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 0.25% 2 | not dead 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/babel.config.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/composer.lock -------------------------------------------------------------------------------- /dist/css/styles-bs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/dist/css/styles-bs.css -------------------------------------------------------------------------------- /dist/css/styles-bs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/dist/css/styles-bs.min.css -------------------------------------------------------------------------------- /dist/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/dist/css/styles.css -------------------------------------------------------------------------------- /dist/css/styles.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/dist/css/styles.min.css -------------------------------------------------------------------------------- /dist/css/variables.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/css/variables.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/js/dispatchEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/dist/js/dispatchEvent.js -------------------------------------------------------------------------------- /dist/js/dispatchEvent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/dist/js/dispatchEvent.js.map -------------------------------------------------------------------------------- /dist/js/fetchData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/dist/js/fetchData.js -------------------------------------------------------------------------------- /dist/js/fetchData.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/dist/js/fetchData.js.map -------------------------------------------------------------------------------- /dist/js/getTweetId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/dist/js/getTweetId.js -------------------------------------------------------------------------------- /dist/js/getTweetId.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/dist/js/getTweetId.js.map -------------------------------------------------------------------------------- /dist/js/processTweets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/dist/js/processTweets.js -------------------------------------------------------------------------------- /dist/js/processTweets.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/dist/js/processTweets.js.map -------------------------------------------------------------------------------- /dist/js/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/dist/js/ready.js -------------------------------------------------------------------------------- /dist/js/ready.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/dist/js/ready.js.map -------------------------------------------------------------------------------- /dist/js/renderTweet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/dist/js/renderTweet.js -------------------------------------------------------------------------------- /dist/js/renderTweet.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/dist/js/renderTweet.js.map -------------------------------------------------------------------------------- /dist/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/dist/js/scripts.js -------------------------------------------------------------------------------- /dist/js/scripts.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/dist/js/scripts.js.map -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/gulpfile.js -------------------------------------------------------------------------------- /images/assets/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/images/assets/banner-1544x500.png -------------------------------------------------------------------------------- /images/assets/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/images/assets/banner-772x250.png -------------------------------------------------------------------------------- /images/assets/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/images/assets/icon-128x128.png -------------------------------------------------------------------------------- /images/assets/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/images/assets/icon-256x256.png -------------------------------------------------------------------------------- /images/assets/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/images/assets/screenshot-1.png -------------------------------------------------------------------------------- /images/assets/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/images/assets/screenshot-2.png -------------------------------------------------------------------------------- /images/banner-1544x500.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/images/banner-1544x500.psd -------------------------------------------------------------------------------- /images/blog/performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/images/blog/performance.png -------------------------------------------------------------------------------- /images/blog/test-demo/desktop-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/images/blog/test-demo/desktop-off.png -------------------------------------------------------------------------------- /images/blog/test-demo/desktop-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/images/blog/test-demo/desktop-on.png -------------------------------------------------------------------------------- /images/blog/test-demo/mobile-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/images/blog/test-demo/mobile-off.png -------------------------------------------------------------------------------- /images/blog/test-demo/mobile-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/images/blog/test-demo/mobile-on.png -------------------------------------------------------------------------------- /images/blog/test-fourtonfish/desktop-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/images/blog/test-fourtonfish/desktop-off.png -------------------------------------------------------------------------------- /images/blog/test-fourtonfish/desktop-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/images/blog/test-fourtonfish/desktop-on.png -------------------------------------------------------------------------------- /images/blog/test-fourtonfish/mobile-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/images/blog/test-fourtonfish/mobile-off.png -------------------------------------------------------------------------------- /images/blog/test-fourtonfish/mobile-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/images/blog/test-fourtonfish/mobile-on.png -------------------------------------------------------------------------------- /images/thumbnail/tweet-embeds-bw-tint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/images/thumbnail/tweet-embeds-bw-tint.png -------------------------------------------------------------------------------- /images/thumbnail/tweet-embeds-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/images/thumbnail/tweet-embeds-bw.png -------------------------------------------------------------------------------- /images/thumbnail/tweet-embeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/images/thumbnail/tweet-embeds.png -------------------------------------------------------------------------------- /includes/Cleanup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/includes/Cleanup.php -------------------------------------------------------------------------------- /includes/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/includes/Database.php -------------------------------------------------------------------------------- /includes/Embed_Tweets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/includes/Embed_Tweets.php -------------------------------------------------------------------------------- /includes/Enqueue_Assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/includes/Enqueue_Assets.php -------------------------------------------------------------------------------- /includes/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/includes/Helpers.php -------------------------------------------------------------------------------- /includes/Media_Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/includes/Media_Proxy.php -------------------------------------------------------------------------------- /includes/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/includes/Settings.php -------------------------------------------------------------------------------- /includes/Site_Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/includes/Site_Info.php -------------------------------------------------------------------------------- /includes/simple_html_dom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/includes/simple_html_dom.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/index.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/package.json -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/readme.txt -------------------------------------------------------------------------------- /src/frontend/scripts/dispatchEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/scripts/dispatchEvent.js -------------------------------------------------------------------------------- /src/frontend/scripts/fetchData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/scripts/fetchData.js -------------------------------------------------------------------------------- /src/frontend/scripts/getTweetId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/scripts/getTweetId.js -------------------------------------------------------------------------------- /src/frontend/scripts/processTweets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/scripts/processTweets.js -------------------------------------------------------------------------------- /src/frontend/scripts/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/scripts/ready.js -------------------------------------------------------------------------------- /src/frontend/scripts/renderTweet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/scripts/renderTweet.js -------------------------------------------------------------------------------- /src/frontend/scripts/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/scripts/scripts.js -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_alert.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_badge.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_breadcrumb.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_button-group.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_buttons.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_card.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_carousel.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_close.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_code.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_custom-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_custom-forms.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_dropdown.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_forms.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_functions.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_grid.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_images.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_input-group.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_jumbotron.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_list-group.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_media.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_mixins.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_modal.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_nav.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_navbar.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_pagination.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_popover.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_print.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_progress.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_reboot.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_root.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_spinners.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_tables.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_toasts.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_tooltip.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_transitions.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_type.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_utilities.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_variables.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/bootstrap-grid.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/bootstrap-reboot.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/bootstrap.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_alert.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_background-variant.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_background-variant.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_badge.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_border-radius.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_box-shadow.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_buttons.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_caret.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_clearfix.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_deprecate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_deprecate.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_float.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_forms.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_gradients.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_grid-framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_grid-framework.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_grid.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_hover.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_image.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_list-group.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_lists.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_nav-divider.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_pagination.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_reset-text.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_resize.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_screen-reader.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_size.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_table-row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_table-row.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_text-emphasis.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_text-hide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_text-hide.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_transition.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_visibility.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/utilities/_align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/utilities/_align.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/utilities/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/utilities/_background.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/utilities/_borders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/utilities/_borders.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/utilities/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/utilities/_clearfix.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/utilities/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/utilities/_display.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/utilities/_embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/utilities/_embed.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/utilities/_flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/utilities/_flex.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/utilities/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/utilities/_float.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/utilities/_interactions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/utilities/_interactions.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/utilities/_overflow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/utilities/_overflow.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/utilities/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/utilities/_position.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/utilities/_screenreaders.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/utilities/_shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/utilities/_shadows.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/utilities/_sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/utilities/_sizing.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/utilities/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/utilities/_spacing.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/utilities/_stretched-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/utilities/_stretched-link.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/utilities/_text.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/utilities/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/utilities/_visibility.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/vendor/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/vendor/_rfs.scss -------------------------------------------------------------------------------- /src/frontend/styles/styles-bs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/styles-bs.scss -------------------------------------------------------------------------------- /src/frontend/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/src/frontend/styles/styles.scss -------------------------------------------------------------------------------- /src/frontend/styles/variables.scss: -------------------------------------------------------------------------------- 1 | $twitter-blue: rgb(27, 149, 224); 2 | -------------------------------------------------------------------------------- /tests/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/tweet-embeds-wordpress-plugin/HEAD/tests/.jshintrc --------------------------------------------------------------------------------