summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/angular-material/modules/closure/divider
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-portal-FE/client/bower_components/angular-material/modules/closure/divider')
-rw-r--r--ecomp-portal-FE/client/bower_components/angular-material/modules/closure/divider/divider-default-theme.css9
-rw-r--r--ecomp-portal-FE/client/bower_components/angular-material/modules/closure/divider/divider.css14
-rw-r--r--ecomp-portal-FE/client/bower_components/angular-material/modules/closure/divider/divider.js45
3 files changed, 68 insertions, 0 deletions
diff --git a/ecomp-portal-FE/client/bower_components/angular-material/modules/closure/divider/divider-default-theme.css b/ecomp-portal-FE/client/bower_components/angular-material/modules/closure/divider/divider-default-theme.css
new file mode 100644
index 00000000..4e2fb829
--- /dev/null
+++ b/ecomp-portal-FE/client/bower_components/angular-material/modules/closure/divider/divider-default-theme.css
@@ -0,0 +1,9 @@
+/*!
+ * Angular Material Design
+ * https://github.com/angular/material
+ * @license MIT
+ * v0.9.8
+ */
+/* mixin definition ; sets LTR and RTL within the same style call */
+md-divider.md-THEME_NAME-theme {
+ border-top-color: '{{foreground-4}}'; }
diff --git a/ecomp-portal-FE/client/bower_components/angular-material/modules/closure/divider/divider.css b/ecomp-portal-FE/client/bower_components/angular-material/modules/closure/divider/divider.css
new file mode 100644
index 00000000..270c06b5
--- /dev/null
+++ b/ecomp-portal-FE/client/bower_components/angular-material/modules/closure/divider/divider.css
@@ -0,0 +1,14 @@
+/*!
+ * Angular Material Design
+ * https://github.com/angular/material
+ * @license MIT
+ * v0.9.8
+ */
+/* mixin definition ; sets LTR and RTL within the same style call */
+md-divider {
+ display: block;
+ border-top-width: 1px;
+ border-top-style: solid;
+ margin: 0; }
+ md-divider[md-inset] {
+ margin-left: 80px; }
diff --git a/ecomp-portal-FE/client/bower_components/angular-material/modules/closure/divider/divider.js b/ecomp-portal-FE/client/bower_components/angular-material/modules/closure/divider/divider.js
new file mode 100644
index 00000000..a5add8d6
--- /dev/null
+++ b/ecomp-portal-FE/client/bower_components/angular-material/modules/closure/divider/divider.js
@@ -0,0 +1,45 @@
+/*!
+ * Angular Material Design
+ * https://github.com/angular/material
+ * @license MIT
+ * v0.9.8
+ */
+goog.provide('ng.material.components.divider');
+goog.require('ng.material.core');
+/**
+ * @ngdoc module
+ * @name material.components.divider
+ * @description Divider module!
+ */
+angular.module('material.components.divider', [
+ 'material.core'
+])
+ .directive('mdDivider', MdDividerDirective);
+
+/**
+ * @ngdoc directive
+ * @name mdDivider
+ * @module material.components.divider
+ * @restrict E
+ *
+ * @description
+ * Dividers group and separate content within lists and page layouts using strong visual and spatial distinctions. This divider is a thin rule, lightweight enough to not distract the user from content.
+ *
+ * @param {boolean=} md-inset Add this attribute to activate the inset divider style.
+ * @usage
+ * <hljs lang="html">
+ * <md-divider></md-divider>
+ *
+ * <md-divider md-inset></md-divider>
+ * </hljs>
+ *
+ */
+function MdDividerDirective($mdTheming) {
+ return {
+ restrict: 'E',
+ link: $mdTheming
+ };
+}
+MdDividerDirective.$inject = ["$mdTheming"];
+
+ng.material.components.divider = angular.module("material.components.divider"); \ No newline at end of file