Skip to content

Commit 4758ab5

Browse files
committed
Fix #1269
1 parent b621ed7 commit 4758ab5

File tree

6 files changed

+33
-2
lines changed

6 files changed

+33
-2
lines changed

build/less/boxes.less

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,10 @@
216216
left: auto;
217217
}
218218
}
219+
220+
.dropdown-menu > li > a {
221+
color: #444!important;
222+
}
219223
}
220224
}
221225

dist/css/AdminLTE.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1777,6 +1777,9 @@ a:focus {
17771777
right: 0;
17781778
left: auto;
17791779
}
1780+
.box-header > .box-tools .dropdown-menu > li > a {
1781+
color: #444!important;
1782+
}
17801783
.btn-box-tool {
17811784
padding: 5px;
17821785
font-size: 12px;

dist/css/AdminLTE.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/alt/AdminLTE-without-plugins.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1777,6 +1777,9 @@ a:focus {
17771777
right: 0;
17781778
left: auto;
17791779
}
1780+
.box-header > .box-tools .dropdown-menu > li > a {
1781+
color: #444!important;
1782+
}
17801783
.btn-box-tool {
17811784
padding: 5px;
17821785
font-size: 12px;

dist/css/alt/AdminLTE-without-plugins.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

starter.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,28 @@ <h1>
293293
<section class="content">
294294

295295
<!-- Your Page Content Here -->
296+
<div class="box box-success box-solid">
297+
<div class="box-header with-border">
298+
<h3 class="box-title">My Title</h3>
299+
<div class="box-tools pull-right">
300+
<div class="btn-group open">
301+
<button class="btn btn-xs btn-primary dropdown-toggle" data-toggle="dropdown">
302+
<i class="fa fa-cog"></i> <span class="caret"></span>
303+
</button>
296304

305+
<ul class="dropdown-menu">
306+
<li><a href="#" title="edit"><i class="fa fa-pencil"></i> Edit</a></li>
307+
</ul>
308+
</div>
309+
</div>
310+
<!-- /.box-tools -->
311+
</div>
312+
<!-- /.box-header -->
313+
<div class="box-body">
314+
The body of the box
315+
</div>
316+
<!-- /.box-body -->
317+
</div>
297318
</section>
298319
<!-- /.content -->
299320
</div>

0 commit comments

Comments
 (0)