4.21.9 well样式主题

well样式的调整也是背景、边框颜色这几样。源码如下:

  1. // 源码338行
  2. .well {
  3. background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
  4. background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
  5. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8',
  6. endColorstr='#fff5f5f5', GradientType=0);
  7. background-repeat: repeat-x;
  8. border-color: #dcdcdc;
  9. -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255,
  10. 255, .1);
  11. box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255,
  12. 255, 255, .1);
  13. }

注意,theme文件不是必须要引用的,如果喜欢这种风格才引用它;如果要定制自己的风格,则可以引用自己的theme名称,比如bootstrao-theme-flatui.css。但是一定要注意,该文件一定要在bootstarp.min.css文件之后才能引用,否则会覆盖默认的效果。