Skip to content

Commit 02efe00

Browse files
committed
Fix #1256
1 parent 4758ab5 commit 02efe00

20 files changed

+51
-52
lines changed

build/less/boxes.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
border-top-color: @green;
2929
}
3030
&.box-default {
31-
border-top-color: @gray;
31+
border-top-color: @gray-lte;
3232
}
3333

3434
// collapsed mode
@@ -384,7 +384,7 @@
384384
}
385385

386386
.label {
387-
background: @gray !important;
387+
background: @gray-lte !important;
388388
}
389389
}
390390
}

build/less/control-sidebar.less

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -229,11 +229,11 @@
229229
&,
230230
+ .control-sidebar-bg {
231231
background: @sidebar-light-bg;
232-
border-left: 1px solid @gray;
232+
border-left: 1px solid @gray-lte;
233233
}
234234
// Sidebar tabs
235235
.nav-tabs.control-sidebar-tabs {
236-
border-bottom: @gray;
236+
border-bottom: @gray-lte;
237237
> li {
238238
> a {
239239
background: darken(@sidebar-light-bg, 5%);
@@ -242,8 +242,8 @@
242242
&,
243243
&:hover,
244244
&:focus {
245-
border-left-color: @gray;
246-
border-bottom-color: @gray;
245+
border-left-color: @gray-lte;
246+
border-bottom-color: @gray-lte;
247247
}
248248
&:hover,
249249
&:focus,

build/less/core.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ body {
8282
background: #fff;
8383
padding: 15px;
8484
color: #444;
85-
border-top: 1px solid @gray;
85+
border-top: 1px solid @gray-lte;
8686
}
8787

8888
/* Fixed layout */

build/less/forms.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
.form-control {
66
.border-radius(@input-radius);
77
box-shadow: none;
8-
border-color: @gray;
8+
border-color: @gray-lte;
99
&:focus {
1010
border-color: @light-blue;
1111
box-shadow: none;
@@ -72,7 +72,7 @@
7272
.input-group {
7373
.input-group-addon {
7474
.border-radius(@input-radius);
75-
border-color: @gray;
75+
border-color: @gray-lte;
7676
background-color: #fff;
7777
}
7878
}

build/less/header.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@
182182
top: 0;
183183
right: 0;
184184
float: none;
185-
background: @gray;
185+
background: @gray-lte;
186186
padding-left: 10px;
187187
li:before {
188188
color: darken(@gray, 20%);

build/less/labels.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* ----------------
44
*/
55
.label-default {
6-
background-color: @gray;
6+
background-color: @gray-lte;
77
color: #444;
88
}
99

build/less/lockscreen.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55
/* ADD THIS CLASS TO THE <BODY> TAG */
66
.lockscreen {
7-
background: @gray;
7+
background: @gray-lte;
88
}
99

1010
.lockscreen-logo {

build/less/login_and_register.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
.login-page,
1818
.register-page {
19-
background: @gray;
19+
background: @gray-lte;
2020
}
2121

2222
.login-box,

build/less/miscellaneous.less

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383

8484
.bg-gray {
8585
color: #000;
86-
background-color: @gray !important;
86+
background-color: @gray-lte !important;
8787
}
8888

8989
.bg-gray-light {
@@ -251,7 +251,7 @@
251251
}
252252

253253
.text-gray {
254-
color: @gray !important;
254+
color: @gray-lte !important;
255255
}
256256

257257
.text-navy {
@@ -533,12 +533,12 @@
533533

534534
// Image bordered
535535
.img-bordered {
536-
border: 3px solid @gray;
536+
border: 3px solid @gray-lte;
537537
padding: 3px;
538538
}
539539

540540
.img-bordered-sm {
541-
border: 2px solid @gray;
541+
border: 2px solid @gray-lte;
542542
padding: 2px;
543543
}
544544

build/less/mixins.less

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@
211211
}
212212
.content-wrapper,
213213
.main-footer {
214-
border-left: 1px solid @gray;
214+
border-left: 1px solid @gray-lte;
215215
}
216216
//User Panel (resides in the sidebar)
217217
.user-panel {
@@ -278,7 +278,7 @@
278278
//The sidebar search form
279279
.sidebar-form {
280280
.border-radius(3px);
281-
border: 1px solid @gray; //darken(@sidebar-light-bg, 5%);
281+
border: 1px solid @gray-lte; //darken(@sidebar-light-bg, 5%);
282282
margin: 10px 10px;
283283
input[type="text"],
284284
.btn {
@@ -308,7 +308,7 @@
308308
@media (min-width: @screen-sm-min) {
309309
&.sidebar-mini.sidebar-collapse {
310310
.sidebar-menu > li > .treeview-menu {
311-
border-left: 1px solid @gray;
311+
border-left: 1px solid @gray-lte;
312312
}
313313
}
314314
}

0 commit comments

Comments
 (0)