Quellcode durchsuchen

basic grid scss file

zhuth vor 6 Jahren
Ursprung
Commit
82aba9edb8
2 geänderte Dateien mit 17 neuen und 2 gelöschten Zeilen
  1. 15 0
      app/view/grid/basic/Panel.scss
  2. 2 2
      app/view/grid/summary/Panel.js

+ 15 - 0
app/view/grid/basic/Panel.scss

@@ -0,0 +1,15 @@
+$red-icon-color: dynamic(#dd6550);
+$green-icon-color: dynamic(#81cb31);
+$yellow-icon-color: dynamic(#ffc839);
+
+.red {
+    color: $red-icon-color !important;
+}
+
+.green {
+    color: $green-icon-color !important;
+}
+
+.yellow {
+    color: $yellow-icon-color !important;
+}

+ 2 - 2
app/view/grid/summary/Panel.js

@@ -3,10 +3,10 @@ Ext.define('uas.view.grid.summary.Panel', {
     xtype: 'grid-summary-panel',
 
     items: [{
-        title: '动',
+        title: '位置联动',
         xtype: 'summary1',
     }, {
-        title: '固定',
+        title: '位置固定',
         xtype: 'summary2'
     }]