Parcourir la source

git-svn-id: https://192.168.57.71/svn/jsgkj@1602 931142cf-59ea-a443-aa0e-51397b428577

ld_zhoutl il y a 8 ans
Parent
commit
03b188fabd

+ 7 - 7
gkaqv2/trunk/modules/web/src/main/webapp/static/js/common/grid/GridManager.css

@@ -6,13 +6,13 @@ table[grid-manager], table[grid-manager] * {
 	position: relative
 }
 
-/* @font-face {
+@font-face {
 	font-family: iconfont;
-	src: url(../fonts/iconfont.eot);
-	src: url(../fonts/iconfont.eot?#iefix) format('embedded-opentype'),
-		url(../fonts/iconfont.woff) format('woff'), url(../fonts/iconfont.ttf)
-		format('truetype'), url(../fonts/iconfont.svg#iconfont) format('svg')
-} */
+	src: url(fonts/iconfont.eot);
+	src: url(fonts/iconfont.eot?#iefix) format('embedded-opentype'),
+		url(fonts/iconfont.woff) format('woff'), url(fonts/iconfont.ttf)
+		format('truetype'), url(fonts/iconfont.svg#iconfont) format('svg')
+}
 
 .iconfont {
 	font-family: iconfont !important;
@@ -716,7 +716,7 @@ transform
 	display: block;
 	width: 15px;
 	height: 15px;
-	cursor: pointer;
+ 	cursor: pointer;
 	font-weight: 600;
 	line-height: 16px;
 	overflow: hidden

+ 5 - 0
gkaqv2/trunk/modules/web/src/main/webapp/static/js/common/grid/GridManager.js

@@ -1301,8 +1301,13 @@ function() {
         if (c.indexOf(r) === -1) throw new Error("GridManager Error:方法调用错误,请确定方法名[" + r + "]是否正确");
         var d;
         if ("init" == r) {
+            if(o.supportAjaxPage == false && $.fn.GridManager.defaults.supportAjaxPage == true) {
+                o.supportAjaxPage = true;
+            };
             var l = $.extend({},
+           
             $.fn.GridManager.defaults, o);
+            
             return d = new e(l),
             d.init(n, s),
             n

+ 89 - 0
gkaqv2/trunk/modules/web/src/main/webapp/static/js/common/grid/fonts/demo.css

@@ -0,0 +1,89 @@
+*{margin: 0;padding: 0;list-style: none;}
+/*
+KISSY CSS Reset
+理念:1. reset 的目的不是清除浏览器的默认样式,这仅是部分工作。清除和重置是紧密不可分的。
+2. reset 的目的不是让默认样式在所有浏览器下一致,而是减少默认样式有可能带来的问题。
+3. reset 期望提供一套普适通用的基础样式。但没有银弹,推荐根据具体需求,裁剪和修改后再使用。
+特色:1. 适应中文;2. 基于最新主流浏览器。
+维护:玉伯<lifesinger@gmail.com>, 正淳<ragecarrier@gmail.com>
+ */
+
+/** 清除内外边距 **/
+body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
+dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
+pre, /* text formatting elements 文本格式元素 */
+form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */
+th, td /* table elements 表格元素 */ {
+  margin: 0;
+  padding: 0;
+}
+
+/** 设置默认字体 **/
+body,
+button, input, select, textarea /* for ie */ {
+  font: 12px/1.5 tahoma, arial, \5b8b\4f53, sans-serif;
+}
+h1, h2, h3, h4, h5, h6 { font-size: 100%; }
+address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */
+code, kbd, pre, samp { font-family: courier new, courier, monospace; } /* 统一等宽字体 */
+small { font-size: 12px; } /* 小于 12px 的中文很难阅读,让 small 正常化 */
+
+/** 重置列表元素 **/
+ul, ol { list-style: none; }
+
+/** 重置文本格式元素 **/
+a { text-decoration: none; }
+a:hover { text-decoration: underline; }
+
+
+/** 重置表单元素 **/
+legend { color: #000; } /* for ie6 */
+fieldset, img { border: 0; } /* img 搭车:让链接里的 img 无边框 */
+button, input, select, textarea { font-size: 100%; } /* 使得表单元素在 ie 下能继承字体大小 */
+/* 注:optgroup 无法扶正 */
+
+/** 重置表格元素 **/
+table { border-collapse: collapse; border-spacing: 0; }
+
+/* 清除浮动 */
+.ks-clear:after, .clear:after {
+  content: '\20';
+  display: block;
+  height: 0;
+  clear: both;
+}
+.ks-clear, .clear {
+  *zoom: 1;
+}
+
+.main {padding: 30px 100px;}
+.main h1{font-size:36px; color:#333; text-align:left;margin-bottom:30px; border-bottom: 1px solid #eee;}
+
+.helps{margin-top:40px;}
+.helps pre{
+  padding:20px;
+  margin:10px 0;
+  border:solid 1px #e7e1cd;
+  background-color: #fffdef;
+  overflow: auto;
+}
+
+.icon_lists li{
+  float:left;
+  width: 100px;
+  height:180px;
+  text-align: center;
+}
+.icon_lists .icon{
+  font-size: 42px;
+  line-height: 100px;
+  margin: 10px 0;
+  color:#333;
+  -webkit-transition: font-size 0.25s ease-out 0s;
+  -moz-transition: font-size 0.25s ease-out 0s;
+  transition: font-size 0.25s ease-out 0s;
+
+}
+.icon_lists .icon:hover{
+  font-size: 100px;
+}

+ 193 - 0
gkaqv2/trunk/modules/web/src/main/webapp/static/js/common/grid/fonts/demo.html

@@ -0,0 +1,193 @@
+
+<!DOCTYPE html>
+<html>
+<head>
+    <meta charset="utf-8"/>
+    <title>IconFont</title>
+    <link rel="stylesheet" href="demo.css">
+    <link rel="stylesheet" href="iconfont.css">
+</head>
+<body>
+    <div class="main">
+        <h1>IconFont 图标</h1>
+        <ul class="icon_lists clear">
+            
+                <li>
+                <i class="icon iconfont">&#xe60a;</i>
+                    <div class="name">列表</div>
+                    <div class="code">&amp;#xe60a;</div>
+                    <div class="fontclass">.liebiao</div>
+                </li>
+            
+                <li>
+                <i class="icon iconfont">&#xe600;</i>
+                    <div class="name">列表</div>
+                    <div class="code">&amp;#xe600;</div>
+                    <div class="fontclass">.liebiao1</div>
+                </li>
+            
+                <li>
+                <i class="icon iconfont">&#xe611;</i>
+                    <div class="name">而为</div>
+                    <div class="code">&amp;#xe611;</div>
+                    <div class="fontclass">.erwei</div>
+                </li>
+            
+                <li>
+                <i class="icon iconfont">&#xe612;</i>
+                    <div class="name">而为</div>
+                    <div class="code">&amp;#xe612;</div>
+                    <div class="fontclass">.erwei1</div>
+                </li>
+            
+                <li>
+                <i class="icon iconfont">&#xe60b;</i>
+                    <div class="name">搜索,猫客</div>
+                    <div class="code">&amp;#xe60b;</div>
+                    <div class="fontclass">.sousuo</div>
+                </li>
+            
+                <li>
+                <i class="icon iconfont">&#xe601;</i>
+                    <div class="name">产品参数</div>
+                    <div class="code">&amp;#xe601;</div>
+                    <div class="fontclass">.chanpincanshu</div>
+                </li>
+            
+                <li>
+                <i class="icon iconfont">&#xe613;</i>
+                    <div class="name">保存</div>
+                    <div class="code">&amp;#xe613;</div>
+                    <div class="fontclass">.baocun</div>
+                </li>
+            
+                <li>
+                <i class="icon iconfont">&#xe602;</i>
+                    <div class="name">三角2</div>
+                    <div class="code">&amp;#xe602;</div>
+                    <div class="fontclass">.sanjiao2</div>
+                </li>
+            
+                <li>
+                <i class="icon iconfont">&#xe603;</i>
+                    <div class="name">三角1</div>
+                    <div class="code">&amp;#xe603;</div>
+                    <div class="fontclass">.sanjiao1</div>
+                </li>
+            
+                <li>
+                <i class="icon iconfont">&#xe604;</i>
+                    <div class="name">search</div>
+                    <div class="code">&amp;#xe604;</div>
+                    <div class="fontclass">.search</div>
+                </li>
+            
+                <li>
+                <i class="icon iconfont">&#xe60c;</i>
+                    <div class="name">refresh</div>
+                    <div class="code">&amp;#xe60c;</div>
+                    <div class="fontclass">.shuaxin</div>
+                </li>
+            
+                <li>
+                <i class="icon iconfont">&#xe60d;</i>
+                    <div class="name">设置</div>
+                    <div class="code">&amp;#xe60d;</div>
+                    <div class="fontclass">.shezhi</div>
+                </li>
+            
+                <li>
+                <i class="icon iconfont">&#xe605;</i>
+                    <div class="name">列表模式</div>
+                    <div class="code">&amp;#xe605;</div>
+                    <div class="fontclass">.liebiaomoshi</div>
+                </li>
+            
+                <li>
+                <i class="icon iconfont">&#xe606;</i>
+                    <div class="name">3.1-刷新</div>
+                    <div class="code">&amp;#xe606;</div>
+                    <div class="fontclass">.31shuaxin</div>
+                </li>
+            
+                <li>
+                <i class="icon iconfont">&#xe607;</i>
+                    <div class="name">3.1删除</div>
+                    <div class="code">&amp;#xe607;</div>
+                    <div class="fontclass">.31shanchu</div>
+                </li>
+            
+                <li>
+                <i class="icon iconfont">&#xe608;</i>
+                    <div class="name">编辑</div>
+                    <div class="code">&amp;#xe608;</div>
+                    <div class="fontclass">.bianji</div>
+                </li>
+            
+                <li>
+                <i class="icon iconfont">&#xe60e;</i>
+                    <div class="name">3.1 返回1</div>
+                    <div class="code">&amp;#xe60e;</div>
+                    <div class="fontclass">.31fanhui1</div>
+                </li>
+            
+                <li>
+                <i class="icon iconfont">&#xe60f;</i>
+                    <div class="name">3.1 返回2</div>
+                    <div class="code">&amp;#xe60f;</div>
+                    <div class="fontclass">.31fanhui2</div>
+                </li>
+            
+                <li>
+                <i class="icon iconfont">&#xe610;</i>
+                    <div class="name">3.1-行动点</div>
+                    <div class="code">&amp;#xe610;</div>
+                    <div class="fontclass">.31xingdongdian</div>
+                </li>
+            
+                <li>
+                <i class="icon iconfont">&#xe614;</i>
+                    <div class="name">save-as-24</div>
+                    <div class="code">&amp;#xe614;</div>
+                    <div class="fontclass">.saveas24</div>
+                </li>
+            
+                <li>
+                <i class="icon iconfont">&#xe609;</i>
+                    <div class="name">帮助</div>
+                    <div class="code">&amp;#xe609;</div>
+                    <div class="fontclass">.icon</div>
+                </li>
+            
+        </ul>
+
+
+        <div class="helps">
+            第一步:使用font-face声明字体
+            <pre>
+@font-face {font-family: 'iconfont';
+    src: url('iconfont.eot'); /* IE9*/
+    src: url('iconfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
+    url('iconfont.woff') format('woff'), /* chrome、firefox */
+    url('iconfont.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
+    url('iconfont.svg#iconfont') format('svg'); /* iOS 4.1- */
+}
+</pre>
+第二步:定义使用iconfont的样式
+            <pre>
+.iconfont{
+    font-family:"iconfont" !important;
+    font-size:16px;font-style:normal;
+    -webkit-font-smoothing: antialiased;
+    -webkit-text-stroke-width: 0.2px;
+    -moz-osx-font-smoothing: grayscale;}
+</pre>
+第三步:挑选相应图标并获取字体编码,应用于页面
+<pre>
+&lt;i class="iconfont"&gt;&amp;#x33;&lt;/i&gt;
+</pre>
+        </div>
+
+    </div>
+</body>
+</html>

+ 38 - 0
gkaqv2/trunk/modules/web/src/main/webapp/static/js/common/grid/fonts/iconfont.css

@@ -0,0 +1,38 @@
+
+@font-face {font-family: "iconfont";
+  src: url('iconfont.eot?t=1469455341'); /* IE9*/
+  src: url('iconfont.eot?t=1469455341#iefix') format('embedded-opentype'), /* IE6-IE8 */
+  url('iconfont.woff?t=1469455341') format('woff'), /* chrome, firefox */
+  url('iconfont.ttf?t=1469455341') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
+  url('iconfont.svg?t=1469455341#iconfont') format('svg'); /* iOS 4.1- */
+}
+
+.iconfont {
+  font-family:"iconfont" !important;
+  font-size:16px;
+  font-style:normal;
+  -webkit-font-smoothing: antialiased;
+  -webkit-text-stroke-width: 0.2px;
+  -moz-osx-font-smoothing: grayscale;
+}
+.icon-liebiao:before { content: "\e60a"; }
+.icon-liebiao1:before { content: "\e600"; }
+.icon-erwei:before { content: "\e611"; }
+.icon-erwei1:before { content: "\e612"; }
+.icon-sousuo:before { content: "\e60b"; }
+.icon-chanpincanshu:before { content: "\e601"; }
+.icon-baocun:before { content: "\e613"; }
+.icon-sanjiao2:before { content: "\e602"; }
+.icon-sanjiao1:before { content: "\e603"; }
+.icon-search:before { content: "\e604"; }
+.icon-shuaxin:before { content: "\e60c"; }
+.icon-shezhi:before { content: "\e60d"; }
+.icon-liebiaomoshi:before { content: "\e605"; }
+.icon-31shuaxin:before { content: "\e606"; }
+.icon-31shanchu:before { content: "\e607"; }
+.icon-bianji:before { content: "\e608"; }
+.icon-31fanhui1:before { content: "\e60e"; }
+.icon-31fanhui2:before { content: "\e60f"; }
+.icon-31xingdongdian:before { content: "\e610"; }
+.icon-saveas24:before { content: "\e614"; }
+.icon-icon:before { content: "\e609"; }

BIN
gkaqv2/trunk/modules/web/src/main/webapp/static/js/common/grid/fonts/iconfont.eot


+ 105 - 0
gkaqv2/trunk/modules/web/src/main/webapp/static/js/common/grid/fonts/iconfont.svg

@@ -0,0 +1,105 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata>
+Created by FontForge 20120731 at Mon Jul 25 22:02:21 2016
+ By admin
+</metadata>
+<defs>
+<font id="iconfont" horiz-adv-x="1024" >
+  <font-face 
+    font-family="iconfont"
+    font-weight="500"
+    font-stretch="normal"
+    units-per-em="1024"
+    panose-1="2 0 6 3 0 0 0 0 0 0"
+    ascent="896"
+    descent="-128"
+    x-height="792"
+    bbox="34 -148 1253 832"
+    underline-thickness="50"
+    underline-position="-100"
+    unicode-range="U+0078-E614"
+  />
+<missing-glyph horiz-adv-x="374" 
+d="M34 0v682h272v-682h-272zM68 34h204v614h-204v-614z" />
+    <glyph glyph-name=".notdef" horiz-adv-x="374" 
+d="M34 0v682h272v-682h-272zM68 34h204v614h-204v-614z" />
+    <glyph glyph-name=".null" horiz-adv-x="0" 
+ />
+    <glyph glyph-name="nonmarkingreturn" horiz-adv-x="341" 
+ />
+    <glyph glyph-name="x" unicode="x" horiz-adv-x="1001" 
+d="M281 543q-27 -1 -53 -1h-83q-18 0 -36.5 -6t-32.5 -18.5t-23 -32t-9 -45.5v-76h912v41q0 16 -0.5 30t-0.5 18q0 13 -5 29t-17 29.5t-31.5 22.5t-49.5 9h-133v-97h-438v97zM955 310v-52q0 -23 0.5 -52t0.5 -58t-10.5 -47.5t-26 -30t-33 -16t-31.5 -4.5q-14 -1 -29.5 -0.5
+t-29.5 0.5h-32l-45 128h-439l-44 -128h-29h-34q-20 0 -45 1q-25 0 -41 9.5t-25.5 23t-13.5 29.5t-4 30v167h911zM163 247q-12 0 -21 -8.5t-9 -21.5t9 -21.5t21 -8.5q13 0 22 8.5t9 21.5t-9 21.5t-22 8.5zM316 123q-8 -26 -14 -48q-5 -19 -10.5 -37t-7.5 -25t-3 -15t1 -14.5
+t9.5 -10.5t21.5 -4h37h67h81h80h64h36q23 0 34 12t2 38q-5 13 -9.5 30.5t-9.5 34.5q-5 19 -11 39h-368zM336 498v228q0 11 2.5 23t10 21.5t20.5 15.5t34 6h188q31 0 51.5 -14.5t20.5 -52.5v-227h-327z" />
+    <glyph glyph-name="uniE600" unicode="&#xe600;" 
+d="M187 825q29 0 49 -19.5t20 -47.5v-52q0 -29 -20 -49t-49 -20h-54q-28 0 -47.5 20t-19.5 49v52q0 28 19.5 47.5t47.5 19.5h54zM890 825q28 0 47.5 -19.5t19.5 -47.5v-52q0 -29 -19.5 -49t-47.5 -20h-437q-29 0 -49 20t-20 49v52q0 28 20 47.5t49 19.5h437zM187 507
+q29 0 49 -20t20 -49v-52q0 -28 -20 -48t-49 -20h-54q-28 0 -47.5 20t-19.5 48v52q0 29 19.5 49t47.5 20h54zM890 507q28 0 47.5 -20t19.5 -49v-52q0 -28 -19.5 -48t-47.5 -20h-437q-29 0 -49 20t-20 48v52q0 29 20 49t49 20h437zM187 187q29 0 49 -20t20 -47v-52
+q0 -29 -20 -49t-49 -20h-54q-28 0 -47.5 20t-19.5 49v52q0 27 19.5 47t47.5 20h54zM890 187q28 0 47.5 -20t19.5 -47v-52q0 -29 -19.5 -49t-47.5 -20h-437q-29 0 -49 20t-20 49v52q0 27 20 47t49 20h437z" />
+    <glyph glyph-name="uniE601" unicode="&#xe601;" 
+d="M228 545h566v51h-566v-51zM228 365h566v51h-566v-51zM897 776h-771q-22 0 -37 -15t-15 -36v-669q0 -21 15 -36t37 -15h771q21 0 36.5 15t15.5 36v669q0 21 -15.5 36t-36.5 15zM897 82q0 -11 -7.5 -18.5t-18.5 -7.5h-720q-10 0 -17.5 7.5t-7.5 18.5v617q0 11 7.5 18.5
+t17.5 7.5h720q11 0 18.5 -7.5t7.5 -18.5v-617zM228 185h566v51h-566v-51z" />
+    <glyph glyph-name="uniE602" unicode="&#xe602;" 
+d="M830 161h-636l318 446z" />
+    <glyph glyph-name="uniE603" unicode="&#xe603;" 
+d="M512 161l-318 446h636z" />
+    <glyph glyph-name="uniE604" unicode="&#xe604;" 
+d="M933 5l-146 157q92 111 92 255q0 109 -53.5 201t-146 145.5t-201 53.5t-200.5 -53.5t-145.5 -145.5t-53.5 -200.5t53.5 -201t145.5 -146t201 -53.5q87 0 165 36q12 5 16.5 17t-1 23.5t-17.5 16t-23 -0.5q-67 -30 -140 -30q-92 0 -170 45.5t-123.5 123.5t-45.5 169.5
+t45.5 169.5t123.5 123.5t169.5 45.5t169.5 -45.5t123.5 -123.5t45.5 -170q0 -136 -94 -234q-9 -9 -8.5 -22t9.5 -22l1 -1q1 0 1.5 -0.5l1.5 -1.5l1 -2l159 -171q9 -9 23 -9q12 0 21 8q9 9 9.5 21.5t-8.5 21.5z" />
+    <glyph glyph-name="uniE605" unicode="&#xe605;" 
+d="M873 140zM349 741h-193q-22 0 -37.5 -15.5t-15.5 -36.5v-194q0 -22 15.5 -37.5t37.5 -15.5h193q22 0 37.5 15.5t15.5 37.5v194q0 21 -15.5 36.5t-37.5 15.5zM352 689v-194q0 -3 -3 -3h-193q-3 0 -3 3v194q0 2 3 2h193q3 0 3 -2zM349 326h-193q-22 0 -37.5 -15.5
+t-15.5 -37.5v-194q0 -21 15.5 -36.5t37.5 -15.5h193q22 0 37.5 15.5t15.5 36.5v194q0 22 -15.5 37.5t-37.5 15.5zM352 273v-194q0 -2 -3 -2h-193q-3 0 -3 2v194q0 3 3 3h193q3 0 3 -3zM520 671q1 -1 2 -1h2h2h367h1h1h1q1 0 2 1q9 1 15 8t6 16t-5.5 16t-14.5 9q-1 1 -3 1
+h-374q-1 0 -2 -1q-9 -2 -14.5 -9t-5.5 -15.5t5.5 -15.5t14.5 -9zM520 485q1 -2 2 -2h374q1 0 3 1q8 2 14 9t6 16t-6 16t-15 8q-1 1 -2 1h-1h-2h-367h-2h-2q-1 0 -2 -1q-9 -2 -14.5 -8.5t-5.5 -15.5t5.5 -16t14.5 -8zM520 235q1 -1 2 -1h374h1q10 1 17 8t7 18q0 10 -7 17.5
+t-18 7.5h-1h-369h-2h-2q-1 0 -2 -1q-9 -2 -14.5 -9t-5.5 -15.5t5.5 -15.5t14.5 -9zM898 118q-1 1 -2 1h-374q-1 0 -2 -2q-9 -1 -14.5 -8t-5.5 -16t5.5 -16t14.5 -8q1 -1 2 -1h1h3h368h2q11 0 18 7.5t7 17.5t-6.5 17.5t-16.5 7.5z" />
+    <glyph glyph-name="uniE606" unicode="&#xe606;" 
+d="M873 140zM922 420q-8 8 -19.5 8t-19.5 -7l-19 -18q-4 101 -56.5 185.5t-139 133t-189.5 48.5q-104 0 -193 -52t-140.5 -140.5t-51.5 -193.5t51.5 -193.5t140.5 -140.5t193 -52q85 0 162 36t132 101q5 4 8 9l1 1l2 3l-1 1q2 4 2 9q0 12 -8.5 21t-20.5 9q-15 0 -24 -14
+q-47 -57 -113 -88t-140 -31q-89 0 -164.5 44t-119.5 120t-44 165t44 165t119.5 120t164.5 44t164.5 -43.5t119.5 -118.5t45 -163l-33 32q-8 8 -19.5 8t-19.5 -7q-8 -9 -8 -20.5t8 -19.5l69 -69q8 -9 20 -9h1q3 -1 5 -1q11 0 20 8l71 71q8 8 8 19.5t-8 19.5z" />
+    <glyph glyph-name="uniE607" unicode="&#xe607;" 
+d="M379 135v331q0 12 -8.5 20t-20 8t-20 -8t-8.5 -20v-331q0 -11 8.5 -19.5t20 -8.5t20 8.5t8.5 19.5zM534 87v471q0 12 -8 20.5t-20 8.5t-20 -8.5t-8 -20.5v-471q0 -12 8 -20.5t20 -8.5t20 8.5t8 20.5zM870 548v2q0 13 -8 21q-7 7 -18 7q-12 0 -21 -8t-9 -20v-2v-16v-19
+v-30v-78v-74v-15v-15q-1 -198 -1 -240q0 -31 -13 -37q-6 -3 -21 -2h-3h-9h-10h-11h-30h-11h-83h-81h-9h-17h-9q-103 -1 -227 0h-32q-30 0 -37 18q-4 9 -4 19v3v487q0 12 -7 20t-19 8t-21 -8.5t-9 -19.5v-483v-2v-1q-2 -25 8 -46q23 -52 89 -52h32h107h121h9h17h9q28 1 80 0
+h84h12h30h20h7h8q19 0 36 7q23 10 37 34.5t14 54.5v28v212v16v14v74v78v29v20v16zM655 113q0 -11 8.5 -19.5t20.5 -8.5t20 8.5t8 19.5v193q0 11 -8 19.5t-20 8.5t-20.5 -8.5t-8.5 -19.5v-193zM684 390q12 0 20 8.5t8 19.5v85q0 12 -8 20t-20 8t-20.5 -8t-8.5 -20v-85
+q0 -11 8.5 -19.5t20.5 -8.5zM867 737h-244q-1 0 -5 6l-2 2q-8 12 -10 14q-34 44 -96 44q-64 0 -99 -44q-3 -4 -14 -19l-1 -2l-1 -1l-244 -1q-12 0 -20 -8t-8 -20t8 -20.5t20 -8.5h11l238 1q23 0 40 22l1 2q1 1 2 3t2 3q8 11 10 14q18 23 55 23q34 0 51 -23q1 0 9 -12l2 -2
+q22 -30 51 -30h244q12 0 20 8.5t8 20t-8 20t-20 8.5z" />
+    <glyph glyph-name="uniE608" unicode="&#xe608;" 
+d="M358 341q-1 -1 -1 -2l-41 -151q-4 -14 6 -24q8 -8 18 -8q4 0 7 1l150 41v0q3 0 5 2l400 400q18 18 18 45q0 32 -23 55l-38 38q-23 23 -54 23q-28 0 -46 -18l-400 -400l-1 -1v-1zM863 639l-40 -40l-64 66l39 39q5 4 12.5 3.5t12.5 -5.5l38 -38q6 -6 6 -14q0 -7 -4 -11z
+M429 335l289 289l64 -66l-288 -288zM377 218l21 77l55 -56zM888 480q-11 0 -19 -8t-8 -19v-373q0 -15 -10.5 -25.5t-25.5 -10.5h-631q-14 0 -24.5 10.5t-10.5 25.5v608q0 15 10.5 25.5t24.5 10.5h407q11 0 19 8t8 19.5t-8 19.5t-19 8h-411q-36 0 -61 -25.5t-25 -60.5v-618
+q0 -35 25 -60.5t61 -25.5h639q36 0 61.5 25.5t25.5 60.5v378q0 11 -8 19t-20 8z" />
+    <glyph glyph-name="uniE609" unicode="&#xe609;" 
+d="M634 93q-25 -37 -46 -62.5t-48.5 -48.5t-59.5 -34.5t-69 -11.5q-51 8 -73 40t-10 71l131 432q3 8 -0.5 15.5t-10.5 10.5q-16 5 -46 -27l-79 -95q-1 1 -1 53q45 67 110 113t115 46q46 -5 68.5 -37t13.5 -75l-132 -434q-3 -18 12 -23q7 -3 20.5 5t26.5 22l80 95q1 -4 0 -30
+zM611.5 653q-38.5 0 -65 25t-26.5 64.5t26.5 64.5t65 25t64.5 -25t26 -64.5t-26 -64.5t-64.5 -25z" />
+    <glyph glyph-name="uniE60A" unicode="&#xe60a;" 
+d="M893 768q29 0 49 -20t20 -49v-52q0 -29 -20 -48.5t-49 -19.5h-760q-29 0 -48.5 19.5t-19.5 48.5v52q0 29 19.5 49t48.5 20h760zM893 447q29 0 49 -19.5t20 -48.5v-52q0 -29 -20 -49t-49 -20h-760q-29 0 -48.5 20t-19.5 49v52q0 29 19.5 48.5t48.5 19.5h760zM893 127
+q29 0 49 -20t20 -49v-52q0 -29 -20 -48.5t-49 -19.5h-760q-29 0 -48.5 19.5t-19.5 48.5v52q0 29 19.5 49t48.5 20h760z" />
+    <glyph glyph-name="uniE60B" unicode="&#xe60b;" 
+d="M681 245q60 67 79 154t-5.5 173t-88.5 151q-67 67 -157 91t-180 0t-157 -91q-51 -50 -77 -115.5t-26 -131.5t26 -131.5t77 -115.5q64 -65 150 -89.5t173 -5t155 79.5l265 -266l31 31zM649 274l-28 -29q-90 -79 -211.5 -75.5t-207.5 89.5q-90 90 -90 217t90 216.5
+t217 89.5t216 -90q86 -85 90 -206.5t-76 -211.5z" />
+    <glyph glyph-name="uniE60C" unicode="&#xe60c;" 
+d="M935 468q-11 9 -25.5 7.5t-23.5 -12.5l-13 -16q-1 8 -3 17q-29 140 -140 231t-252 91q-42 0 -83 -9q-106 -22 -185.5 -94t-113.5 -174t-11 -209q29 -140 139.5 -231t252.5 -91q41 0 82 9q115 24 198 108l2 1q4 4 3 4l2 2q4 8 4 16q0 14 -9 23t-22 9q-6 0 -12 -3l-2 2
+l-9 -9q-71 -71 -167 -91q-35 -7 -69 -7q-118 0 -211 76t-117 192q-19 90 9.5 175.5t95 145.5t155.5 79q34 7 69 7q118 0 210.5 -76t117.5 -193q0 -4 1 -6l-14 11q-11 9 -25.5 7t-23.5 -12q-9 -12 -7.5 -26.5t12.5 -23.5l78 -63h1l3 -3h1q10 -6 21 -4q15 1 24 13l63 78
+q9 12 7 26t-13 23z" />
+    <glyph glyph-name="uniE60D" unicode="&#xe60d;" 
+d="M510.5 558q-73.5 0 -125.5 -51.5t-52 -124t52 -124t125 -51.5q14 0 32 3q14 2 22 13.5t5 24.5q-2 12 -11.5 19.5t-21.5 7.5h-6q-11 -2 -20 -2q-45 0 -77.5 32t-32.5 77.5t32 77.5t78 32t78.5 -32t32.5 -78q0 -8 -2 -19q-2 -14 5.5 -25t21.5 -14h6q12 0 21.5 7.5
+t11.5 19.5q3 17 3 31q0 73 -52 124.5t-125.5 51.5zM938 463q-3 19 -22 23q-65 15 -98 72t-14 120q6 18 -9 30q-63 54 -142 81q-4 2 -9 2q-13 0 -22 -9q-45 -49 -111.5 -49t-111.5 49q-13 14 -32 7q-79 -27 -141 -81q-15 -12 -9 -30q19 -63 -14 -120t-98 -72q-19 -4 -23 -23
+q-8 -41 -8 -80.5t8 -80.5q4 -19 23 -23q65 -15 98 -72t14 -120q-6 -18 9 -31q63 -53 141 -80q19 -7 32 7q45 48 111 48t112 -48q9 -9 22 -9q5 0 9 1q79 28 142 81q15 13 9 31q-19 63 14 120t98 71q19 5 22 24q8 41 8 80.5t-8 80.5zM729 106q-40 -30 -86 -49q-57 50 -133 50
+q-75 0 -132 -50q-47 19 -86 49q15 74 -23 139q-37 65 -110 89q-4 24 -4 48.5t4 48.5q72 24 110 89t23 139q39 30 86 49q57 -50 132 -50q76 0 133 50q46 -19 86 -49q-16 -74 22 -139t110 -89q4 -24 4 -49q0 -23 -4 -48q-72 -24 -109.5 -89t-22.5 -139z" />
+    <glyph glyph-name="uniE60E" unicode="&#xe60e;" 
+d="M393 384l348 336q16 15 16 36t-15.5 36t-37.5 15t-37 -15l-385 -372q-15 -15 -15 -36t15 -36l385 -372q15 -15 37 -15t37.5 15t15.5 36t-16 36z" />
+    <glyph glyph-name="uniE60F" unicode="&#xe60f;" 
+d="M630 384l-348 -336q-15 -15 -15 -36t15 -36t37 -15t37 15l385 372q16 15 16 36t-16 36l-385 372q-15 15 -37 15t-37 -15t-15 -36t15 -36z" />
+    <glyph glyph-name="uniE610" unicode="&#xe610;" 
+d="M818 678q-62 62 -143 94.5t-163 32.5t-163 -32.5t-143 -94.5t-94.5 -143t-32.5 -163t32.5 -163t94.5 -143.5t143 -94.5t163 -32t163 32t143 94.5t94.5 143.5t32.5 163t-32.5 163t-94.5 143zM774 109.5q-53 -53.5 -122.5 -81t-139.5 -27.5t-139.5 27.5t-122.5 80.5
+q-71 72 -96.5 167.5t0 191t96.5 166.5t166.5 96.5t191 0t166.5 -96.5q53 -53 81 -122.5t28 -140t-28 -139.5t-81 -122.5zM472 578q-9 8 -20.5 8t-20 -8t-8.5 -19.5t8 -19.5l178 -171l-177 -172q-9 -7 -9 -18.5t8.5 -20t20.5 -8.5q11 0 20 8l197 191q8 8 8 19.5t-8 19.5z" />
+    <glyph glyph-name="uniE611" unicode="&#xe611;" horiz-adv-x="2228" 
+d="M291 311v79l483 215l479 -215v-79l-479 215zM291 163v79l483 213l479 -213v-79l-479 214z" />
+    <glyph glyph-name="uniE612" unicode="&#xe612;" horiz-adv-x="2228" 
+d="M1253 457v-79l-482 -215l-480 215v79l480 -215zM1253 605v-79l-482 -213l-480 213v79l480 -214z" />
+    <glyph glyph-name="uniE613" unicode="&#xe613;" 
+d="M770 747h-706v-895h896v705zM723 715v-355h-421v355h421zM929 -118h-834v834h177v-386h482v386h3l172 -172v-662zM683 669h-90v-239h90v239zM653 461h-30v178h30v-178zM479 2h376v-31h-376v31zM479 99h376v-30h-376v30z" />
+    <glyph glyph-name="uniE614" unicode="&#xe614;" 
+d="M252 363q0 9 5.5 15t15.5 6h384q10 0 15.5 -6t5.5 -15.5t-5.5 -15.5t-15.5 -6h-384q-7 0 -14 6.5t-7 15.5zM785 256h-512q-10 0 -15.5 -6t-5.5 -15t7 -15.5t14 -6.5h512q10 0 15.5 6t5.5 15.5t-5.5 15.5t-15.5 6zM785 128h-512q-10 0 -15.5 -6t-5.5 -15t7 -15.5t14 -6.5
+h512q10 0 15.5 6t5.5 15.5t-5.5 15.5t-15.5 6zM956 354q-10 0 -16 -6t-6 -15v-290q0 -12 -20 -27.5t-44 -15.5h-682q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h64v-149q0 -44 32 -75.5t74 -31.5h542l-81 -81q-6 -6 -6 -15t6 -15q9 -8 17 -8q13 0 17 8l116 115q4 5 4 9v8v0
+v9l-4 4l-116 120q-6 6 -14.5 6t-15 -6.5t-6.5 -15t6 -14.5l82 -81h-547q-25 0 -44.5 19t-19.5 45v149h150h106v-128h128q10 0 16 6t6 15v64q0 27 -28.5 53t-65.5 33h-13h-149h-256q-43 0 -75 -31.5t-32 -75.5v-640q0 -45 31 -76t76 -31h682q43 0 75 27.5t32 58.5v294
+q0 7 -6 12t-15 5z" />
+  </font>
+</defs></svg>

BIN
gkaqv2/trunk/modules/web/src/main/webapp/static/js/common/grid/fonts/iconfont.ttf


BIN
gkaqv2/trunk/modules/web/src/main/webapp/static/js/common/grid/fonts/iconfont.woff