深度了解bootstrap源码之sass篇(九)

前言

这一章主要学习type(文本类)。文本格式、尺寸是css内容排版的一个重点,学习bootstrap是如何处理排版的。

## 研究对象
type.scss、_text-emphasis.scss(mixins)、_background-variand.scss(mixins)、_text-overflow.scss(mixins)

_text-emphasis.scss

源文:

1
2
3
4
5
6
7
8
9
10
// 排版
@mixin text-emphasis-variant($parent, $color) {
#{$parent} { // #{} 注①
color: $color;
}
a#{$parent}:hover {
color: darken($color, 10%); // 注②。
}
}

_background-variand.scsss

源文

1
2
3
4
5
6
7
8
9
// 背景色倒置,用于type中上下文背景和文字颜色
@mixin bg-variant($parent, $color) {
#{$parent} {
background-color: $color;
}
a#{$parent}:hover {
background-color: darken($color, 10%);
}
}

_text-overflow.scss

源文:

1
2
3
4
5
6
// inline-block或block的元素的文本样式处理
@mixin text-overflow() {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

type.scss

源文:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
//
// 字体排版
// --------------------------------------------------
// Heading标题(head部分)
// -------------------------
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
font-family: $headings-font-family;
font-weight: $headings-font-weight;
line-height: $headings-line-height;
color: $headings-color;
small,
.small {
font-weight: normal;
line-height: 1; // h1~6的行高和small的行高相差0.1,视觉上没有差距。
color: $headings-small-color;
}
}
h1, .h1,
h2, .h2,
h3, .h3 {
margin-top: $line-height-computed; //前篇有提到过变量$line-height-computed用于计算出文本的margin距离,20px,且是默认值。
margin-bottom: ($line-height-computed / 2); //10px
small,
.small {
font-size: 65%;
}
}
h4, .h4,
h5, .h5,
h6, .h6 {
margin-top: ($line-height-computed / 2); // bootstrap将h1~3的margintop和h4~6分开计算。
margin-bottom: ($line-height-computed / 2);
small,
.small {
font-size: 75%; // 嵌套的samll其font-size值差也缩小了。
}
}
h1, .h1 { font-size: $font-size-h1; }
h2, .h2 { font-size: $font-size-h2; }
h3, .h3 { font-size: $font-size-h3; }
h4, .h4 { font-size: $font-size-h4; }
h5, .h5 { font-size: $font-size-h5; }
h6, .h6 { font-size: $font-size-h6; }
// 主体文本(body部分)
// -------------------------
//Bootstrap 将全局 font-size 设置为 14px,line-height 设置为 1.428。这些属性直接赋予 <body> 元素和所有段落元素。另外,<p> (段落)元素还被设置了等于 1/2 行高(即 10px)的底部外边距(margin)。
p {
margin: 0 0 ($line-height-computed / 2);
}
// 添加lead样式的元素可以让内容突出显示
.lead {
margin-bottom: $line-height-computed;
font-size: floor(($font-size-base * 1.15));
font-weight: 300;
line-height: 1.4;
@media (min-width: $screen-sm-min) {
font-size: ($font-size-base * 1.5); //自适应处理,当浏览器可视区的宽度大于768px时,font-size值更大
}
}
// 各种各样强调类型的文本
// -------------------------
// 类如: (12px小字号 / 14px 基础字号) * 100% = 约等于 85%
small,
.small {
font-size: floor((100% * $font-size-small / $font-size-base));
}
mark,
.mark {
background-color: $state-warning-bg; //#fcf8e3 偏淡黄色
padding: .2em;// 2~3px之间。
}
// 文本对齐
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-justify { text-align: justify; }
.text-nowrap { white-space: nowrap; }
// 文本转换
.text-lowercase { text-transform: lowercase; } //全小写
.text-uppercase { text-transform: uppercase; } //全大写
.text-capitalize { text-transform: capitalize; }//文本中的每个单词以大写字母开头。
// 背景颜色
.text-muted {
color: $text-muted; /#777 深灰色 $text-muted继承$gray-light
}
// 调用mixins(text-emphasis)中text-emphasis-variant方法。bootstrap的这种css组件抽离、封装技巧很赞!
@include text-emphasis-variant('.text-primary', $brand-primary);
@include text-emphasis-variant('.text-success', $state-success-text);
@include text-emphasis-variant('.text-info', $state-info-text);
@include text-emphasis-variant('.text-warning', $state-warning-text);
@include text-emphasis-variant('.text-danger', $state-danger-text);
// 上下文情景颜色
.bg-primary {
//默认背景色是#337ab7,所以文字只需要是白色即可
color: #fff;
}
@include bg-variant('.bg-primary', $brand-primary);
@include bg-variant('.bg-success', $state-success-bg);
@include bg-variant('.bg-info', $state-info-bg);
@include bg-variant('.bg-warning', $state-warning-bg);
@include bg-variant('.bg-danger', $state-danger-bg);
// 页面头部文字,但不等于是h1
// -------------------------
.page-header {
padding-bottom: (($line-height-computed / 2) - 1); // 距离计算,前面文章说了很多了。
margin: ($line-height-computed * 2) 0 $line-height-computed;
border-bottom: 1px solid $page-header-border-color;
}
// 列表
// -------------------------
// 无序和有序列表
ul,
ol {
margin-top: 0;
margin-bottom: ($line-height-computed / 2);
ul,
ol {
margin-bottom: 0;
}
}
// 列表选项
// 此处创建list-unstyled方法,目的是封装兼容样式,消除不必要的默认样式或是继承的样式
@mixin list-unstyled {
padding-left: 0;
list-style: none;
}
// 调用
.list-unstyled {
@include list-unstyled;
}
// inline列表转化为inline-block列表
.list-inline {
@include list-unstyled;
margin-left: -5px; // 消除第一个li标签带来的5px的间距。
> li {
display: inline-block;
padding-left: 5px;
padding-right: 5px;
}
}
// 描述列表
dl {
margin-top: 0; // 移除浏览器默认样式
margin-bottom: $line-height-computed;
}
dt,
dd {
line-height: $line-height-base;
}
dt {
font-weight: bold;
}
dd {
margin-left: 0; // Undo browser default
}
// 水平排列的描述列表
// ----------------------------
.dl-horizontal {
dd {
@include clearfix; // 解决空的dd标签样式问题,
}
// 默认的水平排列的描述列表没有其它样式,这里做了当浏览器可视区宽度大于768px时 为水平排列。否则无样式。
@media (min-width: $grid-float-breakpoint) { // $grid-float-breakpoint指向$screen-sm: 768px !default;
dt {
float: left;
width: ($dl-horizontal-offset - 20); // $dl-horizontal-offset指向$component-offset-horizontal: 180px !default;
clear: left;
text-align: right;
@include text-overflow; // 文本长度超过指定width(160px)时,出现省略号
}
dd {
margin-left: $dl-horizontal-offset; // 指向$dl-horizontal-offset 180px。如此一来,则实现了水平排列。
}
}
}
// 一些另类的文本输出样式
// -------------------------
// 缩写和首字母缩写简称[标题]。
// 添加数据*-属性帮助工具提示插件
// issues:https://github.com/twbs/bootstrap/issues/5257
abbr[data-original-title] {
cursor: help;
border-bottom: 1px dotted $abbr-border-color;
}
// 首字母缩略语
.initialism {
font-size: 90%;
text-transform: uppercase; // 大写转换,属性值lowercase是小写转换
}
// 引用样式,在md语言中 类似 > coding... 的效果
blockquote {
padding: ($line-height-computed / 2) $line-height-computed;
margin: 0 0 $line-height-computed;
font-size: $blockquote-font-size;
border-left: 5px solid $blockquote-border-color;
p,
ul,
ol {
&:last-child {
margin-bottom: 0;
}
}
// 在3.1.0版本中不赞成这样,small显的太小了。
// issues: https://github.com/twbs/bootstrap/issues/11660
footer,
small,
.small {
display: block;
font-size: 80%; // back to default font-size
line-height: $line-height-base;
color: $blockquote-small-color;
&:before {
content: '\2014 \00A0'; // em dash, nbsp
}
}
}
// 文本向右对齐
//
// `blockquote.pull-right` 样在3.1.0版本中已弃用
.blockquote-reverse,
blockquote.pull-right {
padding-right: 15px;
padding-left: 0;
border-right: 5px solid $blockquote-border-color;
border-left: 0;
text-align: right;
// Account for citation
footer,
small,
.small {
&:before { content: ''; }
&:after {
content: '\00A0 \2014'; // 破折号,顺便发现\00BB是这个玩意">>"
}
}
}
// 地址样式
address {
margin-bottom: $line-height-computed;
font-style: normal;
line-height: $line-height-base;
}

相关说明

  • 注①:#{} 变量选择器。

    用于调用css选择器例如 $parent = ‘.className’ ;#{$parent}会将其翻译出来。

  • 注②:sass颜色函数
    • lighten(#cc3, 10%) // #d6d65c 减淡
    • darken(#cc3, 10%) // #a3a329 加深
    • grayscale(#cc3) // #808080 灰度(类似PS的去色)
    • complement(#cc3) // #33c 补足(补充色,类似三个颜色的通道里计算出相反的色差)