繁体   English   中英

Google自定义搜索基础5 Zurb显示问题

[英]Google Custom Search Foundation 5 Zurb Display Issue

我正在使用Zurb的Foundation 5,并且关于Google自定义搜索引擎出现显示问题。 搜索整个互联网,但未找到任何线索。 有人可以帮忙吗?

将此添加到您的Google搜索框CSS:

    background-image: inherit;
    box-sizing: content-box;

将此添加到您的CSS文件。

.gsc-control-cse  * {
 -moz-box-sizing: content-box !important;
 -webkit-box-sizing: content-box !importantx;
 box-sizing:  content-box !important;
}

.gsc-control-cse input {
 box-shadow: none !important;
}

.gsc-control-cse input:focus {
    outline: none;
}

.gsc-control-cse table {
 border: none;
 background: transparent;
}

.gsc-input-box, .gsc-search-box .gsc-input>input, .gsc-input-box-hover {
 -moz-box-shadow: none !important;
 -webkit-box-shadow: none !important;
 box-shadow: none !important;
}

归功于Manny

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM