gpt4 book ai didi

html - 如何修复我的列表,这样我就不必在图标更新前切换两次?

转载 作者:搜寻专家 更新时间:2023-10-31 08:52:43 25 4
gpt4 key购买 nike

基本上,当我加载我的页面然后下拉我的外部可折叠菜单(.admin)或嵌套可折叠菜单(.unitsofstudy)时,会发生什么情况,它不会更新我使用 :after 选择器设置的字形图标,除非我切换它两次。

谁能看一看,看看他们是否能找出我搞砸的地方?我已经在这几个小时了,现在试图修复但没有成功。如果需要更多信息,请告诉我。

HTML:

<div id="sidebar-collapse" class="col-sm-3 col-lg-2 sidebar">
<ul class="nav menu" id="navmenu-sidebar">
<!-- Admin dropdown -->
<li>
<a class="admin" data-toggle="collapse" href="#admin"><i class="fa fa-tasks" style="margin-right: 16px;"></i>Admin</a>
<ul id="admin" class="nav collapse">
<li>
<a class="unitsofstudy" data-toggle="collapse" href="#unitsofstudy"> &nbsp; &nbsp;<i class="fa fa-book" style="margin-right: 12px;"></i>Units of Study</a>
<ul id="unitsofstudy" class="nav collapse">
<li>
<a href="@Url.Content("~/Admin/Units")"> &nbsp; &nbsp; &nbsp; &nbsp;<i class="fa fa-book" style="margin-right: 8px;"></i> View Units</a>
</li>
<li>
<a href="@Url.Content("~/Admin/NewOfferedUnit")"> &nbsp; &nbsp; &nbsp; &nbsp;<i class="fa fa-plus" style="margin-right: 10px;"></i> Create Unit Offerings</a>
</li>
<li>
<a href="@Url.Content("~/Admin/NewUnit")"> &nbsp; &nbsp; &nbsp; &nbsp;<i class="fa fa-plus" style="margin-right: 10px;"></i> Register Units</a>
</li>
<li>
<a href="@Url.Content("~/Admin/NewSemester")"> &nbsp; &nbsp; &nbsp; &nbsp;<i class="fa fa-plus" style="margin-right: 10px;"></i> Register Semesters</a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>

我的 CSS:

.admin:after, .unitsofstudy:after {
font-family: 'Glyphicons Halflings';
content: "\e114";
float: right;
color: grey;
}
.admin.collapsed:after, .unitsofstudy.collapsed:after {
content: "\e080";
}

最佳答案

你需要给你的 anchor 一个初始类 .collapsed

<li>
<a class="admin collapsed" data-toggle="collapse" href="#admin">
<i class="fa fa-tasks" style="margin-right: 16px;"></i>Admin
</a>
</li>

所以类 admin 和 unitsofstudy 让 bootstrap 知道菜单的初始状态是折叠的

工作示例

http://codepen.io/jcoulterdesign/pen/6443069430f54e0b635e726c2cb9da02

关于html - 如何修复我的列表,这样我就不必在图标更新前切换两次?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37145070/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com