mirror of https://github.com/ColorlibHQ/AdminLTE
Fix #1269
parent
b621ed77f2
commit
4758ab5216
|
@ -216,6 +216,10 @@
|
||||||
left: auto;
|
left: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dropdown-menu > li > a {
|
||||||
|
color: #444!important;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1777,6 +1777,9 @@ a:focus {
|
||||||
right: 0;
|
right: 0;
|
||||||
left: auto;
|
left: auto;
|
||||||
}
|
}
|
||||||
|
.box-header > .box-tools .dropdown-menu > li > a {
|
||||||
|
color: #444!important;
|
||||||
|
}
|
||||||
.btn-box-tool {
|
.btn-box-tool {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1777,6 +1777,9 @@ a:focus {
|
||||||
right: 0;
|
right: 0;
|
||||||
left: auto;
|
left: auto;
|
||||||
}
|
}
|
||||||
|
.box-header > .box-tools .dropdown-menu > li > a {
|
||||||
|
color: #444!important;
|
||||||
|
}
|
||||||
.btn-box-tool {
|
.btn-box-tool {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
|
File diff suppressed because one or more lines are too long
21
starter.html
21
starter.html
|
@ -293,7 +293,28 @@ desired effect
|
||||||
<section class="content">
|
<section class="content">
|
||||||
|
|
||||||
<!-- Your Page Content Here -->
|
<!-- Your Page Content Here -->
|
||||||
|
<div class="box box-success box-solid">
|
||||||
|
<div class="box-header with-border">
|
||||||
|
<h3 class="box-title">My Title</h3>
|
||||||
|
<div class="box-tools pull-right">
|
||||||
|
<div class="btn-group open">
|
||||||
|
<button class="btn btn-xs btn-primary dropdown-toggle" data-toggle="dropdown">
|
||||||
|
<i class="fa fa-cog"></i> <span class="caret"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<ul class="dropdown-menu">
|
||||||
|
<li><a href="#" title="edit"><i class="fa fa-pencil"></i> Edit</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- /.box-tools -->
|
||||||
|
</div>
|
||||||
|
<!-- /.box-header -->
|
||||||
|
<div class="box-body">
|
||||||
|
The body of the box
|
||||||
|
</div>
|
||||||
|
<!-- /.box-body -->
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<!-- /.content -->
|
<!-- /.content -->
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue