├── imgs ├── nas.png ├── miyue.png ├── spark.png ├── zhuji.png ├── hadoop.png ├── huancun.png ├── luyouqi.png ├── mongodb.png ├── yingpan.png ├── gongwangIP.png ├── zookeeper.png ├── fanghuoqiang.png ├── siyouwangluo.png ├── fuzaijunhengqi.png └── guanxixingshujuku.png ├── css ├── iconfont.eot ├── iconfont.ttf ├── iconfont.woff ├── font.css ├── iconfont.css ├── main.css ├── jquery-ui.structure.min.css ├── iconfont.svg ├── bootstrap-theme.min.css ├── bootstrap-theme.css └── jquery-ui.min.css ├── template ├── topologies.html ├── topology_templates.html ├── blocks │ ├── nav.html │ └── content_table.html └── createTemplate.html ├── js ├── filters │ └── pageFilter.js ├── directives │ └── content-table.js ├── resourceRelation.js ├── config │ └── router.js ├── controllers │ ├── mainCtrl.js │ ├── topologyTempsCtrl.js │ ├── topologiesCtrl.js │ └── createTemplateCtrl.js └── provider │ └── methodApi.js ├── README.md └── index.html /imgs/nas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadaiwei/Angular-ResourceOrchestration/HEAD/imgs/nas.png -------------------------------------------------------------------------------- /imgs/miyue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadaiwei/Angular-ResourceOrchestration/HEAD/imgs/miyue.png -------------------------------------------------------------------------------- /imgs/spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadaiwei/Angular-ResourceOrchestration/HEAD/imgs/spark.png -------------------------------------------------------------------------------- /imgs/zhuji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadaiwei/Angular-ResourceOrchestration/HEAD/imgs/zhuji.png -------------------------------------------------------------------------------- /css/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadaiwei/Angular-ResourceOrchestration/HEAD/css/iconfont.eot -------------------------------------------------------------------------------- /css/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadaiwei/Angular-ResourceOrchestration/HEAD/css/iconfont.ttf -------------------------------------------------------------------------------- /css/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadaiwei/Angular-ResourceOrchestration/HEAD/css/iconfont.woff -------------------------------------------------------------------------------- /imgs/hadoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadaiwei/Angular-ResourceOrchestration/HEAD/imgs/hadoop.png -------------------------------------------------------------------------------- /imgs/huancun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadaiwei/Angular-ResourceOrchestration/HEAD/imgs/huancun.png -------------------------------------------------------------------------------- /imgs/luyouqi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadaiwei/Angular-ResourceOrchestration/HEAD/imgs/luyouqi.png -------------------------------------------------------------------------------- /imgs/mongodb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadaiwei/Angular-ResourceOrchestration/HEAD/imgs/mongodb.png -------------------------------------------------------------------------------- /imgs/yingpan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadaiwei/Angular-ResourceOrchestration/HEAD/imgs/yingpan.png -------------------------------------------------------------------------------- /imgs/gongwangIP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadaiwei/Angular-ResourceOrchestration/HEAD/imgs/gongwangIP.png -------------------------------------------------------------------------------- /imgs/zookeeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadaiwei/Angular-ResourceOrchestration/HEAD/imgs/zookeeper.png -------------------------------------------------------------------------------- /imgs/fanghuoqiang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadaiwei/Angular-ResourceOrchestration/HEAD/imgs/fanghuoqiang.png -------------------------------------------------------------------------------- /imgs/siyouwangluo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadaiwei/Angular-ResourceOrchestration/HEAD/imgs/siyouwangluo.png -------------------------------------------------------------------------------- /imgs/fuzaijunhengqi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadaiwei/Angular-ResourceOrchestration/HEAD/imgs/fuzaijunhengqi.png -------------------------------------------------------------------------------- /imgs/guanxixingshujuku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadaiwei/Angular-ResourceOrchestration/HEAD/imgs/guanxixingshujuku.png -------------------------------------------------------------------------------- /template/topologies.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 | -------------------------------------------------------------------------------- /template/topology_templates.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 | -------------------------------------------------------------------------------- /js/filters/pageFilter.js: -------------------------------------------------------------------------------- 1 | app.filter("pageFilter", function(){ 2 | return function(contents, index, entry){ 3 | return contents.slice(index * entry, (index + 1) * entry); 4 | } 5 | }) 6 | -------------------------------------------------------------------------------- /js/directives/content-table.js: -------------------------------------------------------------------------------- 1 | rosApp.directive('contentTable', function(){ 2 | return{ 3 | restrict: 'E', 4 | replace: true, 5 | templateUrl: './template/blocks/content_table.html' 6 | }; 7 | }); 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Angular-ResourceOrchestration 2 | #### 基于AngularJs、jTopo、jQuery做的一个在线资源编排案例 #### 3 | 链接地址:[https://dadaiwei.github.io/Angular-ResourceOrchestration](https://dadaiwei.github.io/Angular-ResourceOrchestration) 4 | #### 编排模板 #### 5 | ![](https://i.imgur.com/6UQ5XJa.jpg) 6 | #### 已生成编排 #### 7 | ![](https://i.imgur.com/BfomX5X.jpg) 8 | #### 创建模板 #### 9 | ![](https://i.imgur.com/qkQfrQ3.jpg) 10 | -------------------------------------------------------------------------------- /template/blocks/nav.html: -------------------------------------------------------------------------------- 1 |
2 | 14 |
-------------------------------------------------------------------------------- /js/resourceRelation.js: -------------------------------------------------------------------------------- 1 | rosApp.constant("RELATIONSTABLE", { 2 | "基础网络": [ 3 | { 4 | children: "主机", 5 | value: true 6 | }, 7 | { 8 | children: "私有网络", 9 | value: true 10 | } 11 | ], 12 | "私有网络": [ 13 | { 14 | children: "主机", 15 | value: true 16 | }, 17 | { 18 | children: "NAS", 19 | value: true 20 | } 21 | ], 22 | "主机": [ 23 | { 24 | children: "硬盘", 25 | value: true 26 | } 27 | ] 28 | }) -------------------------------------------------------------------------------- /js/config/router.js: -------------------------------------------------------------------------------- 1 | var app = angular.module('rosApp'); 2 | 3 | app.config(['$stateProvider', '$urlRouterProvider', function($stateProvider, $urlRouterProvider){ 4 | $urlRouterProvider.otherwise('/topology_templates'); 5 | $stateProvider 6 | .state('topology_templates', { 7 | url: '/topology_templates', 8 | templateUrl: 'template/topology_templates.html' 9 | }) 10 | .state('createTemplate', { 11 | url: '/createTemplate', 12 | templateUrl: 'template/createTemplate.html' 13 | }) 14 | .state('topologies', { 15 | url: '/topologies', 16 | templateUrl: 'template/topologies.html' 17 | }) 18 | }]); 19 | -------------------------------------------------------------------------------- /css/font.css: -------------------------------------------------------------------------------- 1 | 2 | @font-face {font-family: "iconfont"; 3 | src: url('iconfont.eot?t=1496902419176'); /* IE9*/ 4 | src: url('iconfont.eot?t=1496902419176#iefix') format('embedded-opentype'), /* IE6-IE8 */ 5 | url('iconfont.woff?t=1496902419176') format('woff'), /* chrome, firefox */ 6 | url('iconfont.ttf?t=1496902419176') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/ 7 | url('iconfont.svg?t=1496902419176#iconfont') format('svg'); /* iOS 4.1- */ 8 | } 9 | 10 | .iconfont { 11 | font-family:"iconfont" !important; 12 | font-size:16px; 13 | font-style:normal; 14 | -webkit-font-smoothing: antialiased; 15 | -moz-osx-font-smoothing: grayscale; 16 | } 17 | 18 | .icon-shuaxin:before { content: "\e600"; } 19 | 20 | .icon-huancun:before { content: "\e60e"; } 21 | 22 | .icon-fangda:before { content: "\e66a"; } 23 | 24 | .icon-tijiao:before { content: "\e610"; } 25 | 26 | .icon-gongwangIP:before { content: "\e61f"; } 27 | 28 | .icon-hadoop:before { content: "\e607"; } 29 | 30 | .icon-guanxixingshujuku:before { content: "\e63f"; } 31 | 32 | .icon-ziyuanpeizhi:before { content: "\e611"; } 33 | 34 | .icon-suoxiao:before { content: "\e744"; } 35 | 36 | .icon-zookeeper:before { content: "\e771"; } 37 | 38 | .icon-qingkong:before { content: "\e619"; } 39 | 40 | .icon-nas:before { content: "\e662"; } 41 | 42 | .icon-spark:before { content: "\e601"; } 43 | 44 | .icon-miyue:before { content: "\e672"; } 45 | 46 | .icon-fanghuoqiang:before { content: "\e676"; } 47 | 48 | .icon-mongodb:before { content: "\e603"; } 49 | 50 | .icon-zhuji:before { content: "\e762"; } 51 | 52 | .icon-yingpan:before { content: "\e633"; } 53 | 54 | .icon-gaojixuanxiang:before { content: "\e641"; } 55 | 56 | .icon-fuzaijunhengqi:before { content: "\e604"; } 57 | 58 | .icon-luyouqi:before { content: "\e606"; } 59 | 60 | .icon-siyouwangluo:before { content: "\e608"; } 61 | 62 | .icon-x:before { content: "\e629"; } 63 | 64 | .icon-bianji:before { content: "\e6e3"; } -------------------------------------------------------------------------------- /css/iconfont.css: -------------------------------------------------------------------------------- 1 | 2 | @font-face {font-family: "iconfont"; 3 | src: url('iconfont.eot?t=1498524550280'); /* IE9*/ 4 | src: url('iconfont.eot?t=1498524550280#iefix') format('embedded-opentype'), /* IE6-IE8 */ 5 | url('iconfont.woff?t=1498524550280') format('woff'), /* chrome, firefox */ 6 | url('iconfont.ttf?t=1498524550280') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/ 7 | url('iconfont.svg?t=1498524550280#iconfont') format('svg'); /* iOS 4.1- */ 8 | } 9 | 10 | .iconfont { 11 | font-family:"iconfont" !important; 12 | font-size:16px; 13 | font-style:normal; 14 | -webkit-font-smoothing: antialiased; 15 | -moz-osx-font-smoothing: grayscale; 16 | } 17 | 18 | .icon-shuaxin:before { content: "\e600"; } 19 | 20 | .icon-huancun:before { content: "\e60e"; } 21 | 22 | .icon-fangda:before { content: "\e66a"; } 23 | 24 | .icon-bianji:before { content: "\e6e3"; } 25 | 26 | .icon-tijiao:before { content: "\e610"; } 27 | 28 | .icon-gongwangIP:before { content: "\e61f"; } 29 | 30 | .icon-hadoop:before { content: "\e607"; } 31 | 32 | .icon-guanxixingshujuku:before { content: "\e63f"; } 33 | 34 | .icon-x:before { content: "\e629"; } 35 | 36 | .icon-ziyuanpeizhi:before { content: "\e611"; } 37 | 38 | .icon-suoxiao:before { content: "\e744"; } 39 | 40 | .icon-zookeeper:before { content: "\e771"; } 41 | 42 | .icon-qingkong:before { content: "\e619"; } 43 | 44 | .icon-nas:before { content: "\e662"; } 45 | 46 | .icon-spark:before { content: "\e601"; } 47 | 48 | .icon-miyue:before { content: "\e672"; } 49 | 50 | .icon-fanghuoqiang:before { content: "\e676"; } 51 | 52 | .icon-mongodb:before { content: "\e603"; } 53 | 54 | .icon-zhuji:before { content: "\e762"; } 55 | 56 | .icon-yingpan:before { content: "\e633"; } 57 | 58 | .icon-gaojipeizhi:before { content: "\e641"; } 59 | 60 | .icon-fuzaijunhengqi:before { content: "\e604"; } 61 | 62 | .icon-luyouqi:before { content: "\e606"; } 63 | 64 | .icon-siyouwangluo:before { content: "\e608"; } 65 | 66 | -------------------------------------------------------------------------------- /js/controllers/mainCtrl.js: -------------------------------------------------------------------------------- 1 | var rosApp = angular.module("rosApp", ['ui.router']); 2 | 3 | rosApp.controller('mainCtrl', ['$scope', '$rootScope', 'methodApi', function($scope, $rootScope, methodApi){ 4 | 5 | methodApi.initPageFunction($rootScope); 6 | 7 | $rootScope.selectAll = function(allCheck, contents, index, entry){ 8 | if (index==undefined){ 9 | }else{ 10 | contents = contents.slice(index*entry, (index+1)*entry); 11 | } 12 | for (var i = 0; i< contents.length;i++) { 13 | contents[i].checkbox = allCheck; 14 | } 15 | }; 16 | 17 | $rootScope.remove = function(){ 18 | var arr = []; 19 | 20 | angular.forEach($rootScope.contents, function(item){ 21 | if(item.checkbox != true){ 22 | arr.push(item); 23 | } 24 | }); 25 | 26 | $rootScope.contents = arr; 27 | $rootScope.childScope.contents = arr; 28 | $rootScope.childScope.allCheck = false; 29 | 30 | $rootScope.pageButtons = [{index:0, active: true, name: 1}]; 31 | 32 | for(var i = 1; i < Math.ceil($rootScope.contents.length / $rootScope.pageEntry ); i++){ 33 | $rootScope.pageButtons.push({ 34 | index: i, 35 | active: false, 36 | name: i + 1 37 | }); 38 | }; 39 | 40 | angular.copy($rootScope.childScope.contents, $rootScope.childScope.searchContents); 41 | }; 42 | 43 | $rootScope.changeEntry = function(value){ 44 | $rootScope.pageIndex = 0; 45 | $rootScope.pageEntry = value; 46 | $rootScope.pageButtons = [{index:0, active: true, name: 1}]; 47 | 48 | for(var i = 1; i < Math.ceil($rootScope.contents.length / $rootScope.pageEntry ); i++){ 49 | $rootScope.pageButtons.push({ 50 | index: i, 51 | active: false, 52 | name: i + 1 53 | }); 54 | }; 55 | 56 | for(var i = 0; i < $rootScope.contents.length; i++){ 57 | $rootScope.contents[i].checkbox = false; 58 | } 59 | 60 | $rootScope.childScope.allCheck = false; 61 | }; 62 | 63 | $rootScope.goPageButton = function(index){ 64 | if(index < 0 || index>= $rootScope.pageButtons.length){ 65 | return; 66 | } 67 | 68 | $rootScope.pageIndex = index; 69 | for(var i = 0; i < $rootScope.pageButtons.length; i++){ 70 | $rootScope.pageButtons[i].active = false; 71 | } 72 | $rootScope.pageButtons[index].active = true; 73 | 74 | for(var i = 0; i < $rootScope.contents.length; i++){ 75 | $rootScope.contents[i].checkbox = false; 76 | } 77 | 78 | $rootScope.childScope.allCheck = false; 79 | }; 80 | 81 | $rootScope.refresh= function(){ 82 | var $loading = $(".loading"); 83 | $loading.fadeIn(300); 84 | $loading.fadeOut(300); 85 | } 86 | 87 | $(".tooltip-d").remove(); 88 | }]); -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 24 |
25 |
26 |
27 |

资源编排

28 |
29 |
30 | 38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 | 71 |
72 |

确定要清空吗?

73 | 74 | 75 |
76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /template/blocks/content_table.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | 7 | 8 | 11 |
12 |
13 |
14 | 17 | 18 | 19 |
20 |
21 |
22 |
23 | 24 | 25 | 26 | 29 | 30 | 31 | 32 | 33 | 34 | 37 | 41 | 42 | 43 |
27 | 28 | {{h.name}}
35 | 36 | 38 | {{c[h.field]}} 39 |

{{c[h.field]}}

40 |
44 |
45 |
46 |

正在加载....

47 |
48 |
49 |
50 |
51 |
52 |
53 | 58 |
59 |
60 |
61 |
62 | 77 |
78 |
79 |
80 |
81 |
82 |
-------------------------------------------------------------------------------- /js/controllers/topologyTempsCtrl.js: -------------------------------------------------------------------------------- 1 | rosApp.controller('topologyTempsCtrl', ['$scope', '$state', '$rootScope', 'methodApi', 2 | function($scope, $state, $rootScope, methodApi){ 3 | $scope.isActive1 = true; 4 | $scope.isCreateModal = true; 5 | $rootScope.layoutTemplate = true; 6 | $rootScope.generatedTemplate = false; 7 | $rootScope.createTemplate = false; 8 | $scope.headers = [{'name': 'ID', 'field': 'id', 'link': true}, 9 | {'name': '名称', 'field': 'name'}, 10 | {'name': '状态', 'field': 'status'}, 11 | {'name': '创建时间', 'field': 'createTime'}]; 12 | var contents = [ 13 | { 14 | 'checkbox': false, 15 | 'id': 'temp1', 16 | 'name': '无', 17 | 'status': '可用', 18 | 'createTime': '2017-06-27 13:00:00' 19 | }, 20 | { 21 | 'checkbox': false, 22 | 'id': 'temp2', 23 | 'name': '无', 24 | 'status': '可用', 25 | 'createTime': '2017-06-27 13:00:00' 26 | }, 27 | { 28 | 'checkbox': false, 29 | 'id': 'temp3', 30 | 'name': '无', 31 | 'status': '可用', 32 | 'createTime': '2017-06-27 13:00:00' 33 | }, 34 | { 35 | 'checkbox': false, 36 | 'id': 'temp4', 37 | 'name': '无', 38 | 'status': '可用', 39 | 'createTime': '2017-06-27 13:30:00' 40 | }, 41 | { 42 | 'checkbox': false, 43 | 'id': 'temp5', 44 | 'name': '无', 45 | 'status': '可用', 46 | 'createTime': '2017-06-27 14:00:00' 47 | }, 48 | { 49 | 'checkbox': false, 50 | 'id': 'temp6', 51 | 'name': '无', 52 | 'status': '可用', 53 | 'createTime': '2017-06-27 14:30:00' 54 | }, 55 | { 56 | 'checkbox': false, 57 | 'id': 'temp7', 58 | 'name': '无', 59 | 'status': '可用', 60 | 'createTime': '2017-06-27 15:00:00' 61 | }, { 62 | 'checkbox': false, 63 | 'id': 'temp8', 64 | 'name': '无', 65 | 'status': '可用', 66 | 'createTime': '2017-06-27 13:00:00' 67 | }, 68 | { 69 | 'checkbox': false, 70 | 'id': 'temp9', 71 | 'name': '无', 72 | 'status': '可用', 73 | 'createTime': '2017-06-27 13:00:00' 74 | }, 75 | { 76 | 'checkbox': false, 77 | 'id': 'temp10', 78 | 'name': '无', 79 | 'status': '可用', 80 | 'createTime': '2017-06-27 13:00:00' 81 | }, 82 | { 83 | 'checkbox': false, 84 | 'id': 'temp11', 85 | 'name': '无', 86 | 'status': '可用', 87 | 'createTime': '2017-06-27 13:30:00' 88 | }, 89 | { 90 | 'checkbox': false, 91 | 'id': 'temp12', 92 | 'name': '无', 93 | 'status': '可用', 94 | 'createTime': '2017-06-27 14:00:00' 95 | }, 96 | { 97 | 'checkbox': false, 98 | 'id': 'temp13', 99 | 'name': '无', 100 | 'status': '可用', 101 | 'createTime': '2017-06-27 14:30:00' 102 | }, 103 | { 104 | 'checkbox': false, 105 | 'id': 'temp14', 106 | 'name': '无', 107 | 'status': '可用', 108 | 'createTime': '2017-06-27 15:00:00' 109 | } 110 | ]; 111 | 112 | $scope.searchOptions = [ 113 | { 114 | 'key': 'id', 115 | 'value': '按ID搜索' 116 | }, 117 | { 118 | 'key': 'name', 119 | 'value': '按名称搜索', 120 | }, 121 | { 122 | 'key': 'status', 123 | 'value': '按状态搜索' 124 | } 125 | ]; 126 | 127 | $scope.contents = contents; 128 | 129 | $scope.goCreate = function(){ 130 | $state.go("createTemplate"); 131 | }; 132 | 133 | $(".tooltip-d").remove(); 134 | 135 | methodApi.setNavWidth(".crumb-navigation", 170); 136 | 137 | /*分页功能初始化*/ 138 | methodApi.initPageFunction($rootScope); 139 | methodApi.setPageFunction($scope, $rootScope); 140 | 141 | /*搜索功能实现*/ 142 | $scope.searchButton = function(searchOption, searchValue){ 143 | methodApi.searchButton(searchOption, searchValue, $rootScope, $scope); 144 | }; 145 | 146 | /*鼠标右键应用模板*/ 147 | $scope.tooltipShow = function($event){ 148 | var target = $event.target; 149 | methodApi.tooltipShow(target); 150 | }; 151 | /*鼠标右键应用模板*/ 152 | $scope.tooltipShow = function($event){ 153 | var target = $event.target; 154 | methodApi.tooltipShow(target); 155 | }; 156 | 157 | }]); -------------------------------------------------------------------------------- /js/controllers/topologiesCtrl.js: -------------------------------------------------------------------------------- 1 | rosApp.controller('topologiesCtrl', ['$scope', '$state', '$rootScope', 'methodApi',function($scope, $state, $rootScope, methodApi){ 2 | $scope.isActive2 = true; 3 | $rootScope.layoutTemplate = false; 4 | $rootScope.generatedTemplate = true; 5 | $rootScope.createTemplate = false; 6 | 7 | $scope.headers = [{'name': 'ID', 'field': 'id', 'link': true}, 8 | {'name': '模板ID', 'field': 'modalId'}, 9 | {'name': '名称', 'field': 'name'}, 10 | {'name': '状态', 'field': 'status'}, 11 | {'name': '创建时间', 'field': 'createTime'}]; 12 | 13 | $scope.searchOptions = [ 14 | { 15 | 'key': 'id', 16 | 'value': '按ID搜索' 17 | }, 18 | { 19 | 'key': 'modalId', 20 | 'value': '按模板ID搜索', 21 | }, 22 | { 23 | 'key': 'name', 24 | 'value': '按名称搜索', 25 | }, 26 | { 27 | 'key': 'status', 28 | 'value': '按状态搜索' 29 | } 30 | ]; 31 | 32 | var contents = [ 33 | { 34 | 'checkbox': false, 35 | 'id': '1', 36 | 'modalId': 'temp1', 37 | 'name': '无', 38 | 'status': '可用', 39 | 'createTime': '2017-06-27 13:00:00' 40 | }, 41 | { 42 | 'checkbox': false, 43 | 'id': '2', 44 | 'modalId': 'temp2', 45 | 'name': '无', 46 | 'status': '可用', 47 | 'createTime': '2017-06-27 13:30:00' 48 | }, 49 | { 50 | 'checkbox': false, 51 | 'id': '3', 52 | 'modalId': 'temp3', 53 | 'name': '无', 54 | 'status': '可用', 55 | 'createTime': '2017-06-27 14:00:00' 56 | }, 57 | { 58 | 'checkbox': false, 59 | 'id': '4', 60 | 'modalId': 'temp4', 61 | 'name': '无', 62 | 'status': '可用', 63 | 'createTime': '2017-06-27 14:30:00' 64 | }, 65 | { 66 | 'checkbox': false, 67 | 'id': '5', 68 | 'modalId': 'temp5', 69 | 'name': '无', 70 | 'status': '可用', 71 | 'createTime': '2017-06-27 15:00:00' 72 | }, 73 | { 74 | 'checkbox': false, 75 | 'id': '1', 76 | 'modalId': 'temp6', 77 | 'name': '无', 78 | 'status': '可用', 79 | 'createTime': '2017-06-27 13:00:00' 80 | }, 81 | { 82 | 'checkbox': false, 83 | 'id': '2', 84 | 'modalId': 'temp6', 85 | 'name': '无', 86 | 'status': '可用', 87 | 'createTime': '2017-06-27 13:30:00' 88 | }, 89 | { 90 | 'checkbox': false, 91 | 'id': '3', 92 | 'modalId': 'temp6', 93 | 'name': '无', 94 | 'status': '可用', 95 | 'createTime': '2017-06-27 14:00:00' 96 | }, 97 | { 98 | 'checkbox': false, 99 | 'id': '4', 100 | 'modalId': 'temp6', 101 | 'name': '无', 102 | 'status': '可用', 103 | 'createTime': '2017-06-27 14:30:00' 104 | }, 105 | { 106 | 'checkbox': false, 107 | 'id': '5', 108 | 'modalId': 'temp7', 109 | 'name': '无', 110 | 'status': '可用', 111 | 'createTime': '2017-06-27 15:00:00' 112 | }, 113 | { 114 | 'checkbox': false, 115 | 'id': '1', 116 | 'modalId': 'temp8', 117 | 'name': '无', 118 | 'status': '可用', 119 | 'createTime': '2017-06-27 13:00:00' 120 | }, 121 | { 122 | 'checkbox': false, 123 | 'id': '2', 124 | 'modalId': 'temp9', 125 | 'name': '无', 126 | 'status': '可用', 127 | 'createTime': '2017-06-27 13:30:00' 128 | }, 129 | { 130 | 'checkbox': false, 131 | 'id': '3', 132 | 'modalId': 'temp10', 133 | 'name': '无', 134 | 'status': '可用', 135 | 'createTime': '2017-06-27 14:00:00' 136 | }, 137 | { 138 | 'checkbox': false, 139 | 'id': '4', 140 | 'modalId': 'temp11', 141 | 'name': '无', 142 | 'status': '可用', 143 | 'createTime': '2017-06-27 14:30:00' 144 | }, 145 | { 146 | 'checkbox': false, 147 | 'id': '5', 148 | 'modalId': 'temp12', 149 | 'name': '无', 150 | 'status': '可用', 151 | 'createTime': '2017-06-27 15:00:00' 152 | } 153 | ]; 154 | $(".tooltip-d").remove(); 155 | 156 | $scope.contents = contents; 157 | 158 | methodApi.setNavWidth(".crumb-navigation", 180); 159 | 160 | /*分页功能初始化*/ 161 | methodApi.initPageFunction($rootScope); 162 | methodApi.setPageFunction($scope, $rootScope); 163 | 164 | /*搜索功能实现*/ 165 | $scope.searchButton = function(searchOption, searchValue){ 166 | methodApi.searchButton(searchOption, searchValue, $rootScope, $scope); 167 | } 168 | 169 | $("") 170 | }]); 171 | -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- 1 | *{ 2 | margin: 0; 3 | padding: 0; 4 | } 5 | body{ 6 | min-width: 1280px; 7 | background-color: #fffdec; 8 | font-family: "arial, helvetica, sans-serif"; 9 | } 10 | a{ 11 | color: #FFFDEC; 12 | text-decoration: none; 13 | } 14 | ul,li{ 15 | list-style: none; 16 | } 17 | 18 | #header{ 19 | height: 60px; 20 | box-shadow: 0px 1px 10px #CCCCCC; 21 | background-color: #D7FFFF; 22 | } 23 | #header .logo{ 24 | height: 60px; 25 | width: 200px; 26 | float: left; 27 | margin-left: 55px; 28 | line-height: 60px; 29 | } 30 | #header .logo a{ 31 | color: #0000FF; 32 | height: 60px; 33 | font-style: italic; 34 | font-weight: bold; 35 | text-shadow: 2px 2px 3px #999999; 36 | font-size: 28px; 37 | } 38 | #header .logo a span{ 39 | color: #FF3030; 40 | } 41 | .panel-layout{ 42 | margin-top: 20px; 43 | width: auto; 44 | } 45 | .panel-heading .panel-title-style{ 46 | padding-left: 20px; 47 | height: 50px; 48 | line-height: 50px; 49 | font-size: 25px; 50 | color: #000000; 51 | cursor: default; 52 | font-family: "微软雅黑"; 53 | } 54 | .crumb-navigation{ 55 | margin: 20px 0px 0px 40px; 56 | width: 170px; 57 | text-align: center; 58 | } 59 | .crumb-navigation ol li a{ 60 | text-decoration: none; 61 | color: #000000; 62 | } 63 | .crumb-navigation ol li a:hover{ 64 | color: #0069d3; 65 | } 66 | 67 | #content{ 68 | height: auto; 69 | } 70 | 71 | .wrapper{ 72 | height: auto; 73 | margin: 0 auto; 74 | padding: 0px 50px 0px; 75 | } 76 | .navigation{ 77 | margin-left: 50px; 78 | } 79 | .container-layout{ 80 | padding:0 100px; 81 | } 82 | .my-font>button{ 83 | font-size: 14px; 84 | } 85 | .table-layout{ 86 | margin-top: 20px; 87 | } 88 | .table-layout table tr{ 89 | height: 30px; 90 | } 91 | .table-layout table tr th, .table-layout table tr td{ 92 | text-align: center; 93 | } 94 | .table-layout thead{ 95 | background-color: #eeeeee; 96 | } 97 | .table-layout table{ 98 | background-color: #FFFFFF; 99 | } 100 | .loading{ 101 | display: none; 102 | height: 40px; 103 | margin-top: -20px; 104 | margin-bottom: 10px; 105 | color: #3c3c3c; 106 | border: 1px solid #dddddd; 107 | border-top: none; 108 | 109 | } 110 | .loading p{ 111 | height: 40px; 112 | line-height: 40px; 113 | padding-left: 30px; 114 | } 115 | .pageShow{ 116 | margin-left: -10px; 117 | } 118 | .paging{ 119 | float: right; 120 | margin-top: -20px; 121 | } 122 | .paging a{ 123 | cursor: pointer; 124 | } 125 | 126 | .resource{ 127 | padding: 0px 10px; 128 | margin-top: 30px; 129 | } 130 | #content .resource-li>a, #content .resource-detail li{ 131 | height: 50px; 132 | line-height: 50px; 133 | } 134 | #content .resource-li>a{ 135 | font-weight: bold; 136 | display: block; 137 | text-decoration: none; 138 | font-size: 18px; 139 | border-radius: 4px; 140 | } 141 | #content .resource-ul li{ 142 | font-size: 16px; 143 | font-weight: 200; 144 | text-align: center; 145 | cursor: pointer; 146 | border-radius: 2px; 147 | } 148 | #content .resource-ul li>a:hover{ 149 | background-color: #CCC6C6; 150 | } 151 | #content .resource-li>a{ 152 | background-color: #929292; 153 | } 154 | #content .resource-li a:hover{ 155 | color: #0000DE; 156 | } 157 | #content .resource-ul .resource-li>a{ 158 | border-bottom: 1px solid #E2E2E2; 159 | } 160 | #content .resource-detail li{ 161 | text-align: center; 162 | vertical-align: middle; 163 | } 164 | #content .resource-detail li{ 165 | background-color: #F5F5F5; 166 | } 167 | #content .resource-detail li:hover{ 168 | color: #0000DE; 169 | background-color: #E3E3E3; 170 | } 171 | #content .resource-detail li.drag-li-moving{ 172 | color: #58666E; 173 | background-color: rgba(0, 0, 0, 0)!important; 174 | } 175 | #content .resource-detail .resource-name{ 176 | margin-left: 2px; 177 | } 178 | .canvas-container{ 179 | height: 680px; 180 | margin-top: -52px; 181 | position: relative; 182 | } 183 | .canvas-container #canvas{ 184 | position: absolute; 185 | left: 0; 186 | top: 0; 187 | background-color: #E1EDE7; 188 | } 189 | .toolbar{ 190 | position: absolute; 191 | left: 20px; 192 | top: 15px; 193 | z-index: 2; 194 | } 195 | .toolbar button{ 196 | margin: 0 5px; 197 | } 198 | .drag-li-moving{ 199 | color: #58666E; 200 | background-color: rgba(0, 0, 0, 0)!important; 201 | } 202 | .tooltip-content{ 203 | position: absolute; 204 | top: 22px; 205 | right: 30px; 206 | height: 30px; 207 | line-height: 30px; 208 | font-size: 15px; 209 | color: #E11A70; 210 | display: none; 211 | font-weight: bold; 212 | z-index: 3; 213 | } 214 | #contextmenu{ 215 | display: none; 216 | position: absolute; 217 | width: 130px; 218 | background: #EEEEEE; 219 | z-index: 3; 220 | } 221 | #contextmenu li{ 222 | padding: 5px 10px; 223 | text-align: left; 224 | border-bottom: 1px solid #AAAAAA; 225 | cursor: pointer; 226 | } 227 | #contextmenu li:hover{ 228 | background: #FFFFFF; 229 | } 230 | #contextmenu li a{ 231 | height: 25px; 232 | line-height: 25px; 233 | display: block; 234 | font-size: 15px; 235 | color: #000000; 236 | text-decoration: none; 237 | } 238 | 239 | .description{ 240 | height: 715px; 241 | margin-top: -52px; 242 | background-color: #e6e6e6; 243 | } 244 | .description .tabs{ 245 | width: 100%; 246 | } 247 | .description .tab{ 248 | /*background-color: #FFFFFF;*/ 249 | text-align: center; 250 | width: 50%; 251 | cursor: pointer; 252 | border-color: #FFFFFF; 253 | } 254 | .configuration{ 255 | padding: 0 30px; 256 | } 257 | .ziyuanpeizhi-ul{ 258 | display: block; 259 | } 260 | .gaojixuanxiang-ul{ 261 | display: none; 262 | } 263 | .configuration-item{ 264 | height: 40px; 265 | line-height: 40px; 266 | border-bottom: 1px solid #AAAAAA; 267 | display: block; 268 | padding: 0 10px 0 20px; 269 | } 270 | .ziyuanpeizhi-item{ 271 | display: block; 272 | } 273 | .configuration-key{ 274 | float: left; 275 | width: 70px; 276 | display: block; 277 | } 278 | .configuration-value{ 279 | display: block; 280 | margin-left: 80px; 281 | } 282 | .ziyuanpeizhi-item .icon-bianji{ 283 | display: none; 284 | float: right; 285 | margin-right: 10px; 286 | cursor: pointer; 287 | vertical-align: 10px; 288 | } 289 | .configuration-item:hover .icon-bianji{ 290 | float: right; 291 | margin-right: 5px; 292 | display: block; 293 | } 294 | .layer{ 295 | display: none; 296 | position: fixed; 297 | left: 0; 298 | top: 0; 299 | width: 100%; 300 | height: 100%; 301 | background: #EFEFEF; 302 | opacity: 0.5; 303 | z-index: 4; 304 | } 305 | .popup{ 306 | display: none; 307 | position: absolute; 308 | top: 50%; 309 | left: 50%; 310 | width: 600px; 311 | height: auto; 312 | margin-left: -300px; 313 | margin-top: -300px; 314 | border: 1px solid #AAAAAA; 315 | background: #FFFFFF; 316 | box-shadow: 2px 2px 5px #000000; 317 | z-index: 5; 318 | } 319 | .popup .popup-header{ 320 | height: 46px; 321 | width: 100%; 322 | line-height: 46px; 323 | background: #2A2D2E; 324 | padding: 0px 20px; 325 | margin-top: -10px; 326 | } 327 | .popup .popup-header h4{ 328 | height: 46px; 329 | line-height: 46px; 330 | font-size: 17px; 331 | color: #FFFFFF; 332 | font-weight: lighter; 333 | } 334 | .popup .popup-header h4 .icon-x{ 335 | float: right; 336 | margin-right: 0px; 337 | font-size: 14px; 338 | font-weight: 800; 339 | color: #FFFFFF; 340 | cursor: pointer; 341 | } 342 | .popup .popup-header h4 .icon-x:hover{ 343 | color: #777777; 344 | } 345 | .popup-content{ 346 | padding: 40px 50px 20px; 347 | } 348 | .qingkong-modal{ 349 | display: none; 350 | position: absolute; 351 | top: 50%; 352 | left: 50%; 353 | width: auto; 354 | padding: 10px 30px 20px; 355 | height: auto; 356 | margin-left: -150px; 357 | margin-top: -200px; 358 | border: 1px solid #AAAAAA; 359 | background-color: #f5f5f5; 360 | box-shadow: 1px 1px 5px #000000; 361 | z-index: 5; 362 | } 363 | .qingkong-modal>h4{ 364 | height: 20px; 365 | line-height: 20px; 366 | color: #FF0000; 367 | font-size: 18px; 368 | } 369 | .modal-layout{ 370 | position: absolute; 371 | left: 50%; 372 | top: 50%; 373 | width: 500px; 374 | height: 400px; 375 | margin-left: -250px; 376 | margin-top: -300px; 377 | background-color: #ffffff; 378 | } 379 | .modal-header-style{ 380 | background-color: #f6f8f8; 381 | } 382 | .modal-header-style>h4{ 383 | color: #000000; 384 | font-size: 14px; 385 | font-weight: bold; 386 | } 387 | .modal-body label{ 388 | color: #3C4167; 389 | font-family: "微软雅黑"; 390 | } 391 | .modal-body label span{ 392 | color: #ff0000; 393 | } 394 | .tooltip-li{ 395 | height: 30px; 396 | line-height: 30px; 397 | font-weight: bold; 398 | } 399 | .tooltip-li:first-child{ 400 | border-bottom: 1px solid #cccccc; 401 | } 402 | .tooltip-li:hover{ 403 | background-color: #eeeeee; 404 | color: #26aae7; 405 | } -------------------------------------------------------------------------------- /template/createTemplate.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 |
    7 |
  • 8 | 计算与网络 9 |
      10 |
    • 11 | 12 | 主机 13 |
    • 14 |
    • 15 | 16 | 私有网络 17 |
    • 18 |
    19 |
  • 20 |
  • 21 | 存储 22 |
      23 |
    • 24 | 25 | 硬盘 26 |
    • 27 |
    • 28 | 29 | NAS 30 |
    • 31 |
    32 |
  • 33 |
34 |
35 |
36 |
37 |
38 | 39 |

当前已经放大到最大!

40 |

当前已经缩小到最小!

41 |

42 |
43 | 47 |
48 | 56 |
57 |
58 |
59 |
60 | 78 |
79 |
    80 |
81 |
    82 |
83 |
84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 |
101 |
102 |
103 |
104 |
105 | -------------------------------------------------------------------------------- /css/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.12.1 - 2017-06-04 2 | * http://jqueryui.com 3 | * Copyright jQuery Foundation and other contributors; Licensed MIT */ 4 | 5 | .ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;font-size:100%}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-button{padding:.4em 1em;display:inline-block;position:relative;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2em;box-sizing:border-box;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-controlgroup{vertical-align:middle;display:inline-block}.ui-controlgroup > .ui-controlgroup-item{float:left;margin-left:0;margin-right:0}.ui-controlgroup > .ui-controlgroup-item:focus,.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus{z-index:9999}.ui-controlgroup-vertical > .ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:left}.ui-controlgroup-vertical .ui-controlgroup-item{box-sizing:border-box}.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item{border-left:none}.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item{border-top:none}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-right:none}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:none}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc( 100% - 2.4em )}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{box-shadow:inset 1px 1px 1px #ccc;border-radius:.12em;border:none}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:visible;border:none}.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{background-image:none;width:8px;height:8px;border-width:4px;border-style:solid}.ui-checkboxradio-disabled{pointer-events:none}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;left:.5em;top:.3em}.ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-n{height:2px;top:0}.ui-dialog .ui-resizable-e{width:2px;right:0}.ui-dialog .ui-resizable-s{height:2px;bottom:0}.ui-dialog .ui-resizable-w{width:2px;left:0}.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw,.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw{width:7px;height:7px}.ui-dialog .ui-resizable-se{right:0;bottom:0}.ui-dialog .ui-resizable-sw{left:0;bottom:0}.ui-dialog .ui-resizable-ne{right:0;top:0}.ui-dialog .ui-resizable-nw{left:0;top:0}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;filter:alpha(opacity=25);opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px 0.4em;margin:0.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-text{display:block;margin-right:20px;overflow:hidden;text-overflow:ellipsis}.ui-selectmenu-button.ui-button{text-align:left;white-space:nowrap;width:14em}.ui-selectmenu-icon.ui-icon{float:right;margin-top:0}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:.222em 0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:2em}.ui-spinner-button{width:1.6em;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top-style:none;border-bottom-style:none;border-right-style:none}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px}body .ui-tooltip{border-width:2px} -------------------------------------------------------------------------------- /js/provider/methodApi.js: -------------------------------------------------------------------------------- 1 | rosApp.provider('methodApi', function(){ 2 | 3 | this.$get = function(){ 4 | var api = {}; 5 | 6 | /*获取元素的纵坐标*/ 7 | api.getTop = function(e){ 8 | var offset = e.offsetTop; 9 | if(e.offsetParent != null){ 10 | offset+= arguments.callee(e.offsetParent); 11 | } 12 | return offset; 13 | }; 14 | 15 | /*获取元素的横坐标*/ 16 | api.getLeft = function(e){ 17 | var offset = e.offsetLeft; 18 | if(e.offsetParent != null){ 19 | offset+= arguments.callee(e.offsetParent); 20 | } 21 | return offset; 22 | }; 23 | 24 | /*设定面包导航栏的宽度*/ 25 | api.setNavWidth = function(elem, width){ 26 | $(elem).css({ 27 | "width": width + "px" 28 | }); 29 | }; 30 | 31 | /*对对象进行深度克隆*/ 32 | api.clone = function(obj){ 33 | var o; 34 | if(typeof obj == "object"){ 35 | if(obj === null){ 36 | o = null; 37 | }else{ 38 | if(obj instanceof Array){ 39 | o = []; 40 | for(var i = 0, len = obj.length; i < len; i++){ 41 | o.push(clone(obj[i])); 42 | } 43 | }else{ 44 | o = {}; 45 | for(var k in obj){ 46 | o[k] = clone(obj[k]); 47 | } 48 | } 49 | } 50 | }else{ 51 | o = obj; 52 | } 53 | return o; 54 | }; 55 | 56 | /*资源列表除第一个外都隐藏*/ 57 | api.resourceHide = function(elem){ 58 | $(elem).hide(); 59 | }; 60 | 61 | /*分页初始化*/ 62 | api.initPageFunction = function(obj){ 63 | obj.entryOptions = [5, 10, 15, 20, 30]; 64 | obj.pageEntry = obj.entryOptions[0]; 65 | obj.pageIndex = 0; 66 | obj.contents = []; 67 | return; 68 | }; 69 | 70 | /*分页功能初始化*/ 71 | api.setPageFunction = function(localObj, obj){ 72 | obj.pageButtons = [{index: 0, active: true, name: 1}]; 73 | 74 | for(var i = 1; i < Math.ceil(localObj.contents.length / obj.pageEntry); i++){ 75 | obj.pageButtons.push({ 76 | index: i, 77 | active: false, 78 | name: i + 1 79 | }); 80 | } 81 | 82 | obj.contents = localObj.contents; 83 | obj.childScope = localObj; 84 | 85 | localObj.searchContents = []; 86 | angular.copy(localObj.contents, localObj.searchContents); 87 | } 88 | 89 | /*搜索功能实现*/ 90 | api.searchButton = function(searchOption, searchValue, obj, localObj){ 91 | if(searchValue == "" || searchValue == null || searchValue == undefined){ 92 | angular.copy(localObj.searchContents, localObj.contents); 93 | }else{ 94 | angular.copy(localObj.searchContents, localObj.contents); 95 | 96 | var searchOptions = localObj.searchOptions; 97 | var searchKey; 98 | var contents = []; 99 | 100 | for(var i = 0; i < searchOptions.length; i++){ 101 | if(searchOptions[i].value == searchOption){ 102 | searchKey = searchOptions[i].key; 103 | break; 104 | } 105 | } 106 | 107 | for(var i = 0; i < localObj.contents.length; i++){ 108 | if(localObj.contents[i][searchKey].indexOf(searchValue) != -1){ 109 | contents.push(localObj.contents[i]); 110 | } 111 | } 112 | 113 | localObj.contents = contents; 114 | obj.contents = contents; 115 | } 116 | 117 | for(var i = 0; i < obj.contents.length; i++){ 118 | obj.contents[i].checkbox = false; 119 | } 120 | 121 | obj.childScope.allCheck = false; 122 | 123 | obj.pageButtons = [{index:0, active: true, name: 1}]; 124 | 125 | for(var i = 1; i < Math.ceil(obj.contents.length / obj.pageEntry ); i++){ 126 | obj.pageButtons.push({ 127 | index: i, 128 | active: false, 129 | name: i + 1 130 | }); 131 | }; 132 | 133 | obj.pagIndex = 0; 134 | obj.pageButtons[0].active = true; 135 | }; 136 | 137 | /*画布初始化工作*/ 138 | api.initCanvas = function(){ 139 | var canvas = document.getElementById('canvas'); 140 | var context = canvas.getContext('2d'); 141 | var stage = new JTopo.Stage(canvas); 142 | var scene = new JTopo.Scene(stage); 143 | var resConfig = [ 144 | { 145 | name: "基础网络", 146 | type: 1, 147 | configuration: { //基础网络设置 148 | resourceAllocation: { 149 | "名称": "", 150 | "描述": "无", 151 | "ID": "vxnet-0" 152 | } 153 | } 154 | }, 155 | { 156 | name: "主机", 157 | type: 3, 158 | configuration: { //主机配置 159 | resourceAllocation: { 160 | "名称": "", 161 | "描述": "无", 162 | "映像": "CentOS6.6", 163 | "主机类型": "普通型", 164 | "CPU数量": 1, 165 | "内存": "1G", 166 | "用户名": "root" 167 | }, 168 | advancedOptions: { 169 | "Hostname": "无", 170 | "用户数据": "无" 171 | } 172 | } 173 | }, 174 | { 175 | name: "私有网络", 176 | type: 2, 177 | configuration: { //私有网络设置 178 | resourceAllocation: { 179 | "名称": "", 180 | "描述": "无", 181 | "类型": "受管", 182 | "网络地址": "192.168.100.0/24", 183 | "管理地址": "192.168.100.1", 184 | }, 185 | advancedOptions: { 186 | "DHCP": "启用", 187 | "DHCP起始地址": "192.168.100.2", 188 | "DHCP结束地址": "192.168.100.254" 189 | } 190 | } 191 | }, 192 | { 193 | name: "硬盘", 194 | type: 4, 195 | configuration:{ //硬盘设置 196 | resourceAllocation:{ 197 | "名称": "", 198 | "描述": "无", 199 | "类型": "性能型", 200 | "容量": "10GB" 201 | } 202 | } 203 | }, 204 | { 205 | name: "NAS", 206 | type: 5, 207 | configuration:{ //NAS设置 208 | resourceAllocation:{ 209 | "名称": "", 210 | "描述": "无", 211 | "类型": "性能型", 212 | "配置": "小型", 213 | "IP": "自动分配" 214 | } 215 | } 216 | } 217 | ]; 218 | 219 | return { 220 | canvas: canvas, 221 | context: context, 222 | stage: stage, 223 | scene: scene, 224 | resConfig: resConfig 225 | } 226 | }; 227 | 228 | /*创建节点*/ 229 | api.createNode = function (x, y , text, imgSrc){ 230 | var node = new JTopo.Node(); 231 | node.text = text; 232 | node.setImage(imgSrc, true); 233 | node.setLocation(x, y); 234 | node.textPosition = "Bottom_Center"; 235 | node.fontColor = "0, 0, 0"; 236 | node.font = "14px Aeria"; 237 | return node; 238 | }; 239 | 240 | /*连线*/ 241 | api.link = function(nodeA, nodeZ){ 242 | var link = new JTopo.FoldLink(nodeA, nodeZ); 243 | link.direction = "horizontal"; 244 | link.lineWidth = 1.5; 245 | link.bundleOffset = 60; // 折线拐角处的长度 246 | link.strokeColor = "#38255C"; 247 | return link; 248 | }; 249 | 250 | /*判断两种资源之间的依赖关系*/ 251 | api.judgeRelation = function(name1, name2, stable){ 252 | var result = false; 253 | for(var key in stable){ 254 | if(name1 == key){ 255 | angular.forEach(stable[key], function(data){ 256 | if(data.children == name2){ 257 | result = data.value; 258 | } 259 | }); 260 | } 261 | } 262 | return result; 263 | }; 264 | 265 | /*设置右上角提示内容*/ 266 | api.setTooltip = function(text){ 267 | var $dragTooltip = $(".drag-tooltip"); 268 | $dragTooltip.text(text); 269 | $dragTooltip.fadeIn(); 270 | setTimeout(function(){ 271 | $dragTooltip.fadeOut(); 272 | }, 1500); 273 | }; 274 | 275 | /*根据节点的resourceName设置tooltip内容*/ 276 | api.setNodeTooltip = function(node, resourceTooltip){ 277 | var resourceName = node.resourceName; 278 | var tooltip = ""; 279 | angular.forEach(resourceTooltip, function(data){ 280 | if(data.resourceName == resourceName){ 281 | tooltip = data.tooltip; 282 | }else{ 283 | 284 | } 285 | }); 286 | return tooltip; 287 | }; 288 | 289 | /*根据节点的resourceName设置索引*/ 290 | api.setNodeIndex = function(resourceName, resourceIndex){ 291 | var index = 0; 292 | angular.forEach(resourceIndex, function(data){ 293 | if(data.resourceName == resourceName){ 294 | index = data.index++; 295 | } 296 | }); 297 | return index; 298 | }; 299 | 300 | /*根据配置项生成列表*/ 301 | api.setConfigurationLi = function(configuration, el){ 302 | var configurationItem = ""; 303 | el.empty(); 304 | for(var key in configuration){ 305 | configurationItem += "
  • " + 306 | key + "
    " + configuration[key] + 307 | "
  • "; 308 | } 309 | el.append($(configurationItem)); 310 | }; 311 | 312 | /*点击编辑实现弹框及弹框按钮作用*/ 313 | api.showPopup = function(newNode, selectedNode){ 314 | var newNode = newNode; 315 | var selectedNode = selectedNode; 316 | var node = selectedNode; 317 | var title = ""; 318 | var $that = null; 319 | if(selectedNode){ 320 | title = selectedNode.text; 321 | }else{ 322 | }; 323 | 324 | if(newNode){ 325 | title = newNode.text; 326 | }else{ 327 | }; 328 | 329 | $(".icon-bianji").on("click", function(){ 330 | $(".layer").fadeIn(); 331 | $(".popup").fadeIn(); 332 | $(".header-title").html(title); 333 | var controlName = $(this).parents(".ziyuanpeizhi-item").find(".configuration-key").html(); 334 | var controlDescription = $(this).parents(".ziyuanpeizhi-item").find(".name-value").html(); 335 | $(".control-name").val(controlName); 336 | $(".control-description").val(controlDescription); 337 | $that = $(this); 338 | 339 | $(".sure").click(function() { 340 | $(".layer").fadeOut(); 341 | $(".popup").fadeOut(); 342 | var key = $(".control-name").val(); 343 | var value = $(".control-description").val(); 344 | if ($that.length > 0) { 345 | $that.parents(".ziyuanpeizhi-item").find(".name-value").html(value); 346 | } 347 | 348 | if(key == "名称" && node != null) { 349 | node.text = value; 350 | node.jsonExpress.name = value; 351 | node.configuration.resourceAllocation["名称"] = value; 352 | node.jsonExpress.configuration.resourceAllocation["名称"] = value; 353 | }else{ 354 | if(key in node.jsonExpress.configuration.resourceAllocation){ 355 | node.jsonExpress.configuration.resourceAllocation[key] = value; 356 | }else{ 357 | node.jsonExpress.configuration.advancedOptions[key] = value; 358 | } 359 | } 360 | }); 361 | }); 362 | 363 | $(".icon-x").on("click", function(){ 364 | $(".layer").fadeOut(); 365 | $(".popup").fadeOut(); 366 | }); 367 | 368 | $(".cancel").on("click", function(){ 369 | $(".layer").fadeOut(); 370 | $(".popup").fadeOut(); 371 | }); 372 | 373 | }; 374 | 375 | /*节点右键生成菜单,点击左键菜单消失*/ 376 | api.handle = function(event, left, top) { 377 | if (event.button == 2) { 378 | $("#contextmenu").css({ 379 | left: left + 15, 380 | top: top + 10 381 | }).show(); 382 | }else{ 383 | } 384 | }; 385 | 386 | /*点击鼠标左键操作菜单消失*/ 387 | api.contextmenuHide = function(stage){ 388 | stage.addEventListener('click', function (event) { 389 | if (event.button == 0) { 390 | $("#contextmenu").hide(); 391 | }else{ 392 | } 393 | }) 394 | }; 395 | 396 | /*实现递归获取当前节点的子节点*/ 397 | api.recusion = function(node){ 398 | if(node.children){ 399 | 400 | }else{ 401 | return node; 402 | } 403 | }; 404 | 405 | /*根据节点resourceName返回type*/ 406 | api.getType = function(resourceName){ 407 | var type = 0; 408 | 409 | switch(resourceName){ 410 | case "基础网络": 411 | type = 1; 412 | break; 413 | case "私有网络": 414 | type = 2; 415 | break; 416 | case "主机": 417 | type = 3; 418 | break; 419 | case "硬盘": 420 | type = 4; 421 | break; 422 | case "NAS": 423 | type = 5; 424 | break; 425 | default: 426 | type = 0; 427 | } 428 | return type; 429 | } 430 | 431 | /*当增加节点时,选中的节点解析到jsonResult中*/ 432 | api.jsonParse = function(baseNetwork, selectedNode, newNode, jsonResult){ 433 | var jsonResult = jsonResult; 434 | if(baseNetwork != null && selectedNode == null && newNode){ 435 | newNode.jsonExpress = { 436 | id: newNode.id, 437 | type: newNode.type, 438 | name: newNode.text, 439 | resourceName: newNode.resourceName, 440 | x: newNode.x, 441 | y: newNode.y, 442 | configuration: newNode.configuration, 443 | node: newNode 444 | }; 445 | if(newNode.type == 2 || newNode.type == 3){ 446 | newNode.jsonExpress.children = []; 447 | }; 448 | baseNetwork.jsonExpress.children.push(newNode.jsonExpress); 449 | }else if(selectedNode && newNode){ 450 | newNode.jsonExpress = { 451 | id: newNode.id, 452 | type: newNode.type, 453 | name: newNode.text, 454 | resourceName: newNode.resourceName, 455 | x: newNode.x, 456 | y: newNode.y, 457 | configuration: newNode.configuration, 458 | node: newNode 459 | }; 460 | if(newNode.type == 2 || newNode.type == 3){ 461 | newNode.jsonExpress.children = []; 462 | } 463 | 464 | selectedNode.jsonExpress.children.push(newNode.jsonExpress); 465 | } 466 | return jsonResult; 467 | }; 468 | 469 | /*删除指定节点及其子节点的json*/ 470 | api.modifyJsonResult = function(id, children){ 471 | for(var i = 0; i < children.length; i++){ 472 | if(children[i].id.toString().indexOf(id) != -1){ 473 | children.splice(i, 1); 474 | break; 475 | }else{ 476 | arguments.callee(id, children[i].children); 477 | } 478 | }; 479 | } 480 | 481 | /*鼠标右键应用模板*/ 482 | api.tooltipShow = function(target){ 483 | var left = api.getLeft(target); 484 | var top = api.getTop(target) + 25; 485 | var $tooltip = $("
    "); 486 | $tooltip.css({ 487 | "display" : "block", 488 | "position": "absolute", 489 | "left": left + "px", 490 | "top": top + "px", 491 | "width": "100px", 492 | "height": "auto", 493 | "border": "1px solid #CCC", 494 | "border-radius": "1px", 495 | "background-color": "#FFF", 496 | "color": "#4d4d4d", 497 | "boxShadow": "0 0 0 1px #CCC", 498 | "word-wrap": "break-word", 499 | "z-index": "1001", 500 | "cursor": "pointer", 501 | "text-align": "center" 502 | }); 503 | var lis = $(""); 504 | $tooltip.append(lis); 505 | $tooltip.addClass("tooltip-d"); 506 | $(document.body).append($tooltip); 507 | 508 | $(".tooltip-cancel").click(function(){ 509 | $(".tooltip-d").remove(); 510 | }); 511 | } 512 | 513 | //tooltip消失 514 | api.tooltipDis = function(){ 515 | $(".tooltip-d").remove(); 516 | }; 517 | 518 | return api; 519 | } 520 | }); 521 | -------------------------------------------------------------------------------- /js/controllers/createTemplateCtrl.js: -------------------------------------------------------------------------------- 1 | rosApp.controller('createTemplateCtrl', ['$scope', '$rootScope', 'methodApi','RELATIONSTABLE' , function($scope, $rootScope, methodApi, RELATIONSTABLE){ 2 | $scope.listShow = false; 3 | $rootScope.layoutTemplate = true; 4 | $rootScope.generatedTemplate = false; 5 | $rootScope.createTemplate = true; 6 | $scope.resourceList = [ 7 | { 8 | 'name': '计算与网络', 9 | 'field': 'computerAndNet', 10 | 'childList': [ 11 | { 12 | 'name': '主机', 13 | 'icon': 'icon-zhuji', 14 | 'field': 'host' 15 | }, 16 | { 17 | 'name': '私有网络', 18 | 'icon': 'icon-siyouwangluo', 19 | 'field': 'privateNet' 20 | } 21 | ] 22 | }, 23 | { 24 | 'name': '存储', 25 | 'field': 'storage', 26 | 'childList': [ 27 | { 28 | 'name': '硬盘', 29 | 'icon': 'icon-yingpan', 30 | 'field': 'disk' 31 | }, 32 | { 33 | 'name': 'NAS', 34 | 'icon': 'icon-nas', 35 | 'field': 'nas' 36 | }, 37 | ] 38 | } 39 | ]; 40 | 41 | $scope.toolbar = [ 42 | { 43 | 'text': '清空', 44 | 'class': 'btn-clear', 45 | 'icon': 'icon-qingkong' 46 | }, 47 | { 48 | 'text': '放大', 49 | 'class': 'btn-amplify', 50 | 'icon': 'icon-fangda' 51 | }, 52 | { 53 | 'text': '缩小', 54 | 'class': 'btn-lessen', 55 | 'icon': 'icon-suoxiao' 56 | }, 57 | { 58 | 'text': '提交', 59 | 'class': 'btn-submit', 60 | 'icon': 'icon-tijiao', 61 | 'disabled': 'disabled' 62 | }, 63 | { 64 | 'class': 'btn-export', 65 | 'text': '导出PNG' 66 | } 67 | ]; 68 | 69 | var canvasWidth = $(".canvas-container").width(); 70 | document.getElementById("canvas").setAttribute("width", canvasWidth); 71 | 72 | 73 | $scope.toggleList = function($event){ 74 | var target = $($event.target).parent(); 75 | var $resourceList = target.children(".resource-detail"); 76 | $resourceList.slideToggle(); 77 | }; 78 | 79 | /*设定三级路径导航的宽度*/ 80 | methodApi.setNavWidth(".crumb-navigation", 180); 81 | 82 | /*初始化canvas*/ 83 | var result = methodApi.initCanvas(); 84 | var canvas = result.canvas; 85 | var stage = result.stage; 86 | var scene = result.scene; 87 | var resConfig = result.resConfig;//资源配置 88 | var baseNetwork = null;//基础网络节点 89 | var link = null;//连线 90 | var selectedNode = null;//选中的节点 91 | var newNode = null; 92 | var currentNode = null;//表示当前选中的节点 93 | var $ziyuanpeizhiUl = $(".ziyuanpeizhi-ul"); 94 | var $gaojixuanxiangUl = $(".gaojixuanxiang-ul"); 95 | var effect = JTopo.Effect.spring({ 96 | minLength: 150 97 | }); 98 | var jsonResult = {}; 99 | var resourceIndex = [ 100 | { 101 | resourceName: "主机", 102 | index: 1 103 | }, 104 | { 105 | resourceName: "私有网络", 106 | index: 1 107 | }, 108 | { 109 | resourceName: "硬盘", 110 | index: 1 111 | }, 112 | { 113 | resourceName: "NAS", 114 | index: 1 115 | } 116 | ]; 117 | 118 | var methods = { 119 | /*资源拖拽*/ 120 | resourceDrag: function (){ 121 | var resourceTooltip = [ 122 | { 123 | resourceName: "基础网络", 124 | tooltip: "请拖入一个私有网络或者主机加入到基础网络中!" 125 | }, 126 | { 127 | resourceName: "主机", 128 | tooltip: "请拖入一个硬盘加入到主机中!" 129 | }, 130 | { 131 | resourceName: "私有网络", 132 | tooltip: "请拖入一个主机加入到私有网络中!" 133 | }, 134 | { 135 | resourceName: "硬盘", 136 | tooltip: "硬盘只能加入到主机中!" 137 | }, 138 | { 139 | resourceName: "NAS", 140 | tooltip: "NAS只能加入到私有网络中!" 141 | } 142 | ]; 143 | 144 | $(".tooltip-d").remove(); 145 | 146 | /*选中一个节点,并绑定事件*/ 147 | scene.addEventListener("click", function(){ 148 | selectedNode = this.selectedElements[0]; 149 | if(selectedNode instanceof JTopo.Node){ 150 | var resourceAllocation = selectedNode.configuration.resourceAllocation; 151 | var advancedOptions = selectedNode.configuration.advancedOptions; 152 | methodApi.setConfigurationLi(resourceAllocation, $ziyuanpeizhiUl); 153 | methodApi.setConfigurationLi(advancedOptions, $gaojixuanxiangUl); 154 | methodApi.showPopup(newNode, selectedNode); 155 | }else{ 156 | }; 157 | }); 158 | 159 | /*获取canvas的left和top*/ 160 | var canvasLeft = methodApi.getLeft(canvas); 161 | var canvasTop = methodApi.getTop(canvas); 162 | /*设置拖拽元素draggable的操作*/ 163 | $(".drag-li").draggable({ 164 | start: function () { 165 | $(this).addClass("drag-li-moving"); 166 | }, 167 | stop: function (event, ui) { 168 | $(this).removeClass("drag-li-moving"); 169 | }, 170 | appendTo: "body", 171 | helper: "clone", 172 | cursor: "pointer", 173 | cursorAt: { 174 | left: 4, 175 | bottom: 2 176 | } 177 | }); 178 | /*设置接收者droppable的操作*/ 179 | $("#canvas").droppable({ 180 | accept: ".drag-li", 181 | drop: function(event, ul){ 182 | var x = 0; 183 | var y = 0; 184 | var resourceName = "" 185 | var imgSrc = ""; 186 | var text = ""; 187 | var img = ""; 188 | nodes = scene.getDisplayedNodes(); 189 | var index = 0; 190 | var $ziyuanpeizhi = $(".description .ziyuanpeizhi"); 191 | var $gaojixuanxiang = $(".description .gaojixuanxiang"); 192 | 193 | if(baseNetwork == null){ 194 | x = 200; 195 | y = 300; 196 | resourceName = "基础网络"; 197 | imgSrc = "././imgs/siyouwangluo.png"; 198 | baseNetwork = methodApi.createNode(x, y, resourceName, imgSrc); 199 | baseNetwork.resourceName = resourceName; 200 | baseNetwork.id = 1; 201 | baseNetwork.type = 1; 202 | baseNetwork.jsonExpress = { 203 | id: baseNetwork.id, 204 | type: baseNetwork.type, 205 | name: baseNetwork.text, 206 | resourceName: baseNetwork.resourceName, 207 | x: baseNetwork.x, 208 | y: baseNetwork.y, 209 | configuration: null, 210 | node: baseNetwork, 211 | children: [] 212 | }; 213 | jsonResult = baseNetwork.jsonExpress; 214 | 215 | scene.add(baseNetwork); 216 | baseNetwork.addEventListener("mouseup", function(event){ 217 | currentNode = this; 218 | methodApi.handle(event, event.pageX - canvasLeft, event.pageY - canvasTop); 219 | }); 220 | } 221 | 222 | x = ul.position.left - canvasLeft; 223 | y = ul.position.top - canvasTop; 224 | resourceName = ul.draggable.children(".resource-name").text(); 225 | text = "新建" + resourceName; 226 | img = ul.draggable.children(".iconfont")[0].className.split(" ")[1].split("-")[1]; 227 | imgSrc = "././imgs/" + img + ".png"; 228 | 229 | 230 | if(selectedNode == null && nodes.length < 2){ 231 | if(methodApi.judgeRelation(baseNetwork.resourceName, resourceName, RELATIONSTABLE)){ 232 | index = methodApi.setNodeIndex(resourceName, resourceIndex); 233 | text += index; 234 | newNode = methodApi.createNode(x, y, text, imgSrc); 235 | newNode.resourceName = resourceName; 236 | newNode.type = methodApi.getType(newNode.resourceName); 237 | scene.add(newNode); 238 | link = methodApi.link(baseNetwork, newNode); 239 | newNode.id = baseNetwork.id * 10 + 1; 240 | baseNetwork.children = newNode; 241 | scene.add(link); 242 | }else{ 243 | methodApi.setTooltip(methodApi.setNodeTooltip(baseNetwork, resourceTooltip)); 244 | } 245 | }else if(selectedNode == null){ 246 | methodApi.setTooltip("请选中某个节点进行操作!"); 247 | }else{ 248 | if(methodApi.judgeRelation(selectedNode.resourceName, resourceName, RELATIONSTABLE)){ 249 | index = methodApi.setNodeIndex(resourceName, resourceIndex); 250 | text += index; 251 | newNode = methodApi.createNode(x, y, text, imgSrc); 252 | newNode.resourceName = resourceName; 253 | newNode.type = methodApi.getType(newNode.resourceName); 254 | scene.add(newNode); 255 | link = methodApi.link(selectedNode, newNode); 256 | if(selectedNode.children){ 257 | newNode.id = selectedNode.children.id + 1; 258 | }else{ 259 | newNode.id = selectedNode.id * 10 + 1; 260 | } 261 | selectedNode.children = newNode; 262 | scene.add(link); 263 | }else{ 264 | angular.forEach(resourceTooltip, function(data){ 265 | if(data.resourceName == selectedNode.resourceName){ 266 | methodApi.setTooltip(data.tooltip); 267 | } 268 | }); 269 | } 270 | } 271 | 272 | if(newNode){ 273 | newNode.addEventListener("mouseup", function(event){ 274 | currentNode = this; 275 | methodApi.handle(event, currentNode.x + 10 , currentNode.y + 10); 276 | }); 277 | } 278 | 279 | /*给每个节点生成对应的配置项*/ 280 | nodes = scene.getDisplayedNodes(); 281 | 282 | angular.forEach(nodes, function(data){ 283 | data.configuration = {}; 284 | for(var i = 0; i < resConfig.length; i++){ 285 | if(data.resourceName == resConfig[i].name){ 286 | angular.copy(resConfig[i].configuration, data.configuration); 287 | break; 288 | } 289 | } 290 | data.configuration.resourceAllocation["名称"] = data.text; 291 | }); 292 | 293 | if(baseNetwork.jsonExpress.configuration == null){ 294 | baseNetwork.jsonExpress.configuration = baseNetwork.configuration; 295 | }; 296 | 297 | 298 | 299 | if(newNode){ 300 | var resourceAllocation = newNode.configuration.resourceAllocation; 301 | var advancedOptions = newNode.configuration.advancedOptions; 302 | methodApi.setConfigurationLi(resourceAllocation, $ziyuanpeizhiUl); 303 | methodApi.setConfigurationLi(advancedOptions, $gaojixuanxiangUl); 304 | methodApi.showPopup(newNode, selectedNode); 305 | }else{ 306 | }; 307 | 308 | 309 | $("#contextmenu a").click(function(){ 310 | 311 | var id = currentNode.id; 312 | var content = $(this).text(); 313 | if(content == "撤销上一次操作"){ 314 | currentNode.restore(); 315 | }else{ 316 | currentNode.save(); 317 | }; 318 | if(content == "顺时针旋转"){ 319 | currentNode.rotate += 0.5; 320 | $("#contextmenu").hide(); 321 | }else if(content == "逆时针旋转"){ 322 | currentNode.rotate -= 0.5; 323 | $("#contextmenu").hide(); 324 | }; 325 | if(content == "删除该节点"){ 326 | if(currentNode.resourceName == "基础网络"){ 327 | scene.clear(); 328 | baseNetwork = null; 329 | jsonResult = {}; 330 | }else{ 331 | for(var i = 0; i < nodes.length; i++){ 332 | idString = nodes[i].id.toString(); 333 | if(idString.indexOf(id) != -1){ 334 | scene.remove(nodes[i]); 335 | } 336 | }; 337 | methodApi.modifyJsonResult(id, jsonResult.children); 338 | } 339 | $(".configuration-ul").empty(); 340 | $("#contextmenu").hide(); 341 | } 342 | }); 343 | methodApi.contextmenuHide(scene); 344 | 345 | jsonResult = methodApi.jsonParse(baseNetwork, selectedNode, newNode, jsonResult); 346 | if(jsonResult.children){ 347 | $(".btn-submit").removeClass("disabled"); 348 | } 349 | 350 | newNode = null; 351 | // console.log(nodes); 352 | } 353 | }); 354 | }, 355 | /*切换资源配置和高级选项*/ 356 | tabToggle: function(){ 357 | var $tabs = $(".description .tab"); 358 | $tabs.on("click", function(){ 359 | $(this).addClass("active") 360 | .siblings().removeClass("active"); 361 | }); 362 | } 363 | } 364 | 365 | $scope.operation = function(text){ 366 | nodes = scene.getDisplayedNodes(); 367 | if(text == "清空"){ 368 | if(nodes.length > 0){ 369 | $(".layer").fadeIn(); 370 | $(".qingkong-modal").fadeIn(); 371 | }else{ 372 | }; 373 | 374 | $(".qingkong-sure").on("click", function(){ 375 | $(".btn-submit").addClass("disabled"); 376 | $(".layer").fadeOut(); 377 | $(".qingkong-modal").fadeOut(); 378 | scene.clear(); 379 | baseNetwork = null; 380 | selectedNode = null; 381 | $(".configuration-ul").empty(); 382 | angular.forEach(resourceIndex, function(data){ 383 | data.index = 1; 384 | }); 385 | jsonResult = {}; 386 | }); 387 | $(".qingkong-cancel").on("click", function(){ 388 | $(".layer").fadeOut(); 389 | $(".qingkong-modal").fadeOut(); 390 | }); 391 | }else if(text == "放大"){ 392 | if(nodes.length > 0){ 393 | var width = nodes[0].width; 394 | var height = nodes[0].height; 395 | angular.forEach(nodes, function(data){ 396 | if(width < 35 && height< 35){ 397 | data.setSize(width + 1, height + 1); 398 | }else{ 399 | data.setSize(35, 35); 400 | $(".fangdaTooltip").fadeIn(); 401 | setTimeout(function(){ 402 | $(".fangdaTooltip").fadeOut(); 403 | }, 1500); 404 | } 405 | }) 406 | }else{ 407 | return; 408 | } 409 | }else if(text == "缩小"){ 410 | if(nodes.length > 0){ 411 | var width = nodes[0].width; 412 | var height = nodes[0].height; 413 | angular.forEach(nodes, function(data){ 414 | if(width > 23 && height > 23){ 415 | data.setSize(width - 1, height - 1); 416 | }else{ 417 | data.setSize(23, 23); 418 | $(".suoxiaoTooltip").fadeIn(); 419 | setTimeout(function(){ 420 | $(".suoxiaoTooltip").fadeOut(); 421 | }, 1500); 422 | } 423 | }) 424 | }else{ 425 | return; 426 | } 427 | }else if(text == "提交"){ 428 | console.log(jsonResult); 429 | if(jsonResult.children){ 430 | $("#submitModal").on("show.bs.modal", function(){ 431 | var date = new Date(); 432 | var seperator1 = "-"; 433 | var seperator2 = ":"; 434 | var month = date.getMonth() + 1; 435 | var strDate = date.getDate(); 436 | if(month >= 1 && month <= 9){ 437 | month = "0" + month; 438 | } 439 | if(strDate >= 0 && strDate <= 9){ 440 | strDate = "0" + strDate; 441 | } 442 | var currentTime = date.getFullYear() + seperator1 + month + seperator1 + strDate 443 | + " " + date.getHours() + seperator2 + date.getMinutes() + seperator2 444 | + date.getSeconds(); 445 | $("#time").val(currentTime); 446 | }); 447 | $("#submitModal").modal({ 448 | keyboard: true 449 | }); 450 | }; 451 | 452 | }else{ 453 | stage.saveImageInfo(); 454 | } 455 | }; 456 | 457 | $rootScope.submitTemplate = function(id, name, status, createTime, description){ 458 | $rootScope.contents.push({ 459 | checkbox: false, 460 | id: id, 461 | name: name, 462 | status: status, 463 | createTime: createTime, 464 | description: description, 465 | network: jsonResult 466 | }); 467 | }; 468 | 469 | $scope.modify = function(text){ 470 | if(text == "资源配置"){ 471 | $ziyuanpeizhiUl.show(); 472 | $gaojixuanxiangUl.hide(); 473 | }else{ 474 | $ziyuanpeizhiUl.hide(); 475 | $gaojixuanxiangUl.show(); 476 | } 477 | }; 478 | 479 | $(document).ready(function(){ 480 | methods.resourceDrag(); 481 | 482 | methods.tabToggle(); 483 | }); 484 | }]); 485 | -------------------------------------------------------------------------------- /css/iconfont.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Created by FontForge 20120731 at Tue Jun 27 08:49:10 2017 6 | By admin 7 | 8 | 9 | 10 | 24 | 26 | 28 | 30 | 32 | 34 | 38 | 44 | 46 | 50 | 54 | 57 | 64 | 67 | 72 | 74 | 80 | 83 | 89 | 93 | 99 | 103 | 106 | 109 | 113 | 116 | 123 | 128 | 138 | 142 | 151 | 152 | 153 | -------------------------------------------------------------------------------- /css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v3.3.7 (http://getbootstrap.com) 3 | * Copyright 2011-2016 Twitter, Inc. 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 5 | */.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-danger.disabled,.btn-danger[disabled],.btn-default.disabled,.btn-default[disabled],.btn-info.disabled,.btn-info[disabled],.btn-primary.disabled,.btn-primary[disabled],.btn-success.disabled,.btn-success[disabled],.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-danger,fieldset[disabled] .btn-default,fieldset[disabled] .btn-info,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-success,fieldset[disabled] .btn-warning{-webkit-box-shadow:none;box-shadow:none}.btn-danger .badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success .badge,.btn-warning .badge{text-shadow:none}.btn.active,.btn:active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc}.btn-default:focus,.btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.btn-default.active,.btn-default:active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0 -15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:focus,.btn-success:hover{background-color:#419641;background-position:0 -15px}.btn-success.active,.btn-success:active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:focus,.btn-info:hover{background-color:#2aabd2;background-position:0 -15px}.btn-info.active,.btn-info:active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:focus,.btn-warning:hover{background-color:#eb9316;background-position:0 -15px}.btn-warning.active,.btn-warning:active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:focus,.btn-danger:hover{background-color:#c12e2a;background-position:0 -15px}.btn-danger.active,.btn-danger:active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#c12e2a;background-image:none}.img-thumbnail,.thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#2e6da4;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-o-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:focus .badge,.list-group-item.active:hover .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)} 6 | /*# sourceMappingURL=bootstrap-theme.min.css.map */ -------------------------------------------------------------------------------- /css/bootstrap-theme.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v3.3.7 (http://getbootstrap.com) 3 | * Copyright 2011-2016 Twitter, Inc. 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 5 | */ 6 | .btn-default, 7 | .btn-primary, 8 | .btn-success, 9 | .btn-info, 10 | .btn-warning, 11 | .btn-danger { 12 | text-shadow: 0 -1px 0 rgba(0, 0, 0, .2); 13 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); 14 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); 15 | } 16 | .btn-default:active, 17 | .btn-primary:active, 18 | .btn-success:active, 19 | .btn-info:active, 20 | .btn-warning:active, 21 | .btn-danger:active, 22 | .btn-default.active, 23 | .btn-primary.active, 24 | .btn-success.active, 25 | .btn-info.active, 26 | .btn-warning.active, 27 | .btn-danger.active { 28 | -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); 29 | box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); 30 | } 31 | .btn-default.disabled, 32 | .btn-primary.disabled, 33 | .btn-success.disabled, 34 | .btn-info.disabled, 35 | .btn-warning.disabled, 36 | .btn-danger.disabled, 37 | .btn-default[disabled], 38 | .btn-primary[disabled], 39 | .btn-success[disabled], 40 | .btn-info[disabled], 41 | .btn-warning[disabled], 42 | .btn-danger[disabled], 43 | fieldset[disabled] .btn-default, 44 | fieldset[disabled] .btn-primary, 45 | fieldset[disabled] .btn-success, 46 | fieldset[disabled] .btn-info, 47 | fieldset[disabled] .btn-warning, 48 | fieldset[disabled] .btn-danger { 49 | -webkit-box-shadow: none; 50 | box-shadow: none; 51 | } 52 | .btn-default .badge, 53 | .btn-primary .badge, 54 | .btn-success .badge, 55 | .btn-info .badge, 56 | .btn-warning .badge, 57 | .btn-danger .badge { 58 | text-shadow: none; 59 | } 60 | .btn:active, 61 | .btn.active { 62 | background-image: none; 63 | } 64 | .btn-default { 65 | text-shadow: 0 1px 0 #fff; 66 | background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%); 67 | background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%); 68 | background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0)); 69 | background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%); 70 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0); 71 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 72 | background-repeat: repeat-x; 73 | border-color: #dbdbdb; 74 | border-color: #ccc; 75 | } 76 | .btn-default:hover, 77 | .btn-default:focus { 78 | background-color: #e0e0e0; 79 | background-position: 0 -15px; 80 | } 81 | .btn-default:active, 82 | .btn-default.active { 83 | background-color: #e0e0e0; 84 | border-color: #dbdbdb; 85 | } 86 | .btn-default.disabled, 87 | .btn-default[disabled], 88 | fieldset[disabled] .btn-default, 89 | .btn-default.disabled:hover, 90 | .btn-default[disabled]:hover, 91 | fieldset[disabled] .btn-default:hover, 92 | .btn-default.disabled:focus, 93 | .btn-default[disabled]:focus, 94 | fieldset[disabled] .btn-default:focus, 95 | .btn-default.disabled.focus, 96 | .btn-default[disabled].focus, 97 | fieldset[disabled] .btn-default.focus, 98 | .btn-default.disabled:active, 99 | .btn-default[disabled]:active, 100 | fieldset[disabled] .btn-default:active, 101 | .btn-default.disabled.active, 102 | .btn-default[disabled].active, 103 | fieldset[disabled] .btn-default.active { 104 | background-color: #e0e0e0; 105 | background-image: none; 106 | } 107 | .btn-primary { 108 | background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%); 109 | background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%); 110 | background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88)); 111 | background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%); 112 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0); 113 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 114 | background-repeat: repeat-x; 115 | border-color: #245580; 116 | } 117 | .btn-primary:hover, 118 | .btn-primary:focus { 119 | background-color: #265a88; 120 | background-position: 0 -15px; 121 | } 122 | .btn-primary:active, 123 | .btn-primary.active { 124 | background-color: #265a88; 125 | border-color: #245580; 126 | } 127 | .btn-primary.disabled, 128 | .btn-primary[disabled], 129 | fieldset[disabled] .btn-primary, 130 | .btn-primary.disabled:hover, 131 | .btn-primary[disabled]:hover, 132 | fieldset[disabled] .btn-primary:hover, 133 | .btn-primary.disabled:focus, 134 | .btn-primary[disabled]:focus, 135 | fieldset[disabled] .btn-primary:focus, 136 | .btn-primary.disabled.focus, 137 | .btn-primary[disabled].focus, 138 | fieldset[disabled] .btn-primary.focus, 139 | .btn-primary.disabled:active, 140 | .btn-primary[disabled]:active, 141 | fieldset[disabled] .btn-primary:active, 142 | .btn-primary.disabled.active, 143 | .btn-primary[disabled].active, 144 | fieldset[disabled] .btn-primary.active { 145 | background-color: #265a88; 146 | background-image: none; 147 | } 148 | .btn-success { 149 | background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%); 150 | background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%); 151 | background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641)); 152 | background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%); 153 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0); 154 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 155 | background-repeat: repeat-x; 156 | border-color: #3e8f3e; 157 | } 158 | .btn-success:hover, 159 | .btn-success:focus { 160 | background-color: #419641; 161 | background-position: 0 -15px; 162 | } 163 | .btn-success:active, 164 | .btn-success.active { 165 | background-color: #419641; 166 | border-color: #3e8f3e; 167 | } 168 | .btn-success.disabled, 169 | .btn-success[disabled], 170 | fieldset[disabled] .btn-success, 171 | .btn-success.disabled:hover, 172 | .btn-success[disabled]:hover, 173 | fieldset[disabled] .btn-success:hover, 174 | .btn-success.disabled:focus, 175 | .btn-success[disabled]:focus, 176 | fieldset[disabled] .btn-success:focus, 177 | .btn-success.disabled.focus, 178 | .btn-success[disabled].focus, 179 | fieldset[disabled] .btn-success.focus, 180 | .btn-success.disabled:active, 181 | .btn-success[disabled]:active, 182 | fieldset[disabled] .btn-success:active, 183 | .btn-success.disabled.active, 184 | .btn-success[disabled].active, 185 | fieldset[disabled] .btn-success.active { 186 | background-color: #419641; 187 | background-image: none; 188 | } 189 | .btn-info { 190 | background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); 191 | background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); 192 | background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2)); 193 | background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%); 194 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0); 195 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 196 | background-repeat: repeat-x; 197 | border-color: #28a4c9; 198 | } 199 | .btn-info:hover, 200 | .btn-info:focus { 201 | background-color: #2aabd2; 202 | background-position: 0 -15px; 203 | } 204 | .btn-info:active, 205 | .btn-info.active { 206 | background-color: #2aabd2; 207 | border-color: #28a4c9; 208 | } 209 | .btn-info.disabled, 210 | .btn-info[disabled], 211 | fieldset[disabled] .btn-info, 212 | .btn-info.disabled:hover, 213 | .btn-info[disabled]:hover, 214 | fieldset[disabled] .btn-info:hover, 215 | .btn-info.disabled:focus, 216 | .btn-info[disabled]:focus, 217 | fieldset[disabled] .btn-info:focus, 218 | .btn-info.disabled.focus, 219 | .btn-info[disabled].focus, 220 | fieldset[disabled] .btn-info.focus, 221 | .btn-info.disabled:active, 222 | .btn-info[disabled]:active, 223 | fieldset[disabled] .btn-info:active, 224 | .btn-info.disabled.active, 225 | .btn-info[disabled].active, 226 | fieldset[disabled] .btn-info.active { 227 | background-color: #2aabd2; 228 | background-image: none; 229 | } 230 | .btn-warning { 231 | background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); 232 | background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); 233 | background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316)); 234 | background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%); 235 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0); 236 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 237 | background-repeat: repeat-x; 238 | border-color: #e38d13; 239 | } 240 | .btn-warning:hover, 241 | .btn-warning:focus { 242 | background-color: #eb9316; 243 | background-position: 0 -15px; 244 | } 245 | .btn-warning:active, 246 | .btn-warning.active { 247 | background-color: #eb9316; 248 | border-color: #e38d13; 249 | } 250 | .btn-warning.disabled, 251 | .btn-warning[disabled], 252 | fieldset[disabled] .btn-warning, 253 | .btn-warning.disabled:hover, 254 | .btn-warning[disabled]:hover, 255 | fieldset[disabled] .btn-warning:hover, 256 | .btn-warning.disabled:focus, 257 | .btn-warning[disabled]:focus, 258 | fieldset[disabled] .btn-warning:focus, 259 | .btn-warning.disabled.focus, 260 | .btn-warning[disabled].focus, 261 | fieldset[disabled] .btn-warning.focus, 262 | .btn-warning.disabled:active, 263 | .btn-warning[disabled]:active, 264 | fieldset[disabled] .btn-warning:active, 265 | .btn-warning.disabled.active, 266 | .btn-warning[disabled].active, 267 | fieldset[disabled] .btn-warning.active { 268 | background-color: #eb9316; 269 | background-image: none; 270 | } 271 | .btn-danger { 272 | background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%); 273 | background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%); 274 | background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a)); 275 | background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%); 276 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0); 277 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 278 | background-repeat: repeat-x; 279 | border-color: #b92c28; 280 | } 281 | .btn-danger:hover, 282 | .btn-danger:focus { 283 | background-color: #c12e2a; 284 | background-position: 0 -15px; 285 | } 286 | .btn-danger:active, 287 | .btn-danger.active { 288 | background-color: #c12e2a; 289 | border-color: #b92c28; 290 | } 291 | .btn-danger.disabled, 292 | .btn-danger[disabled], 293 | fieldset[disabled] .btn-danger, 294 | .btn-danger.disabled:hover, 295 | .btn-danger[disabled]:hover, 296 | fieldset[disabled] .btn-danger:hover, 297 | .btn-danger.disabled:focus, 298 | .btn-danger[disabled]:focus, 299 | fieldset[disabled] .btn-danger:focus, 300 | .btn-danger.disabled.focus, 301 | .btn-danger[disabled].focus, 302 | fieldset[disabled] .btn-danger.focus, 303 | .btn-danger.disabled:active, 304 | .btn-danger[disabled]:active, 305 | fieldset[disabled] .btn-danger:active, 306 | .btn-danger.disabled.active, 307 | .btn-danger[disabled].active, 308 | fieldset[disabled] .btn-danger.active { 309 | background-color: #c12e2a; 310 | background-image: none; 311 | } 312 | .thumbnail, 313 | .img-thumbnail { 314 | -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); 315 | box-shadow: 0 1px 2px rgba(0, 0, 0, .075); 316 | } 317 | .dropdown-menu > li > a:hover, 318 | .dropdown-menu > li > a:focus { 319 | background-color: #e8e8e8; 320 | background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); 321 | background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); 322 | background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8)); 323 | background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); 324 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); 325 | background-repeat: repeat-x; 326 | } 327 | .dropdown-menu > .active > a, 328 | .dropdown-menu > .active > a:hover, 329 | .dropdown-menu > .active > a:focus { 330 | background-color: #2e6da4; 331 | background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); 332 | background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); 333 | background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); 334 | background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); 335 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); 336 | background-repeat: repeat-x; 337 | } 338 | .navbar-default { 339 | background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%); 340 | background-image: -o-linear-gradient(top, #fff 0%, #f8f8f8 100%); 341 | background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8)); 342 | background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%); 343 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0); 344 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 345 | background-repeat: repeat-x; 346 | border-radius: 4px; 347 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075); 348 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075); 349 | } 350 | .navbar-default .navbar-nav > .open > a, 351 | .navbar-default .navbar-nav > .active > a { 352 | background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%); 353 | background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%); 354 | background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2)); 355 | background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%); 356 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0); 357 | background-repeat: repeat-x; 358 | -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075); 359 | box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075); 360 | } 361 | .navbar-brand, 362 | .navbar-nav > li > a { 363 | text-shadow: 0 1px 0 rgba(255, 255, 255, .25); 364 | } 365 | .navbar-inverse { 366 | background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%); 367 | background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%); 368 | background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222)); 369 | background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%); 370 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0); 371 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 372 | background-repeat: repeat-x; 373 | border-radius: 4px; 374 | } 375 | .navbar-inverse .navbar-nav > .open > a, 376 | .navbar-inverse .navbar-nav > .active > a { 377 | background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%); 378 | background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%); 379 | background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f)); 380 | background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%); 381 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0); 382 | background-repeat: repeat-x; 383 | -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25); 384 | box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25); 385 | } 386 | .navbar-inverse .navbar-brand, 387 | .navbar-inverse .navbar-nav > li > a { 388 | text-shadow: 0 -1px 0 rgba(0, 0, 0, .25); 389 | } 390 | .navbar-static-top, 391 | .navbar-fixed-top, 392 | .navbar-fixed-bottom { 393 | border-radius: 0; 394 | } 395 | @media (max-width: 767px) { 396 | .navbar .navbar-nav .open .dropdown-menu > .active > a, 397 | .navbar .navbar-nav .open .dropdown-menu > .active > a:hover, 398 | .navbar .navbar-nav .open .dropdown-menu > .active > a:focus { 399 | color: #fff; 400 | background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); 401 | background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); 402 | background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); 403 | background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); 404 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); 405 | background-repeat: repeat-x; 406 | } 407 | } 408 | .alert { 409 | text-shadow: 0 1px 0 rgba(255, 255, 255, .2); 410 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); 411 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); 412 | } 413 | .alert-success { 414 | background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); 415 | background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); 416 | background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc)); 417 | background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%); 418 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0); 419 | background-repeat: repeat-x; 420 | border-color: #b2dba1; 421 | } 422 | .alert-info { 423 | background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%); 424 | background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%); 425 | background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0)); 426 | background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%); 427 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0); 428 | background-repeat: repeat-x; 429 | border-color: #9acfea; 430 | } 431 | .alert-warning { 432 | background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); 433 | background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); 434 | background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0)); 435 | background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%); 436 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0); 437 | background-repeat: repeat-x; 438 | border-color: #f5e79e; 439 | } 440 | .alert-danger { 441 | background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); 442 | background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); 443 | background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3)); 444 | background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%); 445 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0); 446 | background-repeat: repeat-x; 447 | border-color: #dca7a7; 448 | } 449 | .progress { 450 | background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); 451 | background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); 452 | background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5)); 453 | background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%); 454 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0); 455 | background-repeat: repeat-x; 456 | } 457 | .progress-bar { 458 | background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%); 459 | background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%); 460 | background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090)); 461 | background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%); 462 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0); 463 | background-repeat: repeat-x; 464 | } 465 | .progress-bar-success { 466 | background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%); 467 | background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%); 468 | background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44)); 469 | background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%); 470 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0); 471 | background-repeat: repeat-x; 472 | } 473 | .progress-bar-info { 474 | background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); 475 | background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); 476 | background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5)); 477 | background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%); 478 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0); 479 | background-repeat: repeat-x; 480 | } 481 | .progress-bar-warning { 482 | background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); 483 | background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); 484 | background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f)); 485 | background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%); 486 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0); 487 | background-repeat: repeat-x; 488 | } 489 | .progress-bar-danger { 490 | background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%); 491 | background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%); 492 | background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c)); 493 | background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%); 494 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0); 495 | background-repeat: repeat-x; 496 | } 497 | .progress-bar-striped { 498 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); 499 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); 500 | background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); 501 | } 502 | .list-group { 503 | border-radius: 4px; 504 | -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); 505 | box-shadow: 0 1px 2px rgba(0, 0, 0, .075); 506 | } 507 | .list-group-item.active, 508 | .list-group-item.active:hover, 509 | .list-group-item.active:focus { 510 | text-shadow: 0 -1px 0 #286090; 511 | background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%); 512 | background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%); 513 | background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a)); 514 | background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%); 515 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0); 516 | background-repeat: repeat-x; 517 | border-color: #2b669a; 518 | } 519 | .list-group-item.active .badge, 520 | .list-group-item.active:hover .badge, 521 | .list-group-item.active:focus .badge { 522 | text-shadow: none; 523 | } 524 | .panel { 525 | -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05); 526 | box-shadow: 0 1px 2px rgba(0, 0, 0, .05); 527 | } 528 | .panel-default > .panel-heading { 529 | background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); 530 | background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); 531 | background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8)); 532 | background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); 533 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); 534 | background-repeat: repeat-x; 535 | } 536 | .panel-primary > .panel-heading { 537 | background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); 538 | background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); 539 | background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); 540 | background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); 541 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); 542 | background-repeat: repeat-x; 543 | } 544 | .panel-success > .panel-heading { 545 | background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); 546 | background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); 547 | background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6)); 548 | background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%); 549 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0); 550 | background-repeat: repeat-x; 551 | } 552 | .panel-info > .panel-heading { 553 | background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); 554 | background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); 555 | background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3)); 556 | background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%); 557 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0); 558 | background-repeat: repeat-x; 559 | } 560 | .panel-warning > .panel-heading { 561 | background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); 562 | background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); 563 | background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc)); 564 | background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%); 565 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0); 566 | background-repeat: repeat-x; 567 | } 568 | .panel-danger > .panel-heading { 569 | background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%); 570 | background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%); 571 | background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc)); 572 | background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%); 573 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0); 574 | background-repeat: repeat-x; 575 | } 576 | .well { 577 | background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); 578 | background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); 579 | background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5)); 580 | background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%); 581 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0); 582 | background-repeat: repeat-x; 583 | border-color: #dcdcdc; 584 | -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1); 585 | box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1); 586 | } 587 | /*# sourceMappingURL=bootstrap-theme.css.map */ 588 | -------------------------------------------------------------------------------- /css/jquery-ui.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.12.1 - 2017-06-04 2 | * http://jqueryui.com 3 | * Includes: draggable.css, core.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css 4 | * To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif 5 | * Copyright jQuery Foundation and other contributors; Licensed MIT */ 6 | 7 | .ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;font-size:100%}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-button{padding:.4em 1em;display:inline-block;position:relative;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2em;box-sizing:border-box;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-controlgroup{vertical-align:middle;display:inline-block}.ui-controlgroup > .ui-controlgroup-item{float:left;margin-left:0;margin-right:0}.ui-controlgroup > .ui-controlgroup-item:focus,.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus{z-index:9999}.ui-controlgroup-vertical > .ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:left}.ui-controlgroup-vertical .ui-controlgroup-item{box-sizing:border-box}.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item{border-left:none}.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item{border-top:none}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-right:none}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:none}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc( 100% - 2.4em )}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{box-shadow:inset 1px 1px 1px #ccc;border-radius:.12em;border:none}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:visible;border:none}.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{background-image:none;width:8px;height:8px;border-width:4px;border-style:solid}.ui-checkboxradio-disabled{pointer-events:none}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;left:.5em;top:.3em}.ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-n{height:2px;top:0}.ui-dialog .ui-resizable-e{width:2px;right:0}.ui-dialog .ui-resizable-s{height:2px;bottom:0}.ui-dialog .ui-resizable-w{width:2px;left:0}.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw,.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw{width:7px;height:7px}.ui-dialog .ui-resizable-se{right:0;bottom:0}.ui-dialog .ui-resizable-sw{left:0;bottom:0}.ui-dialog .ui-resizable-ne{right:0;top:0}.ui-dialog .ui-resizable-nw{left:0;top:0}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;filter:alpha(opacity=25);opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px 0.4em;margin:0.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-text{display:block;margin-right:20px;overflow:hidden;text-overflow:ellipsis}.ui-selectmenu-button.ui-button{text-align:left;white-space:nowrap;width:14em}.ui-selectmenu-icon.ui-icon{float:right;margin-top:0}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:.222em 0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:2em}.ui-spinner-button{width:1.6em;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top-style:none;border-bottom-style:none;border-right-style:none}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #c5c5c5}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:bold}.ui-widget-header a{color:#333}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,.ui-button,html .ui-button.ui-state-disabled:hover,html .ui-button.ui-state-disabled:active{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button,.ui-button{color:#454545;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus,.ui-button:hover,.ui-button:focus{border:1px solid #ccc;background:#ededed;font-weight:normal;color:#2b2b2b}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,a.ui-button:hover,a.ui-button:focus{color:#2b2b2b;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px rgb(94,158,214)}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active,.ui-button:active,.ui-button.ui-state-active:hover{border:1px solid #003eff;background:#007fff;font-weight:normal;color:#fff}.ui-icon-background,.ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_444444_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_444444_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon,.ui-button:hover .ui-icon,.ui-button:focus .ui-icon{background-image:url("images/ui-icons_555555_256x240.png")}.ui-state-active .ui-icon,.ui-button:active .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.png")}.ui-state-highlight .ui-icon,.ui-button .ui-state-highlight.ui-icon{background-image:url("images/ui-icons_777620_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_cc0000_256x240.png")}.ui-button .ui-icon{background-image:url("images/ui-icons_777777_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:3px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666} --------------------------------------------------------------------------------