我已从Foundation 4升级到Foundation 5,我正在尝试使用Sass在顶部栏中设置自定义断点而不使用。
在基础4中,您可以在foundation.css文件中更改以下css代码:
.top-bar-js-breakpoint {
width: 48em !important;
...
}
@media only screen and (min-width: 48em) {
...
}
但是对于Foundation 5来说这是不可能的,至少我无法找到改变它的CSS或JS代码。
我还尝试重新下载一个新的自定义基础安装,TOP BAR BREAKPOINT
设置为9999em,但这不起作用。即使删除了所有以前的文件和代码。
这个简单的问题让我感到疯狂,所以如果有人能用简单的溶剂让我摆脱痛苦,那就太棒了!
提前致谢。
答案 0 :(得分:7)
在代码中找到meta.foundation-mq-topbar
css选择器,并将width
属性值更改为48em或您想要的任何其他大小。
另一个解决方案: Foundation将组件媒体查询彼此分开,因此您可以更改每个组件的断点。看看这段代码:
@media only screen and (min-width: 40.063em) {
.top-bar {
background: #333333;
*zoom: 1;
overflow: visible; }
.top-bar:before, .top-bar:after {
content: " ";
display: table; }
.top-bar:after {
clear: both; }
.top-bar .toggle-topbar {
display: none; }
.top-bar .title-area {
float: left; }
.top-bar .name h1 a {
width: auto; }
.top-bar input,
.top-bar .button {
font-size: 0.875rem;
position: relative;
top: 7px; }
.top-bar.expanded {
background: #333333; }
.contain-to-grid .top-bar {
max-width: 62.5em;
margin: 0 auto;
margin-bottom: 0; }
.top-bar-section {
-webkit-transition: none 0 0;
-moz-transition: none 0 0;
transition: none 0 0;
left: 0 !important; }
.top-bar-section ul {
width: auto;
height: auto !important;
display: inline; }
.top-bar-section ul li {
float: left; }
.top-bar-section ul li .js-generated {
display: none; }
.top-bar-section li.hover > a:not(.button) {
background: #272727;
color: white; }
.top-bar-section li a:not(.button) {
padding: 0 15px;
line-height: 45px;
background: #333333; }
.top-bar-section li a:not(.button):hover {
background: #272727; }
.top-bar-section .has-dropdown > a {
padding-right: 35px !important; }
.top-bar-section .has-dropdown > a:after {
content: "";
display: block;
width: 0;
height: 0;
border: inset 5px;
border-color: rgba(255, 255, 255, 0.4) transparent transparent transparent;
border-top-style: solid;
margin-top: -2.5px;
top: 22.5px; }
.top-bar-section .has-dropdown.moved {
position: relative; }
.top-bar-section .has-dropdown.moved > .dropdown {
display: none; }
.top-bar-section .has-dropdown.hover > .dropdown, .top-bar-section .has-dropdown.not-click:hover > .dropdown {
display: block; }
.top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after {
border: none;
content: "\00bb";
top: 1rem;
margin-top: -2px;
right: 5px; }
.top-bar-section .dropdown {
left: 0;
top: auto;
background: transparent;
min-width: 100%; }
.top-bar-section .dropdown li a {
color: white;
line-height: 1;
white-space: nowrap;
padding: 12px 15px;
background: #333333; }
.top-bar-section .dropdown li label {
white-space: nowrap;
background: #333333; }
.top-bar-section .dropdown li .dropdown {
left: 100%;
top: 0; }
.top-bar-section > ul > .divider, .top-bar-section > ul > [role="separator"] {
border-bottom: none;
border-top: none;
border-right: solid 1px #4d4d4d;
clear: none;
height: 45px;
width: 0; }
.top-bar-section .has-form {
background: #333333;
padding: 0 15px;
height: 45px; }
.top-bar-section ul.right li .dropdown {
left: auto;
right: 0; }
.top-bar-section ul.right li .dropdown li .dropdown {
right: 100%; }
.no-js .top-bar-section ul li:hover > a {
background: #272727;
color: white; }
.no-js .top-bar-section ul li:active > a {
background: #2ba6cb;
color: white; }
.no-js .top-bar-section .has-dropdown:hover > .dropdown {
display: block; }
}
您必须找到上面的代码,只需更改此媒体查询即可更改顶部条形断点。
答案 1 :(得分:2)
好的,我认为我在SCSS编译后固定了CSS更改。
在CSS中搜索.top-bar
并查找与下面类似的条目,并根据需要更改“981px”:
@media only screen and (min-width: 981px) {
.top-bar {
background: linear-gradient(to bottom, #7d7d7d 0%, #646464 100%);
*zoom: 1;
overflow: visible
}
在CSS中搜索meta.foundation-mq-topbar
并根据需要更改“981px”:
meta.foundation-mq-topbar {
font-family: "/only screen and (min-width: 981px)/";
width: 981px
}
答案 2 :(得分:2)
基本上我在阅读Parhum的解决方案后所做的工作。搜索
meta.foundation-MQ-顶栏。应该有一个与之对应的宽度,在我的情况下是40.063em。这个必须改变。现在,查找相应的媒体查询(即@media only屏幕和(min-width:40.063em))更改两行中宽度的两个。现在它应该工作正常。
meta.foundation-mq-topbar {
font-family: "/only screen and (min-width:64.00em)/";
width: 64.00em !the width of this must change; }
@media only screen and (min-width: 64.00em) {
.top-bar {
background: #333333;