system-clients 1.6.23 → 1.6.26-heat-2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "system-clients",
3
- "version": "1.6.23",
3
+ "version": "1.6.26-heat-2",
4
4
  "description": "系统基础框架",
5
5
  "main": "src/index.js",
6
6
  "directories": {
Binary file
Binary file
@@ -54,3 +54,8 @@
54
54
  // Utility classes
55
55
  @import "utilities.less";
56
56
  @import "responsive-utilities.less";
57
+
58
+ @font-face {
59
+ font-family: 'PingFangSC-Regular'; //重命名字体名
60
+ src: url('../fonts/PingFangSC-Regular.ttf'); //引入字体
61
+ }
@@ -94,12 +94,13 @@
94
94
  // border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;
95
95
  // }
96
96
  // 修改后
97
- color: #B3B4B4; // 原本是#777
97
+ color: #999999; // 原本是#777
98
98
  margin-right: 2px;
99
99
  padding:10px 20px;
100
100
  font-size:12px;
101
101
  line-height: @line-height-base;
102
102
  font-weight: 600;
103
+ background-color: #f0efef;
103
104
  // border: 2px solid #ddd; // 原本为0px solid #F6F6F6;
104
105
  // border-width: 2px 2px 0px 2px ;
105
106
  // border-style: solid;
@@ -127,11 +128,11 @@
127
128
  // border-bottom-color: transparent;
128
129
  // cursor: default;
129
130
  // 修改后
130
- color: #8492A6;
131
+ color: #4094e3;
131
132
  cursor: default;
132
133
  font-weight: 600;
133
- background-color: #fff;
134
- border-bottom: 2px solid #00A3F0;
134
+ background-color: #f0efef;
135
+ border-bottom: 2px solid #4094e3;
135
136
  // border-bottom: : 3px solid @global-color;
136
137
  // background-image: -moz-linear-gradient(top, #fefeff, #dae4f2);
137
138
  // background-image: -ms-linear-gradient(top, #fefeff, #dae4f2);
@@ -266,7 +267,7 @@
266
267
  // padding: 0px 15px 0px 15px;
267
268
  // 原本没有,自己添加
268
269
  padding-top: 10px;
269
- background: #FFF; // 原本,之前修改的为#FCFEEE
270
+ background: #f0efef; // 原本,之前修改的为#FCFEEE
270
271
  }
271
272
  > .active {
272
273
  display: block;
@@ -7,7 +7,7 @@
7
7
  // padding-left: 0;
8
8
  // margin: @line-height-computed 0;
9
9
  padding: 5px;
10
- background: #F2F6FA;
10
+ background: #d2e4f5;
11
11
  list-style: none;
12
12
  text-align: center;
13
13
  &:extend(.clearfix all);
@@ -37,7 +37,7 @@ th {
37
37
  text-align: left;// 原本没有
38
38
  color: #304A66;
39
39
  // 原本没有,自己添加
40
- font-family: 微软雅黑;
40
+ font-family: PingFangSC-Regular;
41
41
 
42
42
  }
43
43
  }
@@ -128,19 +128,19 @@ th {
128
128
  // 一下原本没有,自己添加,添加繁琐,有待修改
129
129
  .table-striped {
130
130
  > tbody > tr:nth-of-type(even) {
131
- background-color: #fff;
131
+ background-color: #e8f1f9;
132
132
  }
133
133
  }
134
134
  // 一下自己添加
135
135
  .table-striped thead tr th {
136
- background-color: #00A3F0;
136
+ background-color: #cae0f4;
137
137
  padding:10px;
138
138
  border-left:solid 0px #dae4f2;
139
139
  border-top:solid 1px #dae4f2;
140
140
  border-right: none;
141
141
  border-bottom: none;
142
142
  text-align:center;
143
- color:white;
143
+ color: #333333;
144
144
  }
145
145
  // Hover effect
146
146
  //
@@ -26,7 +26,7 @@
26
26
  //## Settings for some of the most global styles.
27
27
 
28
28
  //** Background color for `<body>`.
29
- @body-bg: #fff;
29
+ @body-bg: #f0efef;
30
30
  //** Global text color on `<body>`.
31
31
  @text-color: #304A66; // @gray-dark;
32
32
 
@@ -60,7 +60,7 @@
60
60
  @font-size-h6: ceil((@font-size-base * 0.85)); // ~12px
61
61
 
62
62
  //** Unit-less `line-height` for use in components like buttons.
63
- @line-height-base: 1.428571429; // 20/14
63
+ @line-height-base: 1.728571429; // 20/14
64
64
  //** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
65
65
  @line-height-computed: floor((@font-size-base * @line-height-base)); // ~20px
66
66
 
@@ -131,7 +131,7 @@
131
131
  //** Background color used for `.table-striped`.
132
132
  @table-bg-accent: #F2FAFE; // 原本是#f9f9f9
133
133
  //** Background color used for `.table-hover`.
134
- @table-bg-hover: #f5f5f5;
134
+ @table-bg-hover: #d3e5f4;
135
135
  @table-bg-active: @table-bg-hover;
136
136
 
137
137
  //** Border color for table and cell borders.
@@ -517,7 +517,7 @@
517
517
  @state-success-border: darken(spin(@state-success-bg, -10), 5%);
518
518
 
519
519
  @state-info-text: #31708f;
520
- @state-info-bg: #F2F6FA; // 原本为 #d9edf7
520
+ @state-info-bg: #e8f1f9; // 原本为 #d9edf7
521
521
  @state-info-border: #F2F6FA; // darken(spin(@state-info-bg, -10), 7%);
522
522
 
523
523
  @state-warning-text: #8a6d3b;
@@ -692,7 +692,7 @@
692
692
  // 修改前
693
693
  // @list-group-bg: #fff;
694
694
  // 修改后
695
- @list-group-bg: #4C637B;
695
+ @list-group-bg: #4a7cae;
696
696
  //** `.list-group-item` border color
697
697
  @list-group-border: #697D93;
698
698
  //** List group border radius