Add frontend assets and plugin bundles

Add the legacy frontend themes, scripts, and plugin assets required by the main SPOTA interfaces.
This commit is contained in:
Power BI Dev
2026-05-02 10:09:32 +07:00
parent efdb11db3f
commit a52c2a8462
2061 changed files with 513282 additions and 0 deletions

View File

@@ -0,0 +1,182 @@
//
// Bootstrap Social Buttons v0.2dev
// --------------------------------------------------
// The colours
// --------------------------------------------------
// Facebook colours from ???
@btnFacebookBackground: #3B5998;
@btnFacebookBackgroundHighlight: #133783;
// Twitter colours from https://twitter.com/
@btnTwitterBackground: #2daddc;
@btnTwitterBackgroundHighlight: #0271bf;
// Github colours from http://ghbtns.com/
@btnGithubBackground: #fafafa;
@btnGithubBackgroundHighlight: #e6e6e6;
@btnGithubText: #000000;
@btnGithubTextShadow: 0 0.7px 0 rgba(0,0,0,.1);
// Pinterest colours from http://pinterest.com/
@btnPinterestBackground: #d62229;
@btnPinterestBackgroundHighlight: #ab171e;
// Linkedin colours from http://www.linkedin.com/
@btnLinkedinBackground: #73b8db;
@btnLinkedinBackgroundHighlight: #4393BB;
// Google Plus colours from https://accounts.google.com/ServiceLogin?service=oz&continue=https://plus.google.com/?gpsrc%3Dgplp0%26partnerid%3Dgplp0&hl=en-GB
@btnGooglePlusBackground: #dd4b39;
@btnGooglePlusBackgroundHighlight: #c53727;
// Instagram colours from http://instagram.com
@btnInstagramBackground: #6f97b6;
@btnInstagramBackgroundHighlight: #3f729b;
// Instagram colours from http://instagram.com
@btnDropboxBackground: #37a3eb;
@btnDropboxBackgroundHighlight: #2181cf;
// Bitbucket colours from https://bitbucket.org/dashboard/overview
@btnBitbucketBackground: #2D5F9C;
@btnBitbucketBackgroundHighlight: #205081;
// Dribbble colours from https://dribbble.com/session/new
@btnDribbbleBackground: #ea4c89;
@btnDribbbleBackgroundHighlight: #CB396F;
// Flickr colours from http://www.flickr.com/about
@btnFlickrBackground: #F051A5;
@btnFlickrBackgroundHighlight: #ff0084;
// Foursquare colours from https://playfoursquare.s3.amazonaws.com/press/foursquare-brandbook.pdf
@btnFoursquareBackground: #0cbadf;
@btnFoursquareBackgroundHighlight: #0072b1;
// Renren colours from http://a.xnimg.cn/n/apps/login/v6/cssimg/bg.png
@btnRenrenBackground: #397CB6;
@btnRenrenBackgroundHighlight: #33669A;
// Skype colours from http://issuu.com/bondo/docs/skype_brand_book_-_look
@btnSkypeBackground: #70C3E2;
@btnSkypeBackgroundHighlight: #00AFF0;
// Stack Exchange colours from http://cdn.sstatic.net/stackexchange/img/sprites.png?v=8
@btnStackExchangeBackground: #5184C1;
@btnStackExchangeBackgroundHighlight: #185397;
// Trello colours from http://cdn.sstatic.net/stackexchange/img/sprites.png?v=8
@btnTrelloBackground: #569cc4;
@btnTrelloBackgroundHighlight: #27709b;
// Tumblr colours from http://assets.tumblr.com/images/background.png?a33896dcf50d40a936025aeb074d8707
@btnTumblrBackground: #3A5976;
@btnTumblrBackgroundHighlight: #2A4763;
// VK colours from http://vk.com/images/hat.gif
@btnVkBackground: #5A7FA6;
@btnVkBackgroundHighlight: #426187;
// Weibo colours from http://img.t.sinajs.cn/t5/style/images/register/form_login.png?id=1370232467958
@btnWeiboBackground: #F85959;
@btnWeiboBackgroundHighlight: #E64141;
// XING colours from https://www.xing.com/img/s/sprite_zero_r9.png
@btnXingBackground: #1F6768;
@btnXingBackgroundHighlight: #074C4D;
// Youtube colours from http://www.youtube.com/yt/brand/color.html
@btnYoutubeBackground: #CD332D;
@btnYoutubeBackgroundHighlight: #6E0610;
// The social buttons
// --------------------------------------------------
.btn-facebook {
.buttonBackground(@btnFacebookBackground, @btnFacebookBackgroundHighlight);
}
.btn-twitter {
.buttonBackground(@btnTwitterBackground, @btnTwitterBackgroundHighlight);
}
.btn-github {
.buttonBackground(@btnGithubBackground, @btnGithubBackgroundHighlight, @btnGithubText, @btnGithubTextShadow);
}
.btn-pinterest {
.buttonBackground(@btnPinterestBackground, @btnPinterestBackgroundHighlight);
}
.btn-linkedin {
.buttonBackground(@btnLinkedinBackground, @btnLinkedinBackgroundHighlight);
}
.btn-google-plus {
.buttonBackground(@btnGooglePlusBackground, @btnGooglePlusBackgroundHighlight);
}
.btn-instagram {
.buttonBackground(@btnInstagramBackground, @btnInstagramBackgroundHighlight);
}
.btn-dropbox {
.buttonBackground(@btnDropboxBackground, @btnDropboxBackgroundHighlight);
}
.btn-bitbucket {
.buttonBackground(@btnBitbucketBackground, @btnBitbucketBackgroundHighlight);
}
.btn-dribbble {
.buttonBackground(@btnDribbbleBackground, @btnDribbbleBackgroundHighlight);
}
.btn-flickr {
.buttonBackground(@btnFlickrBackground, @btnFlickrBackgroundHighlight);
}
.btn-foursquare {
.buttonBackground(@btnFoursquareBackground, @btnFoursquareBackgroundHighlight);
}
.btn-renren {
.buttonBackground(@btnRenrenBackground, @btnRenrenBackgroundHighlight);
}
.btn-skype {
.buttonBackground(@btnSkypeBackground, @btnSkypeBackgroundHighlight);
}
.btn-stackexchange {
.buttonBackground(@btnStackExchangeBackground, @btnStackExchangeBackgroundHighlight);
}
.btn-trello {
.buttonBackground(@btnTrelloBackground, @btnTrelloBackgroundHighlight);
}
.btn-tumblr {
.buttonBackground(@btnTumblrBackground, @btnTumblrBackgroundHighlight);
}
.btn-vk {
.buttonBackground(@btnVkBackground, @btnVkBackgroundHighlight);
}
.btn-weibo {
.buttonBackground(@btnWeiboBackground, @btnWeiboBackgroundHighlight);
}
.btn-xing {
.buttonBackground(@btnXingBackground, @btnXingBackgroundHighlight);
}
.btn-youtube {
.buttonBackground(@btnYoutubeBackground, @btnYoutubeBackgroundHighlight);
}