├── jsconfig.json ├── .eslintignore ├── appdev ├── jsconfig.json ├── app │ ├── badges │ │ ├── badges.module.js │ │ ├── badges.compile.js │ │ ├── badges.constants.js │ │ └── gmail │ │ │ ├── gmail.css │ │ │ └── gmail.html │ ├── services │ │ └── chrome │ │ │ ├── chrome.app.module.js │ │ │ ├── chrome.optionsUI.js │ │ │ ├── chrome.app.compile.js │ │ │ ├── chrome.i18n.service.js │ │ │ ├── chrome.history.services.js │ │ │ ├── chrome.permission.service.js │ │ │ └── chrome.storage.services.js │ ├── core │ │ ├── options │ │ │ ├── app.core.options.module.js │ │ │ ├── app.core.options.compile.js │ │ │ ├── optionsModal.html │ │ │ ├── options.js │ │ │ ├── selectWidgets │ │ │ │ └── selectWidgets.css │ │ │ └── options.html │ │ ├── app.core.compile.js │ │ ├── app.core.module.js │ │ ├── i18n.js │ │ ├── bottomMenu │ │ │ ├── bottomMenu.html │ │ │ ├── help.html │ │ │ └── help.js │ │ └── layout │ │ │ ├── layout.html │ │ │ └── layout.service.js │ ├── app.compile.js │ ├── widgets │ │ ├── widgets │ │ │ ├── app.widgets.compile.js │ │ │ ├── editWidget.html │ │ │ ├── widgetSearch.css │ │ │ ├── app.widgets.module.js │ │ │ ├── widget.js │ │ │ ├── widgetSearch.html │ │ │ ├── editWidget.js │ │ │ ├── widgetUrlList.html │ │ │ └── widgetUrlList.css │ │ ├── bookmarkTree │ │ │ ├── bookmarkTree.html │ │ │ ├── editBookmarkUrl.html │ │ │ ├── bookmarkTree.css │ │ │ ├── editBookmarks.html │ │ │ └── bookmark.constants.js │ │ ├── rssFeed │ │ │ ├── rssFeed.html │ │ │ ├── editRss.html │ │ │ └── editRssSyncDeleted.html │ │ └── browser │ │ │ ├── topSites.js │ │ │ ├── closedTabs.js │ │ │ └── apps.js │ └── app.module.js ├── img │ ├── icon16.png │ ├── icon32.png │ ├── icon48.png │ ├── icon128.png │ ├── logo-jsTree.png │ ├── ui-angular.png │ ├── cagdas.senis.jpg │ ├── emma.songeur.jpg │ ├── gmail-icon-128.png │ ├── jeremy.clarke.jpg │ ├── logo-AngularJS.png │ ├── paul.dhillon.jpg │ ├── robert.priebs.jpg │ ├── googleMailBadge.png │ ├── jquery-mark-dark.gif │ ├── logo-semantic-ui.png │ └── mattias.bengtsson.jpg ├── .csslintrc ├── dist │ ├── Lato │ │ ├── Lato-Bold.woff2 │ │ ├── Lato-Italic.woff2 │ │ ├── Lato-Regular.woff2 │ │ ├── Lato-BoldItalic.woff2 │ │ ├── LatoLatin-Bold.woff2 │ │ ├── LatoLatin-Italic.woff2 │ │ ├── LatoLatin-Regular.woff2 │ │ └── LatoLatin-BoldItalic.woff2 │ ├── jstree │ │ └── themes │ │ │ └── default │ │ │ ├── 32px.png │ │ │ ├── 40px.png │ │ │ └── throbber.gif │ └── semantic-ui │ │ └── themes │ │ ├── basic │ │ └── assets │ │ │ └── fonts │ │ │ ├── icons.eot │ │ │ ├── icons.ttf │ │ │ └── icons.woff │ │ ├── default │ │ └── assets │ │ │ ├── fonts │ │ │ ├── icons.eot │ │ │ ├── icons.ttf │ │ │ ├── icons.woff │ │ │ └── icons.woff2 │ │ │ └── images │ │ │ └── flags.png │ │ └── github │ │ └── assets │ │ └── fonts │ │ ├── octicons.ttf │ │ ├── octicons.woff │ │ └── octicons-local.ttf ├── tsd.json ├── .jsbeautifyrc ├── manifest.json └── chrome.optionsUI.html ├── dist └── semantic-ui │ ├── src │ ├── site │ │ ├── modules │ │ │ ├── embed.variables │ │ │ ├── nag.overrides │ │ │ ├── tab.overrides │ │ │ ├── chatroom.overrides │ │ │ ├── dimmer.overrides │ │ │ ├── dropdown.overrides │ │ │ ├── embed.overrides │ │ │ ├── modal.overrides │ │ │ ├── modal.variables │ │ │ ├── nag.variables │ │ │ ├── popup.overrides │ │ │ ├── rating.overrides │ │ │ ├── rating.variables │ │ │ ├── search.overrides │ │ │ ├── search.variables │ │ │ ├── shape.overrides │ │ │ ├── sidebar.overrides │ │ │ ├── sidebar.variables │ │ │ ├── sticky.overrides │ │ │ ├── sticky.variables │ │ │ ├── tab.variables │ │ │ ├── accordion.overrides │ │ │ ├── chatroom.variables │ │ │ ├── checkbox.overrides │ │ │ ├── checkbox.variables │ │ │ ├── dimmer.variables │ │ │ ├── dropdown.variables │ │ │ ├── popup.variables │ │ │ ├── progress.overrides │ │ │ ├── progress.variables │ │ │ ├── shape.variables │ │ │ ├── transition.overrides │ │ │ ├── accordion.variables │ │ │ └── transition.variables │ │ ├── elements │ │ │ ├── flag.variables │ │ │ ├── button.overrides │ │ │ ├── flag.overrides │ │ │ ├── header.overrides │ │ │ ├── icon.overrides │ │ │ ├── image.overrides │ │ │ ├── input.overrides │ │ │ ├── label.overrides │ │ │ ├── loader.overrides │ │ │ ├── rail.overrides │ │ │ ├── reveal.overrides │ │ │ ├── step.overrides │ │ │ ├── container.overrides │ │ │ ├── divider.overrides │ │ │ ├── divider.variables │ │ │ ├── header.variables │ │ │ ├── image.variables │ │ │ ├── input.variables │ │ │ ├── label.variables │ │ │ ├── list.overrides │ │ │ ├── list.variables │ │ │ ├── loader.variables │ │ │ ├── rail.variables │ │ │ ├── reveal.variables │ │ │ ├── segment.overrides │ │ │ ├── segment.variables │ │ │ ├── step.variables │ │ │ ├── container.variables │ │ │ ├── button.variables │ │ │ └── icon.variables │ │ ├── globals │ │ │ ├── reset.overrides │ │ │ ├── reset.variables │ │ │ └── site.variables │ │ ├── views │ │ │ ├── ad.overrides │ │ │ ├── ad.variables │ │ │ ├── card.overrides │ │ │ ├── card.variables │ │ │ ├── feed.overrides │ │ │ ├── feed.variables │ │ │ ├── item.overrides │ │ │ ├── item.variables │ │ │ ├── comment.overrides │ │ │ ├── comment.variables │ │ │ ├── statistic.overrides │ │ │ └── statistic.variables │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── icons.woff │ │ │ │ ├── icons.woff2 │ │ │ │ ├── Lato-Bold.woff2 │ │ │ │ ├── Lato-Italic.woff2 │ │ │ │ ├── Lato-Regular.woff2 │ │ │ │ └── Lato-BoldItalic.woff2 │ │ └── collections │ │ │ ├── form.overrides │ │ │ ├── form.variables │ │ │ ├── grid.overrides │ │ │ ├── grid.variables │ │ │ ├── menu.variables │ │ │ ├── message.overrides │ │ │ ├── table.overrides │ │ │ ├── breadcrumb.overrides │ │ │ ├── breadcrumb.variables │ │ │ ├── message.variables │ │ │ ├── table.variables │ │ │ └── menu.overrides │ ├── themes │ │ ├── chubby │ │ │ ├── collections │ │ │ │ ├── menu.overrides │ │ │ │ ├── form.variables │ │ │ │ ├── form.overrides │ │ │ │ └── menu.variables │ │ │ ├── elements │ │ │ │ ├── header.overrides │ │ │ │ ├── header.variables │ │ │ │ ├── button.overrides │ │ │ │ └── button.variables │ │ │ ├── modules │ │ │ │ ├── accordion.overrides │ │ │ │ └── accordion.variables │ │ │ └── views │ │ │ │ ├── comment.overrides │ │ │ │ └── comment.variables │ │ ├── colored │ │ │ └── modules │ │ │ │ ├── checkbox.overrides │ │ │ │ └── checkbox.variables │ │ ├── default │ │ │ ├── collections │ │ │ │ ├── table.overrides │ │ │ │ ├── form.overrides │ │ │ │ ├── menu.overrides │ │ │ │ ├── message.overrides │ │ │ │ ├── breadcrumb.overrides │ │ │ │ ├── grid.overrides │ │ │ │ └── breadcrumb.variables │ │ │ ├── globals │ │ │ │ ├── reset.variables │ │ │ │ └── site.overrides │ │ │ ├── modules │ │ │ │ ├── chatroom.variables │ │ │ │ ├── tab.overrides │ │ │ │ ├── dimmer.overrides │ │ │ │ ├── embed.overrides │ │ │ │ ├── modal.overrides │ │ │ │ ├── nag.overrides │ │ │ │ ├── popup.overrides │ │ │ │ ├── progress.overrides │ │ │ │ ├── search.overrides │ │ │ │ ├── shape.overrides │ │ │ │ ├── sticky.overrides │ │ │ │ ├── chatroom.overrides │ │ │ │ ├── sidebar.overrides │ │ │ │ ├── sticky.variables │ │ │ │ ├── tab.variables │ │ │ │ ├── transition.variables │ │ │ │ ├── shape.variables │ │ │ │ ├── sidebar.variables │ │ │ │ ├── embed.variables │ │ │ │ ├── nag.variables │ │ │ │ └── dimmer.variables │ │ │ ├── views │ │ │ │ ├── ad.overrides │ │ │ │ ├── card.overrides │ │ │ │ ├── comment.overrides │ │ │ │ ├── feed.overrides │ │ │ │ ├── item.overrides │ │ │ │ ├── statistic.overrides │ │ │ │ └── ad.variables │ │ │ ├── elements │ │ │ │ ├── image.overrides │ │ │ │ ├── input.overrides │ │ │ │ ├── label.overrides │ │ │ │ ├── list.overrides │ │ │ │ ├── rail.overrides │ │ │ │ ├── button.overrides │ │ │ │ ├── container.overrides │ │ │ │ ├── loader.overrides │ │ │ │ ├── reveal.overrides │ │ │ │ ├── segment.overrides │ │ │ │ ├── header.overrides │ │ │ │ ├── flag.variables │ │ │ │ ├── reveal.variables │ │ │ │ ├── rail.variables │ │ │ │ ├── image.variables │ │ │ │ └── divider.variables │ │ │ └── assets │ │ │ │ ├── fonts │ │ │ │ ├── icons.eot │ │ │ │ ├── icons.ttf │ │ │ │ ├── icons.woff │ │ │ │ └── icons.woff2 │ │ │ │ └── images │ │ │ │ └── flags.png │ │ ├── gmail │ │ │ └── collections │ │ │ │ ├── message.overrides │ │ │ │ └── message.variables │ │ ├── material │ │ │ ├── globals │ │ │ │ └── site.overrides │ │ │ ├── collections │ │ │ │ ├── menu.overrides │ │ │ │ └── menu.variables │ │ │ ├── assets │ │ │ │ └── fonts │ │ │ │ │ ├── icons.eot │ │ │ │ │ ├── icons.ttf │ │ │ │ │ └── icons.woff │ │ │ ├── modules │ │ │ │ ├── dropdown.overrides │ │ │ │ ├── modal.overrides │ │ │ │ ├── modal.variables │ │ │ │ └── dropdown.variables │ │ │ └── elements │ │ │ │ ├── icon.variables │ │ │ │ ├── header.overrides │ │ │ │ ├── header.variables │ │ │ │ └── button.overrides │ │ ├── round │ │ │ └── elements │ │ │ │ └── button.overrides │ │ ├── bootstrap3 │ │ │ └── elements │ │ │ │ ├── button.overrides │ │ │ │ └── button.variables │ │ ├── github │ │ │ ├── collections │ │ │ │ ├── grid.variables │ │ │ │ ├── menu.overrides │ │ │ │ ├── table.variables │ │ │ │ ├── breadcrumb.variables │ │ │ │ ├── message.overrides │ │ │ │ ├── form.overrides │ │ │ │ ├── message.variables │ │ │ │ ├── form.variables │ │ │ │ └── menu.variables │ │ │ ├── elements │ │ │ │ ├── segment.overrides │ │ │ │ ├── button.overrides │ │ │ │ ├── label.variables │ │ │ │ ├── image.variables │ │ │ │ ├── header.variables │ │ │ │ ├── icon.variables │ │ │ │ ├── label.overrides │ │ │ │ ├── input.variables │ │ │ │ ├── step.overrides │ │ │ │ ├── step.variables │ │ │ │ ├── input.overrides │ │ │ │ └── segment.variables │ │ │ ├── assets │ │ │ │ └── fonts │ │ │ │ │ ├── octicons.ttf │ │ │ │ │ ├── octicons.woff │ │ │ │ │ └── octicons-local.ttf │ │ │ ├── modules │ │ │ │ ├── popup.variables │ │ │ │ └── dropdown.variables │ │ │ └── globals │ │ │ │ └── site.variables │ │ ├── basic │ │ │ ├── globals │ │ │ │ ├── reset.variables │ │ │ │ └── reset.overrides │ │ │ ├── views │ │ │ │ ├── card.overrides │ │ │ │ └── card.variables │ │ │ ├── elements │ │ │ │ ├── button.overrides │ │ │ │ ├── step.overrides │ │ │ │ ├── icon.variables │ │ │ │ ├── step.variables │ │ │ │ └── button.variables │ │ │ ├── modules │ │ │ │ ├── progress.overrides │ │ │ │ └── progress.variables │ │ │ ├── collections │ │ │ │ ├── table.overrides │ │ │ │ └── table.variables │ │ │ └── assets │ │ │ │ └── fonts │ │ │ │ ├── icons.eot │ │ │ │ ├── icons.ttf │ │ │ │ └── icons.woff │ │ ├── resetcss │ │ │ └── globals │ │ │ │ ├── reset.variables │ │ │ │ └── reset.overrides │ │ ├── flat │ │ │ ├── globals │ │ │ │ └── site.overrides │ │ │ └── collections │ │ │ │ └── form.overrides │ │ ├── classic │ │ │ ├── collections │ │ │ │ ├── table.overrides │ │ │ │ └── table.variables │ │ │ ├── elements │ │ │ │ ├── button.overrides │ │ │ │ ├── header.overrides │ │ │ │ └── header.variables │ │ │ ├── modules │ │ │ │ ├── progress.overrides │ │ │ │ └── progress.variables │ │ │ └── views │ │ │ │ └── card.variables │ │ ├── duo │ │ │ └── elements │ │ │ │ ├── loader.overrides │ │ │ │ └── loader.variables │ │ ├── fixed-width │ │ │ ├── modules │ │ │ │ ├── modal.overrides │ │ │ │ └── modal.variables │ │ │ └── collections │ │ │ │ ├── grid.overrides │ │ │ │ └── grid.variables │ │ ├── raised │ │ │ └── elements │ │ │ │ ├── button.overrides │ │ │ │ └── button.variables │ │ ├── striped │ │ │ └── modules │ │ │ │ ├── progress.variables │ │ │ │ └── progress.overrides │ │ ├── pulsar │ │ │ └── elements │ │ │ │ └── loader.variables │ │ ├── rtl │ │ │ └── globals │ │ │ │ ├── site.overrides │ │ │ │ └── site.variables │ │ ├── instagram │ │ │ └── views │ │ │ │ ├── card.overrides │ │ │ │ └── card.variables │ │ ├── twitter │ │ │ └── elements │ │ │ │ ├── button.overrides │ │ │ │ └── button.variables │ │ ├── bookish │ │ │ └── elements │ │ │ │ ├── header.overrides │ │ │ │ └── header.variables │ │ ├── timeline │ │ │ └── views │ │ │ │ ├── feed.overrides │ │ │ │ └── feed.variables │ │ └── amazon │ │ │ ├── globals │ │ │ └── site.variables │ │ │ └── elements │ │ │ ├── button.overrides │ │ │ └── button.variables │ ├── definitions │ │ ├── globals │ │ │ └── reset.less │ │ ├── elements │ │ │ └── flag.less │ │ └── modules │ │ │ └── sticky.less │ └── theme.less │ ├── tasks │ ├── config │ │ ├── admin │ │ │ ├── oauth.example.js │ │ │ ├── templates │ │ │ │ ├── component-package.js │ │ │ │ ├── less-package.js │ │ │ │ ├── composer.json │ │ │ │ ├── package.json │ │ │ │ ├── bower.json │ │ │ │ ├── css-package.js │ │ │ │ └── README.md │ │ │ └── github.js │ │ ├── docs.js │ │ ├── user.js │ │ └── project │ │ │ └── release.js │ ├── version.js │ ├── clean.js │ ├── collections │ │ ├── README.md │ │ ├── rtl.js │ │ └── build.js │ ├── README.md │ ├── admin │ │ ├── publish.js │ │ ├── release.js │ │ └── register.js │ ├── check-install.js │ ├── build │ │ └── assets.js │ └── build.js │ └── dist │ └── components │ └── tab.min.css ├── img ├── icon32.xcf ├── icon48.xcf ├── screenshots │ ├── v0.2.2 - Low Res.png │ ├── v0.2.2 - Search.png │ ├── v0.2.2 - Std Res.png │ ├── v0.2.2 - High Res.png │ └── promotional screenshot mockup.png └── chrome store │ ├── promotional marquee.png │ ├── webstore 128px icon.png │ ├── promotional large tile.png │ └── promotional small tile.png ├── ui-angular.json ├── .gitmodules ├── .gitignore ├── bower.json ├── tsd.json ├── semantic.json ├── LICENSE ├── .eslintrc.json └── package.json /jsconfig.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/dist/ -------------------------------------------------------------------------------- /appdev/jsconfig.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/embed.variables: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/chubby/collections/menu.overrides: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/colored/modules/checkbox.overrides: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/collections/table.overrides: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/gmail/collections/message.overrides: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/material/globals/site.overrides: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/round/elements/button.overrides: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/bootstrap3/elements/button.overrides: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appdev/app/badges/badges.module.js: -------------------------------------------------------------------------------- 1 | angular.module('ps.badges', ['uiAngular']); 2 | -------------------------------------------------------------------------------- /appdev/app/services/chrome/chrome.app.module.js: -------------------------------------------------------------------------------- 1 | angular.module('chrome', []); 2 | -------------------------------------------------------------------------------- /img/icon32.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/img/icon32.xcf -------------------------------------------------------------------------------- /img/icon48.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/img/icon48.xcf -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/collections/grid.variables: -------------------------------------------------------------------------------- 1 | 2 | @gutterWidth: 1.538rem; -------------------------------------------------------------------------------- /ui-angular.json: -------------------------------------------------------------------------------- 1 | { 2 | "source":"dist/ui-angular/src", 3 | "output":"appdev/dist" 4 | } -------------------------------------------------------------------------------- /appdev/img/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/img/icon16.png -------------------------------------------------------------------------------- /appdev/img/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/img/icon32.png -------------------------------------------------------------------------------- /appdev/img/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/img/icon48.png -------------------------------------------------------------------------------- /appdev/img/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/img/icon128.png -------------------------------------------------------------------------------- /appdev/app/services/chrome/chrome.optionsUI.js: -------------------------------------------------------------------------------- 1 | angular.module('ChromeOptions', ['ps.core.options.clear']); 2 | -------------------------------------------------------------------------------- /appdev/img/logo-jsTree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/img/logo-jsTree.png -------------------------------------------------------------------------------- /appdev/img/ui-angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/img/ui-angular.png -------------------------------------------------------------------------------- /appdev/img/cagdas.senis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/img/cagdas.senis.jpg -------------------------------------------------------------------------------- /appdev/img/emma.songeur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/img/emma.songeur.jpg -------------------------------------------------------------------------------- /appdev/img/gmail-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/img/gmail-icon-128.png -------------------------------------------------------------------------------- /appdev/img/jeremy.clarke.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/img/jeremy.clarke.jpg -------------------------------------------------------------------------------- /appdev/img/logo-AngularJS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/img/logo-AngularJS.png -------------------------------------------------------------------------------- /appdev/img/paul.dhillon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/img/paul.dhillon.jpg -------------------------------------------------------------------------------- /appdev/img/robert.priebs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/img/robert.priebs.jpg -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "dist/ui-angular"] 2 | path = dist/ui-angular 3 | url = https://github.com/PD75/ui-angular 4 | -------------------------------------------------------------------------------- /appdev/.csslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "overqualified-elements": false, 3 | "adjoining-classes": false, 4 | "important": false 5 | } -------------------------------------------------------------------------------- /appdev/img/googleMailBadge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/img/googleMailBadge.png -------------------------------------------------------------------------------- /appdev/img/jquery-mark-dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/img/jquery-mark-dark.gif -------------------------------------------------------------------------------- /appdev/img/logo-semantic-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/img/logo-semantic-ui.png -------------------------------------------------------------------------------- /appdev/dist/Lato/Lato-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/Lato/Lato-Bold.woff2 -------------------------------------------------------------------------------- /appdev/dist/Lato/Lato-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/Lato/Lato-Italic.woff2 -------------------------------------------------------------------------------- /appdev/img/mattias.bengtsson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/img/mattias.bengtsson.jpg -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/flag.variables: -------------------------------------------------------------------------------- 1 | /*------------------- 2 | Flag Variables 3 | --------------------*/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/material/collections/menu.overrides: -------------------------------------------------------------------------------- 1 | @import url(http://fonts.googleapis.com/css?family=Roboto); 2 | -------------------------------------------------------------------------------- /appdev/dist/Lato/Lato-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/Lato/Lato-Regular.woff2 -------------------------------------------------------------------------------- /img/screenshots/v0.2.2 - Low Res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/img/screenshots/v0.2.2 - Low Res.png -------------------------------------------------------------------------------- /img/screenshots/v0.2.2 - Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/img/screenshots/v0.2.2 - Search.png -------------------------------------------------------------------------------- /img/screenshots/v0.2.2 - Std Res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/img/screenshots/v0.2.2 - Std Res.png -------------------------------------------------------------------------------- /appdev/dist/Lato/Lato-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/Lato/Lato-BoldItalic.woff2 -------------------------------------------------------------------------------- /appdev/dist/Lato/LatoLatin-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/Lato/LatoLatin-Bold.woff2 -------------------------------------------------------------------------------- /appdev/dist/Lato/LatoLatin-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/Lato/LatoLatin-Italic.woff2 -------------------------------------------------------------------------------- /img/screenshots/v0.2.2 - High Res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/img/screenshots/v0.2.2 - High Res.png -------------------------------------------------------------------------------- /appdev/dist/Lato/LatoLatin-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/Lato/LatoLatin-Regular.woff2 -------------------------------------------------------------------------------- /img/chrome store/promotional marquee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/img/chrome store/promotional marquee.png -------------------------------------------------------------------------------- /img/chrome store/webstore 128px icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/img/chrome store/webstore 128px icon.png -------------------------------------------------------------------------------- /appdev/app/core/options/app.core.options.module.js: -------------------------------------------------------------------------------- 1 | angular.module('ps.core.options', ['ps.core.service', 'ps.core.options.clear', 'dndLists']); 2 | -------------------------------------------------------------------------------- /appdev/dist/Lato/LatoLatin-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/Lato/LatoLatin-BoldItalic.woff2 -------------------------------------------------------------------------------- /appdev/dist/jstree/themes/default/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/jstree/themes/default/32px.png -------------------------------------------------------------------------------- /appdev/dist/jstree/themes/default/40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/jstree/themes/default/40px.png -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/nag.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/tab.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /img/chrome store/promotional large tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/img/chrome store/promotional large tile.png -------------------------------------------------------------------------------- /img/chrome store/promotional small tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/img/chrome store/promotional small tile.png -------------------------------------------------------------------------------- /appdev/dist/jstree/themes/default/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/jstree/themes/default/throbber.gif -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/button.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/flag.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/header.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/icon.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/image.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/input.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/label.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/loader.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/rail.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/reveal.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/step.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/globals/reset.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/chatroom.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/dimmer.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/dropdown.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/embed.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/modal.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/modal.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/nag.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/popup.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/rating.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/rating.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/search.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/search.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/shape.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/sidebar.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/sidebar.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/sticky.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/sticky.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/tab.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/views/ad.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/views/ad.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/views/card.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/views/card.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/views/feed.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/views/feed.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/views/item.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/views/item.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/basic/globals/reset.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Reset 3 | *******************************/ -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/globals/reset.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Reset 3 | *******************************/ -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/resetcss/globals/reset.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Reset 3 | *******************************/ -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/assets/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/dist/semantic-ui/src/site/assets/fonts/icons.woff -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/collections/form.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/collections/form.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/collections/grid.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/collections/grid.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/collections/menu.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/collections/message.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/collections/table.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/container.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/divider.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/divider.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/header.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/image.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/input.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/label.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/list.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/list.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/loader.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/rail.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/reveal.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/segment.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/segment.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/step.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/globals/reset.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Global Variables 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/accordion.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/chatroom.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/checkbox.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/checkbox.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/dimmer.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/dropdown.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/popup.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/progress.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/progress.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/shape.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/transition.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/views/comment.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/views/comment.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/views/statistic.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/views/statistic.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/basic/views/card.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | 5 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/modules/chatroom.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Chatroom 3 | *******************************/ -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/modules/tab.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Tab Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/views/ad.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/flat/globals/site.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /img/screenshots/promotional screenshot mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/img/screenshots/promotional screenshot mockup.png -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/assets/fonts/icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/dist/semantic-ui/src/site/assets/fonts/icons.woff2 -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/collections/breadcrumb.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/collections/breadcrumb.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/collections/message.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/collections/table.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/container.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/accordion.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/modules/transition.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/basic/elements/button.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | 5 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/basic/modules/progress.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Progress 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/classic/collections/table.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/classic/elements/button.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/classic/elements/header.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/classic/modules/progress.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Progress 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/elements/image.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/elements/input.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/elements/label.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/elements/list.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/elements/rail.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/globals/site.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Global Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/modules/dimmer.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/modules/embed.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Video Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/modules/modal.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/modules/nag.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/modules/popup.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/modules/progress.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Progress 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/modules/search.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/modules/shape.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/modules/sticky.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/views/card.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/views/comment.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/views/feed.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/views/item.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/duo/elements/loader.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/fixed-width/modules/modal.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/elements/segment.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/raised/elements/button.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/striped/modules/progress.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Progress 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/assets/fonts/Lato-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/dist/semantic-ui/src/site/assets/fonts/Lato-Bold.woff2 -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/basic/collections/table.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | 5 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/collections/form.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/collections/menu.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/collections/message.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/elements/button.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/elements/container.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/elements/loader.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/elements/reveal.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/elements/segment.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/modules/chatroom.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/modules/sidebar.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/views/statistic.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/fixed-width/collections/grid.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/elements/button.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | 5 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/assets/fonts/Lato-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/dist/semantic-ui/src/site/assets/fonts/Lato-Italic.woff2 -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/basic/assets/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/dist/semantic-ui/src/themes/basic/assets/fonts/icons.eot -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/basic/assets/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/dist/semantic-ui/src/themes/basic/assets/fonts/icons.ttf -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/collections/breadcrumb.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/collections/grid.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | 5 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/elements/header.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Theme Overrides 3 | *******************************/ 4 | 5 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/elements/label.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | 5 | -------------------------------------------------------------------------------- /appdev/dist/semantic-ui/themes/basic/assets/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/semantic-ui/themes/basic/assets/fonts/icons.eot -------------------------------------------------------------------------------- /appdev/dist/semantic-ui/themes/basic/assets/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/semantic-ui/themes/basic/assets/fonts/icons.ttf -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/assets/fonts/Lato-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/dist/semantic-ui/src/site/assets/fonts/Lato-Regular.woff2 -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/basic/assets/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/dist/semantic-ui/src/themes/basic/assets/fonts/icons.woff -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/assets/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/dist/semantic-ui/src/themes/default/assets/fonts/icons.eot -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/assets/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/dist/semantic-ui/src/themes/default/assets/fonts/icons.ttf -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/assets/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/dist/semantic-ui/src/themes/default/assets/fonts/icons.woff -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/assets/images/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/dist/semantic-ui/src/themes/default/assets/images/flags.png -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/material/assets/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/dist/semantic-ui/src/themes/material/assets/fonts/icons.eot -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/material/assets/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/dist/semantic-ui/src/themes/material/assets/fonts/icons.ttf -------------------------------------------------------------------------------- /appdev/app/app.compile.js: -------------------------------------------------------------------------------- 1 | 2 | angular.module('ps') 3 | .config(function($compileProvider) { 4 | 'use strict'; 5 | $compileProvider.debugInfoEnabled(false); 6 | }); 7 | -------------------------------------------------------------------------------- /appdev/dist/semantic-ui/themes/basic/assets/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/semantic-ui/themes/basic/assets/fonts/icons.woff -------------------------------------------------------------------------------- /appdev/dist/semantic-ui/themes/default/assets/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/semantic-ui/themes/default/assets/fonts/icons.eot -------------------------------------------------------------------------------- /appdev/dist/semantic-ui/themes/default/assets/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/semantic-ui/themes/default/assets/fonts/icons.ttf -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/assets/fonts/Lato-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/dist/semantic-ui/src/site/assets/fonts/Lato-BoldItalic.woff2 -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/assets/fonts/icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/dist/semantic-ui/src/themes/default/assets/fonts/icons.woff2 -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/assets/fonts/octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/dist/semantic-ui/src/themes/github/assets/fonts/octicons.ttf -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/assets/fonts/octicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/dist/semantic-ui/src/themes/github/assets/fonts/octicons.woff -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/material/assets/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/dist/semantic-ui/src/themes/material/assets/fonts/icons.woff -------------------------------------------------------------------------------- /appdev/dist/semantic-ui/themes/default/assets/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/semantic-ui/themes/default/assets/fonts/icons.woff -------------------------------------------------------------------------------- /appdev/dist/semantic-ui/themes/default/assets/fonts/icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/semantic-ui/themes/default/assets/fonts/icons.woff2 -------------------------------------------------------------------------------- /appdev/dist/semantic-ui/themes/default/assets/images/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/semantic-ui/themes/default/assets/images/flags.png -------------------------------------------------------------------------------- /appdev/dist/semantic-ui/themes/github/assets/fonts/octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/semantic-ui/themes/github/assets/fonts/octicons.ttf -------------------------------------------------------------------------------- /appdev/dist/semantic-ui/themes/github/assets/fonts/octicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/semantic-ui/themes/github/assets/fonts/octicons.woff -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/basic/globals/reset.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | 5 | /* No Additonal Resets */ -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/elements/image.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | 5 | @miniWidth: 20px; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/assets/fonts/octicons-local.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/dist/semantic-ui/src/themes/github/assets/fonts/octicons-local.ttf -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/material/modules/dropdown.overrides: -------------------------------------------------------------------------------- 1 | @import url(http://fonts.googleapis.com/css?family=Roboto:400,700); 2 | 3 | .ui.dropdown { 4 | font-family: 'Roboto'; 5 | } -------------------------------------------------------------------------------- /appdev/app/badges/badges.compile.js: -------------------------------------------------------------------------------- 1 | 2 | angular.module('ps.badges') 3 | .config(function($compileProvider) { 4 | 'use strict'; 5 | $compileProvider.debugInfoEnabled(false); 6 | }); 7 | -------------------------------------------------------------------------------- /appdev/app/core/app.core.compile.js: -------------------------------------------------------------------------------- 1 | 2 | angular.module('ps.core') 3 | .config(function($compileProvider) { 4 | 'use strict'; 5 | $compileProvider.debugInfoEnabled(false); 6 | }); 7 | -------------------------------------------------------------------------------- /appdev/dist/semantic-ui/themes/github/assets/fonts/octicons-local.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PD75/practical-startpage/HEAD/appdev/dist/semantic-ui/themes/github/assets/fonts/octicons-local.ttf -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/button.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | 5 | @basicColoredBorderSize: 2px; 6 | -------------------------------------------------------------------------------- /appdev/app/services/chrome/chrome.app.compile.js: -------------------------------------------------------------------------------- 1 | angular.module('chrome') 2 | .config(function($compileProvider) { 3 | 'use strict'; 4 | $compileProvider.debugInfoEnabled(false); 5 | }); 6 | -------------------------------------------------------------------------------- /appdev/app/widgets/widgets/app.widgets.compile.js: -------------------------------------------------------------------------------- 1 | 2 | angular.module('ps.widgets') 3 | .config(function($compileProvider) { 4 | 'use strict'; 5 | $compileProvider.debugInfoEnabled(false); 6 | }); 7 | -------------------------------------------------------------------------------- /appdev/app/core/options/app.core.options.compile.js: -------------------------------------------------------------------------------- 1 | 2 | angular.module('ps.core.options') 3 | .config(function($compileProvider) { 4 | 'use strict'; 5 | $compileProvider.debugInfoEnabled(false); 6 | }); 7 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/elements/icon.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | @src: 5 | url("@{fontPath}/@{fontName}.woff2") format('woff2') 6 | ; -------------------------------------------------------------------------------- /appdev/app/widgets/widgets/editWidget.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | {{$parent.Layout.modalTitle}} 4 |
5 |
6 | 7 |
8 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/chubby/elements/header.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | 5 | @import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro); 6 | -------------------------------------------------------------------------------- /appdev/app/core/options/optionsModal.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | {{$parent.vm.modalTitle}} 4 |
5 |
6 | 7 |
8 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/modules/sticky.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Sticky 3 | *******************************/ 4 | 5 | @transitionDuration: @defaultDuration; 6 | @transition: none; 7 | @zIndex: 800; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/material/modules/modal.overrides: -------------------------------------------------------------------------------- 1 | @import url(http://fonts.googleapis.com/css?family=Roboto); 2 | 3 | .ui.modal .header { 4 | font-family: "Roboto", Arial, Sans-serif !important; 5 | font-weight: 400 !important; 6 | } -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/collections/menu.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | 5 | .ui.menu .item > .label { 6 | box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset; 7 | } -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/collections/menu.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | 5 | .ui.inverted.blue.menu .active.item { 6 | background: @invertedActiveBackground!important; 7 | } 8 | -------------------------------------------------------------------------------- /appdev/app/badges/badges.constants.js: -------------------------------------------------------------------------------- 1 | angular.module('ps.badges') 2 | .constant('badgeConstants', { 3 | badges: { 4 | gmail: { 5 | iconImage: "img/gmail-icon-128.png", 6 | directive: "gmail", 7 | }, 8 | }, 9 | }); 10 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/chubby/modules/accordion.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | 5 | .ui.styled.accordion .accordion .active.title { 6 | border-bottom: 1px solid rgba(0, 0, 0, 0.1); 7 | } -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/elements/header.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Header 3 | *******************************/ 4 | 5 | /*------------------- 6 | Element 7 | --------------------*/ 8 | 9 | @iconMargin: @4px; 10 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/pulsar/elements/loader.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Loader 3 | *******************************/ 4 | 5 | @loaderSpeed: 2s; 6 | @loaderLineColor: @primaryColor; 7 | @invertedLoaderLineColor: @lightPrimaryColor; 8 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/rtl/globals/site.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Global Overrides 3 | *******************************/ 4 | 5 | /* Import Droid Arabic Kufi */ 6 | @import 'http://fonts.googleapis.com/earlyaccess/droidarabickufi.css'; 7 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/chubby/collections/form.variables: -------------------------------------------------------------------------------- 1 | /*------------------- 2 | Form Variables 3 | --------------------*/ 4 | 5 | @labelTextTransform: uppercase; 6 | @labelFontSize: 0.8em; 7 | 8 | @inputPadding: 1em 1.2em; 9 | @inputBorder: 2px solid @borderColor; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/collections/table.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | 5 | @background: #F8F8F8; 6 | 7 | @cellVerticalPadding: @relative6px; 8 | @cellHorizontalPadding: @relative8px; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/material/elements/icon.variables: -------------------------------------------------------------------------------- 1 | @fontPath : '../../themes/material/assets/fonts'; 2 | 3 | @width: 1em; 4 | @height: 1em; 5 | 6 | @small: 13px; 7 | @medium: 16px; 8 | @large: 18px; 9 | @big : 20px; 10 | @huge: 28px; 11 | @massive: 32px; 12 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/basic/elements/step.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | 5 | .ui.steps .step:after { 6 | display: none !important; 7 | } 8 | .ui.steps .step { 9 | border-radius: 500px !important; 10 | } -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/basic/collections/table.variables: -------------------------------------------------------------------------------- 1 | /*------------------- 2 | Table Variables 3 | --------------------*/ 4 | 5 | @headerBackground: @white; 6 | @footerBackground: @white; 7 | 8 | @cellVerticalPadding: 1em; 9 | @cellHorizontalPadding: 1em; 10 | 11 | @stateMarkerWidth: 1px; -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/config/admin/oauth.example.js: -------------------------------------------------------------------------------- 1 | /* 2 | Used to import GitHub Auth Token 3 | To Automate GitHub Updates 4 | */ 5 | 6 | module.exports = { 7 | token : 'AN-OAUTH2-TOKEN', 8 | username : 'github-username', 9 | name : 'Your Name', 10 | email : 'user@email.com' 11 | }; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/collections/breadcrumb.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | 5 | @dividerOpacity: 1; 6 | @dividerSpacing: 0; 7 | @dividerSize: @big; 8 | @dividerColor: inherit; 9 | 10 | @huge: 1.5384em; 11 | 12 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/elements/icon.variables: -------------------------------------------------------------------------------- 1 | @fontPath: '../../themes/github/assets/fonts'; 2 | @fontName: 'octicons'; 3 | @fallbackSRC: ''; 4 | 5 | @width: 1em; 6 | @height: 1em; 7 | 8 | @small: 13px; 9 | @medium: 16px; 10 | @large: 18px; 11 | @big : 20px; 12 | @huge: 28px; 13 | @massive: 32px; -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/version.js: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Version Task 3 | *******************************/ 4 | 5 | var 6 | release = require('./config/project/release') 7 | ; 8 | 9 | module.exports = function(callback) { 10 | console.log(release.title + ' ' + release.version); 11 | }; -------------------------------------------------------------------------------- /appdev/app/widgets/bookmarkTree/bookmarkTree.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | -------------------------------------------------------------------------------- /appdev/app/widgets/bookmarkTree/editBookmarkUrl.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/modules/popup.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Popup 3 | *******************************/ 4 | 5 | 6 | @small: @relative10px; 7 | @medium: @relative11px; 8 | @large: @relative13px; 9 | 10 | @verticalPadding: @relative7px; 11 | @horizontalPadding: @relative11px; 12 | 13 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/modules/tab.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Tab 3 | *******************************/ 4 | 5 | /* Loading */ 6 | @loadingMinHeight: 250px; 7 | @loadingContentPosition: relative; 8 | @loadingContentOffset: -10000px; 9 | 10 | @loaderDistanceFromTop: 100px; 11 | @loaderSize: 2.5em; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/duo/elements/loader.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Loader 3 | *******************************/ 4 | 5 | @shapeBorderColor: @primaryColor @primaryColor @secondaryColor @secondaryColor; 6 | @invertedShapeBorderColor: @lightPrimaryColor @lightPrimaryColor @lightSecondaryColor @lightSecondaryColor; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/elements/label.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Overrides 3 | *******************************/ 4 | 5 | /* Notification Label on GitHub */ 6 | .ui.floating.blue.label { 7 | border: 2px solid #f3f3f3 !important; 8 | background-image: linear-gradient(#7aa1d3, #4078c0) !important; 9 | } -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/collections/message.overrides: -------------------------------------------------------------------------------- 1 | .ui.info.message { 2 | background: linear-gradient(#D8EBF8, #D0E3EF); 3 | } 4 | .ui.error.message { 5 | background: linear-gradient(#F8D8D8, #EFD0D0); 6 | } 7 | .ui.warning.message { 8 | background: linear-gradient(#FFE3C8, #F5DAC0); 9 | } 10 | .ui.success.message { 11 | } 12 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/classic/modules/progress.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Progress 3 | *******************************/ 4 | 5 | @background: rgba(0, 0, 0, 0.05); 6 | @boxShadow: 0px 0px 4px rgba(0, 0, 0, 0.1) inset; 7 | @barBackground: @subtleGradient #888888; 8 | @border: 1px solid @borderColor; 9 | @padding: @relative3px; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/instagram/views/card.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | 5 | 6 | @import url(http://fonts.googleapis.com/css?family=Montserrat:700,400); 7 | 8 | .ui.cards > .card, 9 | .ui.card { 10 | font-family: 'Montserrat'; 11 | font-size-adjust: 0.5; 12 | } -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/modules/transition.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Transition 3 | *******************************/ 4 | 5 | @transitionDefaultEasing: @defaultEasing; 6 | @transitionDefaultFill: both; 7 | @transitionDefaultDuration: 300ms; 8 | 9 | @use3DAcceleration: translateZ(0); 10 | @backfaceVisibility: hidden; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/elements/flag.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Flag 3 | *******************************/ 4 | 5 | /*------------------- 6 | Element 7 | --------------------*/ 8 | 9 | @spritePath: "@{imagePath}/flags.png"; 10 | @width: 16px; 11 | @height: 11px; 12 | @verticalAlign: baseline; 13 | @margin: 0.5em; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/material/collections/menu.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Menu 3 | *******************************/ 4 | 5 | @fontFamily: 'Roboto', Arial, sans-serif; 6 | @boxShadow: 0px 1px 6px rgba(0, 0, 0, 0.2); 7 | @dividerSize: 0px; 8 | 9 | @itemVerticalPadding: @relativeLarge; 10 | @itemHorizontaPadding: @relativeLarge; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/classic/elements/header.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Button 3 | *******************************/ 4 | 5 | /*------------------- 6 | Element 7 | --------------------*/ 8 | 9 | @headerFont: 'Open Sans', Arial, sans-serif; 10 | 11 | @blockBackground: @offWhite @subtleGradient; 12 | @blockBoxShadow: @subtleShadow; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/twitter/elements/button.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | 5 | .ui.primary.button { 6 | box-shadow: 7 | 0px 0px 0px 1px #3B88C3 inset, 8 | 0 2px 0 rgba(255, 255, 255, 0.15) inset 9 | ; 10 | } 11 | .ui.primary.button > .icon { 12 | color: #FFFFFF; 13 | } 14 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/bookish/elements/header.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | 5 | @import url(http://fonts.googleapis.com/css?family=Karma); 6 | 7 | h1.ui.header, 8 | .ui.huge.header { 9 | font-weight: bold; 10 | } 11 | 12 | h2.ui.header, 13 | .ui.large.header { 14 | font-weight: bold; 15 | } -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/material/elements/header.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | 5 | @import url(http://fonts.googleapis.com/css?family=Roboto); 6 | 7 | h1.ui.header, 8 | .ui.huge.header { 9 | font-weight: normal; 10 | } 11 | 12 | h2.ui.header, 13 | .ui.large.header { 14 | font-weight: normal; 15 | } -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/views/ad.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Advertisement 3 | *******************************/ 4 | 5 | @margin: 1em 0em; 6 | @overflow: hidden; 7 | 8 | @testBackground: @lightBlack; 9 | @testColor: @white; 10 | @testFontWeight: bold; 11 | @testText: 'Ad'; 12 | @testFontSize: @relativeMedium; 13 | @testMobileFontSize: @relativeTiny; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/chubby/views/comment.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | 5 | .ui.comments .comment { 6 | border-radius: 0.5em; 7 | box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.1); 8 | } 9 | .ui.comments .comment .comments .comment { 10 | border: 1px solid rgba(0, 0, 0, 0.1); 11 | box-shadow: none; 12 | } -------------------------------------------------------------------------------- /appdev/app/app.module.js: -------------------------------------------------------------------------------- 1 | angular.module('ps', ['ps.core', 'ps.widgets','ps.badges']); 2 | 3 | angular.module('ps') 4 | .config(function($compileProvider) { 5 | 'use strict'; 6 | $compileProvider.imgSrcSanitizationWhitelist(/^\s*(https?|ftp|file):|data:image\/|chrome:|chrome-extension:/); 7 | $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|ftp|mailto|chrome-extension):/); 8 | }); 9 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/basic/modules/progress.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Progress 3 | *******************************/ 4 | 5 | @background: transparent; 6 | @border: none; 7 | @padding: 0em; 8 | 9 | @progressLeft: 0em; 10 | @progressWidth: 100%; 11 | @progressTextAlign: center; 12 | 13 | @labelFontWeight: normal; 14 | @labelTextAlign: left; 15 | @labelHeight: 1.5em; -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/clean.js: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Clean Task 3 | *******************************/ 4 | 5 | var 6 | del = require('del'), 7 | config = require('./config/user'), 8 | tasks = require('./config/tasks') 9 | ; 10 | 11 | // cleans distribution files 12 | module.exports = function(callback) { 13 | return del([config.paths.clean], tasks.settings.del, callback); 14 | }; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/gmail/collections/message.variables: -------------------------------------------------------------------------------- 1 | @background: #F3F3F3; 2 | 3 | @boxShadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset; 4 | @borderRadius: 4px; 5 | @verticalPadding: 7px; 6 | @horizontalPadding: 15px; 7 | 8 | @headerFontSize: 1em; 9 | 10 | @floatingBoxShadow: 0px 2px 4px rgba(0, 0, 0, 0.2); 11 | 12 | @iconSize: 1.5em; 13 | @iconDistance: 1em; 14 | 15 | @warningBackgroundColor: #F9EDBE; 16 | -------------------------------------------------------------------------------- /appdev/app/badges/gmail/gmail.css: -------------------------------------------------------------------------------- 1 | /*psb-gmail > a.item { 2 | padding: .8em 1em !important; 3 | }*/ 4 | 5 | div.menu .item > img { 6 | margin: -0.7rem -0.7rem -0.7rem -0.7rem; 7 | width: auto !important; 8 | height: 1.555rem; 9 | } 10 | 11 | psb-gmail > .popup .meta > .title { 12 | color: rgba(0, 0, 0, 0.4); 13 | } 14 | 15 | psb-gmail > .popup .date { 16 | color: rgba(0, 0, 0, .4); 17 | font-size: .8em; 18 | } 19 | -------------------------------------------------------------------------------- /appdev/app/services/chrome/chrome.i18n.service.js: -------------------------------------------------------------------------------- 1 | (function(angular) { 2 | 'use strict'; 3 | /*eslint camelcase: 0*/ 4 | angular.module('chrome') 5 | .factory('i18n', i18n); 6 | 7 | function i18n() { 8 | 9 | return { 10 | get: get, 11 | }; 12 | 13 | function get(text, placeholders) { 14 | return chrome.i18n.getMessage(text, placeholders); 15 | 16 | } 17 | 18 | } 19 | })(angular); 20 | -------------------------------------------------------------------------------- /appdev/app/widgets/widgets/widgetSearch.css: -------------------------------------------------------------------------------- 1 | div.search { 2 | position: fixed; 3 | } 4 | div.search > a.button { 5 | position: relative; 6 | left: -1.75em; 7 | top: -.75em; 8 | } 9 | div.search > a.button:not(:hover) { 10 | background-color: #000000 !important; 11 | opacity: 0.3; 12 | } 13 | div.search > a.button>i.icon { 14 | opacity: 1 !important; 15 | } 16 | div.search div.input { 17 | width: 12rem; 18 | } 19 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/chubby/collections/form.overrides: -------------------------------------------------------------------------------- 1 | /*------------------- 2 | Form Variables 3 | --------------------*/ 4 | 5 | .ui.form .selection.dropdown { 6 | padding: 1.1em 1.2em; 7 | border-width: 2px; 8 | } 9 | .ui.form .selection.dropdown .menu { 10 | min-width: calc(100% + 4px); 11 | margin: 0 -2px; 12 | border-width: 2px; 13 | } 14 | .ui.form .selection.dropdown input { 15 | padding: inherit; 16 | } -------------------------------------------------------------------------------- /appdev/app/core/app.core.module.js: -------------------------------------------------------------------------------- 1 | angular.module('ps.core', ['ps.core.options', 'ps.core.service', 'chrome', 'uiAngular', 'dndLists']); 2 | 3 | angular.module('ps.core') 4 | .config(function($compileProvider) { 5 | 'use strict'; 6 | $compileProvider.imgSrcSanitizationWhitelist(/^\s*(https?|ftp|file):|data:image\/|chrome:/); 7 | $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|ftp|mailto|chrome-extension):/); 8 | }); 9 | -------------------------------------------------------------------------------- /appdev/app/widgets/widgets/app.widgets.module.js: -------------------------------------------------------------------------------- 1 | angular.module('ps.widgets', ['ps.widgets.constants', 'chrome', 'ngJsTree', 'uiAngular']); 2 | 3 | angular.module('ps.widgets') 4 | .config(function($compileProvider) { 5 | 'use strict'; 6 | $compileProvider.imgSrcSanitizationWhitelist(/^\s*(https?|ftp|file):|data:image\/|chrome:/); 7 | $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|ftp|mailto|chrome-extension):/); 8 | }); 9 | -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/collections/README.md: -------------------------------------------------------------------------------- 1 | ## How to use 2 | 3 | These are collections of tasks that are imported together. 4 | 5 | To import them into gulp: 6 | ```javascript 7 | var 8 | gulp = require('gulp'), 9 | // modified to point to semantic folder 10 | install = require('tasks/collections/install') 11 | ; 12 | gulp = install(gulp); 13 | 14 | // tasks are now injected and ready to be used 15 | gulp.start('install'); 16 | ``` -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/config/admin/templates/component-package.js: -------------------------------------------------------------------------------- 1 | 2 | Package.describe({ 3 | name : 'semantic:ui-{component}', 4 | summary : 'Semantic UI - {Component}: Single component release', 5 | version : '{version}', 6 | git : 'git://github.com/Semantic-Org/UI-{Component}.git', 7 | }); 8 | 9 | Package.onUse(function(api) { 10 | api.versionsFrom('1.0'); 11 | api.addFiles([ 12 | {files} 13 | ], 'client'); 14 | }); 15 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/material/elements/header.variables: -------------------------------------------------------------------------------- 1 | /*------------------- 2 | Header 3 | --------------------*/ 4 | 5 | @headerFont : 'Roboto', Arial, sans-serif; 6 | @fontWeight: normal; 7 | 8 | @iconSize: 2em; 9 | @iconOffset: 0.2em; 10 | @iconAlignment: top; 11 | 12 | @subHeaderFontSize: 1rem; 13 | 14 | 15 | /* HTML Headings */ 16 | @h1 : 2.25rem; 17 | @h2 : 2rem; 18 | @h3 : 1.75rem; 19 | @h4 : 1.5rem; 20 | @h5 : 1.25rem; 21 | 22 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/basic/elements/icon.variables: -------------------------------------------------------------------------------- 1 | /*------------------- 2 | Icon Variables 3 | --------------------*/ 4 | 5 | @fontPath : "../../themes/basic/assets/fonts"; 6 | 7 | @src: 8 | url("@{fontPath}/@{fontName}.eot?#iefix") format('embedded-opentype'), 9 | url("@{fontPath}/@{fontName}.woff") format('woff'), 10 | url("@{fontPath}/@{fontName}.ttf") format('truetype'), 11 | url("@{fontPath}/@{fontName}.svg#icons") format('svg') 12 | ; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/classic/collections/table.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Table 3 | *******************************/ 4 | 5 | /*------------------- 6 | Element 7 | --------------------*/ 8 | 9 | @boxShadow: @subtleGradient; 10 | 11 | @headerBackground: @subtleGradient; 12 | @headerBoxShadow: @subtleShadow; 13 | @footerBoxShadow: 0px -1px 1px 0px rgba(0, 0, 0, 0.05); 14 | @footerBackground: rgba(0, 0, 0, 0.05); 15 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/elements/input.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Input 3 | *******************************/ 4 | 5 | @boxShadow: 0 1px 2px rgba(0, 0, 0, 0.075) inset; 6 | 7 | @verticalPadding: @relative7px; 8 | @horizontalPadding: @relative8px; 9 | 10 | @borderColor: #CCCCCC; 11 | 12 | @focusBorderColor: #51A7E8; 13 | @focusBoxShadow: 14 | 0 1px 2px rgba(0, 0, 0, 0.075) inset, 15 | 0 0 5px rgba(81, 167, 232, 0.5) 16 | ; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/material/elements/button.overrides: -------------------------------------------------------------------------------- 1 | @import url(http://fonts.googleapis.com/css?family=Roboto); 2 | 3 | .ui.primary.button:hover { 4 | box-shadow: 5 | 0px 0px 0px 1px rgba(0, 0, 0, 0.3) inset, 6 | 0px 2px 3px 0px rgba(0, 0, 0, 0.35) !important 7 | ; 8 | } 9 | 10 | .ui.secondary.button:hover { 11 | box-shadow: 12 | 0px 0px 0px 1px rgba(0, 0, 0, 0.2) inset, 13 | 0px 2px 3px 0px rgba(0, 0, 0, 0.3) !important 14 | ; 15 | } -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/basic/elements/step.variables: -------------------------------------------------------------------------------- 1 | /*------------------- 2 | Step Variables 3 | --------------------*/ 4 | 5 | /* Stepss */ 6 | @stepsBorder: none; 7 | @stepsBorderRadius: @circularRadius; 8 | 9 | /* Step */ 10 | @border: none; 11 | @divider: none; 12 | @background: transparent; 13 | @borderRadius: @circularRadius; 14 | @iconDistance: 0.8em; 15 | @arrowDisplay: none; 16 | 17 | @activeBackground: @midWhite; 18 | @activeArrowDisplay: none; 19 | -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/collections/rtl.js: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Define Sub-Tasks 3 | *******************************/ 4 | 5 | module.exports = function(gulp) { 6 | 7 | var 8 | // rtl 9 | buildRTL = require('./../rtl/build'), 10 | watchRTL = require('./../rtl/watch') 11 | ; 12 | 13 | gulp.task('watch-rtl', 'Build all files as RTL', watchRTL); 14 | gulp.task('build-rtl', 'Watch files as RTL ', buildRTL); 15 | 16 | }; 17 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/collections/form.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | 5 | .ui.selection.dropdown { 6 | background-color: #FAFAFA; 7 | box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075) inset; 8 | border-color: #CCCCCC; 9 | } 10 | 11 | .ui.selection.dropdown:focus { 12 | box-shadow: 13 | 0px 1px 2px rgba(0, 0, 0, 0.075) inset, 14 | 0px 0px 5px rgba(81, 167, 232, 0.5) 15 | ; 16 | } -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/material/modules/modal.variables: -------------------------------------------------------------------------------- 1 | @boxShadow: 0px 10px 18px rgba(0, 0, 0, 0.22); 2 | @borderRadius: 0em; 3 | 4 | 5 | @headerBackground: @white; 6 | @headerVerticalPadding: 1.7142rem; 7 | @headerHorizontalPadding: 1.7142rem; 8 | @headerFontWeight: 400; 9 | @headerFontFamily: 'Roboto', "Helvetica Neue", Arial, sans-serif; 10 | @headerBorder: none; 11 | 12 | @contentPadding: 1rem 2rem 2rem; 13 | 14 | @actionBorder: none; 15 | @actionBackground: @white; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/chubby/modules/accordion.variables: -------------------------------------------------------------------------------- 1 | /*------------------- 2 | Accordion Variables 3 | --------------------*/ 4 | 5 | @iconMargin: 0em 0.5em 0em 0em; 6 | 7 | @styledActiveTitleBackground: @subtleGradient; 8 | @styledActiveTitleColor: @primaryColor; 9 | 10 | @styledActiveChildTitleBackground: transparent; 11 | 12 | @styledTitlePadding: 1.25em; 13 | @styledTitleFontWeight: bold; 14 | @styledContentPadding: 1.5em 3.25em; 15 | @styledChildContentPadding: @styledContentPadding; -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/README.md: -------------------------------------------------------------------------------- 1 | ## Tasks 2 | 3 | * Watch - Compile only changed files from source 4 | * Build - Build all files from source 5 | * Version - Output version number 6 | * Install - Run Installer to Set-up Paths 7 | 8 | ## How to use 9 | 10 | These tasks can be imported into your own gulpfile allowing you to avoid using Semantic's build tools 11 | 12 | ```javascript 13 | var 14 | watch = require('path/to/semantic/tasks/watch') 15 | ; 16 | gulp.task('watch ui', watch); 17 | ``` 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | 11 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 12 | .grunt 13 | 14 | # node-waf configuration 15 | .lock-wscript 16 | 17 | # Minified components 18 | /build/ 19 | /release/ 20 | 21 | # Dependency directory 22 | node_modules 23 | bower_components 24 | typings 25 | 26 | # Optional npm cache directory 27 | .npm 28 | 29 | # Optional REPL history 30 | .node_repl_history 31 | -------------------------------------------------------------------------------- /appdev/tsd.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "v4", 3 | "repo": "borisyankov/DefinitelyTyped", 4 | "ref": "master", 5 | "path": "typings", 6 | "bundle": "typings/tsd.d.ts", 7 | "installed": { 8 | "angularjs/angular.d.ts": { 9 | "commit": "9f0f926a12026287b5a4a229e5672c01e7549313" 10 | }, 11 | "jquery/jquery.d.ts": { 12 | "commit": "9f0f926a12026287b5a4a229e5672c01e7549313" 13 | }, 14 | "chrome/chrome.d.ts": { 15 | "commit": "d969b903d1fce89a5e43828ec68458b4f852db4d" 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/chubby/elements/header.variables: -------------------------------------------------------------------------------- 1 | /*------------------- 2 | Header 3 | --------------------*/ 4 | 5 | @headerFont : 'Source Sans Pro', Helvetica Neue, Helvetica, Arial, sans-serif; 6 | @fontWeight: bold; 7 | @textTransform: none; 8 | 9 | /* HTML Headings */ 10 | @h1: 1.33rem; 11 | @h2: 1.2rem; 12 | @h3: 1rem; 13 | @h4: 0.9rem; 14 | @h5: 0.8rem; 15 | 16 | /* Sizing */ 17 | @hugeFontSize: 1.33em; 18 | @largeFontSize: 1.2em; 19 | @mediumFontSize: 1em; 20 | @smallFontSize: 0.9em; 21 | @tinyFontSize: 0.8em; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/rtl/globals/site.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Site Settings 3 | *******************************/ 4 | 5 | /*------------------- 6 | Fonts 7 | --------------------*/ 8 | 9 | @googleFontName : 'Droid Sans'; 10 | 11 | /* Kufi imported in site.overrides */ 12 | @headerFont : 'Droid Arabic Kufi', 'Droid Sans', 'Helvetica Neue', Arial, Helvetica, sans-serif; 13 | @pageFont : 'Droid Arabic Kufi', 'Droid Sans', 'Helvetica Neue', Arial, Helvetica, sans-serif; 14 | 15 | -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/config/admin/templates/less-package.js: -------------------------------------------------------------------------------- 1 | var 2 | where = 'client' // Adds files only to the client 3 | ; 4 | 5 | Package.describe({ 6 | name : 'semantic:ui', 7 | summary : 'Semantic UI - LESS Release of Semantic UI', 8 | version : '{version}', 9 | git : 'git://github.com/Semantic-Org/Semantic-UI-LESS.git', 10 | }); 11 | 12 | Package.onUse(function(api) { 13 | 14 | api.versionsFrom('1.0'); 15 | api.use('less', 'client'); 16 | 17 | api.addFiles([ 18 | {files} 19 | ], 'client'); 20 | 21 | }); 22 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/site/globals/site.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Global Variables 3 | *******************************/ 4 | 5 | /*------------------- 6 | Site Colors 7 | --------------------*/ 8 | 9 | /*--- Colors ---*/ 10 | @black : #000000; 11 | @blue : #1560BD; 12 | @red : #bd1d15; 13 | @purple : #9b15bd; 14 | 15 | /*------------------- 16 | Page 17 | --------------------*/ 18 | 19 | @pageBackground : #f7f7f7; 20 | @importGoogleFonts : false; 21 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/fixed-width/collections/grid.variables: -------------------------------------------------------------------------------- 1 | /* Fixed Page Grid */ 2 | 3 | @mobileWidth: auto; 4 | @mobileMargin: 0em; 5 | @mobileGutter: 0em; 6 | 7 | @tabletWidth: auto; 8 | @tabletMargin: 0em; 9 | @tabletGutter: 8%; 10 | 11 | @computerWidth: 960px; 12 | @computerMargin: auto; 13 | @computerGutter: 0; 14 | 15 | @largeMonitorWidth: 1180px; 16 | @largeMonitorMargin: auto; 17 | @largeMonitorGutter: 0; 18 | 19 | @widescreenMonitorWidth: 1300px; 20 | @widescreenMargin: auto; 21 | @widescreenMonitorGutter: 0; 22 | 23 | @tableWidth: ''; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/instagram/views/card.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Card 3 | *******************************/ 4 | 5 | /*------------------- 6 | View 7 | --------------------*/ 8 | 9 | @borderBoxShadow: none; 10 | @shadowBoxShadow: none; 11 | @boxShadow: none; 12 | 13 | 14 | @internalBorderColor: #EDEDEE; 15 | @border: 1px solid #EDEDEE; 16 | 17 | @contentPadding: 14px 20px; 18 | 19 | @metaColor: #A5A7AA; 20 | 21 | @linkHoverRaiseDistance: 0px; 22 | @linkHoverBoxShadow: none; 23 | @linkHoverBorder: 1px solid #D0D0D8; -------------------------------------------------------------------------------- /appdev/app/widgets/widgets/widget.js: -------------------------------------------------------------------------------- 1 | 2 | angular.module('ps.widgets') 3 | .directive('psWidget', function($compile) { 4 | "use strict"; 5 | return { 6 | restrict: 'E', 7 | link: link, 8 | }; 9 | 10 | function link(scope, element) { 11 | var template = ''; 12 | if (scope.tab.directive) { 13 | template = ''; 14 | } 15 | element.html(template); 16 | $compile(element.contents())(scope); 17 | } 18 | }); 19 | -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/config/admin/templates/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "semantic/ui", 3 | "description" : "Semantic empowers designers and developers by creating a shared vocabulary for UI.", 4 | "homepage" : "http://www.semantic-ui.com", 5 | "authors": [ 6 | { 7 | "name" : "Jack Lukic", 8 | "email": "jacklukic@gmail.com", 9 | "web" : "http://www.jacklukic.com", 10 | "role" : "Creator" 11 | } 12 | ], 13 | "keywords": [ 14 | "semantic", 15 | "ui", 16 | "css", 17 | "framework" 18 | ], 19 | "license" : "MIT" 20 | } -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/material/modules/dropdown.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Menu 3 | *******************************/ 4 | 5 | @menuBorderRadius: @borderRadius; 6 | @menuBorderColor: #DADADA; 7 | @menuBoxShadow: 0px 2px 4px rgba(0, 0, 0, 0.2); 8 | 9 | @menuPadding: @relative8px 0em; 10 | @itemVerticalPadding: 1em; 11 | @itemHorizontalPadding: 1.5em; 12 | 13 | @menuHeaderFontSize: @small; 14 | @menuHeaderFontWeight: bold; 15 | @menuHeaderTextTransform: none; 16 | 17 | @selectionBorderEmWidth: 0em; 18 | @selectionItemDivider: none; 19 | 20 | @labelBoxShadow: none; -------------------------------------------------------------------------------- /appdev/app/widgets/widgets/widgetSearch.html: -------------------------------------------------------------------------------- 1 |
2 | 13 |
14 | -------------------------------------------------------------------------------- /appdev/app/widgets/widgets/editWidget.js: -------------------------------------------------------------------------------- 1 | angular.module('ps.widgets') 2 | .directive('psEditWidget', function($compile) { 3 | "use strict"; 4 | return { 5 | restrict: 'E', 6 | bindToController: true, 7 | link: link, 8 | }; 9 | 10 | function link(scope, element) { 11 | scope.title = scope.$parent.Layout.modalTitle; 12 | var dir = scope.$parent.Layout.modalDirective; 13 | var template = ''; 14 | element.html(template); 15 | $compile(element.contents())(scope); 16 | } 17 | }); 18 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "PracticalStartpage", 3 | "description": "Practical Startpage", 4 | "main": "index.js", 5 | "authors": [ 6 | "Paul Dhillon" 7 | ], 8 | "license": "MIT", 9 | "keywords": [ 10 | "chrome", 11 | "extension", 12 | "startpage", 13 | "angular" 14 | ], 15 | "homepage": "https://github.com/PD75/practical-startpage", 16 | "moduleType": [], 17 | "private": true, 18 | "ignore": [ 19 | "**/.*", 20 | "node_modules", 21 | "bower_components", 22 | "test", 23 | "tests" 24 | ], 25 | "dependencies": { 26 | "x2js": "*" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/classic/views/card.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Card 3 | *******************************/ 4 | 5 | /*------------------- 6 | View 7 | --------------------*/ 8 | 9 | /* Shadow */ 10 | @shadowDistance: 0em; 11 | @padding: 0em; 12 | 13 | /*------------------- 14 | Content 15 | --------------------*/ 16 | 17 | /* Additional Content */ 18 | @extraDivider: 1px solid rgba(0, 0, 0, 0.05); 19 | @extraBackground: #FAFAFA @subtleGradient; 20 | @extraPadding: 0.75em 1em; 21 | @extraBoxShadow: 0 1px 1px rgba(0, 0, 0, 0.15); 22 | @extraColor: @lightTextColor; 23 | -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/config/admin/templates/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "semantic", 3 | "version": "1.0.0", 4 | "title": "Semantic UI", 5 | "description": "Semantic empowers designers and developers by creating a shared vocabulary for UI.", 6 | "homepage": "http://www.semantic-ui.com", 7 | "author": "Jack Lukic ", 8 | "license": "MIT", 9 | "repository": { 10 | "type": "git", 11 | "url": "git://github.com/Semantic-Org/Semantic-UI.git" 12 | }, 13 | "bugs": { 14 | "url": "https://github.com/Semantic-Org/Semantic-UI/issues" 15 | }, 16 | "devDependencies": {} 17 | } 18 | -------------------------------------------------------------------------------- /appdev/app/core/i18n.js: -------------------------------------------------------------------------------- 1 | (function(angular) { 2 | "use strict"; 3 | 4 | angular.module('ps') 5 | .directive('psI18n', i18nDirective); 6 | 7 | function i18nDirective($compile, i18n) { 8 | return { 9 | restrict: 'A', 10 | scope: { 11 | i18n: '@psI18n', 12 | }, 13 | link: link, 14 | }; 15 | 16 | function link(scope, element) { 17 | var template = i18n.get(scope.i18n); 18 | if (template === '') { 19 | template = scope.i18n; 20 | } 21 | element.html(template); 22 | $compile(element.contents())(scope); 23 | } 24 | } 25 | })(angular); 26 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/elements/reveal.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Reveal 3 | *******************************/ 4 | 5 | @transitionDelay: 0.1s; 6 | @transitionDuration: 0.5s; 7 | @transitionEasing: cubic-bezier(0.175, 0.885, 0.320, 1); 8 | @transition: all @transitionDuration @defaultEasing @transitionDelay; 9 | 10 | @bottomZIndex: 2; 11 | @topZIndex: 3; 12 | @activeZIndex: 4; 13 | 14 | /* Types */ 15 | @rotateDegrees: 110deg; 16 | @moveTransition: transform @transitionDuration @transitionEasing @transitionDelay; 17 | @slideTransition: transform @transitionDuration @defaultEasing @transitionDelay; -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/admin/publish.js: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Release All 3 | *******************************/ 4 | 5 | /* 6 | This task update all SUI individual component repos with new versions of components 7 | 8 | * Commits changes from create components to GitHub and Tags 9 | 10 | */ 11 | 12 | var 13 | runSequence = require('run-sequence') 14 | ; 15 | 16 | /* Release All */ 17 | module.exports = function(callback) { 18 | 19 | runSequence( 20 | 'update distributions', // commit less/css versions to github 21 | 'update components', // commit components to github 22 | callback 23 | ); 24 | 25 | }; -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/config/admin/templates/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Component", 3 | "description" : "Component distribution", 4 | "homepage" : "http://www.semantic-ui.com", 5 | "author": { 6 | "name" : "Jack Lukic", 7 | "web" : "http://www.jacklukic.com" 8 | }, 9 | "ignore": [ 10 | "./index.js" 11 | ], 12 | "keywords": [ 13 | "semantic", 14 | "ui", 15 | "css3", 16 | "framework" 17 | ], 18 | "license" : [ 19 | "http://semantic-ui.mit-license.org/" 20 | ], 21 | "ignore": [ 22 | "docs", 23 | "node", 24 | "server", 25 | "spec", 26 | "src", 27 | "test" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /appdev/.jsbeautifyrc: -------------------------------------------------------------------------------- 1 | { 2 | "indent_size": 2, 3 | "indent_char": " ", 4 | "indent_level": 0, 5 | "indent_with_tabs": false, 6 | "preserve_newlines": true, 7 | "max_preserve_newlines": 2, 8 | "jslint_happy": false, 9 | "space_after_anon_function": false, 10 | "brace_style": "collapse", 11 | "keep_array_indentation": false, 12 | "keep_function_indentation": false, 13 | "space_before_conditional": true, 14 | "break_chained_methods": false, 15 | "eval_code": false, 16 | "unescape_strings": false, 17 | "wrap_line_length": 0, 18 | "wrap_attributes": "auto", 19 | "wrap_attributes_indent_size": 4, 20 | "unformatted": [], 21 | "end_with_newline": true 22 | } 23 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/chubby/elements/button.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | 5 | @import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro); 6 | 7 | .ui.labeled.icon.buttons > .button > .icon, 8 | .ui.labeled.icon.button > .icon { 9 | box-shadow: 10 | -1px 0px 0px 0px rgba(255, 255, 255, 0.2) inset, 11 | -1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset 12 | ; 13 | } 14 | 15 | .ui.right.labeled.icon.buttons .button .icon, 16 | .ui.right.labeled.icon.button .icon { 17 | box-shadow: 18 | 1px 0px 0px 0px rgba(255, 255, 255, 0.2) inset, 19 | 1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset 20 | ; 21 | } -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/timeline/views/feed.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | 5 | .ui.feed > .event .label { 6 | border-left: 3px solid #DDDDDD; 7 | } 8 | .ui.feed > .event:last-child .label { 9 | border-left-color: transparent; 10 | } 11 | 12 | .ui.feed > .event > .label { 13 | margin-left: 1.6em; 14 | } 15 | 16 | .ui.feed > .event > .label > img, 17 | .ui.feed > .event > .label > .icon { 18 | background-color: #009FDA; 19 | border-radius: 500rem; 20 | color: #FFFFFF; 21 | width: 3rem; 22 | height: 3rem; 23 | line-height: 1.5; 24 | left: -1.6rem; 25 | opacity: 1; 26 | position: relative; 27 | } 28 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/elements/step.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | 5 | .ui.steps .step:after { 6 | display: none; 7 | } 8 | .ui.steps .completed.step:before { 9 | opacity: 0.5; 10 | } 11 | 12 | .ui.steps .step.active:after { 13 | display: block; 14 | border: none; 15 | border-bottom: 1px solid rgba(0, 0, 0, 0.2); 16 | border-left: 1px solid rgba(0, 0, 0, 0.2); 17 | } 18 | .ui.vertical.steps .step.active:after { 19 | display: block; 20 | border: none; 21 | top: 50%; 22 | right: 0%; 23 | border-left: none; 24 | border-bottom: 1px solid rgba(0, 0, 0, 0.2); 25 | border-right: 1px solid rgba(0, 0, 0, 0.2); 26 | } -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/collections/build.js: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Define Sub-Tasks 3 | *******************************/ 4 | 5 | module.exports = function(gulp) { 6 | 7 | var 8 | // build sub-tasks 9 | buildJS = require('./../build/javascript'), 10 | buildCSS = require('./../build/css'), 11 | buildAssets = require('./../build/assets') 12 | ; 13 | 14 | // in case these tasks are undefined during import, less make sure these are available in scope 15 | gulp.task('build-javascript', 'Builds all javascript from source', buildJS); 16 | gulp.task('build-css', 'Builds all css from source', buildCSS); 17 | gulp.task('build-assets', 'Copies all assets from source', buildAssets); 18 | 19 | }; 20 | -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/check-install.js: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Check Install 3 | *******************************/ 4 | 5 | var 6 | // node dependencies 7 | gulp = require('gulp'), 8 | fs = require('fs'), 9 | console = require('better-console'), 10 | install = require('./config/project/install') 11 | ; 12 | 13 | // export task 14 | module.exports = function() { 15 | 16 | setTimeout(function() { 17 | if( !install.isSetup() ) { 18 | console.log('Starting install...'); 19 | gulp.start('install'); 20 | return; 21 | } 22 | else { 23 | gulp.start('watch'); 24 | } 25 | }, 50); // Delay to allow console.clear to remove messages from check event 26 | 27 | 28 | }; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/elements/step.variables: -------------------------------------------------------------------------------- 1 | /*------------------- 2 | Step Variables 3 | --------------------*/ 4 | 5 | /* Step */ 6 | @background: transparent linear-gradient(transparent, rgba(0, 0, 0, 0.07)); 7 | @verticalPadding: 1em; 8 | 9 | @arrowDisplay: none; 10 | @lastArrowDisplay: none; 11 | @activeArrowDisplay: block; 12 | @activeLastArrowDisplay: block; 13 | 14 | /* Group */ 15 | @stepsBackground: #FFFFFF; 16 | @stepsBoxShadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.15); 17 | 18 | /* States */ 19 | @activeBackground: #FFFFFF; 20 | @activeIconColor: @darkTextColor; 21 | 22 | /* Arrow */ 23 | @arrowTopOffset: 100%; 24 | @arrowRightOffset: 50%; 25 | @arrowBorderColor: rgba(0, 0, 0, 0.2); 26 | @arrowBorderWidth: 0px 0px @borderWidth @borderWidth; 27 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/striped/modules/progress.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Progress 3 | *******************************/ 4 | 5 | .ui.progress .bar { 6 | background-size: 30px 30px; 7 | background-image: 8 | linear-gradient( 9 | 135deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%, 10 | transparent 50%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.08) 75%, 11 | transparent 75%, transparent 12 | ) 13 | ; 14 | } 15 | 16 | .ui.progress.active .bar:after { 17 | animation: none; 18 | } 19 | .ui.progress.active .bar { 20 | animation: progress-striped 3s linear infinite; 21 | } 22 | @keyframes progress-striped { 23 | 0% { 24 | background-position: 0px 0; 25 | } 26 | 100% { 27 | background-position: 60px 0; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/collections/breadcrumb.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Breadcrumb 3 | *******************************/ 4 | 5 | /*------------------- 6 | Breadcrumb 7 | --------------------*/ 8 | 9 | @verticalMargin: 0em; 10 | @display: inline-block; 11 | @verticalAlign: middle; 12 | 13 | @dividerSpacing: @3px; 14 | @dividerOpacity: 0.7; 15 | @dividerColor: @lightTextColor; 16 | 17 | @dividerSize: @relativeSmall; 18 | @dividerVerticalAlign: baseline; 19 | 20 | @iconDividerSize: @relativeTiny; 21 | @iconDividerVerticalAlign: baseline; 22 | 23 | @sectionMargin: 0em; 24 | @sectionPadding: 0em; 25 | 26 | /* Coupling */ 27 | @segmentPadding: @relativeMini @relativeMedium; 28 | 29 | /*------------------- 30 | States 31 | --------------------*/ 32 | 33 | @activeFontWeight: bold; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/flat/collections/form.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | 5 | .ui.form input[type="text"], 6 | .ui.form input[type="email"], 7 | .ui.form input[type="date"], 8 | .ui.form input[type="password"], 9 | .ui.form input[type="number"], 10 | .ui.form input[type="url"], 11 | .ui.form input[type="tel"] { 12 | border-bottom: 1px solid #DDDDDD; 13 | } 14 | 15 | .ui.form .selection.dropdown { 16 | border: none; 17 | box-shadow: none !important; 18 | border-bottom: 1px solid #DDDDDD; 19 | border-radius: 0em !important; 20 | } 21 | .ui.form .selection.dropdown > .menu { 22 | border-top-width: 1px !important; 23 | border-radius: @defaultBorderRadius !important; 24 | } 25 | 26 | .ui.form .ui.icon.input > .icon { 27 | width: 1em; 28 | } -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/collections/message.variables: -------------------------------------------------------------------------------- 1 | @background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.05)) #FEFEFE; 2 | @boxShadow: 3 | 0px 0px 0px 1px rgba(255, 255, 255, 0.3) inset, 4 | 0px 0px 0px 1px rgba(0, 0, 0, 0.2) inset 5 | ; 6 | @verticalPadding: 15px; 7 | @horizontalPadding: 15px; 8 | 9 | @headerFontSize: 1.15em; 10 | 11 | @infoTextColor: #264C72; 12 | @warningTextColor: #613A00; 13 | @errorTextColor: #991111; 14 | 15 | @floatingBoxShadow: 16 | 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset, 17 | 0px 2px 3px 0px rgba(0, 0, 0, 0.1), 18 | 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset 19 | ; 20 | 21 | @infoBorderColor: #97C1DA; 22 | @errorBorderColor: #DA9797; 23 | @warningBorderColor: #DCA874; 24 | 25 | @small: 12px; 26 | @medium: 13px; 27 | @large: 14px; 28 | @huge: 16px; 29 | @massive: 18px; 30 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/raised/elements/button.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Button 3 | *******************************/ 4 | 5 | /*------------------- 6 | Element 7 | --------------------*/ 8 | 9 | @backgroundColor: #F8F8F8; 10 | @backgroundImage: linear-gradient(transparent, rgba(0, 0, 0, 0.05)); 11 | @verticalAlign: middle; 12 | @borderRadius: 0.4em; 13 | @borderBoxShadowColor: @borderColor; 14 | 15 | /* Shadow */ 16 | @shadowDistance: 0.3em; 17 | @verticalPadding: 1em; 18 | @horizontalPadding: 2em; 19 | 20 | /* transition box shadow as well */ 21 | @transition: 22 | opacity @defaultDuration @defaultEasing, 23 | background-color @defaultDuration @defaultEasing, 24 | box-shadow @defaultDuration @defaultEasing, 25 | color @defaultDuration @defaultEasing, 26 | background @defaultDuration @defaultEasing 27 | ; -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/admin/release.js: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Release 3 | *******************************/ 4 | 5 | /* 6 | This task update all SUI individual component repos with new versions of components 7 | 8 | * Initializes repositories with current versions 9 | * Creates local files at ../distributions/ with each repo for release 10 | 11 | */ 12 | 13 | var 14 | runSequence = require('run-sequence') 15 | ; 16 | 17 | /* Release All */ 18 | module.exports = function(callback) { 19 | 20 | runSequence( 21 | //'build', // build Semantic 22 | 'init distributions', // sync with current github version 23 | 'create distributions', // update each repo with changes from master repo 24 | 'init components', // sync with current github version 25 | 'create components', // update each repo 26 | callback 27 | ); 28 | 29 | }; -------------------------------------------------------------------------------- /appdev/app/widgets/rssFeed/rssFeed.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 23 | 24 |
-------------------------------------------------------------------------------- /dist/semantic-ui/tasks/config/admin/github.js: -------------------------------------------------------------------------------- 1 | /******************************* 2 | GitHub Login 3 | *******************************/ 4 | /* 5 | Logs into GitHub using OAuth 6 | */ 7 | 8 | var 9 | fs = require('fs'), 10 | path = require('path'), 11 | githubAPI = require('github'), 12 | 13 | // stores oauth info for GitHub API 14 | oAuthConfig = path.join(__dirname, 'oauth.js'), 15 | oAuth = fs.existsSync(oAuthConfig) 16 | ? require(oAuthConfig) 17 | : false, 18 | github 19 | ; 20 | 21 | if(!oAuth) { 22 | console.error('Must add oauth token for GitHub in tasks/config/admin/oauth.js'); 23 | } 24 | 25 | github = new githubAPI({ 26 | version : '3.0.0', 27 | debug : true, 28 | protocol : 'https', 29 | timeout : 5000 30 | }); 31 | 32 | github.authenticate({ 33 | type: 'oauth', 34 | token: oAuth.token 35 | }); 36 | 37 | module.exports = github; 38 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/basic/views/card.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Card 3 | *******************************/ 4 | 5 | /*------------------- 6 | View 7 | --------------------*/ 8 | 9 | @width: 250px; 10 | @background: transparent; 11 | @border: none; 12 | @boxShadow: none; 13 | 14 | @contentPadding: 1em 0em; 15 | 16 | @rowSpacing: 1.5em; 17 | @groupCardMargin: 0em @horizontalSpacing @rowSpacing; 18 | 19 | @extraBackground: transparent; 20 | @extraDivider: none; 21 | @extraBoxShadow: none; 22 | @extraPadding: 0.5em 0em; 23 | 24 | @extraLinkColor: @textColor; 25 | @extraLinkHoverColor: @linkHoverColor; 26 | 27 | @headerFontSize: @relativeLarge; 28 | @headerLinkColor: @textColor; 29 | @headerLinkHoverColor: @linkHoverColor; 30 | 31 | @imageBorderRadius: @borderRadius; 32 | @imageBorder: 1px solid @borderColor; 33 | 34 | @linkHoverBackground: transparent; 35 | @linkHoverBoxShadow: none; -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/modules/shape.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Shape 3 | *******************************/ 4 | 5 | @display: inline-block; 6 | 7 | /* Animating */ 8 | @perspective: 2000px; 9 | 10 | @duration: 0.6s; 11 | @easing: ease-in-out; 12 | 13 | @hiddenSideOpacity: 0.6; 14 | @animatingZIndex: 100; 15 | 16 | @transition: 17 | transform @duration @easing, 18 | left @duration @easing, 19 | width @duration @easing, 20 | height @duration @easing 21 | ; 22 | @sideTransition: opacity @duration @easing; 23 | @backfaceVisibility: hidden; 24 | 25 | /* Side */ 26 | @sideMargin: 0em; 27 | 28 | /*-------------- 29 | Types 30 | ---------------*/ 31 | 32 | /* Cube */ 33 | @cubeSize: 15em; 34 | @cubeBackground: #E6E6E6; 35 | @cubePadding: 2em; 36 | @cubeTextColor: @textColor; 37 | @cubeBoxShadow: 0px 0px 2px rgba(0, 0, 0, 0.3); 38 | 39 | @cubeTextAlign: center; 40 | @cubeFontSize: 2em; 41 | -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/config/admin/templates/css-package.js: -------------------------------------------------------------------------------- 1 | var 2 | where = 'client' // Adds files only to the client 3 | ; 4 | 5 | Package.describe({ 6 | name : 'semantic:ui-css', 7 | summary : 'Semantic UI - CSS Release of Semantic UI', 8 | version : '{version}', 9 | git : 'git://github.com/Semantic-Org/Semantic-UI-CSS.git', 10 | }); 11 | 12 | Package.onUse(function(api) { 13 | 14 | api.versionsFrom('1.0'); 15 | 16 | api.use('jquery', 'client'); 17 | 18 | api.addFiles([ 19 | // icons 20 | 'themes/default/assets/fonts/icons.eot', 21 | 'themes/default/assets/fonts/icons.svg', 22 | 'themes/default/assets/fonts/icons.ttf', 23 | 'themes/default/assets/fonts/icons.woff', 24 | 'themes/default/assets/fonts/icons.woff2', 25 | 26 | // flags 27 | 'themes/default/assets/images/flags.png', 28 | 29 | // release 30 | 'semantic.css', 31 | 'semantic.js' 32 | ], 'client'); 33 | 34 | }); 35 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/elements/rail.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Rail 3 | *******************************/ 4 | 5 | /*------------------- 6 | Element 7 | --------------------*/ 8 | 9 | @width: 300px; 10 | @height: 100%; 11 | 12 | @distance: 4rem; 13 | @splitDistance: (@distance / 2); 14 | 15 | /*------------------- 16 | Variations 17 | --------------------*/ 18 | 19 | /* Close */ 20 | @closeDistance: 2em; 21 | @veryCloseDistance: 1em; 22 | 23 | @splitCloseDistance: (@closeDistance / 2); 24 | @splitVeryCloseDistance: (@veryCloseDistance / 2); 25 | 26 | @closeWidth: ~"calc("@width~" + "@splitCloseDistance~")"; 27 | @veryCloseWidth: ~"calc("@width~" + "@splitVeryCloseDistance~")"; 28 | 29 | /* Dividing */ 30 | @dividingBorder: 1px solid @borderColor; 31 | @dividingDistance: 5rem; 32 | @splitDividingDistance: (@dividingDistance / 2); 33 | @dividingWidth: @width + @splitDividingDistance; 34 | 35 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/definitions/globals/reset.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * # Semantic UI - Reset 3 | * http://github.com/semantic-org/semantic-ui/ 4 | * 5 | * 6 | * Released under the MIT license 7 | * http://opensource.org/licenses/MIT 8 | * 9 | */ 10 | 11 | /******************************* 12 | Theme 13 | *******************************/ 14 | 15 | @type : 'global'; 16 | @element : 'reset'; 17 | 18 | @import (multiple) '../../theme.config'; 19 | 20 | /******************************* 21 | Reset 22 | *******************************/ 23 | 24 | /* Border-Box */ 25 | *, 26 | *:before, 27 | *:after { 28 | box-sizing: inherit; 29 | } 30 | html { 31 | box-sizing: border-box; 32 | } 33 | 34 | /* iPad Input Shadows */ 35 | input[type="text"], input[type="email"], input[type="search"], input[type="password"] { 36 | -webkit-appearance: none; 37 | -moz-appearance: none; /* mobile firefox too! */ 38 | } 39 | 40 | .loadUIOverrides(); 41 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/elements/input.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Input 3 | *******************************/ 4 | 5 | /* Labeled Input has padding */ 6 | .ui.labeled.input { 7 | background-color: @white; 8 | border: @borderWidth solid @borderColor; 9 | border-radius: @borderRadius !important; 10 | } 11 | .ui.labeled.input input { 12 | box-shadow: none !important; 13 | border: none !important; 14 | } 15 | .ui.labeled.input .label { 16 | font-weight: normal; 17 | align-self: center; 18 | font-size: 12px; 19 | margin: @2px; 20 | border-radius: @borderRadius !important; 21 | padding: @relative5px @relative8px !important; 22 | } 23 | 24 | /* GitHub Uses Focus Group with class name added */ 25 | .ui.labeled.input.focused { 26 | border-color: @focusBorderColor; 27 | box-shadow: @focusBoxShadow; 28 | } 29 | .ui.labeled.input.focused .label { 30 | background-color: #E1EAF5; 31 | color: #4078C0; 32 | } -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/modules/dropdown.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Variable Overrides 3 | *******************************/ 4 | 5 | @transition: 6 | width @defaultDuration @defaultEasing 7 | ; 8 | 9 | @menuPadding: 0px; 10 | 11 | @itemVerticalPadding: @relative8px; 12 | @itemHorizontalPadding: @relative14px; 13 | 14 | @dropdownIconMargin: 0em 0em 0em 2px; 15 | 16 | @raisedBoxShadow: 0px 3px 12px rgba(0, 0, 0, 0.15); 17 | 18 | @menuPadding: @relative5px 0px; 19 | 20 | @menuHeaderMargin: 0em; 21 | @menuHeaderPadding: @relative6px @itemHorizontalPadding; 22 | @menuHeaderFontSize: @relative12px; 23 | @menuHeaderTextTransform: none; 24 | @menuHeaderFontWeight: normal; 25 | @menuHeaderColor: #767676; 26 | 27 | @menuDividerMargin: @relative8px 0em; 28 | 29 | @disabledOpacity: 0.6; 30 | 31 | /* States */ 32 | @hoveredItemBackground: #4078C0; 33 | @hoveredItemColor: @white; 34 | 35 | @pointingArrowSize: @relative9px; 36 | -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/build/assets.js: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Build Task 3 | *******************************/ 4 | 5 | var 6 | gulp = require('gulp'), 7 | 8 | // gulp dependencies 9 | chmod = require('gulp-chmod'), 10 | gulpif = require('gulp-if'), 11 | 12 | // config 13 | config = require('../config/user'), 14 | tasks = require('../config/tasks'), 15 | 16 | // shorthand 17 | globs = config.globs, 18 | assets = config.paths.assets, 19 | output = config.paths.output, 20 | source = config.paths.source, 21 | 22 | log = tasks.log 23 | ; 24 | 25 | module.exports = function(callback) { 26 | 27 | console.info('Building assets'); 28 | 29 | // copy assets 30 | return gulp.src(source.themes + '/**/assets/**/*.*') 31 | .pipe(gulpif(config.hasPermission, chmod(config.permission))) 32 | .pipe(gulp.dest(output.themes)) 33 | ; 34 | 35 | }; -------------------------------------------------------------------------------- /tsd.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "v4", 3 | "repo": "borisyankov/DefinitelyTyped", 4 | "ref": "master", 5 | "path": "typings", 6 | "bundle": "typings/tsd.d.ts", 7 | "installed": { 8 | "orchestrator/orchestrator.d.ts": { 9 | "commit": "d969b903d1fce89a5e43828ec68458b4f852db4d" 10 | }, 11 | "gulp/gulp.d.ts": { 12 | "commit": "d969b903d1fce89a5e43828ec68458b4f852db4d" 13 | }, 14 | "node/node.d.ts": { 15 | "commit": "d969b903d1fce89a5e43828ec68458b4f852db4d" 16 | }, 17 | "q/Q.d.ts": { 18 | "commit": "d969b903d1fce89a5e43828ec68458b4f852db4d" 19 | }, 20 | "webrtc/MediaStream.d.ts": { 21 | "commit": "d969b903d1fce89a5e43828ec68458b4f852db4d" 22 | }, 23 | "filewriter/filewriter.d.ts": { 24 | "commit": "d969b903d1fce89a5e43828ec68458b4f852db4d" 25 | }, 26 | "filesystem/filesystem.d.ts": { 27 | "commit": "d969b903d1fce89a5e43828ec68458b4f852db4d" 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/bookish/elements/header.variables: -------------------------------------------------------------------------------- 1 | /*------------------- 2 | Header 3 | --------------------*/ 4 | 5 | @headerFont : 'Karma', 'Times New Roman', serif; 6 | @fontWeight: normal; 7 | 8 | @iconSize: 1.5em; 9 | @iconOffset: 0.2em; 10 | @iconAlignment: top; 11 | 12 | @subHeaderFontSize: 0.85rem; 13 | 14 | @dividedBorder: 1px dotted rgba(0, 0, 0, 0.2); 15 | 16 | /* Block Header */ 17 | @blockVerticalPadding: 1.3em; 18 | @blockHorizontalPadding: 1em; 19 | 20 | /* Attached */ 21 | @attachedBackground: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.03)) repeat scroll 0 0 #F8F8F8; 22 | @attachedVerticalPadding: 1.3; 23 | @attachedHorizontalPadding: 1em; 24 | 25 | /* HTML Headings */ 26 | @h1: 1.75rem; 27 | @h2: 1.33rem; 28 | @h3: 1.33rem; 29 | @h4: 1rem; 30 | @h5: 0.9rem; 31 | 32 | /* Sizing */ 33 | @hugeFontSize: 1.75em; 34 | @largeFontSize: 1.33em; 35 | @mediumFontSize: 1.33em; 36 | @smallFontSize: 1em; 37 | @tinyFontSize: 0.9em; -------------------------------------------------------------------------------- /appdev/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 2, 3 | "name": "Practical Startpage Dev", 4 | "short_name": "Startpage", 5 | "version": "2.6.3", 6 | "default_locale": "en", 7 | "description": "__MSG_c_ps_slogan__", 8 | "homepage_url": "http://pd75.github.io/#/practical-startpage", 9 | "optional_permissions": [ 10 | "http://ajax.googleapis.com/*", 11 | "https://mail.google.com/mail/feed/atom" 12 | ], 13 | "permissions": [ 14 | "topSites", 15 | "chrome://favicon/", 16 | "tabs", 17 | "bookmarks", 18 | "management", 19 | "history", 20 | "sessions", 21 | "storage" 22 | ], 23 | "icons": { 24 | "16": "img/icon16.png", 25 | "32": "img/icon32.png", 26 | "48": "img/icon48.png", 27 | "128": "img/icon128.png" 28 | }, 29 | "chrome_url_overrides": { 30 | "newtab": "startpage.html" 31 | }, 32 | "options_ui": { 33 | "page": "chrome.optionsUI.html", 34 | "open_in_tab": true 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/colored/modules/checkbox.variables: -------------------------------------------------------------------------------- 1 | /* Checkbox */ 2 | @checkboxActiveBackground: @primaryColor; 3 | @checkboxActiveBorderColor: @primaryColor; 4 | @checkboxActiveCheckColor: @white; 5 | 6 | @checkboxActiveFocusBackground: @primaryColorFocus; 7 | @checkboxActiveFocusBorderColor: @primaryColorFocus; 8 | @checkboxActiveFocusCheckColor: @white; 9 | 10 | @checkboxTransition: none; 11 | 12 | /* Radio */ 13 | @radioActiveBackground: @white; 14 | @radioActiveBorderColor: @primaryColor; 15 | @radioActiveBulletColor: @primaryColor; 16 | 17 | @radioActiveFocusBackground: @white; 18 | @radioActiveFocusBorderColor: @primaryColorFocus; 19 | @radioActiveFocusBulletColor: @primaryColorFocus; 20 | 21 | /* Slider */ 22 | @sliderOnLineColor: @primaryColor; 23 | @sliderOnFocusLineColor: @primaryColorFocus; 24 | 25 | /* Handle */ 26 | @handleBackground: @white @subtleGradient; 27 | @handleBoxShadow: 28 | 0px 0px 0px 1px @selectedBorderColor inset 29 | ; 30 | -------------------------------------------------------------------------------- /appdev/app/widgets/bookmarkTree/bookmarkTree.css: -------------------------------------------------------------------------------- 1 | /*Variables*/ 2 | 3 | 4 | /*JS tree*/ 5 | 6 | a.jstree-anchor:hover, a.jstree-anchor.jstree-clicked { 7 | background: transparent !important; 8 | box-shadow: 0 0 0 2px #1560bd inset !important; 9 | color: #1560bd; 10 | } 11 | .jstree-icon.jstree-themeicon.folder.icon { 12 | font-size: 16px; 13 | } 14 | .jstree-contextmenu { 15 | z-index: 1200; 16 | } 17 | #jstree-marker { 18 | z-index: 1200; 19 | } 20 | ul.vakata-context { 21 | background-color: #ffffff; 22 | box-shadow: 0 0 0 1px rgba(39, 41, 43, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.05); 23 | border: none; 24 | } 25 | ul.vakata-context li > a:hover { 26 | background-color: #ffffff; 27 | color: #1560bd; 28 | box-shadow: 0 0 0 2px #1560bd inset !important; 29 | } 30 | ul.vakata-context .vakata-context-hover > a { 31 | background-color: #ffffff; 32 | box-shadow: none; 33 | } 34 | 35 | /*custom classes*/ 36 | 37 | .editUrl { 38 | position: absolute; 39 | } 40 | -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/config/docs.js: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Docs 3 | *******************************/ 4 | 5 | /* Paths used for "serve-docs" and "build-docs" tasks */ 6 | module.exports = { 7 | base: '', 8 | globs: { 9 | eco: '**/*.html.eco' 10 | }, 11 | paths: { 12 | clean: '../docs/out/dist/', 13 | source: { 14 | config : 'src/theme.config', 15 | definitions : 'src/definitions/', 16 | site : 'src/site/', 17 | themes : 'src/themes/' 18 | }, 19 | output: { 20 | examples : '../docs/out/examples/', 21 | less : '../docs/out/src/', 22 | metadata : '../docs/out/', 23 | packaged : '../docs/out/dist/', 24 | uncompressed : '../docs/out/dist/components/', 25 | compressed : '../docs/out/dist/components/', 26 | themes : '../docs/out/dist/themes/' 27 | }, 28 | template: { 29 | eco: '../docs/server/documents/' 30 | }, 31 | } 32 | }; 33 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/timeline/views/feed.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Feed 3 | *******************************/ 4 | 5 | /*------------------- 6 | Elements 7 | --------------------*/ 8 | 9 | @eventMargin: 0em; 10 | @eventDivider: none; 11 | @eventPadding: 0em; 12 | 13 | /* Event Label */ 14 | @labelWidth: 3em; 15 | @labelHeight: auto; 16 | 17 | @labeledContentMargin: 0.75em 0em 2em 0.75em; 18 | 19 | /* Icon */ 20 | @iconLabelBackground: @primaryColor; 21 | @iconLabelBorderRadius: @circularRadius; 22 | @iconLabelColor: @white; 23 | 24 | /* Metadata Group */ 25 | @metadataDisplay: inline-block; 26 | @metadataMargin: 1em 0em 0em; 27 | @metadataBackground: @white @subtleGradient; 28 | @metadataBorder: 1px solid @solidBorderColor; 29 | @metadataBorderRadius: 0.25em; 30 | @metadataBoxShadow: 0 1px 1px rgba(0, 0, 0, 0.05); 31 | @metadataPadding: 0.5em 1em; 32 | @metadataColor: rgba(0, 0, 0, 0.6); 33 | 34 | /*------------------- 35 | Variations 36 | --------------------*/ 37 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/collections/form.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Form 3 | *******************************/ 4 | 5 | /*------------------- 6 | Elements 7 | --------------------*/ 8 | 9 | @inputBackground: #FAFAFA; 10 | @inputBorder: 1px solid #CCCCCC; 11 | @inputBoxShadow: 0 1px 2px rgba(0, 0, 0, 0.075) inset; 12 | @inputBorderRadius: 3px; 13 | 14 | @labelFontWeight: bold; 15 | @labelDistance: 6px; 16 | 17 | /*------------------- 18 | States 19 | --------------------*/ 20 | 21 | @inputFocusBackground: #FFFFFF; 22 | @inputFocusBoxShadow: 23 | 0px 1px 2px rgba(0, 0, 0, 0.075) inset, 24 | 0px 0px 5px rgba(81, 167, 232, 0.5) 25 | ; 26 | @inputFocusBorderColor: #51A7E8; 27 | @inputFocusBorderRadius: @inputBorderRadius; 28 | 29 | /*------------------- 30 | Types 31 | --------------------*/ 32 | 33 | 34 | /*------------------- 35 | Variations 36 | --------------------*/ 37 | 38 | /*------------------- 39 | Groups 40 | --------------------*/ 41 | -------------------------------------------------------------------------------- /appdev/app/core/options/options.js: -------------------------------------------------------------------------------- 1 | (function(angular) { 2 | 'use strict'; 3 | 4 | angular.module('ps.core.options') 5 | .controller('OptionsCtrl', OptionsCtrl) 6 | .directive('psOptions', optionsDirective); 7 | 8 | function OptionsCtrl($timeout, dataService, i18n) { 9 | var vm = this; 10 | vm.locale = locale; 11 | vm.tab = 'chooseStorage'; 12 | 13 | activate(); 14 | 15 | function activate() { 16 | vm.primaryCol = dataService.data.styles.primaryCol; 17 | $timeout(function() { 18 | vm.modal.modal('refresh'); 19 | }); 20 | } 21 | 22 | function locale(text) { 23 | return i18n.get(text); 24 | } 25 | } 26 | 27 | function optionsDirective() { 28 | return { 29 | restrict: 'E', 30 | templateUrl: 'app/core/options/options.html', 31 | controller: 'OptionsCtrl', 32 | controllerAs: 'vm', 33 | bindToController: true, 34 | scope: { 35 | modal: "=psModal", 36 | }, 37 | }; 38 | } 39 | 40 | })(angular); 41 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/basic/elements/button.variables: -------------------------------------------------------------------------------- 1 | /*------------------- 2 | Button Variables 3 | --------------------*/ 4 | 5 | /* Button Variables */ 6 | @textTransform: none; 7 | @fontWeight: normal; 8 | @textColor: #333333; 9 | 10 | @primaryColor: #333333; 11 | 12 | @borderRadius: 0.25em; 13 | 14 | @backgroundColor: #EEEEEE; 15 | @backgroundImage: none; 16 | @boxShadow: none; 17 | 18 | @hoverBackgroundColor: #DDDDDD; 19 | @hoverBackgroundImage: none; 20 | @hoverBoxShadow: none; 21 | 22 | @downBackgroundColor: #D0D0D0; 23 | @downBackgroundImage: none; 24 | @downBoxShadow: none; 25 | 26 | @activeBackgroundColor: #CCCCCC; 27 | @activeBackgroundImage: none; 28 | @activeBoxShadow: none; 29 | 30 | @verticalBoxShadow: none; 31 | 32 | @loadingBackgroundColor: #F0F0F0; 33 | 34 | @labeledIconLeftShadow: none; 35 | @labeledIconRightShadow: none; 36 | 37 | @mini: 0.6rem; 38 | @tiny: 0.7rem; 39 | @small: 0.85rem; 40 | @medium: 0.92rem; 41 | @large: 1rem; 42 | @big: 1.125rem; 43 | @huge: 1.25rem; 44 | @massive: 1.3rem; 45 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/elements/image.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Image 3 | *******************************/ 4 | 5 | /*------------------- 6 | Element 7 | --------------------*/ 8 | 9 | @placeholderColor: transparent; 10 | @roundedBorderRadius: 0.3125em; 11 | 12 | @imageHorizontalMargin: 0.25rem; 13 | @imageVerticalMargin: 0.5rem; 14 | @imageBorder: 1px solid rgba(0, 0, 0, 0.1); 15 | 16 | /*------------------- 17 | Types 18 | --------------------*/ 19 | 20 | /* Avatar */ 21 | @avatarSize: 2em; 22 | @avatarMargin: 0.25em; 23 | 24 | 25 | /*------------------- 26 | Variations 27 | --------------------*/ 28 | 29 | /* Spaced */ 30 | @spacedDistance: 0.5em; 31 | 32 | /* Floated */ 33 | @floatedHorizontalMargin: 1em; 34 | @floatedVerticalMargin: 1em; 35 | 36 | /* Size */ 37 | @miniWidth: 35px; 38 | @tinyWidth: 80px; 39 | @smallWidth: 150px; 40 | @mediumWidth: 300px; 41 | @largeWidth: 450px; 42 | @bigWidth: 600px; 43 | @hugeWidth: 800px; 44 | @massiveWidth: 960px; 45 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/elements/segment.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Standard 3 | *******************************/ 4 | 5 | /*------------------- 6 | Segment 7 | --------------------*/ 8 | 9 | @segmentBorderWidth: 1px; 10 | @border: 1px solid #D8DEE2; 11 | @boxShadow: 0px 1px 3px rgba(0, 0, 0, 0.075); 12 | 13 | @verticalPadding: 20px; 14 | @horizontalPadding: 20px; 15 | 16 | @borderRadius: 4px; 17 | 18 | /******************************* 19 | Variations 20 | *******************************/ 21 | 22 | 23 | /* Raised */ 24 | @raisedBoxShadow: 0px 1px 3px rgba(0, 0, 0, 0.075); 25 | 26 | /* Colors */ 27 | @coloredBorderSize: 0.5em; 28 | 29 | /* Ordinality */ 30 | @secondaryBackground: #F9F9F9; 31 | @secondaryColor: @textColor; 32 | 33 | @tertiaryBackground: #F0F0F0; 34 | @tertiaryColor: @textColor; 35 | 36 | @secondaryInvertedBackground: #555555; 37 | @secondaryInvertedColor: @textColor; 38 | 39 | @tertiaryInvertedBackground: #333333; 40 | @tertiaryInvertedColor: @textColor; 41 | -------------------------------------------------------------------------------- /appdev/app/core/bottomMenu/bottomMenu.html: -------------------------------------------------------------------------------- 1 |
2 | Practical Startpage 3 |
4 | 7 | 23 | 24 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/modules/sidebar.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Sidebar 3 | *******************************/ 4 | 5 | /*------------------- 6 | Content 7 | --------------------*/ 8 | 9 | /* Animation */ 10 | @perspective: 1500px; 11 | @duration: 500ms; 12 | @easing: @defaultEasing; 13 | 14 | /* Dimmer */ 15 | @dimmerColor: rgba(0, 0, 0, 0.4); 16 | @dimmerTransition: opacity @duration; 17 | 18 | /* Color below page */ 19 | @canvasBackground: @lightBlack; 20 | 21 | /* Shadow */ 22 | @boxShadow: 0px 0px 20px @borderColor; 23 | @horizontalBoxShadow: @boxShadow; 24 | @verticalBoxShadow: @boxShadow; 25 | 26 | /* Layering */ 27 | @bottomLayer: 1; 28 | @middleLayer: 2; 29 | @fixedLayer: 101; 30 | @topLayer: 102; 31 | @dimmerLayer: 1000; 32 | 33 | /*------------------- 34 | Variations 35 | --------------------*/ 36 | 37 | /* Width */ 38 | @veryThinWidth: 60px; 39 | @thinWidth: 150px; 40 | @width: 260px; 41 | @wideWidth: 350px; 42 | @veryWideWidth: 475px; 43 | 44 | /* Height */ 45 | @height: 36px; 46 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/amazon/globals/site.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Global Variables 3 | *******************************/ 4 | 5 | @pageMinWidth : 1049px; 6 | @pageOverflowX : visible; 7 | 8 | @emSize: 13px; 9 | @fontSize : 13px; 10 | @fontName : 'Arial'; 11 | @importGoogleFonts : false; 12 | 13 | @h1: 2.25em; 14 | 15 | @defaultBorderRadius: 0.30769em; /* 4px @ 13em */ 16 | 17 | @disabledOpacity: 0.3; 18 | 19 | @black: #444C55; 20 | @orange: #FDE07B; 21 | 22 | @linkColor: #0066C0; 23 | @linkHoverColor: #C45500; 24 | @linkHoverUnderline: underline; 25 | 26 | @borderColor: rgba(0, 0, 0, 0.13); 27 | @solidBorderColor: #DDDDDD; 28 | @internalBorderColor: rgba(0, 0, 0, 0.06); 29 | @selectedBorderColor: #51A7E8; 30 | 31 | /* Breakpoints */ 32 | @largeMonitorBreakpoint: 1049px; 33 | @computerBreakpoint: @largeMonitorBreakpoint; 34 | @tabletBreakpoint: @largeMonitorBreakpoint; 35 | 36 | /* Colors */ 37 | @blue: #80A6CD; 38 | @green: #60B044; 39 | @orange: #D26911; 40 | 41 | 42 | @infoBackgroundColor: #E6F1F6; 43 | @infoTextColor: #4E575B; -------------------------------------------------------------------------------- /semantic.json: -------------------------------------------------------------------------------- 1 | { 2 | "base": "dist/semantic-ui", 3 | "paths": { 4 | "source": { 5 | "config": "src/theme.config", 6 | "definitions": "src/definitions/", 7 | "site": "src/site/", 8 | "themes": "src/themes/" 9 | }, 10 | "output": { 11 | "packaged": "../../appdev/dist/semantic-ui/", 12 | "uncompressed": "./dist/components/", 13 | "compressed": "./dist/components/", 14 | "themes": "../../appdev/dist/semantic-ui/themes/" 15 | }, 16 | "clean": "../../appdev/dist/semantic-ui/" 17 | }, 18 | "permission": false, 19 | "rtl": false, 20 | "components": [ 21 | "font", 22 | "reset", 23 | "site", 24 | "button", 25 | "checkbox", 26 | "divider", 27 | "form", 28 | "icon", 29 | "image", 30 | "input", 31 | "label", 32 | "list", 33 | "loader", 34 | "message", 35 | "segment", 36 | "table", 37 | "grid", 38 | "menu", 39 | "item", 40 | "dimmer", 41 | "dropdown", 42 | "modal", 43 | "popup", 44 | "tab", 45 | "transition" 46 | ], 47 | "version": "2.2.10" 48 | } -------------------------------------------------------------------------------- /dist/semantic-ui/dist/components/tab.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * # Semantic UI 2.1.8 - Tab 3 | * http://github.com/semantic-org/semantic-ui/ 4 | * 5 | * 6 | * Copyright 2015 Contributors 7 | * Released under the MIT license 8 | * http://opensource.org/licenses/MIT 9 | * 10 | */.ui.tab{display:none}.ui.tab.active,.ui.tab.open{display:block}.ui.tab.loading{position:relative;overflow:hidden;display:block;min-height:250px}.ui.tab.loading *{position:relative!important;left:-10000px!important}.ui.tab.loading.segment:before,.ui.tab.loading:before{position:absolute;content:'';top:100px;left:50%;margin:-1.25em 0 0 -1.25em;width:2.5em;height:2.5em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.tab.loading.segment:after,.ui.tab.loading:after{position:absolute;content:'';top:100px;left:50%;margin:-1.25em 0 0 -1.25em;width:2.5em;height:2.5em;-webkit-animation:button-spin .6s linear;animation:button-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent} -------------------------------------------------------------------------------- /appdev/app/core/layout/layout.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 17 | 18 |
19 |
20 | 21 |
22 | 23 |
24 | 25 |
26 | 27 | -------------------------------------------------------------------------------- /appdev/app/widgets/rssFeed/editRss.html: -------------------------------------------------------------------------------- 1 | 13 | 14 |
15 | 16 |
17 |
18 | 19 |
20 | 21 |
22 | 23 |
24 |
25 |
26 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Paul Dhillon 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "block-scoped-var": 1, 4 | "brace-style": [1, "1tbs"], 5 | "camelcase": 1, 6 | "comma-dangle": [1, "always-multiline"], 7 | "consistent-return": 1, 8 | "curly": 1, 9 | "eol-last": 1, 10 | "eqeqeq": 2, 11 | "no-nested-ternary": 1, 12 | "padded-blocks": 0, 13 | "quotes": 0, 14 | "no-cond-assign": 2, 15 | "no-constant-condition": 2, 16 | "no-duplicate-case": 2, 17 | "no-dupe-keys": 2, 18 | "no-empty-character-class": 2, 19 | "no-empty": 2, 20 | "no-extra-boolean-cast": 2, 21 | "no-extra-semi": 2, 22 | "no-func-assign": 2, 23 | "no-inner-declarations": 1, 24 | "no-invalid-regexp": 2, 25 | "no-regex-spaces": 2, 26 | "no-sparse-arrays": 2, 27 | "no-undef": 2, 28 | "no-unexpected-multiline": 2, 29 | "no-unreachable": 2, 30 | "no-unused-expressions": 2, 31 | "no-unused-vars": 2, 32 | "semi": [2, "always"], 33 | "space-before-function-paren": [1, "never"], 34 | "space-before-blocks": [1, "always"], 35 | "use-isnan": 2, 36 | "valid-typeof": 2 37 | }, 38 | "plugins": [ 39 | "markdown" 40 | ] 41 | } 42 | -------------------------------------------------------------------------------- /appdev/app/core/layout/layout.service.js: -------------------------------------------------------------------------------- 1 | (function(angular) { 2 | 'use strict'; 3 | 4 | angular.module('ps.core') 5 | .service('layoutService', layoutService); 6 | 7 | function layoutService(dataService) { 8 | var s = this; 9 | s.tabCB = {}; 10 | s.setOnTabClick = setOnTabClick; 11 | s.runOnTabClick = runOnTabClick; 12 | s.isActive = isActive; 13 | 14 | function isActive(tab) { 15 | var activeTabs = dataService.data.activeTabs; 16 | var isActive = false; 17 | for (var t = 0; t < activeTabs.length; t++) { 18 | if (tab === activeTabs[t]) { 19 | isActive = true; 20 | } 21 | } 22 | return isActive; 23 | } 24 | 25 | function setOnTabClick(key, fnCB) { 26 | if (angular.isUndefined(s.tabCB[key])) { 27 | s.tabCB[key] = []; 28 | } 29 | s.tabCB[key].push(fnCB); 30 | } 31 | 32 | function runOnTabClick(tab) { 33 | if (angular.isDefined(s.tabCB) && angular.isDefined(s.tabCB[tab])) { 34 | for (var f = 0; f < s.tabCB[tab].length; f++) { 35 | s.tabCB[tab][f](); 36 | } 37 | } 38 | } 39 | } 40 | })(angular); 41 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/definitions/elements/flag.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * # Semantic UI - Flag 3 | * http://github.com/semantic-org/semantic-ui/ 4 | * 5 | * 6 | * Released under the MIT license 7 | * http://opensource.org/licenses/MIT 8 | * 9 | */ 10 | 11 | 12 | /******************************* 13 | Theme 14 | *******************************/ 15 | 16 | @type : 'element'; 17 | @element : 'flag'; 18 | 19 | @import (multiple) '../../theme.config'; 20 | 21 | 22 | /******************************* 23 | Flag 24 | *******************************/ 25 | 26 | i.flag:not(.icon) { 27 | display: inline-block; 28 | 29 | width: @width; 30 | height: @height; 31 | 32 | line-height: @height; 33 | vertical-align: @verticalAlign; 34 | margin: 0em @margin 0em 0em; 35 | 36 | text-decoration: inherit; 37 | 38 | speak: none; 39 | font-smoothing: antialiased; 40 | backface-visibility: hidden; 41 | } 42 | 43 | /* Sprite */ 44 | i.flag:not(.icon):before { 45 | display: inline-block; 46 | content: ''; 47 | background: url(@spritePath) no-repeat -108px -1976px; 48 | width: @width; 49 | height: @height; 50 | } 51 | 52 | .loadUIOverrides(); 53 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/globals/site.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | User Global Variables 3 | *******************************/ 4 | 5 | @pageMinWidth : 1049px; 6 | @pageOverflowX : visible; 7 | 8 | @emSize: 13px; 9 | @fontSize : 13px; 10 | @fontName : 'Arial'; 11 | @importGoogleFonts : false; 12 | 13 | @h1: 2.25em; 14 | 15 | @defaultBorderRadius: 0.2307em; 16 | 17 | @disabledOpacity: 0.3; 18 | 19 | /* Colors */ 20 | @blue: #80A6CD; 21 | @green: #78CB5B; 22 | @orange: #D26911; 23 | @black: #333333; 24 | @primaryColor: @green; 25 | @secondaryColor: @black; 26 | 27 | /* Links */ 28 | @linkColor: #4078C0; 29 | @linkHoverColor: @linkColor; 30 | @linkHoverUnderline: underline; 31 | 32 | /* Borders */ 33 | @borderColor: rgba(0, 0, 0, 0.13); 34 | @solidBorderColor: #DDDDDD; 35 | @internalBorderColor: rgba(0, 0, 0, 0.06); 36 | @selectedBorderColor: #51A7E8; 37 | 38 | /* Breakpoints */ 39 | @largeMonitorBreakpoint: 1049px; 40 | @computerBreakpoint: @largeMonitorBreakpoint; 41 | @tabletBreakpoint: @largeMonitorBreakpoint; 42 | 43 | @infoBackgroundColor: #E6F1F6; 44 | 45 | @infoTextColor: #4E575B; 46 | @warningTextColor: #613A00; 47 | @errorTextColor: #991111; -------------------------------------------------------------------------------- /appdev/app/widgets/browser/topSites.js: -------------------------------------------------------------------------------- 1 | (function(angular) { 2 | "use strict"; 3 | 4 | angular.module('ps.widgets') 5 | .controller("BrowserTopSitesCtrl", BrowserTopSitesCtrl) 6 | .directive('psBrowserTopSites', psBrowserTopSites); 7 | 8 | function BrowserTopSitesCtrl(topSitesService, layoutService) { 9 | var vm = this; 10 | activate(); 11 | 12 | function activate() { 13 | if (layoutService.isActive('topSites')) { 14 | getTopSites(); 15 | } 16 | layoutService.setOnTabClick('topSites', getTopSites); 17 | } 18 | 19 | function getTopSites() { 20 | var promise = topSitesService.topSitesList(); 21 | promise.then(function(topSitesList) { 22 | vm.list = topSitesList; 23 | }); 24 | } 25 | } 26 | 27 | function psBrowserTopSites() { 28 | return { 29 | restrict: 'E', 30 | templateUrl: 'app/widgets/widgets/widgetUrlList.html', 31 | controller: 'BrowserTopSitesCtrl', 32 | controllerAs: 'vm', 33 | scope: { 34 | tab: '=psTab', 35 | col: '=psCol', 36 | style: '=psStyle', 37 | }, 38 | bindToController: true, 39 | }; 40 | } 41 | })(angular); 42 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/twitter/elements/button.variables: -------------------------------------------------------------------------------- 1 | /*------------------- 2 | Global Variables 3 | --------------------*/ 4 | 5 | @pageFont: Helvetica Neue, Helvetica, Arial, sans-serif; 6 | @textColor: #66757F; 7 | @blue: #55ACEE; 8 | 9 | /*------------------- 10 | Button Variables 11 | --------------------*/ 12 | 13 | @backgroundColor: #F5F8FA; 14 | @backgroundImage: linear-gradient(@white, @backgroundColor); 15 | @color: #66757F; 16 | @borderBoxShadowColor: #E1E8ED; 17 | 18 | @textTransform: none; 19 | @fontWeight: bold; 20 | @textColor: #333333; 21 | 22 | @horizontalPadding: 1.284em; 23 | @verticalPadding: 0.8571em; 24 | 25 | @activeBackgroundColor: rgba(0, 0, 0, 0.1); 26 | 27 | @primaryColor: @blue; 28 | @coloredBackgroundImage: @subtleGradient; 29 | 30 | 31 | /*------------------- 32 | States 33 | --------------------*/ 34 | 35 | @hoverBackgroundColor: #E1E8ED; 36 | @hoverBackgroundImage: linear-gradient(@white, @hoverBackgroundColor); 37 | @hoverColor: #292F33; 38 | 39 | @downBackgroundColor: #E1E8ED; 40 | @downColor: #292F33; 41 | @downPressedShadow: 0px 1px 4px rgba(0, 0, 0, 0.2) inset; 42 | 43 | @labeledIconBackgroundColor: rgba(85, 172, 238, 0.05); 44 | @labeledIconBorder: rgba(0, 0, 0, 0.1); 45 | -------------------------------------------------------------------------------- /appdev/app/widgets/bookmarkTree/editBookmarks.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | 20 |
21 |
22 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/amazon/elements/button.overrides: -------------------------------------------------------------------------------- 1 | .ui.button { 2 | background-image: linear-gradient(center top , #F7F8FA, #E7E9EC) repeat scroll 0 0 rgba(0, 0, 0, 0); 3 | } 4 | 5 | .ui.primary.button { 6 | color: #111111; 7 | border: 1px solid; 8 | border-color: #C59F43 #AA8326 #957321; 9 | } 10 | .ui.primary.button:hover { 11 | border-color: #C59F43 #AA8326 #957321; 12 | color: #111111; 13 | } 14 | 15 | .ui.secondary.button { 16 | border: 1px solid; 17 | border-color: #3D444C #2F353B #2C3137; 18 | } 19 | .ui.secondary.button:hover { 20 | border-color: #32373E #24282D #212429; 21 | } 22 | 23 | 24 | .ui.labeled.icon.buttons .button > .icon, 25 | .ui.labeled.icon.button > .icon { 26 | padding-bottom: 0.48em; 27 | padding-top: 0.48em; 28 | position: absolute; 29 | text-align: center; 30 | width: 2em; 31 | height: 2em; 32 | top: 0.35em; 33 | left: 0.4em; 34 | border-radius: 3px; 35 | } 36 | .ui.right.labeled.icon.buttons .button > .icon, 37 | .ui.right.labeled.icon.button > .icon { 38 | left: auto; 39 | right: 0.4em; 40 | border-radius: 3px; 41 | } 42 | 43 | .ui.basic.labeled.icon.buttons .button > .icon, 44 | .ui.basic.labeled.icon.button > .icon { 45 | padding-top: 0.4em !important; 46 | } -------------------------------------------------------------------------------- /appdev/app/core/options/selectWidgets/selectWidgets.css: -------------------------------------------------------------------------------- 1 | /** 2 | * change cursor to move 3 | */ 4 | 5 | .options.layout .ui.label { 6 | margin: 1px 0px 1px 0px; 7 | font-size: .9rem; 8 | width: 100%; 9 | } 10 | 11 | .options.layout [draggable="true"].ui.label { 12 | cursor: move; 13 | } 14 | 15 | .options.layout [draggable="false"].ui.label { 16 | background-color: #ddd; 17 | -webkit-touch-callout: none; 18 | -webkit-user-select: none; 19 | -khtml-user-select: none; 20 | -moz-user-select: none; 21 | -ms-user-select: none; 22 | user-select: none; 23 | } 24 | 25 | .options.layout .ui.label>.icon { 26 | margin-right: .25em; 27 | } 28 | 29 | 30 | /** 31 | * The dnd-list should always have a min-height, 32 | * otherwise you can't drop to it once it's empty 33 | */ 34 | 35 | ps-select-widgets .options.layout [dnd-list] { 36 | min-height: 180px; 37 | } 38 | 39 | 40 | /** 41 | * The dndDraggingSource class will be applied to 42 | * the source element of a drag operation. It makes 43 | * sense to hide it to give the user the feeling 44 | * that he's actually moving it. 45 | */ 46 | 47 | .options.layout .dndDraggingSource { 48 | display: none; 49 | } 50 | 51 | .ui.grid.options.layout { 52 | min-width: 700px 53 | } 54 | -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/build.js: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Build Task 3 | *******************************/ 4 | 5 | var 6 | // dependencies 7 | gulp = require('gulp-help')(require('gulp')), 8 | runSequence = require('run-sequence'), 9 | 10 | // config 11 | config = require('./config/user'), 12 | install = require('./config/project/install'), 13 | 14 | // task sequence 15 | tasks = [] 16 | ; 17 | 18 | 19 | // sub-tasks 20 | if(config.rtl) { 21 | require('./collections/rtl')(gulp); 22 | } 23 | require('./collections/build')(gulp); 24 | 25 | 26 | module.exports = function(callback) { 27 | 28 | console.info('Building Semantic'); 29 | 30 | if( !install.isSetup() ) { 31 | console.error('Cannot find semantic.json. Run "gulp install" to set-up Semantic'); 32 | return 1; 33 | } 34 | 35 | // check for right-to-left (RTL) language 36 | if(config.rtl === true || config.rtl === 'Yes') { 37 | gulp.start('build-rtl'); 38 | return; 39 | } 40 | 41 | if(config.rtl == 'both') { 42 | tasks.push('build-rtl'); 43 | } 44 | 45 | tasks.push('build-javascript'); 46 | tasks.push('build-css'); 47 | tasks.push('build-assets'); 48 | 49 | runSequence(tasks, callback); 50 | }; 51 | -------------------------------------------------------------------------------- /appdev/app/core/options/options.html: -------------------------------------------------------------------------------- 1 | 12 |
13 |
14 | 15 |
16 |
17 | 18 |
19 |
20 | 21 |
22 |
23 | 24 |
25 |
26 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/chubby/collections/menu.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Menu 3 | *******************************/ 4 | 5 | @background: @darkWhite; 6 | @boxShadow: none; 7 | @dividerSize: 0px; 8 | 9 | @verticalBoxShadow: 0px 0px 0px 2px @borderColor inset; 10 | @verticalActiveBoxShadow: none; 11 | 12 | @itemVerticalPadding: 1.25em; 13 | @itemHorizontalPadding: 2em; 14 | @itemFontWeight: bold; 15 | 16 | @activeItemBackground: @primaryColor; 17 | @activeItemTextColor: @white; 18 | @activeHoverItemBackground: @primaryColorHover; 19 | @activeHoverItemColor: @white; 20 | 21 | @secondaryItemPadding: @relativeSmall @relativeMedium; 22 | 23 | @secondaryActiveItemBackground: @primaryColor; 24 | @secondaryActiveItemColor: @white; 25 | @secondaryActiveHoverItemBackground: @primaryColorHover; 26 | @secondaryActiveHoverItemColor: @white; 27 | 28 | @secondaryPointingBorderWidth: 4px; 29 | @secondaryPointingActiveBorderColor: @primaryColor; 30 | @secondaryPointingActiveTextColor: @primaryColor; 31 | 32 | @arrowSize: 1em; 33 | @arrowActiveColor: @primaryColor; 34 | @arrowActiveHoverColor: @primaryColorHover; 35 | @arrowBorder: transparent; 36 | 37 | @paginationActiveBackground: @lightGrey; 38 | 39 | @borderColor: @darkWhite; 40 | @tabularBorderWidth: 2px; -------------------------------------------------------------------------------- /appdev/app/widgets/bookmarkTree/bookmark.constants.js: -------------------------------------------------------------------------------- 1 | /*eslint camelcase: 0*/ 2 | angular.module('ps.widgets') 3 | .constant('bookmarkConstant', { 4 | treeConfig: { 5 | 'core': { 6 | 'animation': 100, 7 | }, 8 | version: 1, 9 | "search": { 10 | "show_only_matches": true, 11 | }, 12 | 'types': { 13 | '#': { 14 | valid_children: ['root'], 15 | }, 16 | 'root': { 17 | valid_children: ['folder', 'link'], 18 | }, 19 | 'folder': { 20 | valid_children: ['folder', 'link'], 21 | }, 22 | 'link': { 23 | valid_children: [], 24 | }, 25 | }, 26 | }, 27 | 28 | editButtons: [{ 29 | label: 'edit', 30 | icon: 'edit', 31 | }, { 32 | label: 'editUrl', 33 | icon: 'world', 34 | }, { 35 | label: 'newFolder', 36 | icon: 'folder outline', 37 | }, { 38 | label: 'delete', 39 | icon: 'erase', 40 | }, { 41 | label: 'undoAll', 42 | icon: 'undo', 43 | }, { 44 | label: 'save', 45 | icon: 'inverse save', 46 | }, { 47 | label: 'saveClose', 48 | icon: 'save', 49 | }, { 50 | label: 'close', 51 | icon: 'remove', 52 | }], 53 | }); 54 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/chubby/views/comment.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Comments 3 | *******************************/ 4 | 5 | /*------------------- 6 | Elements 7 | --------------------*/ 8 | 9 | /* Comment */ 10 | @commentBackground: #FFFFFF; 11 | @commentMargin: 1em 0em 0em; 12 | @commentPadding: 1em 1.5em; 13 | @commentBorder: 1px solid rgba(0, 0, 0, 0.1); 14 | @commentDivider: 1px solid rgba(0, 0, 0, 0.1); 15 | @firstCommentMargin: 1em; 16 | @firstCommentPadding: 1em; 17 | 18 | /* Nested Comment */ 19 | @nestedCommentsMargin: 0em 0em 0.5em 0.5em; 20 | @nestedCommentsPadding: 1em 0em 0em 1em; 21 | @nestedCommentBackground: #F0F0F0; 22 | 23 | /* Avatar */ 24 | @avatarWidth: 3.5em; 25 | @avatarSpacing: 1.5em; 26 | @avatarBorderRadius: @circularRadius; 27 | 28 | /* Content */ 29 | @contentMargin: @avatarWidth + @avatarSpacing; 30 | 31 | /* Author */ 32 | @authorFontSize: 1em; 33 | @authorColor: @primaryColor; 34 | @authorHoverColor: @primaryColorHover; 35 | @authorFontWeight: bold; 36 | 37 | @metadataDisplay: block; 38 | @metadataSpacing: 0em; 39 | @metadataColor: @textColor; 40 | 41 | /*------------------- 42 | Variations 43 | --------------------*/ 44 | 45 | /* Threaded */ 46 | @threadedCommentMargin: -1.5em 0 -1em (@avatarWidth / 2); 47 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/elements/divider.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Divider 3 | *******************************/ 4 | 5 | /*------------------- 6 | Element 7 | --------------------*/ 8 | 9 | @margin: 1rem 0rem; 10 | 11 | @highlightWidth: 1px; 12 | @highlightColor: @whiteBorderColor; 13 | 14 | @shadowWidth: 1px; 15 | @shadowColor: @borderColor; 16 | 17 | /* Text */ 18 | @letterSpacing: 0.05em; 19 | @fontWeight: bold; 20 | @color: @darkTextColor; 21 | @textTransform: uppercase; 22 | 23 | /*------------------- 24 | Coupling 25 | --------------------*/ 26 | 27 | /* Icon */ 28 | @dividerIconSize: 1rem; 29 | @dividerIconMargin: 0rem; 30 | 31 | 32 | /******************************* 33 | Variations 34 | *******************************/ 35 | 36 | /* Horizontal / Vertical */ 37 | @horizontalMargin: ''; 38 | @horizontalDividerMargin: 1em; 39 | @horizontalRulerOffset: ~"calc(-50% - "(@horizontalDividerMargin)~")"; 40 | 41 | @verticalDividerMargin: 1rem; 42 | @verticalDividerHeight: ~"calc(100% - "(@verticalDividerMargin)~")"; 43 | 44 | /* Inverted */ 45 | @invertedTextColor: @white; 46 | @invertedHighlightColor: rgba(255, 255, 255, 0.15); 47 | @invertedShadowColor: @borderColor; 48 | 49 | /* Section */ 50 | @sectionMargin: 2rem; 51 | 52 | /* Sizes */ 53 | @medium: 1rem; -------------------------------------------------------------------------------- /appdev/app/services/chrome/chrome.history.services.js: -------------------------------------------------------------------------------- 1 | (function(angular) { 2 | 'use strict'; 3 | 4 | angular.module('chrome') 5 | .factory('historyService', historyService); 6 | 7 | function historyService($q, sharedService) { 8 | return { 9 | historyList: historyList, 10 | getVisits: getVisits, 11 | monitorHistory: monitorHistory, 12 | }; 13 | 14 | function historyList(param) { 15 | var chromeParam = {}; 16 | chromeParam.text = param.searchText; 17 | chromeParam.startTime = param.startDate; 18 | chromeParam.maxResults = param.maxResults; 19 | var deferred = $q.defer(); 20 | chrome.history.search(chromeParam, 21 | function(response) { 22 | var list = sharedService.populateList(response); 23 | deferred.resolve(list); 24 | }); 25 | return deferred.promise; 26 | } 27 | 28 | function getVisits(url) { 29 | var deferred = $q.defer(); 30 | chrome.history.getVisits({ url: url }, function(visits) { 31 | deferred.resolve(visits); 32 | }); 33 | return deferred.promise; 34 | } 35 | 36 | function monitorHistory(addHistoryCB) { 37 | chrome.history.onVisited.addListener(function(historyItem) { 38 | addHistoryCB(historyItem); 39 | }); 40 | } 41 | } 42 | 43 | })(angular); 44 | -------------------------------------------------------------------------------- /appdev/app/core/bottomMenu/help.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | {{$parent.vm.modalTitle || $parent.Layout.modalTitle}} 4 |
5 |
6 |
7 |

8 | 9 |

10 |

11 | Practical Startpage 12 |

13 |
14 |
15 | 16 |
17 |
{{item.title}}
18 |
19 | {{item.text}} 20 |
21 |
22 |
23 | 24 |
25 |

26 | 27 | {{vm.widgetTitle}} 28 |

29 |
30 |
31 | 32 |
33 |
{{item.title}}
34 |
35 |
36 |
37 |
38 |
39 |
40 | -------------------------------------------------------------------------------- /appdev/app/widgets/browser/closedTabs.js: -------------------------------------------------------------------------------- 1 | (function(angular) { 2 | "use strict"; 3 | 4 | angular.module('ps.widgets') 5 | .controller("BrowserClosedCtrl", BrowserClosedCtrl) 6 | .directive('psBrowserClosedTabs', BrowserClosedTabsDirective); 7 | 8 | function BrowserClosedCtrl(closedTabsService, layoutService) { 9 | var vm = this; 10 | vm.loading = true; 11 | vm.callbackSet = false; 12 | activate(); 13 | 14 | function activate() { 15 | if (layoutService.isActive('closedTabs')) { 16 | getClosed(); 17 | } 18 | closedTabsService.monitorClosedTabs(getClosed); 19 | layoutService.setOnTabClick('closedTabs', getClosed); 20 | } 21 | 22 | function getClosed() { 23 | var promise = closedTabsService.closedTabsList(); 24 | promise.then(function(closedTabsList) { 25 | vm.list = closedTabsList; 26 | vm.loading = false; 27 | }); 28 | } 29 | } 30 | 31 | function BrowserClosedTabsDirective() { 32 | return { 33 | restrict: 'E', 34 | templateUrl: 'app/widgets/widgets/widgetUrlList.html', 35 | controller: 'BrowserClosedCtrl', 36 | controllerAs: 'vm', 37 | scope: { 38 | tab: '=psTab', 39 | col: '=psCol', 40 | style: '=psStyle', 41 | }, 42 | bindToController: true, 43 | }; 44 | } 45 | })(angular); 46 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/chubby/elements/button.variables: -------------------------------------------------------------------------------- 1 | /*------------------- 2 | Button Variables 3 | --------------------*/ 4 | 5 | /* Button Variables */ 6 | @pageFont: 'Source Sans Pro', Arial, sans-serif; 7 | 8 | @textTransform: none; 9 | @fontWeight: normal; 10 | @textColor: #333333; 11 | 12 | @verticalPadding: 1.1em; 13 | @horizontalPadding: 2.5em; 14 | @invertedBorderSize: 3px; 15 | 16 | @basicBorderRadius: 0.4em; 17 | @basicFontWeight: bold; 18 | @basicTextTransform: uppercase; 19 | 20 | @blue: #4A88CB; 21 | @primaryColor: @blue; 22 | 23 | @borderRadius: 0.25em; 24 | 25 | @backgroundColor: #E6EAED; 26 | @backgroundImage: none; 27 | @boxShadow: none; 28 | 29 | @hoverBackgroundColor: #DDDDDD; 30 | @hoverBackgroundImage: none; 31 | @hoverBoxShadow: none; 32 | 33 | @downBackgroundColor: #D0D0D0; 34 | @downBackgroundImage: none; 35 | @downBoxShadow: none; 36 | 37 | @activeBackgroundColor: #CCCCCC; 38 | @activeBackgroundImage: none; 39 | @activeBoxShadow: none; 40 | 41 | @verticalBoxShadow: none; 42 | 43 | @loadingBackgroundColor: #F0F0F0; 44 | 45 | @compactVerticalPadding: (@verticalPadding * 0.5); 46 | @compactHorizontalPadding: (@horizontalPadding * 0.5); 47 | 48 | @labeledIconBackgroundColor: transparent; 49 | 50 | @mini: 0.7rem; 51 | @tiny: 0.75rem; 52 | @small: 0.8rem; 53 | @medium: 0.92rem; 54 | @large: 1rem; 55 | @big: 1.125rem; 56 | @huge: 1.2rem; 57 | @massive: 1.3rem; 58 | -------------------------------------------------------------------------------- /appdev/app/core/bottomMenu/help.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | "use strict"; 3 | 4 | angular 5 | .module('ps.core') 6 | .controller("HelpCtrl", HelpCtrl) 7 | .directive('psHelp', helpDirective); 8 | 9 | function HelpCtrl($sce, dataService, i18n) { 10 | var vm = this; 11 | 12 | activate(); 13 | 14 | function activate() { 15 | var widgets = dataService.data.widgets; 16 | var h = 0; 17 | vm.widgetTitle = i18n.get('Widgets'); 18 | vm.widgets = []; 19 | angular.forEach(widgets, function(widget) { 20 | vm.widgets[h] = { 21 | icon: widget.icon, 22 | title: widget.title, 23 | html: $sce.trustAsHtml(widget.help), 24 | }; 25 | h++; 26 | }); 27 | vm.startpage = [{ 28 | icon: 'block layout', 29 | title: i18n.get('c_help_title_0'), 30 | text: i18n.get('c_help_text_0'), 31 | }, { 32 | icon: 'maximize layout', 33 | title: i18n.get('c_help_title_1'), 34 | text: i18n.get('c_help_text_1'), 35 | }, { 36 | icon: 'columns layout', 37 | title: i18n.get('c_help_title_2'), 38 | text: i18n.get('c_help_text_2'), 39 | }]; 40 | } 41 | } 42 | 43 | function helpDirective() { 44 | return { 45 | restrict: 'A', 46 | controller: 'HelpCtrl', 47 | controllerAs: 'vm', 48 | }; 49 | } 50 | })(); 51 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "PracticalStartpage", 3 | "version": "2.6.3", 4 | "description": "Flexible start page that makes your data available in a single view.", 5 | "repository": { 6 | "type": "git", 7 | "url": "https://github.com/PD75/practical-startpage.git" 8 | }, 9 | "main": "startpage.js", 10 | "scripts": { 11 | "install": "gulp install", 12 | "update": "gulp update" 13 | }, 14 | "author": "Paul Dhillon", 15 | "license": "MIT", 16 | "dependencies": { 17 | "angular": "1", 18 | "angular-drag-and-drop-lists": "1", 19 | "jquery": "2", 20 | "jstree": "3", 21 | "ng-js-tree": "0", 22 | "semantic-ui": "2" 23 | }, 24 | "devDependencies": { 25 | "del": "*", 26 | "eslint": "*", 27 | "eslint-config-angular": "*", 28 | "eslint-plugin-angular": "*", 29 | "eslint-plugin-html": "*", 30 | "eslint-plugin-markdown": "*", 31 | "gulp": "*", 32 | "gulp-angular-filesort": "*", 33 | "gulp-concat": "*", 34 | "gulp-csslint": "*", 35 | "gulp-cssnano": "*", 36 | "gulp-eslint": "*", 37 | "gulp-html-replace": "*", 38 | "gulp-htmllint": "*", 39 | "gulp-htmlmin": "*", 40 | "gulp-json-editor": "*", 41 | "gulp-less": "*", 42 | "gulp-load-plugins": "*", 43 | "gulp-ng-annotate": "*", 44 | "gulp-rename": "*", 45 | "gulp-replace": "*", 46 | "gulp-uglify": "*", 47 | "gulp-zip": "*", 48 | "run-sequence": "*" 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/resetcss/globals/reset.overrides: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Overrides 3 | *******************************/ 4 | 5 | /** 6 | * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) 7 | * http://cssreset.com 8 | */ 9 | 10 | html, body, div, span, applet, object, iframe, 11 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 12 | a, abbr, acronym, address, big, cite, code, 13 | del, dfn, em, img, ins, kbd, q, s, samp, 14 | small, strike, strong, sub, sup, tt, var, 15 | b, u, i, center, 16 | dl, dt, dd, ol, ul, li, 17 | fieldset, form, label, legend, 18 | table, caption, tbody, tfoot, thead, tr, th, td, 19 | article, aside, canvas, details, embed, 20 | figure, figcaption, footer, header, hgroup, 21 | menu, nav, output, ruby, section, summary, 22 | time, mark, audio, video { 23 | margin: 0; 24 | padding: 0; 25 | border: 0; 26 | font-size: 100%; 27 | font: inherit; 28 | vertical-align: baseline; 29 | } 30 | /* HTML5 display-role reset for older browsers */ 31 | article, aside, details, figcaption, figure, 32 | footer, header, hgroup, menu, nav, section { 33 | display: block; 34 | } 35 | body { 36 | line-height: 1; 37 | } 38 | ol, ul { 39 | list-style: none; 40 | } 41 | blockquote, q { 42 | quotes: none; 43 | } 44 | blockquote:before, blockquote:after, 45 | q:before, q:after { 46 | content: ''; 47 | content: none; 48 | } 49 | table { 50 | border-collapse: collapse; 51 | border-spacing: 0; 52 | } -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/config/admin/templates/README.md: -------------------------------------------------------------------------------- 1 | # Semantic {Component} 2 | 3 | This repository contains pre-compiled {component} files using the default themes. This is intended for use in projects that do not need all the bells and whistles of Semantic UI, and want to keep file size to a minimum. 4 | 5 | For the latest changes please see the [Release Notes](https://github.com/Semantic-Org/UI-{Component}/blob/master/RELEASE-NOTES.md) 6 | 7 | **Special Note** 8 | An update in `2.0.8` has fixed an issue which may have prevented some single component modules from working correctly. Please see notes in [this pull request](https://github.com/Semantic-Org/Semantic-UI/pull/2816). 9 | 10 | If you're looking for the full version of Semantic including all components and build tools [check out the main project repository](https://github.com/Semantic-Org/Semantic-UI/tree/1.0) 11 | 12 | #### To install with Bower 13 | ``` 14 | bower install semantic-ui-{component} 15 | ``` 16 | 17 | #### To install with NPM 18 | ``` 19 | npm install semantic-ui-{component} 20 | ``` 21 | 22 | #### To install with Meteor 23 | ``` 24 | meteor add semantic:ui-{component} 25 | ``` 26 | 27 | 28 | ## Addendum 29 | 30 | This element's definitions (required class names, html structures) are available in the [UI Docs](http://www.semantic-ui.com) 31 | 32 | Please consider checking out [all the benefits to theming](http://www.learnsemantic.com/guide/expert.html) before using these stand-alone releases. 33 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/modules/embed.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Video 3 | *******************************/ 4 | 5 | /*------------------- 6 | Element 7 | --------------------*/ 8 | 9 | /* Simple */ 10 | @background: @lightGrey; 11 | @transitionDuration: 0.5s; 12 | @transitionEasing: @defaultEasing; 13 | 14 | /* Placeholder */ 15 | @placeholderUnderlay: @background; 16 | 17 | /* Placeholder Overlayed Background */ 18 | @placeholderBackground: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3)); 19 | @placeholderBackgroundOpacity: 0.5; 20 | @placeholderBackgroundTransition: opacity @transitionDuration @transitionEasing; 21 | 22 | /* Icon */ 23 | @iconBackground: @veryStrongTransparentBlack; 24 | @iconSize: 6rem; 25 | @iconTransition: 26 | opacity @transitionDuration @transitionEasing, 27 | color @transitionDuration @transitionEasing 28 | ; 29 | @iconColor: @white; 30 | @iconShadow: 31 | 0px 2px 10px rgba(34, 36, 38, 0.2) 32 | ; 33 | @iconZIndex: 10; 34 | 35 | /*------------------- 36 | States 37 | --------------------*/ 38 | 39 | /* Hover */ 40 | @hoverPlaceholderBackground: @placeholderBackground; 41 | @hoverPlaceholderBackgroundOpacity: 1; 42 | @hoverIconColor: @white; 43 | 44 | 45 | /*------------------- 46 | Variations 47 | --------------------*/ 48 | 49 | /* Aspect Ratios */ 50 | @squareRatio: (1/1) * 100%; 51 | @widescreenRatio: (9/16) * 100%; 52 | @ultraWidescreenRatio: (9/21) * 100%; 53 | @standardRatio: (3/4) * 100%; -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/admin/register.js: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Register PM 3 | *******************************/ 4 | 5 | /* 6 | Task to register component repos with Package Managers 7 | * Registers component with bower 8 | * Registers component with NPM 9 | */ 10 | 11 | var 12 | // node dependencies 13 | process = require('child_process'), 14 | 15 | // config 16 | release = require('../config/admin/release'), 17 | 18 | // register components and distributions 19 | repos = release.distributions.concat(release.components), 20 | total = repos.length, 21 | index = -1, 22 | 23 | stream, 24 | stepRepo 25 | ; 26 | 27 | module.exports = function(callback) { 28 | 29 | console.log('Registering repos with package managers'); 30 | 31 | // Do Git commands synchronously per component, to avoid issues 32 | stepRepo = function() { 33 | index = index + 1; 34 | if(index >= total) { 35 | callback(); 36 | return; 37 | } 38 | var 39 | repo = repos[index].toLowerCase(), 40 | outputDirectory = release.outputRoot + repo + '/', 41 | exec = process.exec, 42 | execSettings = {cwd: outputDirectory}, 43 | updateNPM = 'npm publish' 44 | ; 45 | 46 | /* Register with NPM */ 47 | exec(updateNPM, execSettings, function(err, stdout, stderr) { 48 | console.log(err, stdout, stderr); 49 | stepRepo(); 50 | }); 51 | 52 | }; 53 | stepRepo(); 54 | }; 55 | 56 | -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/config/user.js: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Set-up 3 | *******************************/ 4 | 5 | var 6 | // npm dependencies 7 | extend = require('extend'), 8 | fs = require('fs'), 9 | path = require('path'), 10 | requireDotFile = require('require-dot-file'), 11 | 12 | // semantic.json defaults 13 | defaults = require('./defaults'), 14 | config = require('./project/config'), 15 | 16 | // Final config object 17 | gulpConfig = {}, 18 | 19 | // semantic.json settings 20 | userConfig 21 | 22 | ; 23 | 24 | 25 | /******************************* 26 | User Config 27 | *******************************/ 28 | 29 | try { 30 | // looks for config file across all parent directories 31 | userConfig = requireDotFile('semantic.json'); 32 | } 33 | catch(error) { 34 | if(error.code === 'MODULE_NOT_FOUND') { 35 | console.error('No semantic.json config found'); 36 | } 37 | } 38 | 39 | // extend user config with defaults 40 | gulpConfig = (!userConfig) 41 | ? extend(true, {}, defaults) 42 | : extend(false, {}, defaults, userConfig) 43 | ; 44 | 45 | /******************************* 46 | Add Derived Values 47 | *******************************/ 48 | 49 | // adds calculated values 50 | config.addDerivedValues(gulpConfig); 51 | 52 | 53 | /******************************* 54 | Export 55 | *******************************/ 56 | 57 | module.exports = gulpConfig; 58 | 59 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/bootstrap3/elements/button.variables: -------------------------------------------------------------------------------- 1 | /*------------------- 2 | Button Variables 3 | --------------------*/ 4 | 5 | /* Button Variables */ 6 | @pageFont: Helvetica Neue, Helvetica, Arial, sans-serif; 7 | @textTransform: none; 8 | @fontWeight: normal; 9 | @textColor: rgba(51, 51, 51, 1); 10 | 11 | @borderRadius: @4px; 12 | 13 | @lineHeight: 1.42857; 14 | @verticalPadding: 0.8571em; 15 | @horizontalPadding: 0.8571em; 16 | 17 | @backgroundColor: @white; 18 | @backgroundImage: none; 19 | 20 | 21 | @borderBoxShadowColor: rgba(0, 0, 0, 0.14); 22 | 23 | @green: #5CB85C; 24 | @red: #D9534F; 25 | @blue: #337AB7; 26 | @green: #60B044; 27 | @orange: #F0AD4E; 28 | 29 | @primaryColor: @blue; 30 | @secondaryColor: @green; 31 | 32 | @labeledIconBackgroundColor: transparent; 33 | 34 | @basicBorderSize: 0px; 35 | @basicColoredBorderSize: 0px; 36 | @invertedBorderSize: 0px; 37 | 38 | @basicActiveBackground: transparent; 39 | @basicHoverBackground: transparent; 40 | @basicDownBoxShadow: 41 | 0px 0px 0px 1px #ADADAD inset, 42 | 0 3px 5px rgba(0, 0, 0, 0.125) inset 43 | ; 44 | 45 | @groupButtonOffset: 0px 0px 0px -1px; 46 | @verticalGroupOffset: 0px 0px -1px 0px; 47 | 48 | /* States */ 49 | 50 | @hoverBackgroundColor: #E6E6E6; 51 | @hoverBoxShadow: 52 | 0px 0px 0px 1px #ADADAD inset 53 | ; 54 | 55 | @downBackgroundColor: #E6E6E6; 56 | @downBoxShadow: 57 | 0px 0px 0px 1px #ADADAD inset, 58 | 0 3px 5px rgba(0, 0, 0, 0.125) inset 59 | ; 60 | 61 | @activeBackgroundColor: #E6E6E6; 62 | 63 | @disabledOpacity: 0.65; -------------------------------------------------------------------------------- /appdev/app/services/chrome/chrome.permission.service.js: -------------------------------------------------------------------------------- 1 | (function(angular) { 2 | 'use strict'; 3 | 4 | angular.module('chrome') 5 | .factory('permissionService', permissionService); 6 | 7 | function permissionService($q) { 8 | return { 9 | checkPermissions: checkPermissions, 10 | requestPermissions: requestPermissions, 11 | }; 12 | 13 | function checkPermissions(permissionsList) { 14 | var deferred = $q.defer(); 15 | chrome.permissions.contains(permissionsObject(permissionsList), 16 | function(result) { 17 | deferred.resolve(result); 18 | }); 19 | return deferred.promise; 20 | } 21 | 22 | function requestPermissions(permissionsList) { 23 | var deferred = $q.defer(); 24 | chrome.permissions.request(permissionsObject(permissionsList), 25 | function(result) { 26 | deferred.resolve(result); 27 | }); 28 | return deferred.promise; 29 | } 30 | 31 | function permissionsObject(permissionsList) { 32 | var permissions = { 33 | permissions: [], 34 | origins: [], 35 | }; 36 | for (var p = 0; p < permissionsList.length; p++) { 37 | var regexp = new RegExp(/(ftp|http|https):\/\//); 38 | if (regexp.test(permissionsList[p])) { 39 | permissions.origins.push(permissionsList[p]); 40 | } else { 41 | permissions.permissions.push(permissionsList[p]); 42 | } 43 | } 44 | return permissions; 45 | } 46 | } 47 | })(angular); 48 | -------------------------------------------------------------------------------- /appdev/chrome.optionsUI.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Practical Startpage Options 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 |
16 | 17 |
18 |
19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /appdev/app/widgets/browser/apps.js: -------------------------------------------------------------------------------- 1 | (function(angular) { 2 | "use strict"; 3 | 4 | angular.module('ps.widgets') 5 | .controller("BrowserAppCtrl", BrowserAppCtrl) 6 | .directive('psBrowserApps', BrowserAppsDirective); 7 | 8 | function BrowserAppCtrl(appService, layoutService, urlService) { 9 | var vm = this; 10 | vm.clickCB = clickCB; 11 | activate(); 12 | 13 | function activate() { 14 | if (layoutService.isActive('chromeApps')) { 15 | getApps(); 16 | } 17 | layoutService.setOnTabClick('chromeApps', getApps); 18 | } 19 | 20 | function getApps() { 21 | appService.appList() 22 | .then(function(appList) { 23 | vm.list = appList; 24 | }); 25 | } 26 | 27 | function clickCB(e, url) { 28 | if (!/(http:\/\/|https:\/\/|ftp:\/\/)/.test(url)) { 29 | if ((e.which === 1 && e.ctrlKey === true) || (e.which === 2)) { 30 | urlService.openInNewTab(url); 31 | } else if (e.which === 1 && e.ctrlKey === false) { 32 | urlService.openInThisTab(url); 33 | } 34 | e.preventDefault(); 35 | } 36 | } 37 | } 38 | 39 | function BrowserAppsDirective() { 40 | return { 41 | restrict: 'E', 42 | templateUrl: 'app/widgets/widgets/widgetUrlList.html', 43 | controller: 'BrowserAppCtrl', 44 | controllerAs: 'vm', 45 | scope: { 46 | tab: '=psTab', 47 | col: '=psCol', 48 | style: '=psStyle', 49 | }, 50 | bindToController: true, 51 | }; 52 | } 53 | })(angular); 54 | -------------------------------------------------------------------------------- /appdev/app/widgets/widgets/widgetUrlList.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 |

6 |
7 | 8 |
9 | 10 | 32 | 33 |
34 | 39 |
40 | 41 |
-------------------------------------------------------------------------------- /dist/semantic-ui/src/definitions/modules/sticky.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * # Semantic UI - Sticky 3 | * http://github.com/semantic-org/semantic-ui/ 4 | * 5 | * 6 | * Released under the MIT license 7 | * http://opensource.org/licenses/MIT 8 | * 9 | */ 10 | 11 | 12 | /******************************* 13 | Theme 14 | *******************************/ 15 | 16 | @type : 'module'; 17 | @element : 'sticky'; 18 | 19 | @import (multiple) '../../theme.config'; 20 | 21 | /******************************* 22 | Sticky 23 | *******************************/ 24 | 25 | .ui.sticky { 26 | position: static; 27 | transition: @transition; 28 | z-index: @zIndex; 29 | } 30 | 31 | /******************************* 32 | States 33 | *******************************/ 34 | 35 | /* Bound */ 36 | .ui.sticky.bound { 37 | position: absolute; 38 | left: auto; 39 | right: auto; 40 | } 41 | 42 | /* Fixed */ 43 | .ui.sticky.fixed { 44 | position: fixed; 45 | left: auto; 46 | right: auto; 47 | } 48 | 49 | /* Bound/Fixed Position */ 50 | .ui.sticky.bound.top, 51 | .ui.sticky.fixed.top { 52 | top: 0px; 53 | bottom: auto; 54 | } 55 | .ui.sticky.bound.bottom, 56 | .ui.sticky.fixed.bottom { 57 | top: auto; 58 | bottom: 0px; 59 | } 60 | 61 | 62 | /******************************* 63 | Types 64 | *******************************/ 65 | 66 | .ui.native.sticky { 67 | position: -webkit-sticky; 68 | position: -moz-sticky; 69 | position: -ms-sticky; 70 | position: -o-sticky; 71 | position: sticky; 72 | } 73 | 74 | .loadUIOverrides(); 75 | -------------------------------------------------------------------------------- /appdev/app/badges/gmail/gmail.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
{{vm.unRead}}
4 |
5 |
6 | 36 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/modules/nag.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Nag 3 | *******************************/ 4 | 5 | /*-------------- 6 | Collection 7 | ---------------*/ 8 | 9 | @position: relative; 10 | @width: 100%; 11 | @zIndex: 999; 12 | @margin: 0em; 13 | 14 | @background: #555555; 15 | @opacity: 0.95; 16 | @minHeight: 0em; 17 | @padding: 0.75em 1em; 18 | @lineHeight: 1em; 19 | @boxShadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2); 20 | 21 | @fontSize: 1rem; 22 | @textAlign: center; 23 | @color: @textColor; 24 | 25 | @transition: 0.2s background ease; 26 | 27 | 28 | /*-------------- 29 | Elements 30 | ---------------*/ 31 | 32 | /* Title */ 33 | @titleColor: @white; 34 | @titleMargin: 0em 0.5em; 35 | 36 | @closeSize: 1em; 37 | @closeMargin: (-@closeSize / 2) 0em 0em; 38 | @closeTop: 50%; 39 | @closeRight: 1em; 40 | @closeColor: @white; 41 | @closeTransition: opacity 0.2s ease; 42 | @closeOpacity: 0.4; 43 | 44 | 45 | /*-------------- 46 | States 47 | ---------------*/ 48 | 49 | /* Hover */ 50 | @nagHoverBackground: @background; 51 | @nagHoverOpacity: 1; 52 | 53 | @closeHoverOpacity: 1; 54 | 55 | /*-------------- 56 | Variations 57 | ---------------*/ 58 | 59 | /* Top / Bottom */ 60 | @top: 0em; 61 | @bottom: 0em; 62 | @borderRadius: @defaultBorderRadius; 63 | @topBorderRadius: 0em 0em @borderRadius @borderRadius; 64 | @bottomBorderRadius: @borderRadius @borderRadius 0em 0em; 65 | 66 | /* Inverted */ 67 | @invertedBackground: @darkWhite; 68 | 69 | /*-------------- 70 | Plural 71 | ---------------*/ 72 | 73 | @groupedBorderRadius: 0em; 74 | 75 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/amazon/elements/button.variables: -------------------------------------------------------------------------------- 1 | /*------------------- 2 | Button Variables 3 | --------------------*/ 4 | 5 | /* Button Variables */ 6 | @pageFont: Helvetica Neue, Helvetica, Arial, sans-serif; 7 | @textTransform: none; 8 | @textColor: #111111; 9 | @fontWeight: normal; 10 | @transition: 11 | opacity @defaultDuration @defaultEasing, 12 | background-color @defaultDuration @defaultEasing, 13 | color @defaultDuration @defaultEasing, 14 | background @defaultDuration @defaultEasing 15 | ; 16 | 17 | @hoverBackgroundColor: #E0E0E0; 18 | 19 | @borderRadius: 3px; 20 | @verticalPadding: 0.8em; 21 | @horizontalPadding: 1.75em; 22 | 23 | @backgroundColor: #F7F8FA; 24 | @backgroundImage: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1)); 25 | @boxShadow: 26 | 0 1px 0 1px rgba(255, 255, 255, 0.3) inset, 27 | 0 0 0 1px #ADB2BB inset 28 | ; 29 | 30 | @coloredBackgroundImage: linear-gradient(rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.2)); 31 | @coloredBoxShadow: 32 | 0px 1px 0px 0px rgba(255, 255, 255, 0.2) inset 33 | ; 34 | 35 | @downBoxShadow: 36 | 0 0 0 1px #ADB2BB inset, 37 | 0 1px 3px rgba(0, 0, 0, 0.2) inset 38 | ; 39 | 40 | @labeledIconBackgroundColor: #313A43; 41 | @labeledIconColor: #FFFFFF; 42 | @labeledIconBorder: transparent; 43 | 44 | @black: #444C55; 45 | @orange: #F4CC67; 46 | 47 | @coloredBackgroundImage: linear-gradient(rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.1)); 48 | @primaryColor: @orange; 49 | @secondaryColor: @black; 50 | 51 | @mini: 10px; 52 | @tiny: 11px; 53 | @small: 12px; 54 | @medium: 13px; 55 | @large: 14px; 56 | @big: 16px; 57 | @huge: 18px; 58 | @massive: 22px; 59 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/default/modules/dimmer.variables: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Dimmer 3 | *******************************/ 4 | 5 | @dimmablePosition: relative; 6 | @dimmerPosition: absolute; 7 | 8 | @backgroundColor: rgba(0, 0, 0 , 0.85); 9 | @lineHeight: 1; 10 | @perspective: 2000px; 11 | 12 | @duration: 0.5s; 13 | @transition: 14 | background-color @duration linear 15 | ; 16 | @zIndex: 1000; 17 | @textAlign: center; 18 | @verticalAlign: middle; 19 | @textColor: @white; 20 | @overflow: hidden; 21 | 22 | @blurredStartFilter: ~"blur(0px) grayscale(0)"; 23 | @blurredEndFilter: ~"blur(5px) grayscale(0.7)"; 24 | @blurredTransition: 800ms filter @defaultEasing; 25 | 26 | @blurredBackgroundColor: rgba(0, 0, 0, 0.6); 27 | @blurredInvertedBackgroundColor: rgba(255, 255, 255, 0.6); 28 | 29 | /* Hidden (Default) */ 30 | @hiddenOpacity: 0; 31 | 32 | /* Content */ 33 | @contentDisplay: table; 34 | @contentChildDisplay: table-cell; 35 | 36 | /* Visible */ 37 | @visibleOpacity: 1; 38 | 39 | /*------------------- 40 | Types 41 | --------------------*/ 42 | 43 | /* Page Dimmer*/ 44 | @transformStyle: ''; 45 | @pageDimmerPosition: fixed; 46 | 47 | 48 | /*------------------- 49 | Variations 50 | --------------------*/ 51 | 52 | /* Inverted */ 53 | @invertedBackgroundColor: rgba(255, 255, 255, 0.85); 54 | @invertedTextColor: @textColor; 55 | 56 | /* Simple */ 57 | @simpleZIndex: 1; 58 | @simpleStartBackgroundColor: rgba(0, 0, 0, 0); 59 | @simpleEndBackgroundColor: @backgroundColor; 60 | @simpleInvertedStartBackgroundColor: rgba(255, 255, 255, 0); 61 | @simpleInvertedEndBackgroundColor: @invertedBackgroundColor; -------------------------------------------------------------------------------- /dist/semantic-ui/tasks/config/project/release.js: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Release Config 3 | *******************************/ 4 | 5 | var 6 | requireDotFile = require('require-dot-file'), 7 | config, 8 | npmPackage, 9 | version 10 | ; 11 | 12 | 13 | /******************************* 14 | Derived Values 15 | *******************************/ 16 | 17 | try { 18 | config = requireDotFile('semantic.json'); 19 | } 20 | catch(error) {} 21 | 22 | 23 | try { 24 | npmPackage = require('../../../package.json'); 25 | } 26 | catch(error) { 27 | // generate fake package 28 | npmPackage = { 29 | name: 'Unknown', 30 | version: 'x.x' 31 | }; 32 | } 33 | 34 | // looks for version in config or package.json (whichever is available) 35 | version = (npmPackage && npmPackage.version !== undefined && npmPackage.name == 'semantic-ui') 36 | ? npmPackage.version 37 | : config.version 38 | ; 39 | 40 | 41 | /******************************* 42 | Export 43 | *******************************/ 44 | 45 | module.exports = { 46 | 47 | title : 'Semantic UI', 48 | repository : 'https://github.com/Semantic-Org/Semantic-UI', 49 | url : 'http://www.semantic-ui.com/', 50 | 51 | banner: '' 52 | + ' /*' + '\n' 53 | + ' * # <%= title %> - <%= version %>' + '\n' 54 | + ' * <%= repository %>' + '\n' 55 | + ' * <%= url %>' + '\n' 56 | + ' *' + '\n' 57 | + ' * Copyright 2014 Contributors' + '\n' 58 | + ' * Released under the MIT license' + '\n' 59 | + ' * http://opensource.org/licenses/MIT' + '\n' 60 | + ' *' + '\n' 61 | + ' */' + '\n', 62 | 63 | version : version 64 | 65 | }; 66 | -------------------------------------------------------------------------------- /appdev/app/services/chrome/chrome.storage.services.js: -------------------------------------------------------------------------------- 1 | (function(angular) { 2 | 'use strict'; 3 | 4 | angular.module('chrome').factory('storageService', storageService); 5 | 6 | function storageService($q) { 7 | return { 8 | getData: getData, 9 | setData: setData, 10 | clearData: clearData, 11 | getManifest: getManifest, 12 | setDataCB: setDataCB, 13 | }; 14 | 15 | function getData(type,keys) { 16 | // type = 'local'; 17 | var deferred = $q.defer(); 18 | chrome.storage[type].get(keys,function(response) { 19 | deferred.resolve(response); 20 | }); 21 | return deferred.promise; 22 | } 23 | 24 | function setData(data, type) { 25 | // type = 'local'; 26 | var deferred = $q.defer(); 27 | chrome.storage[type].set(data, function() { 28 | deferred.resolve(); 29 | }); 30 | return deferred.promise; 31 | } 32 | 33 | function clearData(keys, type) { 34 | // type = 'local'; 35 | var deferred = $q.defer(); 36 | if (angular.isDefined(keys)) { 37 | chrome.storage[type].remove(keys, function() { 38 | deferred.resolve(); 39 | }); 40 | } else { 41 | chrome.storage[type].clear(function() { 42 | deferred.resolve(); 43 | }); 44 | } 45 | return deferred.promise; 46 | } 47 | 48 | function getManifest() { 49 | return chrome.runtime.getManifest(); 50 | } 51 | 52 | function setDataCB(CB) { 53 | chrome.storage.onChanged.addListener(function(changes,areaName) { 54 | CB(changes,areaName); 55 | }); 56 | } 57 | } 58 | 59 | })(angular); 60 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/fixed-width/modules/modal.variables: -------------------------------------------------------------------------------- 1 | 2 | /* Responsive Widths */ 3 | @modalComputerWidth: 700px; 4 | @modalLargeMonitorWidth: 800px; 5 | @modalWidescreenMonitorWidth: 850px; 6 | 7 | @modalComputerMargin: 0em 0em 0em -(@modalComputerWidth / 2); 8 | @modalLargeMonitorMargin: 0em 0em 0em -(@modalLargeMonitorWidth / 2); 9 | @modalWidescreenMonitorMargin: 0em 0em 0em -(@modalWidescreenMonitorWidth / 2); 10 | 11 | 12 | /*------------------- 13 | Variations 14 | --------------------*/ 15 | 16 | /* Sizes */ 17 | @modalSmallRatio: 0.6; 18 | @modalLargeRatio: 1.2; 19 | 20 | /* Derived Responsive Sizes */ 21 | @modalSmallHeaderSize: 1.3em; 22 | @modalSmallComputerWidth: (@modalComputerWidth * @modalSmallRatio); 23 | @modalSmallLargeMonitorWidth: (@modalLargeMonitorWidth * @modalSmallRatio); 24 | @modalSmallWidescreenMonitorWidth: (@modalWidescreenMonitorWidth * @modalSmallRatio); 25 | 26 | @modalSmallComputerMargin: 0em 0em 0em -(@modalSmallComputerWidth / 2); 27 | @modalSmallLargeMonitorMargin: 0em 0em 0em -(@modalSmallLargeMonitorWidth / 2); 28 | @modalSmallWidescreenMonitorMargin: 0em 0em 0em -(@modalSmallWidescreenMonitorWidth / 2); 29 | 30 | @modalLargeHeaderSize: 1.3em; 31 | @modalLargeComputerWidth: (@modalComputerWidth * @modalLargeRatio); 32 | @modalLargeLargeMonitorWidth: (@modalLargeMonitorWidth * @modalLargeRatio); 33 | @modalLargeWidescreenMonitorWidth: (@modalWidescreenMonitorWidth * @modalLargeRatio); 34 | 35 | @modalLargeComputerMargin: 0em 0em 0em -(@modalLargeComputerWidth / 2); 36 | @modalLargeLargeMonitorMargin: 0em 0em 0em -(@modalLargeLargeMonitorWidth / 2); 37 | @modalLargeWidescreenMonitorMargin: 0em 0em 0em -(@modalLargeWidescreenMonitorWidth / 2); -------------------------------------------------------------------------------- /appdev/app/widgets/widgets/widgetUrlList.css: -------------------------------------------------------------------------------- 1 | /*Widget buttons*/ 2 | 3 | .browser { 4 | display: inline-block; 5 | } 6 | .ui.basic.browser.button { 7 | box-shadow: 0 0 0 1px #cccccc !important; 8 | color: #888888 !important; 9 | margin: 2px; 10 | padding: .6em; 11 | text-align: left; 12 | white-space: nowrap; 13 | text-overflow: ellipsis; 14 | overflow: hidden; 15 | width: 99%; 16 | } 17 | .browser.button > img { 18 | margin: -0.1em 0.2em -0.1em 0.1em; 19 | height: 16px; 20 | } 21 | .browser.item { 22 | overflow: hidden; 23 | white-space: nowrap; 24 | } 25 | .browser.item > .content > .description { 26 | overflow: hidden; 27 | white-space: normal; 28 | } 29 | 30 | /*Widget Lists*/ 31 | 32 | /*Icon*/ 33 | 34 | .widget.list > .item > i.icon > .icon.image{ 35 | height :16px; 36 | max-width: none; 37 | } 38 | 39 | /* Content*/ 40 | 41 | .widget.list > .item { 42 | display: flex !important; 43 | flex-direction: row; 44 | max-width: 100%; 45 | } 46 | 47 | .widget.list > .item > .content { 48 | flex: 1; 49 | min-width:0; 50 | } 51 | 52 | .widget.list > .item > .content > .header { 53 | white-space: nowrap; 54 | text-overflow: ellipsis; 55 | overflow:hidden; 56 | } 57 | 58 | .widget.list > .item > .content > .description.url { 59 | white-space: nowrap; 60 | text-overflow: ellipsis; 61 | overflow:hidden; 62 | } 63 | 64 | .widget.list > .item > .content > .meta > .date { 65 | font-size: .9em; 66 | } 67 | /*Effects*/ 68 | 69 | .widget.list > .item.visited { 70 | background-color: rgba(0,0,0,.075); 71 | } 72 | .widget.list > .item > .content > .content > .icon:not(:hover){ 73 | opacity:0.5 74 | } 75 | .widget.list > .item:not(:hover) > .content > .content > .icon{ 76 | opacity:0 77 | } -------------------------------------------------------------------------------- /dist/semantic-ui/src/theme.less: -------------------------------------------------------------------------------- 1 | /******************************* 2 | Import Directives 3 | *******************************/ 4 | 5 | /*------------------ 6 | Theme 7 | -------------------*/ 8 | 9 | @theme: @@element; 10 | 11 | /*-------------------- 12 | Site Variables 13 | ---------------------*/ 14 | 15 | /* Default site.variables */ 16 | @import "@{themesFolder}/default/globals/site.variables"; 17 | 18 | /* Packaged site.variables */ 19 | @import "@{themesFolder}/@{site}/globals/site.variables"; 20 | 21 | /* Component's site.variables */ 22 | @import (optional) "@{themesFolder}/@{theme}/globals/site.variables"; 23 | 24 | /* Site theme site.variables */ 25 | @import (optional) "@{siteFolder}/globals/site.variables"; 26 | 27 | 28 | /*------------------- 29 | Component Variables 30 | ---------------------*/ 31 | 32 | /* Default */ 33 | @import "@{themesFolder}/default/@{type}s/@{element}.variables"; 34 | 35 | /* Packaged Theme */ 36 | @import (optional) "@{themesFolder}/@{theme}/@{type}s/@{element}.variables"; 37 | 38 | /* Site Theme */ 39 | @import (optional) "@{siteFolder}/@{type}s/@{element}.variables"; 40 | 41 | 42 | /******************************* 43 | Mix-ins 44 | *******************************/ 45 | 46 | /*------------------ 47 | Fonts 48 | -------------------*/ 49 | 50 | .loadFonts() when (@importGoogleFonts) { 51 | @import url('@{googleProtocol}fonts.googleapis.com/css?family=@{googleFontRequest}'); 52 | } 53 | 54 | /*------------------ 55 | Overrides 56 | -------------------*/ 57 | 58 | .loadUIOverrides() { 59 | @import (optional) "@{themesFolder}/@{theme}/@{type}s/@{element}.overrides"; 60 | @import (optional) "@{siteFolder}/@{type}s/@{element}.overrides"; 61 | } 62 | -------------------------------------------------------------------------------- /dist/semantic-ui/src/themes/github/collections/menu.variables: -------------------------------------------------------------------------------- 1 | /*------------------- 2 | Collection 3 | --------------------*/ 4 | 5 | @itemVerticalPadding: 1em; 6 | @itemHorizontalPadding: 1.25em; 7 | 8 | @background: #FFFFFF linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.05)); 9 | @fontWeight: normal; 10 | 11 | @activeBorderSize: 0em; 12 | 13 | @hoverBackground: rgba(0, 0, 0, 0.02); 14 | @downBackground: rgba(0, 0, 0, 0.06); 15 | 16 | @activeBackground: rgba(0, 0, 0, 0.04); 17 | @activeHoverBackground: rgba(0, 0, 0, 0.04); 18 | 19 | 20 | @headerBackground: rgba(0, 0, 0, 0.08); 21 | 22 | @subMenuMargin: 0.5em -0.6em 0; 23 | @subMenuHorizontalPadding: 0.7em; 24 | 25 | @arrowHoverColor: #EEEEEE; 26 | @arrowActiveColor: #EEEEEE; 27 | @arrowVerticalHoverColor: #F4F4F4; 28 | @arrowVerticalActiveColor: #F4F4F4; 29 | 30 | @dividerBackground: #E8E8E8; 31 | @verticalDividerBackground: #E8E8E8; 32 | 33 | /*------------------- 34 | Elements 35 | --------------------*/ 36 | 37 | @buttonOffset: -0.15em; 38 | @buttonVerticalPadding: 0.75em; 39 | 40 | /*------------------- 41 | Types 42 | --------------------*/ 43 | 44 | @paginationMinWidth: 3.5em; 45 | 46 | @tieredActiveItemBackground: #F5F5F5; 47 | @tieredActiveMenuBackground: #F5F5F5; 48 | 49 | /*------------------- 50 | Variations 51 | --------------------*/ 52 | 53 | @verticalBackground: #FFFFFF; 54 | @verticalItemBackground: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02)); 55 | 56 | @invertedBackground: @black linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.0)); 57 | @invertedBoxShadow : 58 | 0px 1px 2px 0px rgba(0, 0, 0, 0.15), 59 | 0px 0px 0px 1px rgba(255, 255, 255, 0.15) 60 | ; 61 | @secondaryVerticalPadding: 0.75em; -------------------------------------------------------------------------------- /appdev/app/widgets/rssFeed/editRssSyncDeleted.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | 6 |
7 | 8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 | 21 |
22 |
23 | 24 | 25 |
26 |
27 | 28 |
29 | 33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 | --------------------------------------------------------------------------------