4.21.9 well样式主题
well样式的调整也是背景、边框颜色这几样。源码如下:
- // 源码338行
- .well {
- background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
- background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8',
- endColorstr='#fff5f5f5', GradientType=0);
- background-repeat: repeat-x;
- border-color: #dcdcdc;
- -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255,
- 255, .1);
- box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255,
- 255, 255, .1);
- }
注意,theme文件不是必须要引用的,如果喜欢这种风格才引用它;如果要定制自己的风格,则可以引用自己的theme名称,比如bootstrao-theme-flatui.css。但是一定要注意,该文件一定要在bootstarp.min.css文件之后才能引用,否则会覆盖默认的效果。