├── .gitignore ├── LICENSE ├── README.md ├── captainkube ├── .dockerignore ├── .draft-tasks.toml ├── .draftignore ├── Dockerfile ├── cd-pipeline.yml ├── charts │ └── captainkube │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── secret.yaml │ │ └── values.yaml ├── ci-pipeline.yml ├── draft.toml └── main.go ├── common ├── cd-steps-template.yml ├── cd-vars-template.yml ├── ci-steps-template.yml └── ci-vars-template.yml ├── media ├── azure-devops-workflow.png ├── copy-ingress-url.png ├── draft-up-phippy.png ├── drafting-parrot-and-captain.png ├── edit-parrot-ingress.png ├── find-parrot-ingress-to-edit.png ├── get-url-in-portal.png ├── get-url-via-az.png ├── parrot-dashboard.png └── phippy-is-here.png ├── nodebrady ├── .dockerignore ├── .draft-tasks.toml ├── .draftignore ├── .editorconfig ├── .jshintrc ├── Dockerfile ├── app.js ├── cd-pipeline.yml ├── charts │ └── nodebrady │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── secret.yaml │ │ └── service.yaml │ │ └── values.yaml ├── ci-pipeline.yml ├── controllers │ └── messages.js ├── draft.toml ├── package-lock.json ├── package.json ├── public │ ├── scripts │ │ └── .gitkeep │ └── styles │ │ └── main.css ├── test │ └── routeSpec.js └── views │ ├── layout.html │ └── list.html ├── parrot ├── .dockerignore ├── .draft-tasks.toml ├── .draftignore ├── .vscode │ ├── launch.json │ └── tasks.json ├── Controllers │ ├── ClusterStatusController.cs │ ├── HomeController.cs │ └── test.json ├── Dockerfile ├── Hubs │ └── Daemon.cs ├── Models │ ├── ErrorViewModel.cs │ └── Pod.cs ├── NOTICE ├── Program.cs ├── Startup.cs ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bundleconfig.json ├── cd-pipeline.yml ├── charts │ └── parrot │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── secret.yaml │ │ └── service.yaml │ │ └── values.yaml ├── ci-pipeline.yml ├── draft.toml ├── package-lock.json ├── package.json ├── parrot.csproj ├── semantic.json ├── semantic │ ├── gulpfile.js │ ├── src │ │ ├── definitions │ │ │ ├── behaviors │ │ │ │ ├── api.js │ │ │ │ ├── form.js │ │ │ │ └── visibility.js │ │ │ ├── collections │ │ │ │ ├── breadcrumb.less │ │ │ │ ├── form.less │ │ │ │ ├── grid.less │ │ │ │ ├── menu.less │ │ │ │ ├── message.less │ │ │ │ └── table.less │ │ │ ├── elements │ │ │ │ ├── button.less │ │ │ │ ├── container.less │ │ │ │ ├── divider.less │ │ │ │ ├── flag.less │ │ │ │ ├── header.less │ │ │ │ ├── icon.less │ │ │ │ ├── image.less │ │ │ │ ├── input.less │ │ │ │ ├── label.less │ │ │ │ ├── list.less │ │ │ │ ├── loader.less │ │ │ │ ├── rail.less │ │ │ │ ├── reveal.less │ │ │ │ ├── segment.less │ │ │ │ └── step.less │ │ │ ├── globals │ │ │ │ ├── reset.less │ │ │ │ ├── site.js │ │ │ │ └── site.less │ │ │ ├── modules │ │ │ │ ├── accordion.js │ │ │ │ ├── accordion.less │ │ │ │ ├── checkbox.js │ │ │ │ ├── checkbox.less │ │ │ │ ├── dimmer.js │ │ │ │ ├── dimmer.less │ │ │ │ ├── dropdown.js │ │ │ │ ├── dropdown.less │ │ │ │ ├── embed.js │ │ │ │ ├── embed.less │ │ │ │ ├── modal.js │ │ │ │ ├── modal.less │ │ │ │ ├── nag.js │ │ │ │ ├── nag.less │ │ │ │ ├── popup.js │ │ │ │ ├── popup.less │ │ │ │ ├── progress.js │ │ │ │ ├── progress.less │ │ │ │ ├── rating.js │ │ │ │ ├── rating.less │ │ │ │ ├── search.js │ │ │ │ ├── search.less │ │ │ │ ├── shape.js │ │ │ │ ├── shape.less │ │ │ │ ├── sidebar.js │ │ │ │ ├── sidebar.less │ │ │ │ ├── sticky.js │ │ │ │ ├── sticky.less │ │ │ │ ├── tab.js │ │ │ │ ├── tab.less │ │ │ │ ├── transition.js │ │ │ │ └── transition.less │ │ │ └── views │ │ │ │ ├── ad.less │ │ │ │ ├── card.less │ │ │ │ ├── comment.less │ │ │ │ ├── feed.less │ │ │ │ ├── item.less │ │ │ │ └── statistic.less │ │ ├── semantic.less │ │ ├── site │ │ │ ├── collections │ │ │ │ ├── breadcrumb.overrides │ │ │ │ ├── breadcrumb.variables │ │ │ │ ├── form.overrides │ │ │ │ ├── form.variables │ │ │ │ ├── grid.overrides │ │ │ │ ├── grid.variables │ │ │ │ ├── menu.overrides │ │ │ │ ├── menu.variables │ │ │ │ ├── message.overrides │ │ │ │ ├── message.variables │ │ │ │ ├── table.overrides │ │ │ │ └── table.variables │ │ │ ├── elements │ │ │ │ ├── button.overrides │ │ │ │ ├── button.variables │ │ │ │ ├── container.overrides │ │ │ │ ├── container.variables │ │ │ │ ├── divider.overrides │ │ │ │ ├── divider.variables │ │ │ │ ├── flag.overrides │ │ │ │ ├── flag.variables │ │ │ │ ├── header.overrides │ │ │ │ ├── header.variables │ │ │ │ ├── icon.overrides │ │ │ │ ├── icon.variables │ │ │ │ ├── image.overrides │ │ │ │ ├── image.variables │ │ │ │ ├── input.overrides │ │ │ │ ├── input.variables │ │ │ │ ├── label.overrides │ │ │ │ ├── label.variables │ │ │ │ ├── list.overrides │ │ │ │ ├── list.variables │ │ │ │ ├── loader.overrides │ │ │ │ ├── loader.variables │ │ │ │ ├── rail.overrides │ │ │ │ ├── rail.variables │ │ │ │ ├── reveal.overrides │ │ │ │ ├── reveal.variables │ │ │ │ ├── segment.overrides │ │ │ │ ├── segment.variables │ │ │ │ ├── step.overrides │ │ │ │ └── step.variables │ │ │ ├── globals │ │ │ │ ├── reset.overrides │ │ │ │ ├── reset.variables │ │ │ │ ├── site.overrides │ │ │ │ └── site.variables │ │ │ ├── modules │ │ │ │ ├── accordion.overrides │ │ │ │ ├── accordion.variables │ │ │ │ ├── chatroom.overrides │ │ │ │ ├── chatroom.variables │ │ │ │ ├── checkbox.overrides │ │ │ │ ├── checkbox.variables │ │ │ │ ├── dimmer.overrides │ │ │ │ ├── dimmer.variables │ │ │ │ ├── dropdown.overrides │ │ │ │ ├── dropdown.variables │ │ │ │ ├── embed.overrides │ │ │ │ ├── embed.variables │ │ │ │ ├── modal.overrides │ │ │ │ ├── modal.variables │ │ │ │ ├── nag.overrides │ │ │ │ ├── nag.variables │ │ │ │ ├── popup.overrides │ │ │ │ ├── popup.variables │ │ │ │ ├── progress.overrides │ │ │ │ ├── progress.variables │ │ │ │ ├── rating.overrides │ │ │ │ ├── rating.variables │ │ │ │ ├── search.overrides │ │ │ │ ├── search.variables │ │ │ │ ├── shape.overrides │ │ │ │ ├── shape.variables │ │ │ │ ├── sidebar.overrides │ │ │ │ ├── sidebar.variables │ │ │ │ ├── sticky.overrides │ │ │ │ ├── sticky.variables │ │ │ │ ├── tab.overrides │ │ │ │ ├── tab.variables │ │ │ │ ├── transition.overrides │ │ │ │ └── transition.variables │ │ │ └── views │ │ │ │ ├── ad.overrides │ │ │ │ ├── ad.variables │ │ │ │ ├── card.overrides │ │ │ │ ├── card.variables │ │ │ │ ├── comment.overrides │ │ │ │ ├── comment.variables │ │ │ │ ├── feed.overrides │ │ │ │ ├── feed.variables │ │ │ │ ├── item.overrides │ │ │ │ ├── item.variables │ │ │ │ ├── statistic.overrides │ │ │ │ └── statistic.variables │ │ ├── theme.config │ │ ├── theme.less │ │ └── themes │ │ │ ├── amazon │ │ │ ├── elements │ │ │ │ ├── button.overrides │ │ │ │ └── button.variables │ │ │ └── globals │ │ │ │ └── site.variables │ │ │ ├── basic │ │ │ ├── assets │ │ │ │ └── fonts │ │ │ │ │ ├── icons.eot │ │ │ │ │ ├── icons.svg │ │ │ │ │ ├── icons.ttf │ │ │ │ │ └── icons.woff │ │ │ ├── collections │ │ │ │ ├── table.overrides │ │ │ │ └── table.variables │ │ │ ├── elements │ │ │ │ ├── button.overrides │ │ │ │ ├── button.variables │ │ │ │ ├── icon.overrides │ │ │ │ ├── icon.variables │ │ │ │ ├── step.overrides │ │ │ │ └── step.variables │ │ │ ├── globals │ │ │ │ ├── reset.overrides │ │ │ │ └── reset.variables │ │ │ ├── modules │ │ │ │ ├── progress.overrides │ │ │ │ └── progress.variables │ │ │ └── views │ │ │ │ ├── card.overrides │ │ │ │ └── card.variables │ │ │ ├── bookish │ │ │ └── elements │ │ │ │ ├── header.overrides │ │ │ │ └── header.variables │ │ │ ├── bootstrap3 │ │ │ └── elements │ │ │ │ ├── button.overrides │ │ │ │ └── button.variables │ │ │ ├── chubby │ │ │ ├── collections │ │ │ │ ├── form.overrides │ │ │ │ ├── form.variables │ │ │ │ ├── menu.overrides │ │ │ │ └── menu.variables │ │ │ ├── elements │ │ │ │ ├── button.overrides │ │ │ │ ├── button.variables │ │ │ │ ├── header.overrides │ │ │ │ └── header.variables │ │ │ ├── modules │ │ │ │ ├── accordion.overrides │ │ │ │ └── accordion.variables │ │ │ └── views │ │ │ │ ├── comment.overrides │ │ │ │ └── comment.variables │ │ │ ├── classic │ │ │ ├── collections │ │ │ │ ├── table.overrides │ │ │ │ └── table.variables │ │ │ ├── elements │ │ │ │ ├── button.overrides │ │ │ │ ├── button.variables │ │ │ │ ├── header.overrides │ │ │ │ └── header.variables │ │ │ ├── modules │ │ │ │ ├── progress.overrides │ │ │ │ └── progress.variables │ │ │ └── views │ │ │ │ ├── card.overrides │ │ │ │ └── card.variables │ │ │ ├── colored │ │ │ └── modules │ │ │ │ ├── checkbox.overrides │ │ │ │ └── checkbox.variables │ │ │ ├── default │ │ │ ├── assets │ │ │ │ ├── fonts │ │ │ │ │ ├── brand-icons.eot │ │ │ │ │ ├── brand-icons.svg │ │ │ │ │ ├── brand-icons.ttf │ │ │ │ │ ├── brand-icons.woff │ │ │ │ │ ├── brand-icons.woff2 │ │ │ │ │ ├── icons.eot │ │ │ │ │ ├── icons.svg │ │ │ │ │ ├── icons.ttf │ │ │ │ │ ├── icons.woff │ │ │ │ │ ├── icons.woff2 │ │ │ │ │ ├── outline-icons.eot │ │ │ │ │ ├── outline-icons.svg │ │ │ │ │ ├── outline-icons.ttf │ │ │ │ │ ├── outline-icons.woff │ │ │ │ │ └── outline-icons.woff2 │ │ │ │ └── images │ │ │ │ │ └── flags.png │ │ │ ├── collections │ │ │ │ ├── breadcrumb.overrides │ │ │ │ ├── breadcrumb.variables │ │ │ │ ├── form.overrides │ │ │ │ ├── form.variables │ │ │ │ ├── grid.overrides │ │ │ │ ├── grid.variables │ │ │ │ ├── menu.overrides │ │ │ │ ├── menu.variables │ │ │ │ ├── message.overrides │ │ │ │ ├── message.variables │ │ │ │ ├── table.overrides │ │ │ │ └── table.variables │ │ │ ├── elements │ │ │ │ ├── button.overrides │ │ │ │ ├── button.variables │ │ │ │ ├── container.overrides │ │ │ │ ├── container.variables │ │ │ │ ├── divider.overrides │ │ │ │ ├── divider.variables │ │ │ │ ├── flag.overrides │ │ │ │ ├── flag.variables │ │ │ │ ├── header.overrides │ │ │ │ ├── header.variables │ │ │ │ ├── icon.overrides │ │ │ │ ├── icon.variables │ │ │ │ ├── image.overrides │ │ │ │ ├── image.variables │ │ │ │ ├── input.overrides │ │ │ │ ├── input.variables │ │ │ │ ├── label.overrides │ │ │ │ ├── label.variables │ │ │ │ ├── list.overrides │ │ │ │ ├── list.variables │ │ │ │ ├── loader.overrides │ │ │ │ ├── loader.variables │ │ │ │ ├── rail.overrides │ │ │ │ ├── rail.variables │ │ │ │ ├── reveal.overrides │ │ │ │ ├── reveal.variables │ │ │ │ ├── segment.overrides │ │ │ │ ├── segment.variables │ │ │ │ ├── step.overrides │ │ │ │ └── step.variables │ │ │ ├── globals │ │ │ │ ├── reset.overrides │ │ │ │ ├── reset.variables │ │ │ │ ├── site.overrides │ │ │ │ └── site.variables │ │ │ ├── modules │ │ │ │ ├── accordion.overrides │ │ │ │ ├── accordion.variables │ │ │ │ ├── chatroom.overrides │ │ │ │ ├── chatroom.variables │ │ │ │ ├── checkbox.overrides │ │ │ │ ├── checkbox.variables │ │ │ │ ├── dimmer.overrides │ │ │ │ ├── dimmer.variables │ │ │ │ ├── dropdown.overrides │ │ │ │ ├── dropdown.variables │ │ │ │ ├── embed.overrides │ │ │ │ ├── embed.variables │ │ │ │ ├── modal.overrides │ │ │ │ ├── modal.variables │ │ │ │ ├── nag.overrides │ │ │ │ ├── nag.variables │ │ │ │ ├── popup.overrides │ │ │ │ ├── popup.variables │ │ │ │ ├── progress.overrides │ │ │ │ ├── progress.variables │ │ │ │ ├── rating.overrides │ │ │ │ ├── rating.variables │ │ │ │ ├── search.overrides │ │ │ │ ├── search.variables │ │ │ │ ├── shape.overrides │ │ │ │ ├── shape.variables │ │ │ │ ├── sidebar.overrides │ │ │ │ ├── sidebar.variables │ │ │ │ ├── sticky.overrides │ │ │ │ ├── sticky.variables │ │ │ │ ├── tab.overrides │ │ │ │ ├── tab.variables │ │ │ │ ├── transition.overrides │ │ │ │ └── transition.variables │ │ │ └── views │ │ │ │ ├── ad.overrides │ │ │ │ ├── ad.variables │ │ │ │ ├── card.overrides │ │ │ │ ├── card.variables │ │ │ │ ├── comment.overrides │ │ │ │ ├── comment.variables │ │ │ │ ├── feed.overrides │ │ │ │ ├── feed.variables │ │ │ │ ├── item.overrides │ │ │ │ ├── item.variables │ │ │ │ ├── statistic.overrides │ │ │ │ └── statistic.variables │ │ │ ├── duo │ │ │ └── elements │ │ │ │ ├── loader.overrides │ │ │ │ └── loader.variables │ │ │ ├── fixed-width │ │ │ ├── collections │ │ │ │ ├── grid.overrides │ │ │ │ └── grid.variables │ │ │ └── modules │ │ │ │ ├── modal.overrides │ │ │ │ └── modal.variables │ │ │ ├── flat │ │ │ ├── collections │ │ │ │ ├── form.overrides │ │ │ │ └── form.variables │ │ │ └── globals │ │ │ │ ├── site.overrides │ │ │ │ └── site.variables │ │ │ ├── github │ │ │ ├── assets │ │ │ │ └── fonts │ │ │ │ │ ├── octicons-local.ttf │ │ │ │ │ ├── octicons.svg │ │ │ │ │ ├── octicons.ttf │ │ │ │ │ └── octicons.woff │ │ │ ├── collections │ │ │ │ ├── breadcrumb.variables │ │ │ │ ├── form.overrides │ │ │ │ ├── form.variables │ │ │ │ ├── grid.variables │ │ │ │ ├── menu.overrides │ │ │ │ ├── menu.variables │ │ │ │ ├── message.overrides │ │ │ │ ├── message.variables │ │ │ │ └── table.variables │ │ │ ├── elements │ │ │ │ ├── button.overrides │ │ │ │ ├── button.variables │ │ │ │ ├── header.variables │ │ │ │ ├── icon.overrides │ │ │ │ ├── icon.variables │ │ │ │ ├── image.variables │ │ │ │ ├── input.overrides │ │ │ │ ├── input.variables │ │ │ │ ├── label.overrides │ │ │ │ ├── label.variables │ │ │ │ ├── segment.overrides │ │ │ │ ├── segment.variables │ │ │ │ ├── step.overrides │ │ │ │ └── step.variables │ │ │ ├── globals │ │ │ │ └── site.variables │ │ │ └── modules │ │ │ │ ├── dropdown.overrides │ │ │ │ ├── dropdown.variables │ │ │ │ └── popup.variables │ │ │ ├── gmail │ │ │ └── collections │ │ │ │ ├── message.overrides │ │ │ │ └── message.variables │ │ │ ├── instagram │ │ │ └── views │ │ │ │ ├── card.overrides │ │ │ │ └── card.variables │ │ │ ├── material │ │ │ ├── assets │ │ │ │ └── fonts │ │ │ │ │ ├── icons.eot │ │ │ │ │ ├── icons.svg │ │ │ │ │ ├── icons.ttf │ │ │ │ │ ├── icons.woff │ │ │ │ │ └── icons.woff2 │ │ │ ├── collections │ │ │ │ ├── menu.overrides │ │ │ │ └── menu.variables │ │ │ ├── elements │ │ │ │ ├── button.overrides │ │ │ │ ├── button.variables │ │ │ │ ├── header.overrides │ │ │ │ ├── header.variables │ │ │ │ ├── icon.overrides │ │ │ │ └── icon.variables │ │ │ ├── globals │ │ │ │ ├── site.overrides │ │ │ │ └── site.variables │ │ │ └── modules │ │ │ │ ├── dropdown.overrides │ │ │ │ ├── dropdown.variables │ │ │ │ ├── modal.overrides │ │ │ │ └── modal.variables │ │ │ ├── pulsar │ │ │ └── elements │ │ │ │ ├── loader.overrides │ │ │ │ └── loader.variables │ │ │ ├── raised │ │ │ └── elements │ │ │ │ ├── button.overrides │ │ │ │ └── button.variables │ │ │ ├── resetcss │ │ │ └── globals │ │ │ │ ├── reset.overrides │ │ │ │ └── reset.variables │ │ │ ├── round │ │ │ └── elements │ │ │ │ ├── button.overrides │ │ │ │ └── button.variables │ │ │ ├── rtl │ │ │ └── globals │ │ │ │ ├── site.overrides │ │ │ │ └── site.variables │ │ │ ├── striped │ │ │ └── modules │ │ │ │ ├── progress.overrides │ │ │ │ └── progress.variables │ │ │ ├── timeline │ │ │ └── views │ │ │ │ ├── feed.overrides │ │ │ │ └── feed.variables │ │ │ └── twitter │ │ │ └── elements │ │ │ ├── button.overrides │ │ │ └── button.variables │ └── tasks │ │ ├── README.md │ │ ├── admin │ │ ├── components │ │ │ ├── create.js │ │ │ ├── init.js │ │ │ └── update.js │ │ ├── distributions │ │ │ ├── create.js │ │ │ ├── init.js │ │ │ └── update.js │ │ ├── publish.js │ │ ├── register.js │ │ └── release.js │ │ ├── build.js │ │ ├── build │ │ ├── assets.js │ │ ├── css.js │ │ └── javascript.js │ │ ├── check-install.js │ │ ├── clean.js │ │ ├── collections │ │ ├── README.md │ │ ├── admin.js │ │ ├── build.js │ │ ├── internal.js │ │ └── rtl.js │ │ ├── config │ │ ├── admin │ │ │ ├── github.js │ │ │ ├── oauth.example.js │ │ │ ├── release.js │ │ │ └── templates │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── component-package.js │ │ │ │ ├── composer.json │ │ │ │ ├── css-package.js │ │ │ │ ├── less-package.js │ │ │ │ └── package.json │ │ ├── defaults.js │ │ ├── docs.js │ │ ├── npm │ │ │ └── gulpfile.js │ │ ├── project │ │ │ ├── config.js │ │ │ ├── install.js │ │ │ └── release.js │ │ ├── tasks.js │ │ └── user.js │ │ ├── docs │ │ ├── build.js │ │ ├── metadata.js │ │ └── serve.js │ │ ├── install.js │ │ ├── rtl │ │ ├── build.js │ │ └── watch.js │ │ ├── version.js │ │ └── watch.js └── wwwroot │ ├── favicon.ico │ ├── media │ ├── captainkube.png │ ├── nodebrady.png │ ├── parrot.png │ └── phippy.png │ ├── scripts │ ├── daemon.js │ ├── knockout-3.4.2.js │ └── signalr.min.js │ └── semantic │ ├── components │ ├── accordion.css │ ├── accordion.js │ ├── accordion.min.css │ ├── accordion.min.js │ ├── ad.css │ ├── ad.min.css │ ├── api.js │ ├── api.min.js │ ├── breadcrumb.css │ ├── breadcrumb.min.css │ ├── button.css │ ├── button.min.css │ ├── card.css │ ├── card.min.css │ ├── checkbox.css │ ├── checkbox.js │ ├── checkbox.min.css │ ├── checkbox.min.js │ ├── comment.css │ ├── comment.min.css │ ├── container.css │ ├── container.min.css │ ├── dimmer.css │ ├── dimmer.js │ ├── dimmer.min.css │ ├── dimmer.min.js │ ├── divider.css │ ├── divider.min.css │ ├── dropdown.css │ ├── dropdown.js │ ├── dropdown.min.css │ ├── dropdown.min.js │ ├── embed.css │ ├── embed.js │ ├── embed.min.css │ ├── embed.min.js │ ├── feed.css │ ├── feed.min.css │ ├── flag.css │ ├── flag.min.css │ ├── form.css │ ├── form.js │ ├── form.min.css │ ├── form.min.js │ ├── grid.css │ ├── grid.min.css │ ├── header.css │ ├── header.min.css │ ├── icon.css │ ├── icon.min.css │ ├── image.css │ ├── image.min.css │ ├── input.css │ ├── input.min.css │ ├── item.css │ ├── item.min.css │ ├── label.css │ ├── label.min.css │ ├── list.css │ ├── list.min.css │ ├── loader.css │ ├── loader.min.css │ ├── menu.css │ ├── menu.min.css │ ├── message.css │ ├── message.min.css │ ├── modal.css │ ├── modal.js │ ├── modal.min.css │ ├── modal.min.js │ ├── nag.css │ ├── nag.js │ ├── nag.min.css │ ├── nag.min.js │ ├── popup.css │ ├── popup.js │ ├── popup.min.css │ ├── popup.min.js │ ├── progress.css │ ├── progress.js │ ├── progress.min.css │ ├── progress.min.js │ ├── rail.css │ ├── rail.min.css │ ├── rating.css │ ├── rating.js │ ├── rating.min.css │ ├── rating.min.js │ ├── reset.css │ ├── reset.min.css │ ├── reveal.css │ ├── reveal.min.css │ ├── search.css │ ├── search.js │ ├── search.min.css │ ├── search.min.js │ ├── segment.css │ ├── segment.min.css │ ├── shape.css │ ├── shape.js │ ├── shape.min.css │ ├── shape.min.js │ ├── sidebar.css │ ├── sidebar.js │ ├── sidebar.min.css │ ├── sidebar.min.js │ ├── site.css │ ├── site.js │ ├── site.min.css │ ├── site.min.js │ ├── statistic.css │ ├── statistic.min.css │ ├── step.css │ ├── step.min.css │ ├── sticky.css │ ├── sticky.js │ ├── sticky.min.css │ ├── sticky.min.js │ ├── tab.css │ ├── tab.js │ ├── tab.min.css │ ├── tab.min.js │ ├── table.css │ ├── table.min.css │ ├── transition.css │ ├── transition.js │ ├── transition.min.css │ ├── transition.min.js │ ├── visibility.js │ └── visibility.min.js │ ├── semantic.css │ ├── semantic.js │ ├── semantic.min.css │ ├── semantic.min.js │ └── themes │ ├── basic │ └── assets │ │ └── fonts │ │ ├── icons.eot │ │ ├── icons.svg │ │ ├── icons.ttf │ │ └── icons.woff │ ├── default │ └── assets │ │ ├── fonts │ │ ├── brand-icons.eot │ │ ├── brand-icons.svg │ │ ├── brand-icons.ttf │ │ ├── brand-icons.woff │ │ ├── brand-icons.woff2 │ │ ├── icons.eot │ │ ├── icons.svg │ │ ├── icons.ttf │ │ ├── icons.woff │ │ ├── icons.woff2 │ │ ├── outline-icons.eot │ │ ├── outline-icons.svg │ │ ├── outline-icons.ttf │ │ ├── outline-icons.woff │ │ └── outline-icons.woff2 │ │ └── images │ │ └── flags.png │ ├── github │ └── assets │ │ └── fonts │ │ ├── octicons-local.ttf │ │ ├── octicons.svg │ │ ├── octicons.ttf │ │ └── octicons.woff │ └── material │ └── assets │ └── fonts │ ├── icons.eot │ ├── icons.svg │ ├── icons.ttf │ ├── icons.woff │ └── icons.woff2 └── phippy ├── .dockerignore ├── .draft-tasks.toml ├── .draftignore ├── Dockerfile ├── cd-pipeline.yml ├── charts └── phippy │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── ingress.yaml │ ├── secret.yaml │ └── service.yaml │ └── values.yaml ├── ci-pipeline.yml ├── composer.json ├── composer.phar ├── draft.toml └── index.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/README.md -------------------------------------------------------------------------------- /captainkube/.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | draft.toml 3 | chart/ 4 | NOTICE 5 | Godeps/ 6 | vendor/ -------------------------------------------------------------------------------- /captainkube/.draft-tasks.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /captainkube/.draftignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/captainkube/.draftignore -------------------------------------------------------------------------------- /captainkube/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/captainkube/Dockerfile -------------------------------------------------------------------------------- /captainkube/cd-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/captainkube/cd-pipeline.yml -------------------------------------------------------------------------------- /captainkube/charts/captainkube/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/captainkube/charts/captainkube/.helmignore -------------------------------------------------------------------------------- /captainkube/charts/captainkube/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/captainkube/charts/captainkube/Chart.yaml -------------------------------------------------------------------------------- /captainkube/charts/captainkube/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/captainkube/charts/captainkube/templates/NOTES.txt -------------------------------------------------------------------------------- /captainkube/charts/captainkube/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/captainkube/charts/captainkube/templates/_helpers.tpl -------------------------------------------------------------------------------- /captainkube/charts/captainkube/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/captainkube/charts/captainkube/templates/deployment.yaml -------------------------------------------------------------------------------- /captainkube/charts/captainkube/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/captainkube/charts/captainkube/templates/secret.yaml -------------------------------------------------------------------------------- /captainkube/charts/captainkube/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/captainkube/charts/captainkube/values.yaml -------------------------------------------------------------------------------- /captainkube/ci-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/captainkube/ci-pipeline.yml -------------------------------------------------------------------------------- /captainkube/draft.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/captainkube/draft.toml -------------------------------------------------------------------------------- /captainkube/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/captainkube/main.go -------------------------------------------------------------------------------- /common/cd-steps-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/common/cd-steps-template.yml -------------------------------------------------------------------------------- /common/cd-vars-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/common/cd-vars-template.yml -------------------------------------------------------------------------------- /common/ci-steps-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/common/ci-steps-template.yml -------------------------------------------------------------------------------- /common/ci-vars-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/common/ci-vars-template.yml -------------------------------------------------------------------------------- /media/azure-devops-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/media/azure-devops-workflow.png -------------------------------------------------------------------------------- /media/copy-ingress-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/media/copy-ingress-url.png -------------------------------------------------------------------------------- /media/draft-up-phippy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/media/draft-up-phippy.png -------------------------------------------------------------------------------- /media/drafting-parrot-and-captain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/media/drafting-parrot-and-captain.png -------------------------------------------------------------------------------- /media/edit-parrot-ingress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/media/edit-parrot-ingress.png -------------------------------------------------------------------------------- /media/find-parrot-ingress-to-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/media/find-parrot-ingress-to-edit.png -------------------------------------------------------------------------------- /media/get-url-in-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/media/get-url-in-portal.png -------------------------------------------------------------------------------- /media/get-url-via-az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/media/get-url-via-az.png -------------------------------------------------------------------------------- /media/parrot-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/media/parrot-dashboard.png -------------------------------------------------------------------------------- /media/phippy-is-here.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/media/phippy-is-here.png -------------------------------------------------------------------------------- /nodebrady/.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | draft.toml 3 | chart/ 4 | NOTICE 5 | node_modules 6 | npm-debug.log 7 | -------------------------------------------------------------------------------- /nodebrady/.draft-tasks.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodebrady/.draftignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/.draftignore -------------------------------------------------------------------------------- /nodebrady/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/.editorconfig -------------------------------------------------------------------------------- /nodebrady/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/.jshintrc -------------------------------------------------------------------------------- /nodebrady/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/Dockerfile -------------------------------------------------------------------------------- /nodebrady/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/app.js -------------------------------------------------------------------------------- /nodebrady/cd-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/cd-pipeline.yml -------------------------------------------------------------------------------- /nodebrady/charts/nodebrady/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/charts/nodebrady/.helmignore -------------------------------------------------------------------------------- /nodebrady/charts/nodebrady/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/charts/nodebrady/Chart.yaml -------------------------------------------------------------------------------- /nodebrady/charts/nodebrady/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/charts/nodebrady/templates/NOTES.txt -------------------------------------------------------------------------------- /nodebrady/charts/nodebrady/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/charts/nodebrady/templates/_helpers.tpl -------------------------------------------------------------------------------- /nodebrady/charts/nodebrady/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/charts/nodebrady/templates/deployment.yaml -------------------------------------------------------------------------------- /nodebrady/charts/nodebrady/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/charts/nodebrady/templates/ingress.yaml -------------------------------------------------------------------------------- /nodebrady/charts/nodebrady/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/charts/nodebrady/templates/secret.yaml -------------------------------------------------------------------------------- /nodebrady/charts/nodebrady/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/charts/nodebrady/templates/service.yaml -------------------------------------------------------------------------------- /nodebrady/charts/nodebrady/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/charts/nodebrady/values.yaml -------------------------------------------------------------------------------- /nodebrady/ci-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/ci-pipeline.yml -------------------------------------------------------------------------------- /nodebrady/controllers/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/controllers/messages.js -------------------------------------------------------------------------------- /nodebrady/draft.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/draft.toml -------------------------------------------------------------------------------- /nodebrady/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/package-lock.json -------------------------------------------------------------------------------- /nodebrady/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/package.json -------------------------------------------------------------------------------- /nodebrady/public/scripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodebrady/public/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/public/styles/main.css -------------------------------------------------------------------------------- /nodebrady/test/routeSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/test/routeSpec.js -------------------------------------------------------------------------------- /nodebrady/views/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/views/layout.html -------------------------------------------------------------------------------- /nodebrady/views/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/nodebrady/views/list.html -------------------------------------------------------------------------------- /parrot/.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | draft.toml 3 | chart/ 4 | NOTICE 5 | bin/ 6 | obj/ 7 | !published/ -------------------------------------------------------------------------------- /parrot/.draft-tasks.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parrot/.draftignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/.draftignore -------------------------------------------------------------------------------- /parrot/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/.vscode/launch.json -------------------------------------------------------------------------------- /parrot/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/.vscode/tasks.json -------------------------------------------------------------------------------- /parrot/Controllers/ClusterStatusController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/Controllers/ClusterStatusController.cs -------------------------------------------------------------------------------- /parrot/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/Controllers/HomeController.cs -------------------------------------------------------------------------------- /parrot/Controllers/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/Controllers/test.json -------------------------------------------------------------------------------- /parrot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/Dockerfile -------------------------------------------------------------------------------- /parrot/Hubs/Daemon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/Hubs/Daemon.cs -------------------------------------------------------------------------------- /parrot/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /parrot/Models/Pod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/Models/Pod.cs -------------------------------------------------------------------------------- /parrot/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/NOTICE -------------------------------------------------------------------------------- /parrot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/Program.cs -------------------------------------------------------------------------------- /parrot/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/Startup.cs -------------------------------------------------------------------------------- /parrot/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /parrot/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /parrot/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /parrot/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /parrot/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /parrot/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /parrot/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/appsettings.Development.json -------------------------------------------------------------------------------- /parrot/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/appsettings.json -------------------------------------------------------------------------------- /parrot/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/bundleconfig.json -------------------------------------------------------------------------------- /parrot/cd-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/cd-pipeline.yml -------------------------------------------------------------------------------- /parrot/charts/parrot/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/charts/parrot/.helmignore -------------------------------------------------------------------------------- /parrot/charts/parrot/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/charts/parrot/Chart.yaml -------------------------------------------------------------------------------- /parrot/charts/parrot/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/charts/parrot/templates/NOTES.txt -------------------------------------------------------------------------------- /parrot/charts/parrot/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/charts/parrot/templates/_helpers.tpl -------------------------------------------------------------------------------- /parrot/charts/parrot/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/charts/parrot/templates/deployment.yaml -------------------------------------------------------------------------------- /parrot/charts/parrot/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/charts/parrot/templates/ingress.yaml -------------------------------------------------------------------------------- /parrot/charts/parrot/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/charts/parrot/templates/secret.yaml -------------------------------------------------------------------------------- /parrot/charts/parrot/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/charts/parrot/templates/service.yaml -------------------------------------------------------------------------------- /parrot/charts/parrot/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/charts/parrot/values.yaml -------------------------------------------------------------------------------- /parrot/ci-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/ci-pipeline.yml -------------------------------------------------------------------------------- /parrot/draft.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/draft.toml -------------------------------------------------------------------------------- /parrot/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/package-lock.json -------------------------------------------------------------------------------- /parrot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/package.json -------------------------------------------------------------------------------- /parrot/parrot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/parrot.csproj -------------------------------------------------------------------------------- /parrot/semantic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic.json -------------------------------------------------------------------------------- /parrot/semantic/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/gulpfile.js -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/behaviors/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/behaviors/api.js -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/behaviors/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/behaviors/form.js -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/behaviors/visibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/behaviors/visibility.js -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/collections/breadcrumb.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/collections/breadcrumb.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/collections/form.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/collections/form.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/collections/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/collections/grid.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/collections/menu.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/collections/menu.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/collections/message.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/collections/message.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/collections/table.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/collections/table.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/elements/button.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/elements/button.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/elements/container.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/elements/container.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/elements/divider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/elements/divider.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/elements/flag.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/elements/flag.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/elements/header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/elements/header.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/elements/icon.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/elements/icon.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/elements/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/elements/image.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/elements/input.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/elements/input.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/elements/label.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/elements/label.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/elements/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/elements/list.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/elements/loader.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/elements/loader.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/elements/rail.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/elements/rail.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/elements/reveal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/elements/reveal.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/elements/segment.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/elements/segment.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/elements/step.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/elements/step.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/globals/reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/globals/reset.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/globals/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/globals/site.js -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/globals/site.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/globals/site.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/accordion.js -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/accordion.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/accordion.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/checkbox.js -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/checkbox.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/checkbox.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/dimmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/dimmer.js -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/dimmer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/dimmer.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/dropdown.js -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/dropdown.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/dropdown.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/embed.js -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/embed.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/embed.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/modal.js -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/modal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/modal.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/nag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/nag.js -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/nag.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/nag.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/popup.js -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/popup.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/popup.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/progress.js -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/progress.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/progress.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/rating.js -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/rating.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/rating.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/search.js -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/search.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/search.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/shape.js -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/shape.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/shape.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/sidebar.js -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/sidebar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/sidebar.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/sticky.js -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/sticky.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/sticky.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/tab.js -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/tab.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/tab.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/transition.js -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/modules/transition.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/modules/transition.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/views/ad.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/views/ad.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/views/card.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/views/card.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/views/comment.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/views/comment.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/views/feed.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/views/feed.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/views/item.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/views/item.less -------------------------------------------------------------------------------- /parrot/semantic/src/definitions/views/statistic.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/definitions/views/statistic.less -------------------------------------------------------------------------------- /parrot/semantic/src/semantic.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/semantic.less -------------------------------------------------------------------------------- /parrot/semantic/src/site/collections/breadcrumb.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/collections/breadcrumb.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/collections/breadcrumb.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/collections/breadcrumb.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/collections/form.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/collections/form.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/collections/form.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/collections/form.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/collections/grid.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/collections/grid.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/collections/grid.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/collections/grid.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/collections/menu.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/collections/menu.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/collections/menu.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/collections/menu.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/collections/message.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/collections/message.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/collections/message.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/collections/message.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/collections/table.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/collections/table.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/collections/table.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/collections/table.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/button.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/button.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/button.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/button.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/container.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/container.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/container.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/container.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/divider.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/divider.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/divider.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/divider.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/flag.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/flag.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/flag.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/flag.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/header.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/header.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/header.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/header.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/icon.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/icon.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/icon.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/icon.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/image.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/image.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/image.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/image.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/input.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/input.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/input.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/input.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/label.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/label.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/label.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/label.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/list.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/list.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/list.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/list.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/loader.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/loader.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/loader.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/loader.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/rail.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/rail.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/rail.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/rail.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/reveal.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/reveal.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/reveal.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/reveal.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/segment.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/segment.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/segment.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/segment.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/step.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/step.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/elements/step.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/elements/step.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/globals/reset.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/globals/reset.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/globals/reset.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/globals/reset.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/globals/site.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/globals/site.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/globals/site.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/globals/site.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/accordion.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/accordion.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/accordion.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/accordion.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/chatroom.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/chatroom.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/chatroom.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/chatroom.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/checkbox.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/checkbox.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/checkbox.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/checkbox.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/dimmer.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/dimmer.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/dimmer.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/dimmer.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/dropdown.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/dropdown.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/dropdown.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/dropdown.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/embed.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/embed.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/embed.variables: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/modal.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/modal.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/modal.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/modal.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/nag.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/nag.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/nag.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/nag.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/popup.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/popup.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/popup.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/popup.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/progress.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/progress.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/progress.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/progress.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/rating.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/rating.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/rating.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/rating.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/search.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/search.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/search.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/search.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/shape.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/shape.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/shape.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/shape.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/sidebar.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/sidebar.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/sidebar.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/sidebar.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/sticky.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/sticky.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/sticky.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/sticky.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/tab.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/tab.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/tab.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/tab.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/transition.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/transition.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/modules/transition.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/modules/transition.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/views/ad.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/views/ad.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/views/ad.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/views/ad.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/views/card.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/views/card.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/views/card.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/views/card.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/views/comment.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/views/comment.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/views/comment.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/views/comment.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/views/feed.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/views/feed.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/views/feed.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/views/feed.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/views/item.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/views/item.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/views/item.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/views/item.variables -------------------------------------------------------------------------------- /parrot/semantic/src/site/views/statistic.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/views/statistic.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/site/views/statistic.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/site/views/statistic.variables -------------------------------------------------------------------------------- /parrot/semantic/src/theme.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/theme.config -------------------------------------------------------------------------------- /parrot/semantic/src/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/theme.less -------------------------------------------------------------------------------- /parrot/semantic/src/themes/amazon/elements/button.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/amazon/elements/button.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/amazon/elements/button.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/amazon/elements/button.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/amazon/globals/site.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/amazon/globals/site.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/basic/assets/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/basic/assets/fonts/icons.eot -------------------------------------------------------------------------------- /parrot/semantic/src/themes/basic/assets/fonts/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/basic/assets/fonts/icons.svg -------------------------------------------------------------------------------- /parrot/semantic/src/themes/basic/assets/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/basic/assets/fonts/icons.ttf -------------------------------------------------------------------------------- /parrot/semantic/src/themes/basic/assets/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/basic/assets/fonts/icons.woff -------------------------------------------------------------------------------- /parrot/semantic/src/themes/basic/collections/table.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/basic/collections/table.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/basic/collections/table.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/basic/collections/table.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/basic/elements/button.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/basic/elements/button.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/basic/elements/button.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/basic/elements/button.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/basic/elements/icon.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/basic/elements/icon.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/basic/elements/icon.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/basic/elements/icon.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/basic/elements/step.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/basic/elements/step.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/basic/elements/step.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/basic/elements/step.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/basic/globals/reset.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/basic/globals/reset.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/basic/globals/reset.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/basic/globals/reset.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/basic/modules/progress.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/basic/modules/progress.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/basic/modules/progress.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/basic/modules/progress.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/basic/views/card.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/basic/views/card.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/basic/views/card.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/basic/views/card.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/bookish/elements/header.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/bookish/elements/header.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/bookish/elements/header.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/bookish/elements/header.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/bootstrap3/elements/button.overrides: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parrot/semantic/src/themes/bootstrap3/elements/button.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/bootstrap3/elements/button.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/chubby/collections/form.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/chubby/collections/form.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/chubby/collections/form.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/chubby/collections/form.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/chubby/collections/menu.overrides: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parrot/semantic/src/themes/chubby/collections/menu.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/chubby/collections/menu.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/chubby/elements/button.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/chubby/elements/button.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/chubby/elements/button.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/chubby/elements/button.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/chubby/elements/header.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/chubby/elements/header.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/chubby/elements/header.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/chubby/elements/header.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/chubby/modules/accordion.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/chubby/modules/accordion.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/chubby/modules/accordion.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/chubby/modules/accordion.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/chubby/views/comment.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/chubby/views/comment.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/chubby/views/comment.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/chubby/views/comment.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/classic/collections/table.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/classic/collections/table.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/classic/collections/table.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/classic/collections/table.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/classic/elements/button.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/classic/elements/button.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/classic/elements/button.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/classic/elements/button.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/classic/elements/header.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/classic/elements/header.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/classic/elements/header.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/classic/elements/header.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/classic/modules/progress.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/classic/modules/progress.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/classic/modules/progress.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/classic/modules/progress.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/classic/views/card.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/classic/views/card.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/classic/views/card.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/classic/views/card.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/colored/modules/checkbox.overrides: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parrot/semantic/src/themes/colored/modules/checkbox.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/colored/modules/checkbox.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/assets/fonts/brand-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/assets/fonts/brand-icons.eot -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/assets/fonts/brand-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/assets/fonts/brand-icons.svg -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/assets/fonts/brand-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/assets/fonts/brand-icons.ttf -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/assets/fonts/brand-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/assets/fonts/brand-icons.woff -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/assets/fonts/brand-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/assets/fonts/brand-icons.woff2 -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/assets/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/assets/fonts/icons.eot -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/assets/fonts/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/assets/fonts/icons.svg -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/assets/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/assets/fonts/icons.ttf -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/assets/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/assets/fonts/icons.woff -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/assets/fonts/icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/assets/fonts/icons.woff2 -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/assets/fonts/outline-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/assets/fonts/outline-icons.eot -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/assets/fonts/outline-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/assets/fonts/outline-icons.svg -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/assets/fonts/outline-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/assets/fonts/outline-icons.ttf -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/assets/fonts/outline-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/assets/fonts/outline-icons.woff -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/assets/fonts/outline-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/assets/fonts/outline-icons.woff2 -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/assets/images/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/assets/images/flags.png -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/collections/breadcrumb.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/collections/breadcrumb.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/collections/breadcrumb.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/collections/breadcrumb.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/collections/form.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/collections/form.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/collections/form.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/collections/form.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/collections/grid.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/collections/grid.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/collections/grid.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/collections/grid.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/collections/menu.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/collections/menu.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/collections/menu.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/collections/menu.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/collections/message.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/collections/message.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/collections/message.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/collections/message.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/collections/table.overrides: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/collections/table.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/collections/table.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/button.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/button.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/button.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/button.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/container.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/container.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/container.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/container.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/divider.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/divider.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/divider.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/divider.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/flag.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/flag.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/flag.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/flag.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/header.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/header.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/header.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/header.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/icon.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/icon.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/icon.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/icon.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/image.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/image.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/image.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/image.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/input.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/input.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/input.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/input.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/label.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/label.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/label.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/label.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/list.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/list.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/list.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/list.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/loader.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/loader.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/loader.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/loader.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/rail.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/rail.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/rail.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/rail.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/reveal.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/reveal.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/reveal.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/reveal.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/segment.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/segment.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/segment.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/segment.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/step.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/step.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/elements/step.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/elements/step.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/globals/reset.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/globals/reset.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/globals/reset.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/globals/reset.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/globals/site.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/globals/site.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/globals/site.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/globals/site.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/accordion.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/accordion.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/accordion.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/accordion.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/chatroom.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/chatroom.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/chatroom.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/chatroom.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/checkbox.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/checkbox.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/checkbox.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/checkbox.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/dimmer.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/dimmer.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/dimmer.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/dimmer.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/dropdown.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/dropdown.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/dropdown.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/dropdown.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/embed.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/embed.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/embed.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/embed.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/modal.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/modal.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/modal.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/modal.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/nag.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/nag.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/nag.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/nag.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/popup.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/popup.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/popup.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/popup.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/progress.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/progress.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/progress.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/progress.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/rating.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/rating.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/rating.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/rating.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/search.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/search.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/search.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/search.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/shape.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/shape.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/shape.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/shape.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/sidebar.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/sidebar.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/sidebar.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/sidebar.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/sticky.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/sticky.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/sticky.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/sticky.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/tab.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/tab.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/tab.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/tab.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/transition.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/transition.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/modules/transition.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/modules/transition.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/views/ad.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/views/ad.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/views/ad.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/views/ad.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/views/card.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/views/card.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/views/card.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/views/card.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/views/comment.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/views/comment.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/views/comment.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/views/comment.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/views/feed.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/views/feed.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/views/feed.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/views/feed.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/views/item.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/views/item.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/views/item.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/views/item.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/views/statistic.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/views/statistic.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/default/views/statistic.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/default/views/statistic.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/duo/elements/loader.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/duo/elements/loader.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/duo/elements/loader.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/duo/elements/loader.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/fixed-width/collections/grid.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/fixed-width/collections/grid.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/fixed-width/collections/grid.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/fixed-width/collections/grid.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/fixed-width/modules/modal.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/fixed-width/modules/modal.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/fixed-width/modules/modal.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/fixed-width/modules/modal.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/flat/collections/form.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/flat/collections/form.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/flat/collections/form.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/flat/collections/form.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/flat/globals/site.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/flat/globals/site.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/flat/globals/site.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/flat/globals/site.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/assets/fonts/octicons-local.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/assets/fonts/octicons-local.ttf -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/assets/fonts/octicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/assets/fonts/octicons.svg -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/assets/fonts/octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/assets/fonts/octicons.ttf -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/assets/fonts/octicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/assets/fonts/octicons.woff -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/collections/breadcrumb.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/collections/breadcrumb.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/collections/form.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/collections/form.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/collections/form.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/collections/form.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/collections/grid.variables: -------------------------------------------------------------------------------- 1 | 2 | @gutterWidth: 1.538rem; -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/collections/menu.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/collections/menu.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/collections/menu.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/collections/menu.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/collections/message.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/collections/message.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/collections/message.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/collections/message.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/collections/table.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/collections/table.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/elements/button.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/elements/button.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/elements/button.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/elements/button.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/elements/header.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/elements/header.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/elements/icon.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/elements/icon.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/elements/icon.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/elements/icon.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/elements/image.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/elements/image.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/elements/input.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/elements/input.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/elements/input.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/elements/input.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/elements/label.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/elements/label.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/elements/label.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/elements/label.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/elements/segment.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/elements/segment.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/elements/segment.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/elements/segment.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/elements/step.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/elements/step.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/elements/step.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/elements/step.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/globals/site.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/globals/site.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/modules/dropdown.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/modules/dropdown.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/modules/dropdown.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/modules/dropdown.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/github/modules/popup.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/github/modules/popup.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/gmail/collections/message.overrides: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parrot/semantic/src/themes/gmail/collections/message.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/gmail/collections/message.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/instagram/views/card.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/instagram/views/card.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/instagram/views/card.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/instagram/views/card.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/material/assets/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/material/assets/fonts/icons.eot -------------------------------------------------------------------------------- /parrot/semantic/src/themes/material/assets/fonts/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/material/assets/fonts/icons.svg -------------------------------------------------------------------------------- /parrot/semantic/src/themes/material/assets/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/material/assets/fonts/icons.ttf -------------------------------------------------------------------------------- /parrot/semantic/src/themes/material/assets/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/material/assets/fonts/icons.woff -------------------------------------------------------------------------------- /parrot/semantic/src/themes/material/assets/fonts/icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/material/assets/fonts/icons.woff2 -------------------------------------------------------------------------------- /parrot/semantic/src/themes/material/collections/menu.overrides: -------------------------------------------------------------------------------- 1 | @import url(https://fonts.googleapis.com/css?family=Roboto); 2 | -------------------------------------------------------------------------------- /parrot/semantic/src/themes/material/collections/menu.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/material/collections/menu.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/material/elements/button.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/material/elements/button.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/material/elements/button.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/material/elements/button.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/material/elements/header.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/material/elements/header.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/material/elements/header.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/material/elements/header.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/material/elements/icon.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/material/elements/icon.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/material/elements/icon.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/material/elements/icon.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/material/globals/site.overrides: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parrot/semantic/src/themes/material/globals/site.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/material/globals/site.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/material/modules/dropdown.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/material/modules/dropdown.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/material/modules/dropdown.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/material/modules/dropdown.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/material/modules/modal.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/material/modules/modal.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/material/modules/modal.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/material/modules/modal.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/pulsar/elements/loader.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/pulsar/elements/loader.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/pulsar/elements/loader.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/pulsar/elements/loader.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/raised/elements/button.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/raised/elements/button.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/raised/elements/button.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/raised/elements/button.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/resetcss/globals/reset.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/resetcss/globals/reset.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/resetcss/globals/reset.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/resetcss/globals/reset.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/round/elements/button.overrides: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parrot/semantic/src/themes/round/elements/button.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/round/elements/button.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/rtl/globals/site.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/rtl/globals/site.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/rtl/globals/site.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/rtl/globals/site.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/striped/modules/progress.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/striped/modules/progress.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/striped/modules/progress.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/striped/modules/progress.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/timeline/views/feed.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/timeline/views/feed.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/timeline/views/feed.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/timeline/views/feed.variables -------------------------------------------------------------------------------- /parrot/semantic/src/themes/twitter/elements/button.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/twitter/elements/button.overrides -------------------------------------------------------------------------------- /parrot/semantic/src/themes/twitter/elements/button.variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/src/themes/twitter/elements/button.variables -------------------------------------------------------------------------------- /parrot/semantic/tasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/README.md -------------------------------------------------------------------------------- /parrot/semantic/tasks/admin/components/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/admin/components/create.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/admin/components/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/admin/components/init.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/admin/components/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/admin/components/update.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/admin/distributions/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/admin/distributions/create.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/admin/distributions/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/admin/distributions/init.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/admin/distributions/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/admin/distributions/update.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/admin/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/admin/publish.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/admin/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/admin/register.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/admin/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/admin/release.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/build.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/build/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/build/assets.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/build/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/build/css.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/build/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/build/javascript.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/check-install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/check-install.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/clean.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/collections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/collections/README.md -------------------------------------------------------------------------------- /parrot/semantic/tasks/collections/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/collections/admin.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/collections/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/collections/build.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/collections/internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/collections/internal.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/collections/rtl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/collections/rtl.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/config/admin/github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/config/admin/github.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/config/admin/oauth.example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/config/admin/oauth.example.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/config/admin/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/config/admin/release.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/config/admin/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/config/admin/templates/README.md -------------------------------------------------------------------------------- /parrot/semantic/tasks/config/admin/templates/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/config/admin/templates/bower.json -------------------------------------------------------------------------------- /parrot/semantic/tasks/config/admin/templates/component-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/config/admin/templates/component-package.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/config/admin/templates/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/config/admin/templates/composer.json -------------------------------------------------------------------------------- /parrot/semantic/tasks/config/admin/templates/css-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/config/admin/templates/css-package.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/config/admin/templates/less-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/config/admin/templates/less-package.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/config/admin/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/config/admin/templates/package.json -------------------------------------------------------------------------------- /parrot/semantic/tasks/config/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/config/defaults.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/config/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/config/docs.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/config/npm/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/config/npm/gulpfile.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/config/project/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/config/project/config.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/config/project/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/config/project/install.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/config/project/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/config/project/release.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/config/tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/config/tasks.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/config/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/config/user.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/docs/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/docs/build.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/docs/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/docs/metadata.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/docs/serve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/docs/serve.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/install.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/rtl/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/rtl/build.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/rtl/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/rtl/watch.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/version.js -------------------------------------------------------------------------------- /parrot/semantic/tasks/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/semantic/tasks/watch.js -------------------------------------------------------------------------------- /parrot/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/favicon.ico -------------------------------------------------------------------------------- /parrot/wwwroot/media/captainkube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/media/captainkube.png -------------------------------------------------------------------------------- /parrot/wwwroot/media/nodebrady.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/media/nodebrady.png -------------------------------------------------------------------------------- /parrot/wwwroot/media/parrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/media/parrot.png -------------------------------------------------------------------------------- /parrot/wwwroot/media/phippy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/media/phippy.png -------------------------------------------------------------------------------- /parrot/wwwroot/scripts/daemon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/scripts/daemon.js -------------------------------------------------------------------------------- /parrot/wwwroot/scripts/knockout-3.4.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/scripts/knockout-3.4.2.js -------------------------------------------------------------------------------- /parrot/wwwroot/scripts/signalr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/scripts/signalr.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/accordion.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/accordion.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/accordion.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/accordion.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/accordion.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/accordion.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/ad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/ad.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/ad.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/ad.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/api.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/api.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/api.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/breadcrumb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/breadcrumb.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/breadcrumb.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/breadcrumb.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/button.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/button.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/button.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/card.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/card.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/card.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/checkbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/checkbox.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/checkbox.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/checkbox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/checkbox.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/checkbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/checkbox.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/comment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/comment.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/comment.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/comment.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/container.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/container.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/container.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/container.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/dimmer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/dimmer.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/dimmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/dimmer.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/dimmer.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/dimmer.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/dimmer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/dimmer.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/divider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/divider.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/divider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/divider.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/dropdown.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/dropdown.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/dropdown.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/dropdown.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/dropdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/dropdown.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/embed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/embed.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/embed.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/embed.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/embed.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/embed.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/embed.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/feed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/feed.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/feed.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/feed.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/flag.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/flag.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/flag.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/flag.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/form.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/form.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/form.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/form.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/form.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/form.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/grid.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/grid.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/header.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/header.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/header.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/icon.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/icon.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/icon.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/image.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/image.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/image.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/input.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/input.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/input.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/item.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/item.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/item.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/label.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/label.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/label.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/label.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/list.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/list.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/list.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/loader.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/loader.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/loader.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/menu.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/menu.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/menu.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/message.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/message.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/message.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/message.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/modal.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/modal.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/modal.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/modal.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/modal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/modal.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/nag.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/nag.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/nag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/nag.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/nag.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/nag.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/nag.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/nag.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/popup.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/popup.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/popup.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/popup.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/popup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/popup.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/progress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/progress.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/progress.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/progress.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/progress.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/progress.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/progress.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/rail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/rail.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/rail.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/rail.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/rating.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/rating.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/rating.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/rating.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/rating.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/rating.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/rating.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/reset.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/reset.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/reset.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/reveal.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/reveal.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/reveal.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/search.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/search.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/search.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/search.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/search.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/search.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/segment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/segment.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/segment.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/segment.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/shape.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/shape.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/shape.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/shape.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/shape.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/shape.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/shape.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/sidebar.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/sidebar.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/sidebar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/sidebar.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/sidebar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/sidebar.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/site.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/site.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/site.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/site.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/site.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/statistic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/statistic.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/statistic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/statistic.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/step.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/step.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/step.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/step.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/sticky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/sticky.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/sticky.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/sticky.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/sticky.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/sticky.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/sticky.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/tab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/tab.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/tab.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/tab.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/tab.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/tab.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/tab.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/table.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/table.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/table.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/transition.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/transition.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/transition.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/transition.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/transition.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/transition.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/transition.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/visibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/visibility.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/components/visibility.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/components/visibility.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/semantic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/semantic.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/semantic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/semantic.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/semantic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/semantic.min.css -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/semantic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/semantic.min.js -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/basic/assets/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/basic/assets/fonts/icons.eot -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/basic/assets/fonts/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/basic/assets/fonts/icons.svg -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/basic/assets/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/basic/assets/fonts/icons.ttf -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/basic/assets/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/basic/assets/fonts/icons.woff -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/default/assets/fonts/brand-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/default/assets/fonts/brand-icons.eot -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/default/assets/fonts/brand-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/default/assets/fonts/brand-icons.svg -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/default/assets/fonts/brand-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/default/assets/fonts/brand-icons.ttf -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/default/assets/fonts/brand-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/default/assets/fonts/brand-icons.woff -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/default/assets/fonts/brand-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/default/assets/fonts/brand-icons.woff2 -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/default/assets/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/default/assets/fonts/icons.eot -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/default/assets/fonts/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/default/assets/fonts/icons.svg -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/default/assets/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/default/assets/fonts/icons.ttf -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/default/assets/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/default/assets/fonts/icons.woff -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/default/assets/fonts/icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/default/assets/fonts/icons.woff2 -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/default/assets/fonts/outline-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/default/assets/fonts/outline-icons.eot -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/default/assets/fonts/outline-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/default/assets/fonts/outline-icons.svg -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/default/assets/fonts/outline-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/default/assets/fonts/outline-icons.ttf -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/default/assets/fonts/outline-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/default/assets/fonts/outline-icons.woff -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/default/assets/fonts/outline-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/default/assets/fonts/outline-icons.woff2 -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/default/assets/images/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/default/assets/images/flags.png -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/github/assets/fonts/octicons-local.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/github/assets/fonts/octicons-local.ttf -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/github/assets/fonts/octicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/github/assets/fonts/octicons.svg -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/github/assets/fonts/octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/github/assets/fonts/octicons.ttf -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/github/assets/fonts/octicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/github/assets/fonts/octicons.woff -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/material/assets/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/material/assets/fonts/icons.eot -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/material/assets/fonts/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/material/assets/fonts/icons.svg -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/material/assets/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/material/assets/fonts/icons.ttf -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/material/assets/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/material/assets/fonts/icons.woff -------------------------------------------------------------------------------- /parrot/wwwroot/semantic/themes/material/assets/fonts/icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/parrot/wwwroot/semantic/themes/material/assets/fonts/icons.woff2 -------------------------------------------------------------------------------- /phippy/.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | draft.toml 3 | charts/ 4 | -------------------------------------------------------------------------------- /phippy/.draft-tasks.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phippy/.draftignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/phippy/.draftignore -------------------------------------------------------------------------------- /phippy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/phippy/Dockerfile -------------------------------------------------------------------------------- /phippy/cd-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/phippy/cd-pipeline.yml -------------------------------------------------------------------------------- /phippy/charts/phippy/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/phippy/charts/phippy/.helmignore -------------------------------------------------------------------------------- /phippy/charts/phippy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/phippy/charts/phippy/Chart.yaml -------------------------------------------------------------------------------- /phippy/charts/phippy/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/phippy/charts/phippy/templates/NOTES.txt -------------------------------------------------------------------------------- /phippy/charts/phippy/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/phippy/charts/phippy/templates/_helpers.tpl -------------------------------------------------------------------------------- /phippy/charts/phippy/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/phippy/charts/phippy/templates/deployment.yaml -------------------------------------------------------------------------------- /phippy/charts/phippy/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/phippy/charts/phippy/templates/ingress.yaml -------------------------------------------------------------------------------- /phippy/charts/phippy/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/phippy/charts/phippy/templates/secret.yaml -------------------------------------------------------------------------------- /phippy/charts/phippy/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/phippy/charts/phippy/templates/service.yaml -------------------------------------------------------------------------------- /phippy/charts/phippy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/phippy/charts/phippy/values.yaml -------------------------------------------------------------------------------- /phippy/ci-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/phippy/ci-pipeline.yml -------------------------------------------------------------------------------- /phippy/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/phippy/composer.json -------------------------------------------------------------------------------- /phippy/composer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/phippy/composer.phar -------------------------------------------------------------------------------- /phippy/draft.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/phippy/draft.toml -------------------------------------------------------------------------------- /phippy/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/phippyandfriends/HEAD/phippy/index.php --------------------------------------------------------------------------------