diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.policy.view/view.js b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.policy.view/view.js
index e8247821b6..af53c46116 100644
--- a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.policy.view/view.js
+++ b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.policy.view/view.js
@@ -17,10 +17,27 @@
*/
function onRequest(context) {
-// var log = new Log("policy-view-edit-unit backend js");
-
-// var userModule = require("/app/modules/business-controllers/user.js")["userModule"];
-// context.roles = userModule.getRoles();
- context.isAuthorized = userModule.isAuthorized("/permission/admin/device-mgt/policies/view");
- return context;
+ var utility = require("/app/modules/utility.js").utility;
+ var page = {};
+ var deviceType = request.getParameter("deviceType");
+ var policyViewSrc = "/app/units/" + utility.getTenantedDeviceUnitName(deviceType, "policy-view");
+ if (new File(policyViewSrc).isExists()) {
+ var policyOperationsTemplateSrc = policyViewSrc + "/public/templates/" + deviceType + "-policy-view.hbs";
+ if (new File(policyOperationsTemplateSrc).isExists()) {
+ page.template = "/public/cdmf.unit.device.type." + deviceType + ".policy-view/templates/" + deviceType +
+ "-policy-view.hbs";
+ }
+ var policyOperationsScriptSrc = policyViewSrc + "/public/js/" + deviceType + "-policy-view.js";
+ if (new File(policyOperationsScriptSrc).isExists()) {
+ page.script = "/public/cdmf.unit.device.type." + deviceType + ".policy-view/js/" + deviceType +
+ "-policy-view.js";
+ }
+ var policyOperationsStylesSrc = policyViewSrc + "/public/css/" + deviceType + "-policy-view.css";
+ if (new File(policyOperationsStylesSrc).isExists()) {
+ page.style = "/public/cdmf.unit.device.type." + deviceType + ".policy-view/css/" + deviceType +
+ "-policy-view.css";
+ }
+ }
+ page.isAuthorized = userModule.isAuthorized("/permission/admin/device-mgt/policies/view");
+ return page;
}
\ No newline at end of file
diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.role.edit.permission/permission.hbs b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.role.edit.permission/permission.hbs
index ef594b9dbd..8671888233 100644
--- a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.role.edit.permission/permission.hbs
+++ b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.role.edit.permission/permission.hbs
@@ -77,7 +77,7 @@
-
+
Add Another Role
diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.role.edit/edit.hbs b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.role.edit/edit.hbs
index 281f5ea350..e9c4527578 100644
--- a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.role.edit/edit.hbs
+++ b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.role.edit/edit.hbs
@@ -70,7 +70,7 @@
-
+
View Updated Role
diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.ui.header.user-menu/user-menu.hbs b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.ui.header.user-menu/user-menu.hbs
index f426b8d9cb..95d7264473 100644
--- a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.ui.header.user-menu/user-menu.hbs
+++ b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.ui.header.user-menu/user-menu.hbs
@@ -19,10 +19,7 @@
-
-
-
-
-
+
{{#if isSuperTenant }}
{{@user.username}}
@@ -48,7 +45,7 @@
-
+
diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.ui.modal/modal.hbs b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.ui.modal/modal.hbs
index 4b14af2896..63b047923e 100644
--- a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.ui.modal/modal.hbs
+++ b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.ui.modal/modal.hbs
@@ -23,11 +23,11 @@
- + - + diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.ui.navbar.nav-menu/nav-menu.hbs b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.ui.navbar.nav-menu/nav-menu.hbs index 3e2c747fef..21687eef22 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.ui.navbar.nav-menu/nav-menu.hbs +++ b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.ui.navbar.nav-menu/nav-menu.hbs @@ -40,7 +40,7 @@ {{#if permissions.LIST_GROUPS}}
- - + Group Management
diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.ui.theme/public/css/custom-desktop.css b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.ui.theme/public/css/custom-desktop.css index b143e04d3d..a84549d307 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.ui.theme/public/css/custom-desktop.css +++ b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.ui.theme/public/css/custom-desktop.css @@ -1811,7 +1811,7 @@ a.btn:hover, .btn:hover { margin-right: -1px; } -.remove-icon-ring-on-hover:hover .fw-ring { +.remove-icon-ring-on-hover:hover .fw-circle-outline { display: none; } @@ -4556,7 +4556,7 @@ a.wr-side-panel-toggle-btn.selected { color: #526A84; } .wr-advance-operations .wr-hidden-operations-nav a.selected span span > i.fw.fw-circle.fw-stack-2x{ - color: #fff; + color: #526A84; } .wr-advance-operations .wr-hidden-operations-nav a.selected span span > i.fw.fw-circle.fw-stack-2x.fw-stroke.fw-inverse{ color: #526A84; @@ -5138,7 +5138,7 @@ a.cu-btn-inner.inverse:hover { font-size: 14px; } -.multi-view .content .panel-body .well fieldset legend a:hover .icon.fw-stack .fw-ring { +.multi-view .content .panel-body .well fieldset legend a:hover .icon.fw-stack .fw-circle-outline { display: none; } @@ -6507,6 +6507,10 @@ select > option:hover { font-weight:400; } +.header .fw:before { + color: #000; +} + /* Adding style for required fields */ .required:before { content: "*"; diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.navbar.toggle-menu.right/right.hbs b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.navbar.toggle-menu.right/right.hbs index bbb67cedf2..fc727600b0 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.navbar.toggle-menu.right/right.hbs +++ b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.navbar.toggle-menu.right/right.hbs @@ -24,7 +24,7 @@ {{#defineZone "toggleMenuRight-icon"}} - + {{/defineZone}} diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/css/font-wso2.css b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/css/font-wso2.css index 70f4dbfea5..db79654074 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/css/font-wso2.css +++ b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/css/font-wso2.css @@ -1,32 +1,51 @@ +/*! +~ Copyright (c) WSO2 Inc. (http://wso2.com) All Rights Reserved. +~ +~ Licensed under the Apache License, Version 2.0 (the "License"); +~ you may not use this file except in compliance with the License. +~ You may obtain a copy of the License at +~ +~ http://www.apache.org/licenses/LICENSE-2.0 +~ +~ Unless required by applicable law or agreed to in writing, software +~ distributed under the License is distributed on an "AS IS" BASIS, +~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +~ See the License for the specific language governing permissions and +~ limitations under the License. +*/ + + @font-face { - font-family: 'font-wso2'; - src:url('../fonts/font-wso2.eot?k4i0fx'); - src:url('../fonts/font-wso2.eot?#iefixk4i0fx') format('embedded-opentype'), - url('../fonts/font-wso2.ttf?k4i0fx') format('truetype'), - url('../fonts/font-wso2.woff?k4i0fx') format('woff'), - url('../fonts/font-wso2.svg?k4i0fx#font-wso2') format('svg'); - font-weight: normal; - font-style: normal; + font-family:"font-wso2"; + src:local("font-wso2"), url("../fonts/font-wso2.eot?cbfd3c5fdcdc6493e67be73fa5dd0ac0"); + src:local("font-wso2"), + url("../fonts/font-wso2.eot?#iefix") format("embedded-opentype"), + url("../fonts/font-wso2.woff2?cbfd3c5fdcdc6493e67be73fa5dd0ac0") format("woff2"), + url("../fonts/font-wso2.woff?cbfd3c5fdcdc6493e67be73fa5dd0ac0") format("woff"), + url("../fonts/font-wso2.ttf?cbfd3c5fdcdc6493e67be73fa5dd0ac0") format("truetype"), + url("../fonts/font-wso2.svg?cbfd3c5fdcdc6493e67be73fa5dd0ac0#font-wso2") format("svg"); + font-weight:normal; + font-style:normal; } .fw, [class^="fw-"], [class*=" fw-"] { - display: inline-block; font: normal normal normal 14px/1 font-wso2; - font-size: inherit; - speak: none; - font-style: normal; + display: inline-block; font-weight: normal; + font-style: normal; + font-size: inherit; font-variant: normal; - text-transform: none; - vertical-align: middle; - + speak: none; + text-decoration: inherit; + /* Better Font Rendering =========== */ + text-transform: none; + text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; - text-rendering: auto; - transform: translate(0, 0); } + /* ======================================================================== * font options * ======================================================================== */ @@ -75,12 +94,6 @@ border: solid 0.08em #eeeeee; border-radius: .1em; } -.fw-border-top { - border-top: .15em solid #333; -} -.fw-border-bottom { - border-bottom: .15em solid #333; -} .fw-background { background: #888; border-radius: .3em; @@ -148,154 +161,6 @@ opacity: 0.3; } } -.fw-point-up { - -webkit-animation: fw-point-up 2s ease-out infinite; - animation: fw-point-up 2s ease-out infinite; - transform: translate3d(0, 50%, 0); -} -@-webkit-keyframes fw-point-up { - 0% { - opacity: 0; - } - 30% { - opacity: 0; - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - -webkit-transform: translate3d(0, 15%, 0); - transform: translate3d(0, 15%, 0) - } -} -@keyframes fw-point-up { - 0% { - opacity: 0; - } - 30% { - opacity: 0; - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - -webkit-transform: translate3d(0, 15%, 0); - transform: translate3d(0, 15%, 0) - } -} -.fw-point-down { - -webkit-animation: fw-point-down 2s ease-out infinite; - animation: fw-point-down 2s ease-out infinite; - transform: translate3d(0, -50%, 0); -} -@-webkit-keyframes fw-point-down { - 0% { - opacity: 0; - } - 30% { - opacity: 0; - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - -webkit-transform: translate3d(0, -15%, 0); - transform: translate3d(0, -15%, 0) - } -} -@keyframes fw-point-down { - 0% { - opacity: 0; - } - 30% { - opacity: 0; - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - -webkit-transform: translate3d(0, -15%, 0); - transform: translate3d(0, -15%, 0) - } -} -.fw-point-left { - -webkit-animation: fw-point-right 2s ease-out infinite; - animation: fw-point-right 2s ease-out infinite; - transform: translate3d(50%, -10%, 0); -} -@-webkit-keyframes fw-point-left { - 0% { - opacity: 0; - } - 30% { - opacity: 0; - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - -webkit-transform: translate3d(-25%, -10%, 0); - transform: translate3d(-25%, -10%, 0) - } -} -@keyframes fw-point-left { - 0% { - opacity: 0; - } - 30% { - opacity: 0; - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - -webkit-transform: translate3d(-25%, -10%, 0); - transform: translate3d(-25%, -10%, 0) - } -} -.fw-point-right { - -webkit-animation: fw-point-right 2s ease-out infinite; - animation: fw-point-right 2s ease-out infinite; - transform: translate3d(-50%, -10%, 0); -} -@-webkit-keyframes fw-point-right { - 0% { - opacity: 0; - } - 30% { - opacity: 0; - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - -webkit-transform: translate3d(25%, -10%, 0); - transform: translate3d(25%, -10%, 0) - } -} -@keyframes fw-point-right { - 0% { - opacity: 0; - } - 30% { - opacity: 0; - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - -webkit-transform: translate3d(25%, -10%, 0); - transform: translate3d(25%, -10%, 0) - } -} .fw-rotate-90 { filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); -webkit-transform: rotate(90deg); @@ -333,41 +198,58 @@ :root .fw-flip-vertical { filter: none; } -.fw-stack { +.fw-stack, +.fw-helper { position: relative; display: inline-block; width: 2em; height: 2em; - line-height: 2em; + line-height: 1.85em; vertical-align: middle; } .fw-stack-1x, -.fw-stack-2x { +.fw-stack-2x, +.fw-helper:before, +.fw-helper:after { position: absolute; left: 0; width: 100%; text-align: center; } -.fw-stack-1x { +.fw-stack-1x, +.fw-helper:before { line-height: inherit; } -.fw-stack-2x { - font-size: 2em; +.fw-stack-2x, +.fw-helper:after { + font-size: 1.9em; +} +.fw-helper-slash:before { + font-size: 1.4em; +} +.fw-helper-circle:before, +.fw-helper-square:before { + z-index: 1; +} +.fw-helper-circle-outline:after { + content: "\e61f"; +} +.fw-helper-circle:after { + content: "\e61a"; +} +.fw-helper-square-outline:after { + content: "\e6b2"; +} +.fw-helper-square:after { + content: "\e6b1"; +} +.fw-helper-slash:after { + content: "\e6e1"; } .fw-stack > .fw-stack { position: absolute; font-size: 0.5em; } -.fw-stack > .fw-stack > .fw-stack-1x.fw-stroke { - font-size: 1.1em; - left: 0; - top: 0; -} -.fw-stack > .fw-stack > .fw-stack-2x.fw-stroke { - font-size: 2.3em; - left: -0.07em; - top: -0.07em; -} .fw-stack > .fw-stack.fw-move-top { top: -0.2em; } @@ -380,581 +262,1081 @@ .fw-stack > .fw-stack.fw-move-right { right: -0.5em; } -.fw-inverse { +.fw-inverse:before, +.fw-helper-inverse:after, +.fw-number { color: #ffffff; } +.fw-shadow:before, +.fw-helper-shadow:after { + text-shadow: #ffffff 1px 1px 0; +} +.fw-stroke:before, +.fw-helper-stroke:after { + text-shadow: -2px -2px 0 #ffffff, + 2px -2px 0 #ffffff, + -2px 2px 0 #ffffff, + 2px 2px 0 #ffffff; +} .fw-number { - line-height: 1.8em; + line-height: 2em; + font-family: Arial, Helvetica, sans-serif; } + /* ======================================================================== * font icons * ======================================================================== */ -.fw-mouse-pointer:before { - content: "\e6b1"; +.fw-action-invoke:before { + content:"\e6fe"; } -.fw-pointer:before { - content: "\e6b2"; -} -.fw-hand:before { - content: "\e6b3"; + +.fw-activate:before { + content:"\e6cf"; } -.fw-question-mark:before { - content: "\e6b4"; + +.fw-add:before { + content:"\e615"; } + .fw-airplay:before { - content: "\e600"; + content:"\e600"; } -.fw-apn:before { - content: "\e602"; + +.fw-alarm:before { + content:"\e6c2"; } -.fw-vpn:before { - content: "\e603"; + +.fw-alert:before { + content:"\e6be"; +} + +.fw-analytics-extensions:before { + content:"\e6e2"; +} + +.fw-android:before { + content:"\e606"; +} + +.fw-annotation:before { + content:"\e6e6"; +} + +.fw-api:before { + content:"\e601"; } + +.fw-apn:before { + content:"\e602"; +} + .fw-apple:before { - content: "\e604"; + content:"\e604"; } -.fw-windows:before { - content: "\e605"; + +.fw-application:before { + content:"\e608"; } -.fw-android:before { - content: "\e606"; + +.fw-arduino:before { + content:"\e6ab"; } -.fw-wifi:before { - content: "\e607"; + +.fw-assign:before { + content:"\e6ff"; } + +.fw-bar-chart:before { + content:"\e690"; +} + .fw-battery:before { - content: "\e60a"; + content:"\e60a"; } -.fw-camera:before { - content: "\e613"; + +.fw-blank-document:before { + content:"\e60c"; } -.fw-notification:before { - content: "\e60b"; + +.fw-block:before { + content:"\e695"; } -.fw-settings:before { - content: "\e66f"; + +.fw-bookmark:before { + content:"\e60d"; } -.fw-send:before { - content: "\e66a"; + +.fw-bpel:before { + content:"\e60e"; } -.fw-bookmark:before { - content: "\e60d"; + +.fw-bpmn:before { + content:"\e60f"; } + .fw-bug:before { - content: "\e611"; + content:"\e611"; } -.fw-clock:before { - content: "\e61d"; + +.fw-build:before { + content:"\e6c1"; } + .fw-calendar:before { - content: "\e612"; -} -.fw-add:before { - content: "\e615"; -} -.fw-minus:before { - content: "\e616"; + content:"\e612"; } -.fw-check:before { - content: "\e617"; + +.fw-camera:before { + content:"\e613"; } + .fw-cancel:before { - content: "\e618"; + content:"\e618"; } -.fw-list:before { - content: "\e64c"; + +.fw-carbon:before { + content:"\e6c5"; } -.fw-checklist:before { - content: "\e619"; + +.fw-chat:before { + content:"\e65b"; } -.fw-grid:before { - content: "\e638"; + +.fw-check:before { + content:"\e617"; } -.fw-dots:before { - content: "\e629"; + +.fw-checklist:before { + content:"\e619"; } -.fw-menu:before { - content: "\e651"; + +.fw-circle-outline:before { + content:"\e61f"; } -.fw-tiles:before { - content: "\e681"; + +.fw-circle:before { + content:"\e61a"; } + .fw-clear:before { - content: "\e61b"; -} -.fw-clear-passcode:before { - content: "\e61c"; + content:"\e61b"; } -.fw-enterprise-wipe:before { - content: "\e62f"; + +.fw-clock:before { + content:"\e61d"; } + .fw-cloud:before { - content: "\e61e"; + content:"\e61e"; } -.fw-contact:before { - content: "\e620"; + +.fw-code:before { + content:"\e6f1"; } -.fw-copy:before { - content: "\e621"; + +.fw-compare:before { + content:"\e610"; } -.fw-paste:before { - content: "\e658"; + +.fw-computer:before { + content:"\e653"; } -.fw-undo:before { - content: "\e683"; + +.fw-configarations:before { + content:"\e609"; } -.fw-redo:before { - content: "\e65d"; + +.fw-connector:before { + content:"\e700"; } -.fw-dashboard:before { - content: "\e622"; + +.fw-constant:before { + content:"\e701"; } -.fw-view:before { - content: "\e691"; + +.fw-contact:before { + content:"\e620"; } -.fw-focus:before { - content: "\e6b5"; + +.fw-contract:before { + content:"\e614"; } -.fw-delete:before { - content: "\e624"; + +.fw-copy:before { + content:"\e621"; } -.fw-save:before { - content: "\e665"; + +.fw-cut:before { + content:"\e6f2"; } -.fw-register:before { - content: "\e65e"; + +.fw-dashboard:before { + content:"\e622"; } -.fw-change-passcode:before { - content: "\e614"; + +.fw-database:before { + content:"\e623"; } -.fw-edit:before { - content: "\e62c"; + +.fw-delete:before { + content:"\e624"; } -.fw-sign-up:before { - content: "\e671"; + +.fw-depend:before { + content:"\e6c6"; } + .fw-deploy:before { - content: "\e625"; + content:"\e625"; } -.fw-dial-up:before { - content: "\e627"; + +.fw-deprecate:before { + content:"\e6cb"; } -.fw-dss:before { - content: "\e62a"; + +.fw-design-view:before { + content:"\e6f3"; } -.fw-ebook:before { - content: "\e62b"; + +.fw-devices:before { + content:"\e704"; } -.fw-import:before { - content: "\e63c"; + +.fw-dgm-connector:before { + content:"\e6f4"; } -.fw-export:before { - content: "\e631"; + +.fw-dgm-constant-definition:before { + content:"\e6f5"; } -.fw-factory-reset:before { - content: "\e632"; + +.fw-dgm-fork:before { + content:"\e6e7"; } -.fw-file-browse:before { - content: "\e633"; + +.fw-dgm-header:before { + content:"\e6e8"; } -.fw-grouping:before { - content: "\e6af"; + +.fw-dgm-if-else:before { + content:"\e6e9"; } -.fw-folder:before { - content: "\e6b6"; + +.fw-dgm-lifeline:before { + content:"\e6ea"; } -.fw-filter:before { - content: "\e634"; + +.fw-dgm-logger:before { + content:"\e6eb"; } -.fw-sort:before { - content: "\e673"; + +.fw-dgm-resource:before { + content:"\e6f6"; } -.fw-sort-up:before { - content: "\e64b"; + +.fw-dgm-service:before { + content:"\e6f7"; } -.fw-sort-down:before { - content: "\e663"; + +.fw-dgm-try-catch:before { + content:"\e6ec"; } -.fw-faq:before { - content: "\e6b7"; + +.fw-dgm-type-convertor:before { + content:"\e6f8"; } -.fw-message:before { - content: "\e635"; + +.fw-dgm-type:before { + content:"\e6f9"; } -.fw-forum:before { - content: "\e636"; + +.fw-dial-up:before { + content:"\e627"; } -.fw-chat:before { - content: "\e6b8"; + +.fw-disabled:before { + content:"\e6d1"; } -.fw-mail:before { - content: "\e64f"; + +.fw-display:before { + content:"\e626"; } -.fw-invitation:before { - content: "\e63f"; + +.fw-dmg-resource:before { + content:"\e707"; } -.fw-usb-drive:before { - content: "\e68e"; + +.fw-dmg-service:before { + content:"\e708"; +} + +.fw-document:before { + content:"\e628"; +} + +.fw-down-arrow:before { + content:"\e689"; +} + +.fw-down:before { + content:"\e685"; +} + +.fw-download:before { + content:"\e65f"; +} + +.fw-dss:before { + content:"\e62a"; +} + +.fw-ebook:before { + content:"\e62b"; +} + +.fw-edit:before { + content:"\e62c"; +} + +.fw-ellipsis:before { + content:"\e629"; +} + +.fw-endpoint:before { + content:"\e62d"; +} + +.fw-enterprise:before { + content:"\e6b6"; +} + +.fw-error:before { + content:"\e630"; +} + +.fw-esb-connector:before { + content:"\e6e3"; +} + +.fw-expand:before { + content:"\e61c"; +} + +.fw-export:before { + content:"\e631"; +} + +.fw-extensions:before { + content:"\e6e4"; +} + +.fw-facebook:before { + content:"\e6d3"; +} + +.fw-factory-reset:before { + content:"\e632"; +} + +.fw-fan:before { + content:"\e678"; +} + +.fw-faq:before { + content:"\e62f"; +} + +.fw-file-browse:before { + content:"\e633"; +} + +.fw-filter:before { + content:"\e634"; +} + +.fw-folder:before { + content:"\e62e"; +} + +.fw-format:before { + content:"\e6fa"; +} + +.fw-forum:before { + content:"\e636"; +} + +.fw-function:before { + content:"\e6fb"; +} + +.fw-gadget:before { + content:"\e637"; +} + +.fw-github:before { + content:"\e6d4"; +} + +.fw-globe:before { + content:"\e697"; +} + +.fw-google-docs:before { + content:"\e6d6"; +} + +.fw-google-drive:before { + content:"\e6da"; +} + +.fw-google-plus:before { + content:"\e6d9"; +} + +.fw-google-sheets:before { + content:"\e6d7"; +} + +.fw-google-slides:before { + content:"\e6d8"; +} + +.fw-google:before { + content:"\e6d5"; +} + +.fw-grid:before { + content:"\e638"; +} + +.fw-grip:before { + content:"\e6b7"; +} + +.fw-group:before { + content:"\e6af"; +} + +.fw-hardware:before { + content:"\e6a9"; } + .fw-hdd:before { - content: "\e639"; + content:"\e639"; +} + +.fw-heart:before { + content:"\e6c3"; +} + +.fw-hide:before { + content:"\e6d2"; } + .fw-home:before { - content: "\e63a"; + content:"\e63a"; } + .fw-hour-glass:before { - content: "\e63b"; + content:"\e63b"; +} + +.fw-html:before { + content:"\e69d"; +} + +.fw-http:before { + content:"\e705"; +} + +.fw-import:before { + content:"\e63c"; } + .fw-incoming-call:before { - content: "\e63d"; + content:"\e63d"; +} + +.fw-info:before { + content:"\e63e"; +} + +.fw-instagram:before { + content:"\e6db"; +} + +.fw-invitation:before { + content:"\e63f"; +} + +.fw-invoke:before { + content:"\e6ed"; +} + +.fw-is-connector:before { + content:"\e6e5"; +} + +.fw-jaggery:before { + content:"\e640"; +} + +.fw-java-spring:before { + content:"\e644"; +} + +.fw-java:before { + content:"\e641"; +} + +.fw-javaee:before { + content:"\e642"; +} + +.fw-javascript:before { + content:"\e643"; } + +.fw-jaxrs:before { + content:"\e645"; +} + +.fw-jaxws:before { + content:"\e6c7"; +} + +.fw-jquery:before { + content:"\e646"; +} + .fw-key:before { - content: "\e647"; + content:"\e647"; +} + +.fw-laptop:before { + content:"\e648"; +} + +.fw-layout:before { + content:"\e6bf"; +} + +.fw-ldap:before { + content:"\e649"; +} + +.fw-left-arrow:before { + content:"\e68a"; +} + +.fw-left:before { + content:"\e686"; } + .fw-lifecycle:before { - content: "\e64a"; + content:"\e64a"; +} + +.fw-light:before { + content:"\e680"; } + +.fw-linkedin:before { + content:"\e6dc"; +} + .fw-list-sort:before { - content: "\e64d"; + content:"\e64d"; } -.fw-lock:before { - content: "\e64e"; + +.fw-list:before { + content:"\e64c"; } -.fw-map-location:before { - content: "\e650"; + +.fw-loader:before { + content:"\e6b4"; } -.fw-laptop:before { - content: "\e648"; + +.fw-loader2:before { + content:"\e6ba"; } -.fw-mobile:before { - content: "\e652"; + +.fw-loader3:before { + content:"\e6bb"; } -.fw-ringing:before { - content: "\e694"; + +.fw-loader4:before { + content:"\e6bc"; } -.fw-computer:before { - content: "\e653"; + +.fw-loader5:before { + content:"\e6bd"; } -.fw-devices:before { - content: "\e626"; + +.fw-lock:before { + content:"\e64e"; } -.fw-mute:before { - content: "\e655"; + +.fw-logical:before { + content:"\e702"; } -.fw-unmute:before { - content: "\e6ae"; + +.fw-mail:before { + content:"\e64f"; } -.fw-ok:before { - content: "\e657"; + +.fw-main-function:before { + content:"\e706"; } -.fw-error:before { - content: "\e630"; + +.fw-map-location:before { + content:"\e650"; } -.fw-circle:before { - content: "\e61a"; + +.fw-menu:before { + content:"\e651"; } -.fw-ring:before { - content: "\e61f"; + +.fw-message:before { + content:"\e635"; } -.fw-pdf:before { - content: "\e659"; + +.fw-micro-services:before { + content:"\e6ce"; } + +.fw-minus:before { + content:"\e616"; +} + +.fw-mobile:before { + content:"\e652"; +} + .fw-ms-document:before { - content: "\e654"; + content:"\e654"; } -.fw-pie-chart:before { - content: "\e65a"; + +.fw-mute:before { + content:"\e655"; } -.fw-bar-chart:before { - content: "\e6b0"; + +.fw-nodejs:before { + content:"\e656"; } -.fw-publish:before { - content: "\e65c"; + +.fw-notification:before { + content:"\e60b"; } -.fw-resource:before { - content: "\e660"; + +.fw-organization:before { + content:"\e6ac"; } -.fw-rules:before { - content: "\e664"; + +.fw-own:before { + content:"\e6c8"; } -.fw-scep:before { - content: "\e666"; + +.fw-package:before { + content:"\e6fd"; } -.fw-security:before { - content: "\e669"; + +.fw-pages:before { + content:"\e6c0"; } -.fw-search:before { - content: "\e668"; + +.fw-paste:before { + content:"\e658"; } -.fw-sequence:before { - content: "\e66b"; + +.fw-pdf:before { + content:"\e659"; } -.fw-servers:before { - content: "\e66c"; + +.fw-php:before { + content:"\e6c9"; } -.fw-ldap:before { - content: "\e649"; + +.fw-pie-chart:before { + content:"\e65a"; } -.fw-database:before { - content: "\e623"; + +.fw-pinterest:before { + content:"\e6dd"; } -.fw-hardware:before { - content: "\e6a9"; + +.fw-policy:before { + content:"\e67d"; +} + +.fw-prototype:before { + content:"\e6cc"; +} + +.fw-proxy:before { + content:"\e699"; } -.fw-signal:before { - content: "\e6b9"; + +.fw-public:before { + content:"\e6ad"; } + +.fw-publish:before { + content:"\e65c"; +} + +.fw-question:before { + content:"\e6b0"; +} + .fw-raspberry:before { - content: "\e6aa"; + content:"\e6aa"; } -.fw-arduino:before { - content: "\e6ab"; + +.fw-redo:before { + content:"\e65d"; } -.fw-share:before { - content: "\e670"; + +.fw-refresh:before { + content:"\e692"; } -.fw-star:before { - content: "\e674"; + +.fw-register:before { + content:"\e65e"; } -.fw-coins:before { - content: "\e6ba"; + +.fw-rename:before { + content:"\e6fc"; } -.fw-statistics:before { - content: "\e675"; + +.fw-resource:before { + content:"\e660"; } -.fw-store:before { - content: "\e676"; + +.fw-rest-api:before { + content:"\e661"; } -.fw-subscribe:before { - content: "\e677"; + +.fw-rest-service:before { + content:"\e662"; } -.fw-fan:before { - content: "\e6bb"; + +.fw-retire:before { + content:"\e6cd"; } -.fw-light:before { - content: "\e6bc"; + +.fw-retweet:before { + content:"\e6b9"; } -.fw-subscribed-calendar:before { - content: "\e678"; + +.fw-right-arrow:before { + content:"\e68b"; } -.fw-tag:before { - content: "\e67a"; + +.fw-right:before { + content:"\e687"; } -.fw-tasks:before { - content: "\e67b"; + +.fw-ringing:before { + content:"\e694"; } -.fw-blank-document:before { - content: "\e60c"; + +.fw-rules:before { + content:"\e664"; } -.fw-document:before { - content: "\e628"; + +.fw-save:before { + content:"\e665"; } -.fw-text:before { - content: "\e67c"; + +.fw-scep:before { + content:"\e666"; } -.fw-policy:before { - content: "\e67d"; + +.fw-schema:before { + content:"\e667"; +} + +.fw-search:before { + content:"\e668"; } + .fw-security-policy:before { - content: "\e67e"; + content:"\e67e"; } -.fw-throttling-policy:before { - content: "\e67f"; + +.fw-security:before { + content:"\e669"; } -.fw-ticked-box:before { - content: "\e680"; + +.fw-send:before, .fw-paper-rocket:before { + content:"\e66a"; } -.fw-uncheck:before { - content: "\e682"; + +.fw-sequence:before { + content:"\e66b"; } -.fw-upload:before { - content: "\e68c"; + +.fw-server:before { + content:"\e66c"; } -.fw-download:before { - content: "\e65f"; + +.fw-service-provider:before { + content:"\e66e"; } -.fw-up:before { - content: "\e684"; + +.fw-service:before, .fw-cogwheels:before, .fw-gears:before { + content:"\e66d"; } -.fw-down:before { - content: "\e685"; + +.fw-settings:before, .fw-cogwheel:before, .fw-gear:before { + content:"\e66f"; } -.fw-left:before { - content: "\e686"; + +.fw-share:before { + content:"\e670"; } -.fw-right:before { - content: "\e687"; + +.fw-sign-in:before { + content:"\e671"; } -.fw-up-arrow:before { - content: "\e688"; + +.fw-sign-out:before { + content:"\e6b8"; } -.fw-down-arrow:before { - content: "\e689"; + +.fw-skype:before { + content:"\e6de"; } -.fw-left-arrow:before { - content: "\e68a"; + +.fw-slash:before { + content:"\e6e1"; } -.fw-right-arrow:before { - content: "\e68b"; + +.fw-soap:before { + content:"\e672"; } -.fw-endpoint:before { - content: "\e62d"; + +.fw-sort-down:before { + content:"\e663"; } -.fw-uri:before { - content: "\e68d"; + +.fw-sort-up:before { + content:"\e64b"; } -.fw-broken-link:before { - content: "\e610"; + +.fw-sort:before { + content:"\e673"; } -.fw-user:before { - content: "\e68f"; + +.fw-square-outline:before { + content:"\e6b2"; } -.fw-add-user:before { - content: "\e690"; + +.fw-square:before { + content:"\e6b1"; } -.fw-refresh:before { - content: "\e692"; + +.fw-star:before { + content:"\e674"; } -.fw-warning:before { - content: "\e693"; + +.fw-statistics:before { + content:"\e675"; } -.fw-info:before { - content: "\e63e"; + +.fw-store:before { + content:"\e676"; } -.fw-block:before { - content: "\e695"; + +.fw-subscribe:before { + content:"\e677"; } -.fw-bpmn:before { - content: "\e60f"; + +.fw-success:before { + content:"\e657"; } -.fw-schema:before { - content: "\e667"; + +.fw-swagger:before { + content:"\e679"; } -.fw-organization:before { - content: "\e6ac"; + +.fw-sync:before { + content:"\e6b3"; } -.fw-public:before { - content: "\e6ad"; + +.fw-table:before { + content:"\e6c4"; } -.fw-bpel:before { - content: "\e60e"; + +.fw-tag:before { + content:"\e67a"; } -.fw-application:before { - content: "\e608"; + +.fw-task:before { + content:"\e67b"; } -.fw-applications:before { - content: "\e609"; + +.fw-text:before { + content:"\e67c"; } -.fw-public-app:before { - content: "\e65b"; + +.fw-throttling-policy:before { + content:"\e67f"; } -.fw-enterprise-app:before { - content: "\e62e"; + +.fw-tiles:before { + content:"\e681"; } -.fw-web-app:before { - content: "\e696"; + +.fw-try-catch:before { + content:"\e703"; } -.fw-globe:before { - content: "\e697"; + +.fw-twitter:before { + content:"\e6df"; } -.fw-webclip:before { - content: "\e698"; + +.fw-uncheck:before { + content:"\e682"; } -.fw-proxy:before { - content: "\e699"; + +.fw-undo:before { + content:"\e683"; } -.fw-web-service:before { - content: "\e69a"; + +.fw-ungroup:before { + content:"\e6b5"; } -.fw-website:before { - content: "\e69b"; + +.fw-unmute:before { + content:"\e6ae"; } -.fw-gadget:before { - content: "\e637"; + +.fw-up-arrow:before { + content:"\e688"; } -.fw-api:before { - content: "\e601"; + +.fw-up:before { + content:"\e684"; } -.fw-rest-api:before { - content: "\e661"; + +.fw-upload:before { + content:"\e68c"; } -.fw-rest-service:before { - content: "\e662"; + +.fw-uri:before { + content:"\e68d"; } -.fw-jaxrs:before { - content: "\e645"; + +.fw-usb-drive:before { + content:"\e68e"; } -.fw-service:before { - content: "\e66d"; + +.fw-use:before { + content:"\e6ca"; } -.fw-service-provider:before { - content: "\e66e"; + +.fw-user:before { + content:"\e68f"; } -.fw-java-spring:before { - content: "\e644"; + +.fw-variable:before { + content:"\e6ee"; } -.fw-jquery:before { - content: "\e646"; + +.fw-view:before { + content:"\e691"; } -.fw-swagger:before { - content: "\e679"; + +.fw-vpn:before { + content:"\e603"; } -.fw-java:before { - content: "\e641"; + +.fw-wadl:before { + content:"\e6a1"; } -.fw-javaee:before { - content: "\e642"; + +.fw-war:before { + content:"\e69e"; } -.fw-javascript:before { - content: "\e643"; + +.fw-warning:before { + content:"\e693"; } -.fw-jaggery:before { - content: "\e640"; + +.fw-web-app:before { + content:"\e696"; } -.fw-nodejs:before { - content: "\e656"; + +.fw-web-clip:before { + content:"\e698"; } -.fw-xml:before { - content: "\e69c"; + +.fw-web-service:before { + content:"\e69a"; } -.fw-soap:before { - content: "\e672"; + +.fw-website:before { + content:"\e69b"; } -.fw-html:before { - content: "\e69d"; + +.fw-wifi:before { + content:"\e607"; } -.fw-war:before { - content: "\e69e"; + +.fw-windows:before { + content:"\e605"; } -.fw-xacml:before { - content: "\e69f"; + +.fw-worker:before { + content:"\e6ef"; } + .fw-wsdl:before { - content: "\e6a0"; + content:"\e6a0"; } -.fw-wadl:before { - content: "\e6a1"; + +.fw-wso2-logo:before { + content:"\e6a7"; +} + +.fw-wso2:before { + content:"\e6a8"; +} + +.fw-xacml:before { + content:"\e69f"; } + +.fw-xml:before { + content:"\e69c"; +} + .fw-xq:before { - content: "\e6a2"; + content:"\e6a2"; } + .fw-xsd:before { - content: "\e6a3"; + content:"\e6a3"; } + .fw-xslt:before { - content: "\e6a4"; + content:"\e6a4"; +} + +.fw-youtube:before { + content:"\e6e0"; } + .fw-zoom-in:before { - content: "\e6a5"; + content:"\e6a5"; } + .fw-zoom-out:before { - content: "\e6a6"; + content:"\e6a6"; } -.fw-wso2-logo:before { - content: "\e6a7"; -} -.fw-wso2:before { - content: "\e6a8"; -} \ No newline at end of file + diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/css/font-wso2.min.css b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/css/font-wso2.min.css new file mode 100644 index 0000000000..b0590c8c3f --- /dev/null +++ b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/css/font-wso2.min.css @@ -0,0 +1,15 @@ +/*! +~ Copyright (c) WSO2 Inc. (http://wso2.com) All Rights Reserved. +~ +~ Licensed under the Apache License, Version 2.0 (the "License"); +~ you may not use this file except in compliance with the License. +~ You may obtain a copy of the License at +~ +~ http://www.apache.org/licenses/LICENSE-2.0 +~ +~ Unless required by applicable law or agreed to in writing, software +~ distributed under the License is distributed on an "AS IS" BASIS, +~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +~ See the License for the specific language governing permissions and +~ limitations under the License. +*/.fw-fw,.fw-li{text-align:center}@font-face{font-family:font-wso2;src:local("font-wso2"),url(../fonts/font-wso2.eot?cbfd3c5fdcdc6493e67be73fa5dd0ac0);src:local("font-wso2"),url(../fonts/font-wso2.eot?#iefix) format("embedded-opentype"),url(../fonts/font-wso2.woff2?cbfd3c5fdcdc6493e67be73fa5dd0ac0) format("woff2"),url(../fonts/font-wso2.woff?cbfd3c5fdcdc6493e67be73fa5dd0ac0) format("woff"),url(../fonts/font-wso2.ttf?cbfd3c5fdcdc6493e67be73fa5dd0ac0) format("truetype"),url(../fonts/font-wso2.svg?cbfd3c5fdcdc6493e67be73fa5dd0ac0#font-wso2) format("svg");font-weight:400;font-style:normal}.fw,[class*=" fw-"],[class^=fw-]{font:normal normal normal 14px/1 font-wso2;display:inline-block;font-weight:400;font-style:normal;font-size:inherit;font-variant:normal;speak:none;text-decoration:inherit;text-transform:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fw-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fw-2x{font-size:2em}.fw-3x{font-size:3em}.fw-4x{font-size:4em}.fw-5x{font-size:5em}.fw-fw{width:1.28571429em}.fw-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fw-ul>li{position:relative}.fw-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em}.fw-li.fw-lg{left:-1.85714286em}.fw-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fw-background{background:#888;border-radius:.3em;padding:.4em .5em .45em}.fw-pull-left{float:left}.fw-pull-right{float:right}.fw.fw-pull-left{margin-right:.3em}.fw.fw-pull-right{margin-left:.3em}.fw-spin{-webkit-animation:fw-spin 2s infinite linear;animation:fw-spin 2s infinite linear}@-webkit-keyframes fw-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fw-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fw-pulse{-webkit-animation:fw-pulse 2s ease-out infinite;animation:fw-pulse 2s ease-out infinite}@-webkit-keyframes fw-pulse{0%,100%,30%{opacity:.3}40%{opacity:1}}@keyframes fw-pulse{0%,100%,30%{opacity:.3}40%{opacity:1}}.fw-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fw-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fw-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fw-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fw-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fw-flip-horizontal,:root .fw-flip-vertical,:root .fw-rotate-180,:root .fw-rotate-270,:root .fw-rotate-90{filter:none}.fw-helper,.fw-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:1.85em;vertical-align:middle}.fw-helper:after,.fw-helper:before,.fw-stack-1x,.fw-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fw-helper:before,.fw-stack-1x{line-height:inherit}.fw-helper:after,.fw-stack-2x{font-size:1.9em}.fw-helper-slash:before{font-size:1.4em}.fw-helper-circle:before,.fw-helper-square:before{z-index:1}.fw-helper-circle-outline:after{content:"\e61f"}.fw-helper-circle:after{content:"\e61a"}.fw-helper-square-outline:after{content:"\e6b2"}.fw-helper-square:after{content:"\e6b1"}.fw-helper-slash:after{content:"\e6e1"}.fw-stack>.fw-stack{position:absolute;font-size:.5em}.fw-stack>.fw-stack.fw-move-top{top:-.2em}.fw-stack>.fw-stack.fw-move-bottom{bottom:-.2em}.fw-stack>.fw.stack.fw-move-left{left:-.5em}.fw-stack>.fw-stack.fw-move-right{right:-.5em}.fw-helper-inverse:after,.fw-inverse:before,.fw-number{color:#fff}.fw-helper-shadow:after,.fw-shadow:before{text-shadow:#fff 1px 1px 0}.fw-helper-stroke:after,.fw-stroke:before{text-shadow:-2px -2px 0 #fff,2px -2px 0 #fff,-2px 2px 0 #fff,2px 2px 0 #fff}.fw-number{line-height:2em;font-family:Arial,Helvetica,sans-serif}.fw-action-invoke:before{content:"\e6fe"}.fw-activate:before{content:"\e6cf"}.fw-add:before{content:"\e615"}.fw-airplay:before{content:"\e600"}.fw-alarm:before{content:"\e6c2"}.fw-alert:before{content:"\e6be"}.fw-analytics-extensions:before{content:"\e6e2"}.fw-android:before{content:"\e606"}.fw-annotation:before{content:"\e6e6"}.fw-api:before{content:"\e601"}.fw-apn:before{content:"\e602"}.fw-apple:before{content:"\e604"}.fw-application:before{content:"\e608"}.fw-arduino:before{content:"\e6ab"}.fw-assign:before{content:"\e6ff"}.fw-bar-chart:before{content:"\e690"}.fw-battery:before{content:"\e60a"}.fw-blank-document:before{content:"\e60c"}.fw-block:before{content:"\e695"}.fw-bookmark:before{content:"\e60d"}.fw-bpel:before{content:"\e60e"}.fw-bpmn:before{content:"\e60f"}.fw-bug:before{content:"\e611"}.fw-build:before{content:"\e6c1"}.fw-calendar:before{content:"\e612"}.fw-camera:before{content:"\e613"}.fw-cancel:before{content:"\e618"}.fw-carbon:before{content:"\e6c5"}.fw-chat:before{content:"\e65b"}.fw-check:before{content:"\e617"}.fw-checklist:before{content:"\e619"}.fw-circle-outline:before{content:"\e61f"}.fw-circle:before{content:"\e61a"}.fw-clear:before{content:"\e61b"}.fw-clock:before{content:"\e61d"}.fw-cloud:before{content:"\e61e"}.fw-code:before{content:"\e6f1"}.fw-compare:before{content:"\e610"}.fw-computer:before{content:"\e653"}.fw-configarations:before{content:"\e609"}.fw-connector:before{content:"\e700"}.fw-constant:before{content:"\e701"}.fw-contact:before{content:"\e620"}.fw-contract:before{content:"\e614"}.fw-copy:before{content:"\e621"}.fw-cut:before{content:"\e6f2"}.fw-dashboard:before{content:"\e622"}.fw-database:before{content:"\e623"}.fw-delete:before{content:"\e624"}.fw-depend:before{content:"\e6c6"}.fw-deploy:before{content:"\e625"}.fw-deprecate:before{content:"\e6cb"}.fw-design-view:before{content:"\e6f3"}.fw-devices:before{content:"\e704"}.fw-dgm-connector:before{content:"\e6f4"}.fw-dgm-constant-definition:before{content:"\e6f5"}.fw-dgm-fork:before{content:"\e6e7"}.fw-dgm-header:before{content:"\e6e8"}.fw-dgm-if-else:before{content:"\e6e9"}.fw-dgm-lifeline:before{content:"\e6ea"}.fw-dgm-logger:before{content:"\e6eb"}.fw-dgm-resource:before{content:"\e6f6"}.fw-dgm-service:before{content:"\e6f7"}.fw-dgm-try-catch:before{content:"\e6ec"}.fw-dgm-type-convertor:before{content:"\e6f8"}.fw-dgm-type:before{content:"\e6f9"}.fw-dial-up:before{content:"\e627"}.fw-disabled:before{content:"\e6d1"}.fw-display:before{content:"\e626"}.fw-dmg-resource:before{content:"\e707"}.fw-dmg-service:before{content:"\e708"}.fw-document:before{content:"\e628"}.fw-down-arrow:before{content:"\e689"}.fw-down:before{content:"\e685"}.fw-download:before{content:"\e65f"}.fw-dss:before{content:"\e62a"}.fw-ebook:before{content:"\e62b"}.fw-edit:before{content:"\e62c"}.fw-ellipsis:before{content:"\e629"}.fw-endpoint:before{content:"\e62d"}.fw-enterprise:before{content:"\e6b6"}.fw-error:before{content:"\e630"}.fw-esb-connector:before{content:"\e6e3"}.fw-expand:before{content:"\e61c"}.fw-export:before{content:"\e631"}.fw-extensions:before{content:"\e6e4"}.fw-facebook:before{content:"\e6d3"}.fw-factory-reset:before{content:"\e632"}.fw-fan:before{content:"\e678"}.fw-faq:before{content:"\e62f"}.fw-file-browse:before{content:"\e633"}.fw-filter:before{content:"\e634"}.fw-folder:before{content:"\e62e"}.fw-format:before{content:"\e6fa"}.fw-forum:before{content:"\e636"}.fw-function:before{content:"\e6fb"}.fw-gadget:before{content:"\e637"}.fw-github:before{content:"\e6d4"}.fw-globe:before{content:"\e697"}.fw-google-docs:before{content:"\e6d6"}.fw-google-drive:before{content:"\e6da"}.fw-google-plus:before{content:"\e6d9"}.fw-google-sheets:before{content:"\e6d7"}.fw-google-slides:before{content:"\e6d8"}.fw-google:before{content:"\e6d5"}.fw-grid:before{content:"\e638"}.fw-grip:before{content:"\e6b7"}.fw-group:before{content:"\e6af"}.fw-hardware:before{content:"\e6a9"}.fw-hdd:before{content:"\e639"}.fw-heart:before{content:"\e6c3"}.fw-hide:before{content:"\e6d2"}.fw-home:before{content:"\e63a"}.fw-hour-glass:before{content:"\e63b"}.fw-html:before{content:"\e69d"}.fw-http:before{content:"\e705"}.fw-import:before{content:"\e63c"}.fw-incoming-call:before{content:"\e63d"}.fw-info:before{content:"\e63e"}.fw-instagram:before{content:"\e6db"}.fw-invitation:before{content:"\e63f"}.fw-invoke:before{content:"\e6ed"}.fw-is-connector:before{content:"\e6e5"}.fw-jaggery:before{content:"\e640"}.fw-java-spring:before{content:"\e644"}.fw-java:before{content:"\e641"}.fw-javaee:before{content:"\e642"}.fw-javascript:before{content:"\e643"}.fw-jaxrs:before{content:"\e645"}.fw-jaxws:before{content:"\e6c7"}.fw-jquery:before{content:"\e646"}.fw-key:before{content:"\e647"}.fw-laptop:before{content:"\e648"}.fw-layout:before{content:"\e6bf"}.fw-ldap:before{content:"\e649"}.fw-left-arrow:before{content:"\e68a"}.fw-left:before{content:"\e686"}.fw-lifecycle:before{content:"\e64a"}.fw-light:before{content:"\e680"}.fw-linkedin:before{content:"\e6dc"}.fw-list-sort:before{content:"\e64d"}.fw-list:before{content:"\e64c"}.fw-loader:before{content:"\e6b4"}.fw-loader2:before{content:"\e6ba"}.fw-loader3:before{content:"\e6bb"}.fw-loader4:before{content:"\e6bc"}.fw-loader5:before{content:"\e6bd"}.fw-lock:before{content:"\e64e"}.fw-logical:before{content:"\e702"}.fw-mail:before{content:"\e64f"}.fw-main-function:before{content:"\e706"}.fw-map-location:before{content:"\e650"}.fw-menu:before{content:"\e651"}.fw-message:before{content:"\e635"}.fw-micro-services:before{content:"\e6ce"}.fw-minus:before{content:"\e616"}.fw-mobile:before{content:"\e652"}.fw-ms-document:before{content:"\e654"}.fw-mute:before{content:"\e655"}.fw-nodejs:before{content:"\e656"}.fw-notification:before{content:"\e60b"}.fw-organization:before{content:"\e6ac"}.fw-own:before{content:"\e6c8"}.fw-package:before{content:"\e6fd"}.fw-pages:before{content:"\e6c0"}.fw-paste:before{content:"\e658"}.fw-pdf:before{content:"\e659"}.fw-php:before{content:"\e6c9"}.fw-pie-chart:before{content:"\e65a"}.fw-pinterest:before{content:"\e6dd"}.fw-policy:before{content:"\e67d"}.fw-prototype:before{content:"\e6cc"}.fw-proxy:before{content:"\e699"}.fw-public:before{content:"\e6ad"}.fw-publish:before{content:"\e65c"}.fw-question:before{content:"\e6b0"}.fw-raspberry:before{content:"\e6aa"}.fw-redo:before{content:"\e65d"}.fw-refresh:before{content:"\e692"}.fw-register:before{content:"\e65e"}.fw-rename:before{content:"\e6fc"}.fw-resource:before{content:"\e660"}.fw-rest-api:before{content:"\e661"}.fw-rest-service:before{content:"\e662"}.fw-retire:before{content:"\e6cd"}.fw-retweet:before{content:"\e6b9"}.fw-right-arrow:before{content:"\e68b"}.fw-right:before{content:"\e687"}.fw-ringing:before{content:"\e694"}.fw-rules:before{content:"\e664"}.fw-save:before{content:"\e665"}.fw-scep:before{content:"\e666"}.fw-schema:before{content:"\e667"}.fw-search:before{content:"\e668"}.fw-security-policy:before{content:"\e67e"}.fw-security:before{content:"\e669"}.fw-paper-rocket:before,.fw-send:before{content:"\e66a"}.fw-sequence:before{content:"\e66b"}.fw-server:before{content:"\e66c"}.fw-service-provider:before{content:"\e66e"}.fw-cogwheels:before,.fw-gears:before,.fw-service:before{content:"\e66d"}.fw-cogwheel:before,.fw-gear:before,.fw-settings:before{content:"\e66f"}.fw-share:before{content:"\e670"}.fw-sign-in:before{content:"\e671"}.fw-sign-out:before{content:"\e6b8"}.fw-skype:before{content:"\e6de"}.fw-slash:before{content:"\e6e1"}.fw-soap:before{content:"\e672"}.fw-sort-down:before{content:"\e663"}.fw-sort-up:before{content:"\e64b"}.fw-sort:before{content:"\e673"}.fw-square-outline:before{content:"\e6b2"}.fw-square:before{content:"\e6b1"}.fw-star:before{content:"\e674"}.fw-statistics:before{content:"\e675"}.fw-store:before{content:"\e676"}.fw-subscribe:before{content:"\e677"}.fw-success:before{content:"\e657"}.fw-swagger:before{content:"\e679"}.fw-sync:before{content:"\e6b3"}.fw-table:before{content:"\e6c4"}.fw-tag:before{content:"\e67a"}.fw-task:before{content:"\e67b"}.fw-text:before{content:"\e67c"}.fw-throttling-policy:before{content:"\e67f"}.fw-tiles:before{content:"\e681"}.fw-try-catch:before{content:"\e703"}.fw-twitter:before{content:"\e6df"}.fw-uncheck:before{content:"\e682"}.fw-undo:before{content:"\e683"}.fw-ungroup:before{content:"\e6b5"}.fw-unmute:before{content:"\e6ae"}.fw-up-arrow:before{content:"\e688"}.fw-up:before{content:"\e684"}.fw-upload:before{content:"\e68c"}.fw-uri:before{content:"\e68d"}.fw-usb-drive:before{content:"\e68e"}.fw-use:before{content:"\e6ca"}.fw-user:before{content:"\e68f"}.fw-variable:before{content:"\e6ee"}.fw-view:before{content:"\e691"}.fw-vpn:before{content:"\e603"}.fw-wadl:before{content:"\e6a1"}.fw-war:before{content:"\e69e"}.fw-warning:before{content:"\e693"}.fw-web-app:before{content:"\e696"}.fw-web-clip:before{content:"\e698"}.fw-web-service:before{content:"\e69a"}.fw-website:before{content:"\e69b"}.fw-wifi:before{content:"\e607"}.fw-windows:before{content:"\e605"}.fw-worker:before{content:"\e6ef"}.fw-wsdl:before{content:"\e6a0"}.fw-wso2-logo:before{content:"\e6a7"}.fw-wso2:before{content:"\e6a8"}.fw-xacml:before{content:"\e69f"}.fw-xml:before{content:"\e69c"}.fw-xq:before{content:"\e6a2"}.fw-xsd:before{content:"\e6a3"}.fw-xslt:before{content:"\e6a4"}.fw-youtube:before{content:"\e6e0"}.fw-zoom-in:before{content:"\e6a5"}.fw-zoom-out:before{content:"\e6a6"} \ No newline at end of file diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/fonts/font-wso2.eot b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/fonts/font-wso2.eot index 3ba798e8af..9f57898669 100644 Binary files a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/fonts/font-wso2.eot and b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/fonts/font-wso2.eot differ diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/fonts/font-wso2.svg b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/fonts/font-wso2.svg index 72a370b157..7701c14851 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/fonts/font-wso2.svg +++ b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/fonts/font-wso2.svg @@ -1,221 +1,2016 @@ - diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/fonts/font-wso2.ttf b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/fonts/font-wso2.ttf index ab24344e3e..f3c32e5eae 100644 Binary files a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/fonts/font-wso2.ttf and b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/fonts/font-wso2.ttf differ diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/fonts/font-wso2.woff b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/fonts/font-wso2.woff index 14fc70988e..96a8efabf2 100644 Binary files a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/fonts/font-wso2.woff and b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/fonts/font-wso2.woff differ diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/fonts/font-wso2.woff2 b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/fonts/font-wso2.woff2 new file mode 100644 index 0000000000..ddaffbaa82 Binary files /dev/null and b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/uuf-template-app/app/units/uuf.unit.theme/public/lib/font-wso2_1.2/fonts/font-wso2.woff2 differ