4.21.7 列表组样式主题
对于列表组,首先是调整了列表组容器的圆角和阴影设置,源码如下:
- // 源码283行
- .list-group {
- border-radius: 4px;
- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
- }
其次是对当前高亮的列表项的阴影、背景以及边框颜色进行了调整。
- // 源码288行
- .list-group-item.active,
- .list-group-item.active:hover,
- .list-group-item.active:focus {
- text-shadow: 0 -1px 0 #3071a9;
- background-image: -webkit-linear-gradient(top, #428bca 0%, #3278b3 100%);
- background-image: linear-gradient(to bottom, #428bca 0%, #3278b3 100%);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca',
- endColorstr='#ff3278b3', GradientType=0);
- background-repeat: repeat-x;
- border-color: #3278b3;
- }