mno-enterprise-frontend 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +1 -0
- data/Rakefile +12 -0
- data/app/assets/images/favicon.ico +0 -0
- data/app/assets/images/mno_enterprise/impac/close-widget-pink.png +0 -0
- data/app/assets/images/mno_enterprise/impac/close-widget.png +0 -0
- data/app/assets/images/mno_enterprise/loader-32x32-bg-inverse.gif +0 -0
- data/app/assets/images/mno_enterprise/loader-32x32-bg-main.gif +0 -0
- data/app/assets/images/mno_enterprise/maestrano/logo-whitebg.png +0 -0
- data/app/assets/javascripts/mno_enterprise/angular/app.js.coffee.erb +173 -0
- data/app/assets/javascripts/mno_enterprise/angular/controllers/maestrano-controllers.js.coffee +4 -0
- data/app/assets/javascripts/mno_enterprise/angular/controllers/modals/modals-ctrl.js.coffee +62 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-account.js.coffee +157 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-app-deletion-request.js.coffee +62 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-apps-list.js.coffee +127 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-components.js.coffee +25 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-marketplace-app.js.coffee +77 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-marketplace.js.coffee +51 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-menu.js.coffee +174 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/arrears.js.coffee +70 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/billing.js.coffee +48 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/credit-card.js.coffee +142 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/index.js.coffee +61 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/invoices.js.coffee +42 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/members.js.coffee +280 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/settings.js.coffee +91 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/team-list.js.coffee +179 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/teams.js.coffee +268 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/file-model.js.coffee +33 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/maestrano-components.js.coffee +22 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-autostop-app.js.coffee +123 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee +18 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-currency-widget.js.coffee +43 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-current-currency.js.coffee +22 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-editable.js.coffee +68 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-flash-msg.js.coffee +40 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-helptext.js.coffee +38 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-loading-lounge.js.coffee +184 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-match.js.coffee +14 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-message-modal.js.coffee +56 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-notification-widget.js.coffee +192 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-partner-code-popup.js.coffee +74 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-partner-contact.js.coffee +59 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-password-strength.js.coffee +154 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-password.js.coffee +40 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-price-converter.js.coffee +49 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-scroll-to.js.coffee +14 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-typeahead.js.coffee +89 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/user-setup/components.js.coffee +7 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/user-setup/index.js.coffee +256 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-app-by-category.js.coffee +5 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-currency.js.coffee +30 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-filters.js.coffee +7 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-replace-underscore-with-space.js.coffee +4 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-titleize.js.coffee +7 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-truncate.js.coffee +24 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/maestrano-app-instance.js.coffee +15 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/maestrano-apps-document.js.coffee +83 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/maestrano-user.js.coffee +27 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/organization-svc.js.coffee +318 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/team-svc.js.coffee +180 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/tickets-svc.js.coffee +109 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/impac-config.svc.js.coffee +35 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-apps-list-helper.js.coffee +337 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-assets.js.coffee.erb +21 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-current-currency.js.coffee +7 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-current-user-svc.js.coffee +99 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-exchange-rates.js.coffee +102 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-message-svc.js.coffee +71 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-miscellaneous.js.coffee.erb +46 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-modal.js.coffee +67 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-msg-bus.js.coffee +50 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-services.js.coffee +21 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-shopping-cart.js.coffee +361 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-utilities.js.coffee +61 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/marketplace-svc.js.coffee +59 -0
- data/app/assets/javascripts/mno_enterprise/application.js +17 -0
- data/app/assets/javascripts/mno_enterprise/application_lib.js +14 -0
- data/app/assets/javascripts/mno_enterprise/lib/angular-really-click.js +17 -0
- data/app/assets/javascripts/mno_enterprise/lib/sortable.js +315 -0
- data/app/assets/javascripts/mno_enterprise/lib/ui-bootstrap-tpls-0.13.4.js +5836 -0
- data/app/assets/javascripts/mno_enterprise/lib/xeditable.js +1588 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap.js +12 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/affix.js +162 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/alert.js +94 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/button.js +116 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/carousel.js +237 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/collapse.js +211 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/dropdown.js +161 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/modal.js +324 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/popover.js +113 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/scrollspy.js +175 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/tab.js +153 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/tooltip.js +472 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/transition.js +59 -0
- data/app/assets/javascripts/ng-performance/ngPerformance.html +109 -0
- data/app/assets/javascripts/ng-performance/ngPerformance.js +211 -0
- data/app/assets/stylesheets/mno_enterprise/application.css +13 -0
- data/app/assets/stylesheets/mno_enterprise/custom/accordion.less +90 -0
- data/app/assets/stylesheets/mno_enterprise/custom/alert.less +30 -0
- data/app/assets/stylesheets/mno_enterprise/custom/angular-animate.less +42 -0
- data/app/assets/stylesheets/mno_enterprise/custom/angular-material.less +56 -0
- data/app/assets/stylesheets/mno_enterprise/custom/bootstrap-on-juice.less +22 -0
- data/app/assets/stylesheets/mno_enterprise/custom/button.less +84 -0
- data/app/assets/stylesheets/mno_enterprise/custom/footer.less +44 -0
- data/app/assets/stylesheets/mno_enterprise/custom/form.less +191 -0
- data/app/assets/stylesheets/mno_enterprise/custom/header.less +281 -0
- data/app/assets/stylesheets/mno_enterprise/custom/impac-variables-override.less +65 -0
- data/app/assets/stylesheets/mno_enterprise/custom/modal.less +183 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utilities.less +729 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/app-presentation.less +77 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/banners.less +145 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/carousel.less +68 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/helptext.less +40 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/miscellaneous.less +134 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/progress-bar.less +55 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/step.less +101 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/tabset.less +87 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/testimonial.less +118 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/text.less +23 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/apps.less +243 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/myspace.less +477 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/pages/confirmation_lounge.less +31 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/pages/home.less +57 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/pages/oauth-config-page.less +6 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/registration.less +84 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/star.less +18 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/bootstrap-wizard.less +63 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/dashboard-marketplace.less +187 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/dashboard-organization.less +149 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/dashboard-teams.less +119 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/support.less +42 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/tickets.less +80 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/mno-editable.less +60 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/notification-widget.less +49 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/password-strength.less +28 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/shopping-cart.less +333 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/star-wizard.less +49 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/user-setup.less +10 -0
- data/app/assets/stylesheets/mno_enterprise/custom/xeditable.less +40 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/font-awesome-regular.less +13 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/font-awesome-sprockets.less +13 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/font-awesome.less +16 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/FontAwesome.otf +0 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.eot +0 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.svg +640 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.ttf +0 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.woff +0 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.woff2 +0 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/animated.less +34 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/bordered-pulled.less +25 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/core.less +12 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/extras.less +2 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/fixed-width.less +6 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/icons.less +677 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/larger.less +13 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/list.less +19 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/mixins.less +26 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/rotated-flipped.less +20 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/stacked.less +20 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/variables.less +687 -0
- data/app/assets/stylesheets/mno_enterprise/main.less +132 -0
- data/app/assets/stylesheets/mno_enterprise/mixins.less +75 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/alerts.less +73 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/badges.less +65 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/bootstrap.less +50 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/breadcrumbs.less +26 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/button-groups.less +243 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/buttons.less +160 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/carousel.less +269 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/close.less +34 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/code.less +69 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/component-animations.less +34 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/dropdowns.less +214 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/forms.less +566 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/glyphicons.less +301 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/grid.less +84 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/input-groups.less +166 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/jumbotron.less +50 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/labels.less +64 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/list-group.less +124 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/media.less +61 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins.less +39 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/alerts.less +14 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/background-variant.less +8 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/border-radius.less +18 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/buttons.less +52 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/center-block.less +7 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/clearfix.less +22 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/forms.less +85 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/gradients.less +59 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/grid-framework.less +91 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/grid.less +122 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/hide-text.less +21 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/image.less +33 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/labels.less +12 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/list-group.less +29 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/nav-divider.less +10 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/nav-vertical-align.less +9 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/opacity.less +8 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/pagination.less +23 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/panels.less +24 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/progress-bar.less +10 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/reset-filter.less +8 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/resize.less +6 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/responsive-visibility.less +15 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/size.less +10 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/tab-focus.less +9 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/table-row.less +28 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/text-emphasis.less +8 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/text-overflow.less +8 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/vendor-prefixes.less +227 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/modals.less +148 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/navbar.less +661 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/navs.less +244 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/normalize.less +427 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/pager.less +54 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/pagination.less +88 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/panels.less +265 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/popovers.less +135 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/print.less +107 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/progress-bars.less +87 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/responsive-embed.less +35 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/responsive-utilities.less +194 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/scaffolding.less +150 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/tables.less +234 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/theme.less +273 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/thumbnails.less +36 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/tooltip.less +103 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/type.less +302 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/utilities.less +56 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/variables.less +857 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/wells.less +29 -0
- data/app/assets/stylesheets/mno_enterprise/variables.less +226 -0
- data/app/assets/templates/mno_enterprise/dashboard/account.html +131 -0
- data/app/assets/templates/mno_enterprise/dashboard/app_deletion.html +36 -0
- data/app/assets/templates/mno_enterprise/dashboard/apps_list.html +103 -0
- data/app/assets/templates/mno_enterprise/dashboard/horizontal_menu.html +85 -0
- data/app/assets/templates/mno_enterprise/dashboard/marketplace/index.html +60 -0
- data/app/assets/templates/mno_enterprise/dashboard/marketplace/show.html +133 -0
- data/app/assets/templates/mno_enterprise/dashboard/menu.html +161 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/arrears.html +37 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/billing.html +37 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/credit-card.html +156 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/index.full.html +181 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/index.html +173 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/invoices.html +27 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/members.html +288 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/settings.html +55 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/index.html +175 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/member-add-modal.html +60 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/member-removal-modal.html +35 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/team-add-modal.html +35 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/team-delete-modal.html +35 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/team-list.html +107 -0
- data/app/assets/templates/mno_enterprise/default_template.html +20 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/autostop_app.html +42 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/currency_widget.html +1 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/editable.html +28 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/loading_lounge.html +63 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/modal-messages/congratulations.html +8 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/modal-messages/default.html +1 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/modal-messages/information.html +8 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/notification-widget.html +31 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/password.html +55 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/star_wizard.html +254 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/upload_spreadsheet.html +191 -0
- data/app/assets/templates/mno_enterprise/modals/new-organization-reseller-req.html +35 -0
- data/app/assets/templates/mno_enterprise/modals/new-organization.html +35 -0
- data/app/assets/templates/mno_enterprise/user-setup/index.html +312 -0
- data/app/controllers/mno_enterprise/invoices_controller.rb +22 -0
- data/app/controllers/mno_enterprise/pages_controller.rb +9 -0
- data/app/controllers/mno_enterprise/user_setup_controller.rb +11 -0
- data/app/views/layouts/mno_enterprise/_application_js.html.haml +17 -0
- data/app/views/layouts/mno_enterprise/_common_cdn_lib_js.html.haml +19 -0
- data/app/views/layouts/mno_enterprise/_footer_files.html.haml +5 -0
- data/app/views/layouts/mno_enterprise/_header_files.html.haml +31 -0
- data/app/views/layouts/mno_enterprise/_impersonate_header.html.haml +7 -0
- data/app/views/layouts/mno_enterprise/_public_page_header.html.haml +2 -0
- data/app/views/layouts/mno_enterprise/application.html.haml +18 -0
- data/app/views/layouts/mno_enterprise/application_dashboard.html.haml +22 -0
- data/app/views/layouts/mno_enterprise/third_party/_google_tag_container.html.haml +10 -0
- data/app/views/mno_enterprise/pages/app_access_unauthorized.html.haml +19 -0
- data/app/views/mno_enterprise/pages/app_logout.html.haml +18 -0
- data/app/views/mno_enterprise/pages/billing_details_required.html.haml +19 -0
- data/app/views/mno_enterprise/pages/loading.html.haml +3 -0
- data/app/views/mno_enterprise/pages/myspace.html.haml +6 -0
- data/app/views/mno_enterprise/provision/_provision_apps.html.haml +43 -0
- data/app/views/mno_enterprise/provision/_select_organization.html.haml +17 -0
- data/app/views/mno_enterprise/provision/new.html.haml +4 -0
- data/app/views/mno_enterprise/user_setup/index.html.haml +2 -0
- data/config/initializers/ng-annotate.rb +3 -0
- data/config/initializers/ng-performance.rb +3 -0
- data/config/routes.rb +19 -0
- data/lib/assets/javascripts/impac-angular.js +8719 -0
- data/lib/assets/stylesheets/impac-angular.less +2352 -0
- data/lib/mno-enterprise-frontend.rb +1 -0
- data/lib/mno_enterprise/frontend.rb +13 -0
- data/lib/mno_enterprise/frontend/assets_util.rb +47 -0
- data/lib/mno_enterprise/frontend/concerns/README.md +6 -0
- data/lib/mno_enterprise/frontend/concerns/controllers/pages_controller.rb +25 -0
- data/lib/mno_enterprise/frontend/engine.rb +13 -0
- data/spec/controllers/mno_enterprise/auth/confirmations_controller_spec.rb +84 -0
- data/spec/controllers/mno_enterprise/invoices_controller_spec.rb +34 -0
- data/spec/controllers/mno_enterprise/pages_controller_spec.rb +42 -0
- data/spec/controllers/mno_enterprise/user_setup_controller_spec.rb +33 -0
- data/spec/controllers/mno_enterprise/webhook/o_auth_controller_spec.rb +76 -0
- data/spec/rails_helper.rb +92 -0
- data/spec/routing/mno_enterprise/invoices_controller_routing_spec.rb +11 -0
- data/spec/routing/mno_enterprise/pages_controller_routing_spec.rb +18 -0
- data/spec/routing/mno_enterprise/user_setup_controller_routing_spec.rb +11 -0
- data/spec/spec_helper.rb +78 -0
- metadata +464 -0
@@ -0,0 +1,301 @@
|
|
1
|
+
//
|
2
|
+
// Glyphicons for Bootstrap
|
3
|
+
//
|
4
|
+
// Since icons are fonts, they can be placed anywhere text is placed and are
|
5
|
+
// thus automatically sized to match the surrounding child. To use, create an
|
6
|
+
// inline element with the appropriate classes, like so:
|
7
|
+
//
|
8
|
+
// <a href="#"><span class="glyphicon glyphicon-star"></span> Star</a>
|
9
|
+
|
10
|
+
// Import the fonts
|
11
|
+
@font-face {
|
12
|
+
font-family: 'Glyphicons Halflings';
|
13
|
+
src: asset-url('@{icon-font-path}@{icon-font-name}.eot');
|
14
|
+
src: asset-url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),
|
15
|
+
asset-url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),
|
16
|
+
asset-url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),
|
17
|
+
asset-url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),
|
18
|
+
asset-url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');
|
19
|
+
}
|
20
|
+
|
21
|
+
// Catchall baseclass
|
22
|
+
.glyphicon {
|
23
|
+
position: relative;
|
24
|
+
top: 1px;
|
25
|
+
display: inline-block;
|
26
|
+
font-family: 'Glyphicons Halflings';
|
27
|
+
font-style: normal;
|
28
|
+
font-weight: normal;
|
29
|
+
line-height: 1;
|
30
|
+
-webkit-font-smoothing: antialiased;
|
31
|
+
-moz-osx-font-smoothing: grayscale;
|
32
|
+
}
|
33
|
+
|
34
|
+
// Individual icons
|
35
|
+
.glyphicon-asterisk { &:before { content: "\2a"; } }
|
36
|
+
.glyphicon-plus { &:before { content: "\2b"; } }
|
37
|
+
.glyphicon-euro,
|
38
|
+
.glyphicon-eur { &:before { content: "\20ac"; } }
|
39
|
+
.glyphicon-minus { &:before { content: "\2212"; } }
|
40
|
+
.glyphicon-cloud { &:before { content: "\2601"; } }
|
41
|
+
.glyphicon-envelope { &:before { content: "\2709"; } }
|
42
|
+
.glyphicon-pencil { &:before { content: "\270f"; } }
|
43
|
+
.glyphicon-glass { &:before { content: "\e001"; } }
|
44
|
+
.glyphicon-music { &:before { content: "\e002"; } }
|
45
|
+
.glyphicon-search { &:before { content: "\e003"; } }
|
46
|
+
.glyphicon-heart { &:before { content: "\e005"; } }
|
47
|
+
.glyphicon-star { &:before { content: "\e006"; } }
|
48
|
+
.glyphicon-star-empty { &:before { content: "\e007"; } }
|
49
|
+
.glyphicon-user { &:before { content: "\e008"; } }
|
50
|
+
.glyphicon-film { &:before { content: "\e009"; } }
|
51
|
+
.glyphicon-th-large { &:before { content: "\e010"; } }
|
52
|
+
.glyphicon-th { &:before { content: "\e011"; } }
|
53
|
+
.glyphicon-th-list { &:before { content: "\e012"; } }
|
54
|
+
.glyphicon-ok { &:before { content: "\e013"; } }
|
55
|
+
.glyphicon-remove { &:before { content: "\e014"; } }
|
56
|
+
.glyphicon-zoom-in { &:before { content: "\e015"; } }
|
57
|
+
.glyphicon-zoom-out { &:before { content: "\e016"; } }
|
58
|
+
.glyphicon-off { &:before { content: "\e017"; } }
|
59
|
+
.glyphicon-signal { &:before { content: "\e018"; } }
|
60
|
+
.glyphicon-cog { &:before { content: "\e019"; } }
|
61
|
+
.glyphicon-trash { &:before { content: "\e020"; } }
|
62
|
+
.glyphicon-home { &:before { content: "\e021"; } }
|
63
|
+
.glyphicon-file { &:before { content: "\e022"; } }
|
64
|
+
.glyphicon-time { &:before { content: "\e023"; } }
|
65
|
+
.glyphicon-road { &:before { content: "\e024"; } }
|
66
|
+
.glyphicon-download-alt { &:before { content: "\e025"; } }
|
67
|
+
.glyphicon-download { &:before { content: "\e026"; } }
|
68
|
+
.glyphicon-upload { &:before { content: "\e027"; } }
|
69
|
+
.glyphicon-inbox { &:before { content: "\e028"; } }
|
70
|
+
.glyphicon-play-circle { &:before { content: "\e029"; } }
|
71
|
+
.glyphicon-repeat { &:before { content: "\e030"; } }
|
72
|
+
.glyphicon-refresh { &:before { content: "\e031"; } }
|
73
|
+
.glyphicon-list-alt { &:before { content: "\e032"; } }
|
74
|
+
.glyphicon-lock { &:before { content: "\e033"; } }
|
75
|
+
.glyphicon-flag { &:before { content: "\e034"; } }
|
76
|
+
.glyphicon-headphones { &:before { content: "\e035"; } }
|
77
|
+
.glyphicon-volume-off { &:before { content: "\e036"; } }
|
78
|
+
.glyphicon-volume-down { &:before { content: "\e037"; } }
|
79
|
+
.glyphicon-volume-up { &:before { content: "\e038"; } }
|
80
|
+
.glyphicon-qrcode { &:before { content: "\e039"; } }
|
81
|
+
.glyphicon-barcode { &:before { content: "\e040"; } }
|
82
|
+
.glyphicon-tag { &:before { content: "\e041"; } }
|
83
|
+
.glyphicon-tags { &:before { content: "\e042"; } }
|
84
|
+
.glyphicon-book { &:before { content: "\e043"; } }
|
85
|
+
.glyphicon-bookmark { &:before { content: "\e044"; } }
|
86
|
+
.glyphicon-print { &:before { content: "\e045"; } }
|
87
|
+
.glyphicon-camera { &:before { content: "\e046"; } }
|
88
|
+
.glyphicon-font { &:before { content: "\e047"; } }
|
89
|
+
.glyphicon-bold { &:before { content: "\e048"; } }
|
90
|
+
.glyphicon-italic { &:before { content: "\e049"; } }
|
91
|
+
.glyphicon-text-height { &:before { content: "\e050"; } }
|
92
|
+
.glyphicon-text-width { &:before { content: "\e051"; } }
|
93
|
+
.glyphicon-align-left { &:before { content: "\e052"; } }
|
94
|
+
.glyphicon-align-center { &:before { content: "\e053"; } }
|
95
|
+
.glyphicon-align-right { &:before { content: "\e054"; } }
|
96
|
+
.glyphicon-align-justify { &:before { content: "\e055"; } }
|
97
|
+
.glyphicon-list { &:before { content: "\e056"; } }
|
98
|
+
.glyphicon-indent-left { &:before { content: "\e057"; } }
|
99
|
+
.glyphicon-indent-right { &:before { content: "\e058"; } }
|
100
|
+
.glyphicon-facetime-video { &:before { content: "\e059"; } }
|
101
|
+
.glyphicon-picture { &:before { content: "\e060"; } }
|
102
|
+
.glyphicon-map-marker { &:before { content: "\e062"; } }
|
103
|
+
.glyphicon-adjust { &:before { content: "\e063"; } }
|
104
|
+
.glyphicon-tint { &:before { content: "\e064"; } }
|
105
|
+
.glyphicon-edit { &:before { content: "\e065"; } }
|
106
|
+
.glyphicon-share { &:before { content: "\e066"; } }
|
107
|
+
.glyphicon-check { &:before { content: "\e067"; } }
|
108
|
+
.glyphicon-move { &:before { content: "\e068"; } }
|
109
|
+
.glyphicon-step-backward { &:before { content: "\e069"; } }
|
110
|
+
.glyphicon-fast-backward { &:before { content: "\e070"; } }
|
111
|
+
.glyphicon-backward { &:before { content: "\e071"; } }
|
112
|
+
.glyphicon-play { &:before { content: "\e072"; } }
|
113
|
+
.glyphicon-pause { &:before { content: "\e073"; } }
|
114
|
+
.glyphicon-stop { &:before { content: "\e074"; } }
|
115
|
+
.glyphicon-forward { &:before { content: "\e075"; } }
|
116
|
+
.glyphicon-fast-forward { &:before { content: "\e076"; } }
|
117
|
+
.glyphicon-step-forward { &:before { content: "\e077"; } }
|
118
|
+
.glyphicon-eject { &:before { content: "\e078"; } }
|
119
|
+
.glyphicon-chevron-left { &:before { content: "\e079"; } }
|
120
|
+
.glyphicon-chevron-right { &:before { content: "\e080"; } }
|
121
|
+
.glyphicon-plus-sign { &:before { content: "\e081"; } }
|
122
|
+
.glyphicon-minus-sign { &:before { content: "\e082"; } }
|
123
|
+
.glyphicon-remove-sign { &:before { content: "\e083"; } }
|
124
|
+
.glyphicon-ok-sign { &:before { content: "\e084"; } }
|
125
|
+
.glyphicon-question-sign { &:before { content: "\e085"; } }
|
126
|
+
.glyphicon-info-sign { &:before { content: "\e086"; } }
|
127
|
+
.glyphicon-screenshot { &:before { content: "\e087"; } }
|
128
|
+
.glyphicon-remove-circle { &:before { content: "\e088"; } }
|
129
|
+
.glyphicon-ok-circle { &:before { content: "\e089"; } }
|
130
|
+
.glyphicon-ban-circle { &:before { content: "\e090"; } }
|
131
|
+
.glyphicon-arrow-left { &:before { content: "\e091"; } }
|
132
|
+
.glyphicon-arrow-right { &:before { content: "\e092"; } }
|
133
|
+
.glyphicon-arrow-up { &:before { content: "\e093"; } }
|
134
|
+
.glyphicon-arrow-down { &:before { content: "\e094"; } }
|
135
|
+
.glyphicon-share-alt { &:before { content: "\e095"; } }
|
136
|
+
.glyphicon-resize-full { &:before { content: "\e096"; } }
|
137
|
+
.glyphicon-resize-small { &:before { content: "\e097"; } }
|
138
|
+
.glyphicon-exclamation-sign { &:before { content: "\e101"; } }
|
139
|
+
.glyphicon-gift { &:before { content: "\e102"; } }
|
140
|
+
.glyphicon-leaf { &:before { content: "\e103"; } }
|
141
|
+
.glyphicon-fire { &:before { content: "\e104"; } }
|
142
|
+
.glyphicon-eye-open { &:before { content: "\e105"; } }
|
143
|
+
.glyphicon-eye-close { &:before { content: "\e106"; } }
|
144
|
+
.glyphicon-warning-sign { &:before { content: "\e107"; } }
|
145
|
+
.glyphicon-plane { &:before { content: "\e108"; } }
|
146
|
+
.glyphicon-calendar { &:before { content: "\e109"; } }
|
147
|
+
.glyphicon-random { &:before { content: "\e110"; } }
|
148
|
+
.glyphicon-comment { &:before { content: "\e111"; } }
|
149
|
+
.glyphicon-magnet { &:before { content: "\e112"; } }
|
150
|
+
.glyphicon-chevron-up { &:before { content: "\e113"; } }
|
151
|
+
.glyphicon-chevron-down { &:before { content: "\e114"; } }
|
152
|
+
.glyphicon-retweet { &:before { content: "\e115"; } }
|
153
|
+
.glyphicon-shopping-cart { &:before { content: "\e116"; } }
|
154
|
+
.glyphicon-folder-close { &:before { content: "\e117"; } }
|
155
|
+
.glyphicon-folder-open { &:before { content: "\e118"; } }
|
156
|
+
.glyphicon-resize-vertical { &:before { content: "\e119"; } }
|
157
|
+
.glyphicon-resize-horizontal { &:before { content: "\e120"; } }
|
158
|
+
.glyphicon-hdd { &:before { content: "\e121"; } }
|
159
|
+
.glyphicon-bullhorn { &:before { content: "\e122"; } }
|
160
|
+
.glyphicon-bell { &:before { content: "\e123"; } }
|
161
|
+
.glyphicon-certificate { &:before { content: "\e124"; } }
|
162
|
+
.glyphicon-thumbs-up { &:before { content: "\e125"; } }
|
163
|
+
.glyphicon-thumbs-down { &:before { content: "\e126"; } }
|
164
|
+
.glyphicon-hand-right { &:before { content: "\e127"; } }
|
165
|
+
.glyphicon-hand-left { &:before { content: "\e128"; } }
|
166
|
+
.glyphicon-hand-up { &:before { content: "\e129"; } }
|
167
|
+
.glyphicon-hand-down { &:before { content: "\e130"; } }
|
168
|
+
.glyphicon-circle-arrow-right { &:before { content: "\e131"; } }
|
169
|
+
.glyphicon-circle-arrow-left { &:before { content: "\e132"; } }
|
170
|
+
.glyphicon-circle-arrow-up { &:before { content: "\e133"; } }
|
171
|
+
.glyphicon-circle-arrow-down { &:before { content: "\e134"; } }
|
172
|
+
.glyphicon-globe { &:before { content: "\e135"; } }
|
173
|
+
.glyphicon-wrench { &:before { content: "\e136"; } }
|
174
|
+
.glyphicon-tasks { &:before { content: "\e137"; } }
|
175
|
+
.glyphicon-filter { &:before { content: "\e138"; } }
|
176
|
+
.glyphicon-briefcase { &:before { content: "\e139"; } }
|
177
|
+
.glyphicon-fullscreen { &:before { content: "\e140"; } }
|
178
|
+
.glyphicon-dashboard { &:before { content: "\e141"; } }
|
179
|
+
.glyphicon-paperclip { &:before { content: "\e142"; } }
|
180
|
+
.glyphicon-heart-empty { &:before { content: "\e143"; } }
|
181
|
+
.glyphicon-link { &:before { content: "\e144"; } }
|
182
|
+
.glyphicon-phone { &:before { content: "\e145"; } }
|
183
|
+
.glyphicon-pushpin { &:before { content: "\e146"; } }
|
184
|
+
.glyphicon-usd { &:before { content: "\e148"; } }
|
185
|
+
.glyphicon-gbp { &:before { content: "\e149"; } }
|
186
|
+
.glyphicon-sort { &:before { content: "\e150"; } }
|
187
|
+
.glyphicon-sort-by-alphabet { &:before { content: "\e151"; } }
|
188
|
+
.glyphicon-sort-by-alphabet-alt { &:before { content: "\e152"; } }
|
189
|
+
.glyphicon-sort-by-order { &:before { content: "\e153"; } }
|
190
|
+
.glyphicon-sort-by-order-alt { &:before { content: "\e154"; } }
|
191
|
+
.glyphicon-sort-by-attributes { &:before { content: "\e155"; } }
|
192
|
+
.glyphicon-sort-by-attributes-alt { &:before { content: "\e156"; } }
|
193
|
+
.glyphicon-unchecked { &:before { content: "\e157"; } }
|
194
|
+
.glyphicon-expand { &:before { content: "\e158"; } }
|
195
|
+
.glyphicon-collapse-down { &:before { content: "\e159"; } }
|
196
|
+
.glyphicon-collapse-up { &:before { content: "\e160"; } }
|
197
|
+
.glyphicon-log-in { &:before { content: "\e161"; } }
|
198
|
+
.glyphicon-flash { &:before { content: "\e162"; } }
|
199
|
+
.glyphicon-log-out { &:before { content: "\e163"; } }
|
200
|
+
.glyphicon-new-window { &:before { content: "\e164"; } }
|
201
|
+
.glyphicon-record { &:before { content: "\e165"; } }
|
202
|
+
.glyphicon-save { &:before { content: "\e166"; } }
|
203
|
+
.glyphicon-open { &:before { content: "\e167"; } }
|
204
|
+
.glyphicon-saved { &:before { content: "\e168"; } }
|
205
|
+
.glyphicon-import { &:before { content: "\e169"; } }
|
206
|
+
.glyphicon-export { &:before { content: "\e170"; } }
|
207
|
+
.glyphicon-send { &:before { content: "\e171"; } }
|
208
|
+
.glyphicon-floppy-disk { &:before { content: "\e172"; } }
|
209
|
+
.glyphicon-floppy-saved { &:before { content: "\e173"; } }
|
210
|
+
.glyphicon-floppy-remove { &:before { content: "\e174"; } }
|
211
|
+
.glyphicon-floppy-save { &:before { content: "\e175"; } }
|
212
|
+
.glyphicon-floppy-open { &:before { content: "\e176"; } }
|
213
|
+
.glyphicon-credit-card { &:before { content: "\e177"; } }
|
214
|
+
.glyphicon-transfer { &:before { content: "\e178"; } }
|
215
|
+
.glyphicon-cutlery { &:before { content: "\e179"; } }
|
216
|
+
.glyphicon-header { &:before { content: "\e180"; } }
|
217
|
+
.glyphicon-compressed { &:before { content: "\e181"; } }
|
218
|
+
.glyphicon-earphone { &:before { content: "\e182"; } }
|
219
|
+
.glyphicon-phone-alt { &:before { content: "\e183"; } }
|
220
|
+
.glyphicon-tower { &:before { content: "\e184"; } }
|
221
|
+
.glyphicon-stats { &:before { content: "\e185"; } }
|
222
|
+
.glyphicon-sd-video { &:before { content: "\e186"; } }
|
223
|
+
.glyphicon-hd-video { &:before { content: "\e187"; } }
|
224
|
+
.glyphicon-subtitles { &:before { content: "\e188"; } }
|
225
|
+
.glyphicon-sound-stereo { &:before { content: "\e189"; } }
|
226
|
+
.glyphicon-sound-dolby { &:before { content: "\e190"; } }
|
227
|
+
.glyphicon-sound-5-1 { &:before { content: "\e191"; } }
|
228
|
+
.glyphicon-sound-6-1 { &:before { content: "\e192"; } }
|
229
|
+
.glyphicon-sound-7-1 { &:before { content: "\e193"; } }
|
230
|
+
.glyphicon-copyright-mark { &:before { content: "\e194"; } }
|
231
|
+
.glyphicon-registration-mark { &:before { content: "\e195"; } }
|
232
|
+
.glyphicon-cloud-download { &:before { content: "\e197"; } }
|
233
|
+
.glyphicon-cloud-upload { &:before { content: "\e198"; } }
|
234
|
+
.glyphicon-tree-conifer { &:before { content: "\e199"; } }
|
235
|
+
.glyphicon-tree-deciduous { &:before { content: "\e200"; } }
|
236
|
+
.glyphicon-cd { &:before { content: "\e201"; } }
|
237
|
+
.glyphicon-save-file { &:before { content: "\e202"; } }
|
238
|
+
.glyphicon-open-file { &:before { content: "\e203"; } }
|
239
|
+
.glyphicon-level-up { &:before { content: "\e204"; } }
|
240
|
+
.glyphicon-copy { &:before { content: "\e205"; } }
|
241
|
+
.glyphicon-paste { &:before { content: "\e206"; } }
|
242
|
+
// The following 2 Glyphicons are omitted for the time being because
|
243
|
+
// they currently use Unicode codepoints that are outside the
|
244
|
+
// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle
|
245
|
+
// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.
|
246
|
+
// Notably, the bug affects some older versions of the Android Browser.
|
247
|
+
// More info: https://github.com/twbs/bootstrap/issues/10106
|
248
|
+
// .glyphicon-door { &:before { content: "\1f6aa"; } }
|
249
|
+
// .glyphicon-key { &:before { content: "\1f511"; } }
|
250
|
+
.glyphicon-alert { &:before { content: "\e209"; } }
|
251
|
+
.glyphicon-equalizer { &:before { content: "\e210"; } }
|
252
|
+
.glyphicon-king { &:before { content: "\e211"; } }
|
253
|
+
.glyphicon-queen { &:before { content: "\e212"; } }
|
254
|
+
.glyphicon-pawn { &:before { content: "\e213"; } }
|
255
|
+
.glyphicon-bishop { &:before { content: "\e214"; } }
|
256
|
+
.glyphicon-knight { &:before { content: "\e215"; } }
|
257
|
+
.glyphicon-baby-formula { &:before { content: "\e216"; } }
|
258
|
+
.glyphicon-tent { &:before { content: "\26fa"; } }
|
259
|
+
.glyphicon-blackboard { &:before { content: "\e218"; } }
|
260
|
+
.glyphicon-bed { &:before { content: "\e219"; } }
|
261
|
+
.glyphicon-apple { &:before { content: "\f8ff"; } }
|
262
|
+
.glyphicon-erase { &:before { content: "\e221"; } }
|
263
|
+
.glyphicon-hourglass { &:before { content: "\231b"; } }
|
264
|
+
.glyphicon-lamp { &:before { content: "\e223"; } }
|
265
|
+
.glyphicon-duplicate { &:before { content: "\e224"; } }
|
266
|
+
.glyphicon-piggy-bank { &:before { content: "\e225"; } }
|
267
|
+
.glyphicon-scissors { &:before { content: "\e226"; } }
|
268
|
+
.glyphicon-bitcoin { &:before { content: "\e227"; } }
|
269
|
+
.glyphicon-yen { &:before { content: "\00a5"; } }
|
270
|
+
.glyphicon-ruble { &:before { content: "\20bd"; } }
|
271
|
+
.glyphicon-scale { &:before { content: "\e230"; } }
|
272
|
+
.glyphicon-ice-lolly { &:before { content: "\e231"; } }
|
273
|
+
.glyphicon-ice-lolly-tasted { &:before { content: "\e232"; } }
|
274
|
+
.glyphicon-education { &:before { content: "\e233"; } }
|
275
|
+
.glyphicon-option-horizontal { &:before { content: "\e234"; } }
|
276
|
+
.glyphicon-option-vertical { &:before { content: "\e235"; } }
|
277
|
+
.glyphicon-menu-hamburger { &:before { content: "\e236"; } }
|
278
|
+
.glyphicon-modal-window { &:before { content: "\e237"; } }
|
279
|
+
.glyphicon-oil { &:before { content: "\e238"; } }
|
280
|
+
.glyphicon-grain { &:before { content: "\e239"; } }
|
281
|
+
.glyphicon-sunglasses { &:before { content: "\e240"; } }
|
282
|
+
.glyphicon-text-size { &:before { content: "\e241"; } }
|
283
|
+
.glyphicon-text-color { &:before { content: "\e242"; } }
|
284
|
+
.glyphicon-text-background { &:before { content: "\e243"; } }
|
285
|
+
.glyphicon-object-align-top { &:before { content: "\e244"; } }
|
286
|
+
.glyphicon-object-align-bottom { &:before { content: "\e245"; } }
|
287
|
+
.glyphicon-object-align-horizontal{ &:before { content: "\e246"; } }
|
288
|
+
.glyphicon-object-align-left { &:before { content: "\e247"; } }
|
289
|
+
.glyphicon-object-align-vertical { &:before { content: "\e248"; } }
|
290
|
+
.glyphicon-object-align-right { &:before { content: "\e249"; } }
|
291
|
+
.glyphicon-triangle-right { &:before { content: "\e250"; } }
|
292
|
+
.glyphicon-triangle-left { &:before { content: "\e251"; } }
|
293
|
+
.glyphicon-triangle-bottom { &:before { content: "\e252"; } }
|
294
|
+
.glyphicon-triangle-top { &:before { content: "\e253"; } }
|
295
|
+
.glyphicon-console { &:before { content: "\e254"; } }
|
296
|
+
.glyphicon-superscript { &:before { content: "\e255"; } }
|
297
|
+
.glyphicon-subscript { &:before { content: "\e256"; } }
|
298
|
+
.glyphicon-menu-left { &:before { content: "\e257"; } }
|
299
|
+
.glyphicon-menu-right { &:before { content: "\e258"; } }
|
300
|
+
.glyphicon-menu-down { &:before { content: "\e259"; } }
|
301
|
+
.glyphicon-menu-up { &:before { content: "\e260"; } }
|
@@ -0,0 +1,84 @@
|
|
1
|
+
//
|
2
|
+
// Grid system
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Container widths
|
7
|
+
//
|
8
|
+
// Set the container width, and override it for fixed navbars in media queries.
|
9
|
+
|
10
|
+
.container {
|
11
|
+
.container-fixed();
|
12
|
+
|
13
|
+
@media (min-width: @screen-sm-min) {
|
14
|
+
width: @container-sm;
|
15
|
+
}
|
16
|
+
@media (min-width: @screen-md-min) {
|
17
|
+
width: @container-md;
|
18
|
+
}
|
19
|
+
@media (min-width: @screen-lg-min) {
|
20
|
+
width: @container-lg;
|
21
|
+
}
|
22
|
+
}
|
23
|
+
|
24
|
+
|
25
|
+
// Fluid container
|
26
|
+
//
|
27
|
+
// Utilizes the mixin meant for fixed width containers, but without any defined
|
28
|
+
// width for fluid, full width layouts.
|
29
|
+
|
30
|
+
.container-fluid {
|
31
|
+
.container-fixed();
|
32
|
+
}
|
33
|
+
|
34
|
+
|
35
|
+
// Row
|
36
|
+
//
|
37
|
+
// Rows contain and clear the floats of your columns.
|
38
|
+
|
39
|
+
.row {
|
40
|
+
.make-row();
|
41
|
+
}
|
42
|
+
|
43
|
+
|
44
|
+
// Columns
|
45
|
+
//
|
46
|
+
// Common styles for small and large grid columns
|
47
|
+
|
48
|
+
.make-grid-columns();
|
49
|
+
|
50
|
+
|
51
|
+
// Extra small grid
|
52
|
+
//
|
53
|
+
// Columns, offsets, pushes, and pulls for extra small devices like
|
54
|
+
// smartphones.
|
55
|
+
|
56
|
+
.make-grid(xs);
|
57
|
+
|
58
|
+
|
59
|
+
// Small grid
|
60
|
+
//
|
61
|
+
// Columns, offsets, pushes, and pulls for the small device range, from phones
|
62
|
+
// to tablets.
|
63
|
+
|
64
|
+
@media (min-width: @screen-sm-min) {
|
65
|
+
.make-grid(sm);
|
66
|
+
}
|
67
|
+
|
68
|
+
|
69
|
+
// Medium grid
|
70
|
+
//
|
71
|
+
// Columns, offsets, pushes, and pulls for the desktop device range.
|
72
|
+
|
73
|
+
@media (min-width: @screen-md-min) {
|
74
|
+
.make-grid(md);
|
75
|
+
}
|
76
|
+
|
77
|
+
|
78
|
+
// Large grid
|
79
|
+
//
|
80
|
+
// Columns, offsets, pushes, and pulls for the large desktop device range.
|
81
|
+
|
82
|
+
@media (min-width: @screen-lg-min) {
|
83
|
+
.make-grid(lg);
|
84
|
+
}
|
@@ -0,0 +1,166 @@
|
|
1
|
+
//
|
2
|
+
// Input groups
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
// Base styles
|
6
|
+
// -------------------------
|
7
|
+
.input-group {
|
8
|
+
position: relative; // For dropdowns
|
9
|
+
display: table;
|
10
|
+
border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table
|
11
|
+
|
12
|
+
// Undo padding and float of grid classes
|
13
|
+
&[class*="col-"] {
|
14
|
+
float: none;
|
15
|
+
padding-left: 0;
|
16
|
+
padding-right: 0;
|
17
|
+
}
|
18
|
+
|
19
|
+
.form-control {
|
20
|
+
// Ensure that the input is always above the *appended* addon button for
|
21
|
+
// proper border colors.
|
22
|
+
position: relative;
|
23
|
+
z-index: 2;
|
24
|
+
|
25
|
+
// IE9 fubars the placeholder attribute in text inputs and the arrows on
|
26
|
+
// select elements in input groups. To fix it, we float the input. Details:
|
27
|
+
// https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855
|
28
|
+
float: left;
|
29
|
+
|
30
|
+
width: 100%;
|
31
|
+
margin-bottom: 0;
|
32
|
+
}
|
33
|
+
}
|
34
|
+
|
35
|
+
// Sizing options
|
36
|
+
//
|
37
|
+
// Remix the default form control sizing classes into new ones for easier
|
38
|
+
// manipulation.
|
39
|
+
|
40
|
+
.input-group-lg > .form-control,
|
41
|
+
.input-group-lg > .input-group-addon,
|
42
|
+
.input-group-lg > .input-group-btn > .btn {
|
43
|
+
.input-lg();
|
44
|
+
}
|
45
|
+
.input-group-sm > .form-control,
|
46
|
+
.input-group-sm > .input-group-addon,
|
47
|
+
.input-group-sm > .input-group-btn > .btn {
|
48
|
+
.input-sm();
|
49
|
+
}
|
50
|
+
|
51
|
+
|
52
|
+
// Display as table-cell
|
53
|
+
// -------------------------
|
54
|
+
.input-group-addon,
|
55
|
+
.input-group-btn,
|
56
|
+
.input-group .form-control {
|
57
|
+
display: table-cell;
|
58
|
+
|
59
|
+
&:not(:first-child):not(:last-child) {
|
60
|
+
border-radius: 0;
|
61
|
+
}
|
62
|
+
}
|
63
|
+
// Addon and addon wrapper for buttons
|
64
|
+
.input-group-addon,
|
65
|
+
.input-group-btn {
|
66
|
+
width: 1%;
|
67
|
+
white-space: nowrap;
|
68
|
+
vertical-align: middle; // Match the inputs
|
69
|
+
}
|
70
|
+
|
71
|
+
// Text input groups
|
72
|
+
// -------------------------
|
73
|
+
.input-group-addon {
|
74
|
+
padding: @padding-base-vertical @padding-base-horizontal;
|
75
|
+
font-size: @font-size-base;
|
76
|
+
font-weight: normal;
|
77
|
+
line-height: 1;
|
78
|
+
color: @input-color;
|
79
|
+
text-align: center;
|
80
|
+
background-color: @input-group-addon-bg;
|
81
|
+
border: 1px solid @input-group-addon-border-color;
|
82
|
+
border-radius: @border-radius-base;
|
83
|
+
|
84
|
+
// Sizing
|
85
|
+
&.input-sm {
|
86
|
+
padding: @padding-small-vertical @padding-small-horizontal;
|
87
|
+
font-size: @font-size-small;
|
88
|
+
border-radius: @border-radius-small;
|
89
|
+
}
|
90
|
+
&.input-lg {
|
91
|
+
padding: @padding-large-vertical @padding-large-horizontal;
|
92
|
+
font-size: @font-size-large;
|
93
|
+
border-radius: @border-radius-large;
|
94
|
+
}
|
95
|
+
|
96
|
+
// Nuke default margins from checkboxes and radios to vertically center within.
|
97
|
+
input[type="radio"],
|
98
|
+
input[type="checkbox"] {
|
99
|
+
margin-top: 0;
|
100
|
+
}
|
101
|
+
}
|
102
|
+
|
103
|
+
// Reset rounded corners
|
104
|
+
.input-group .form-control:first-child,
|
105
|
+
.input-group-addon:first-child,
|
106
|
+
.input-group-btn:first-child > .btn,
|
107
|
+
.input-group-btn:first-child > .btn-group > .btn,
|
108
|
+
.input-group-btn:first-child > .dropdown-toggle,
|
109
|
+
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
|
110
|
+
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
|
111
|
+
.border-right-radius(0);
|
112
|
+
}
|
113
|
+
.input-group-addon:first-child {
|
114
|
+
border-right: 0;
|
115
|
+
}
|
116
|
+
.input-group .form-control:last-child,
|
117
|
+
.input-group-addon:last-child,
|
118
|
+
.input-group-btn:last-child > .btn,
|
119
|
+
.input-group-btn:last-child > .btn-group > .btn,
|
120
|
+
.input-group-btn:last-child > .dropdown-toggle,
|
121
|
+
.input-group-btn:first-child > .btn:not(:first-child),
|
122
|
+
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
|
123
|
+
.border-left-radius(0);
|
124
|
+
}
|
125
|
+
.input-group-addon:last-child {
|
126
|
+
border-left: 0;
|
127
|
+
}
|
128
|
+
|
129
|
+
// Button input groups
|
130
|
+
// -------------------------
|
131
|
+
.input-group-btn {
|
132
|
+
position: relative;
|
133
|
+
// Jankily prevent input button groups from wrapping with `white-space` and
|
134
|
+
// `font-size` in combination with `inline-block` on buttons.
|
135
|
+
font-size: 0;
|
136
|
+
white-space: nowrap;
|
137
|
+
|
138
|
+
// Negative margin for spacing, position for bringing hovered/focused/actived
|
139
|
+
// element above the siblings.
|
140
|
+
> .btn {
|
141
|
+
position: relative;
|
142
|
+
+ .btn {
|
143
|
+
margin-left: -1px;
|
144
|
+
}
|
145
|
+
// Bring the "active" button to the front
|
146
|
+
&:hover,
|
147
|
+
&:focus,
|
148
|
+
&:active {
|
149
|
+
z-index: 2;
|
150
|
+
}
|
151
|
+
}
|
152
|
+
|
153
|
+
// Negative margin to only have a 1px border between the two
|
154
|
+
&:first-child {
|
155
|
+
> .btn,
|
156
|
+
> .btn-group {
|
157
|
+
margin-right: -1px;
|
158
|
+
}
|
159
|
+
}
|
160
|
+
&:last-child {
|
161
|
+
> .btn,
|
162
|
+
> .btn-group {
|
163
|
+
margin-left: -1px;
|
164
|
+
}
|
165
|
+
}
|
166
|
+
}
|