简体   繁体   English

在Twitter Bootstrap 2.0.4中更改导航栏颜色

[英]Change navbar color in twitter bootstrap 2.0.4

Was wondering if anyone knew how to change the navbar color in bootstrap v2.0.4 想知道是否有人知道如何在bootstrap v2.0.4中更改导航栏颜色

I tried this solution it does not seem to work: navbar color in Twitter Bootstrap 我尝试了这种解决方案,它似乎不起作用: Twitter Bootstrap中的导航栏颜色

Any other solutions? 还有其他解决方案吗? I have tried the customized bootstrap packages, but I am so far into development I can make a switch like that. 我已经尝试了定制的引导程序包,但是到目前为止,我可以进行这样的切换。

Code: 码:

.navbar-inner {
  background-color: #2c2c2c; /* fallback color, place your own */

  /* Gradients for modern browsers, replace as you see fit */
  background-image: -moz-linear-gradient(top, #333333, #222222);
  background-image: -ms-linear-gradient(top, #333333, #222222);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
  background-image: -webkit-linear-gradient(top, #333333, #222222);
  background-image: -o-linear-gradient(top, #333333, #222222);
  background-image: linear-gradient(top, #333333, #222222);
  background-repeat: repeat-x;

 /* IE8-9 gradient filter */
 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333',    endColorstr='#222222', GradientType=0);}

The color of the navbar come from the .navbar-inner lines 3582 to 3589 in bootstrap.css (for the version 2.0.4) 导航栏的颜色来自bootstrap.css中的.navbar内线3582至3589(对于2.0.4版)

.navbar-inner在boostrap.css中

The css properties are applied in a specific order css属性以特定顺序应用

  • background-color (recognised by all web browser) 背景颜色(所有网络浏览器均可识别)
  • vendor prefixes -moz, -ms, -webkit, -o (to serve specific web browser) 供应商前缀-moz,-ms,-webkit,-o(用于特定的Web浏览器)
  • the standard (but not implemented yet) 标准(但尚未实施)

Example of background-color override in boostrap.css with Chrome: Chrome的boostrap.css中背景颜色覆盖的示例:

background-color:#ffffff; has been replaced with background-color:#eab92d directly into boostrap.css (it's not recommended but it's just to illustrate the point). 已直接在boostrap.css中替换为background-color:#eab92d (不建议这样做,但这只是为了说明这一点)。

background-color: #EAB92D is applied first background-color: #EAB92D首先应用

-moz-linear-gradient and -ms-linear-gradient are ignored -moz-linear-gradient-ms-linear-gradient被忽略

-webkit-gradient cover background: #EAB92D (back to the default gradient) -webkit-gradient封面background: #EAB92D (返回默认渐变)

-webkit-linear-gradient overrides -webkit-gradient -webkit-linear-gradient覆盖-webkit-gradient

-o-linear-gradient and linear-gradient are ignored -o-linear-gradientlinear-gradient被忽略

.navbar-inner替换为backgroud颜色

.navbar-inner,带有backgroud-color替换结果

Change the color of .navbar-inner from colorzilla 从colorzilla更改.navbar-inner的颜色

You can easily create a cross browser gradient with colorzilla 您可以使用colorzilla轻松创建跨浏览器渐变

Create a <style> tag in <head> after bootstrap.css is called. 在bootstrap.css被调用之后,在<head>创建一个<style>标记。

Then copy the css generated by colorzilla in .navbar-inner {} inside the <style> tag. 然后在<style>标签内的.navbar-inner {}复制colorzilla生成的css。

.navbar-inner {
  background: #eab92d; /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VhYjkyZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjNzk4MTAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top,  #eab92d 0%, #c79810 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eab92d), color-stop(100%,#c79810)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  #eab92d 0%,#c79810 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  #eab92d 0%,#c79810 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  #eab92d 0%,#c79810 100%); /* IE10+ */
  background: linear-gradient(to bottom,  #eab92d 0%,#c79810 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eab92d', endColorstr='#c79810',GradientType=0 ); /* IE6-8 */
}

The css generated by colorzilla overrides all the css properties from boostrap.css as you can see below 由colorzilla生成的css会覆盖boostrap.css中的所有css属性,如下所示

.navbar-内部较大

.navbar-内部小在此处输入图片说明

Changing '.navbar-inner' is not enough few other bits needs to be changed. 更改“ .navbar-inner”还不够,需要更改一些其他位。

.navbar .btn-navbar (the button to open the menu when width<768px) share the same properties as .navbar-inner .navbar .btn-navbar (当width <768px时打开菜单的按钮)与.navbar-inner具有相同的属性

.navbar-inner, .navbar .btn-navbar {
    background: #eab92d; /* Old browsers */
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VhYjkyZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjNzk4MTAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top,  #eab92d 0%, #c79810 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eab92d), color-stop(100%,#c79810)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #eab92d 0%,#c79810 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #eab92d 0%,#c79810 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #eab92d 0%,#c79810 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #eab92d 0%,#c79810 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eab92d', endColorstr='#c79810',GradientType=0 ); /* IE6-8 */
    }

.divider-vertical (the vertical separator) uses the same colors used in the gradient .divider-vertical (垂直分隔符)使用渐变中使用的相同颜色

.navbar .divider-vertical {
    background-color: #c79810;
    border-right: 1px solid #eab92d;
    }

.active (the highlight on the active page) is corresponding to the dark color of the gradient .active (活动页面上的突出显示)与渐变的暗色相对应

.navbar .nav .active > a, .navbar .nav .active > a:hover {
    background-color: #c79810;
    }

the color of the link on the menu needs to be changed as well, in this case 75% from the fair color of the gradient to white. 菜单上链接的颜色也需要更改,在这种情况下,从渐变的纯色到白色为75%。

.navbar .nav > li > a {
    color: #f9ed9d;
    }

And finally the color of the .brand , in this case 50% from the fair color of the gradient to white. 最后是.brand的颜色,在这种情况下,是渐变的纯色到白色的50%。

.navbar-fixed-top .brand {
    color: #634c08;color: #f4dc87;
    }

The :hover color of links has not been changed bu can be with: 链接的:hover颜色未更改,但可以使用:

.navbar .nav > li > a:hover {color:white;}

Same for the color of the active link 活动链接的颜色相同

.navbar .nav .active > a, .navbar .nav .active > a:hover {color:white;}

.navbar-内部结果大.navbar-内部结果小

One simple method (with the same result that got baptme) : I use it in rails for conditional layout, (with gem bootstrap-sass). 一种简单的方法(具有与baptme相同的结果):我在rails中使用它进行条件布局(使用gem bootstrap-sass)。

in your scss file, before importing bootstrap, define some variables: 在您的scss文件中,在导入引导程序之前,定义一些变量:

$navbarBackground:                #c79810 ;
$navbarBackgroundHighlight:       #eab92d ;
$navbarText:                      #f9ed9d ;
$navbarLinkColor:                 #f9ed9d ;
$navbarSearchPlaceholderColor:    #EEC844 ;

@import 'bootstrap' ;

And got it :) 知道了:)

您还可以使用位于http://stylebootstrap.info/的Twitter Bootstrap主题生成器,并轻松自定义主题。

如果只想将Bootsrap的深色外观用于导航栏,则可以将.navbar-inverse类添加到导航栏元素。

<div class="navbar navbar-inverse">

Take a look using firebug. 看一下使用萤火虫。 You can click on the exact navbar in question and see exactly which css styles apply to it. 您可以单击有问题的确切导航栏,并确切查看适用于其的CSS样式。

Extending @Traz super concise answer for LESS for people using twitter-bootstrap-rails gem 为使用twitter-bootstrap-rails gem的人们扩展@Traz为LESS的简明答案

@navbarBackground:                #c79810 ;
@navbarBackgroundHighlight:       #eab92d ;
@navbarText:                      #f9ed9d ;
@navbarLinkColor:                 #f9ed9d ;
@navbarSearchPlaceholderColor:    #EEC844 ;

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

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