codecheck

Форк
0
327 строк · 8.2 Кб
1
/// Border color of a panel header
2
/// @group panel
3
$panelHeaderBorderColor: #dee2e6;
4

5
/// Border of a panel header
6
/// @group panel
7
$panelHeaderBorder: 1px solid #dee2e6;
8

9
/// Background of a panel header
10
/// @group panel
11
$panelHeaderBg: #f8f9fa;
12

13
/// Text color of a panel header
14
/// @group panel
15
$panelHeaderTextColor: $textColor;
16

17
/// Font weight of a panel header
18
/// @group panel
19
$panelHeaderFontWeight: 600;
20

21
/// Padding of a panel header
22
/// @group panel
23
$panelHeaderPadding: 1rem;
24

25
/// Font weight of a toggleable panel header
26
/// @group panel
27
$panelToggleableHeaderPadding: .5rem 1rem;
28

29
/// Background of a panel header in hover state e.g. toggleable state
30
/// @group panel
31
$panelHeaderHoverBg: #e9ecef;
32

33
/// Border color of a panel header in hover state e.g. toggleable state
34
/// @group panel
35
$panelHeaderHoverBorderColor: #dee2e6;
36

37
/// Text color of a panel header in hover state e.g. toggleable state
38
/// @group panel
39
$panelHeaderTextHoverColor: #495057;
40

41
/// Border color for the content section of a panel
42
/// @group panel
43
$panelContentBorderColor: #dee2e6;
44

45
/// Border for the content section of a panel
46
/// @group panel
47
$panelContentBorder: 1px solid #dee2e6;
48

49
/// Background for the content section of a panel
50
/// @group panel
51
$panelContentBg: #ffffff;
52

53
/// Background for the striped row.
54
/// @group panel
55
$panelContentEvenRowBg: #e9ecef;
56

57
/// Text color for the content section of a panel
58
/// @group panel
59
$panelContentTextColor: $textColor;
60

61
/// Padding for the content section of a panel
62
/// @group panel
63
$panelContentPadding: 1rem;
64

65
/// Border for the footer section of a panel
66
/// @group panel
67
$panelFooterBorder: 1px solid #dee2e6;
68

69
/// Background for the footer section of a panel
70
/// @group panel
71
$panelFooterBg: #ffffff;
72

73
/// Text color for the footer section of a panel
74
/// @group panel
75
$panelFooterTextColor: $textColor;
76

77
/// Padding for the footer section of a panel
78
/// @group panel
79
$panelFooterPadding: 0.5rem 1rem;
80

81
/// Spacing between to accordion panels
82
/// @group panel
83
$accordionSpacing: 0;
84

85
/// Border of an accordion panel header
86
/// @group panel
87
$accordionHeaderBorder: $panelHeaderBorder;
88

89
/// Background of an accordion panel header
90
/// @group panel
91
$accordionHeaderBg: $panelHeaderBg;
92

93
/// Text color of an accordion panel header
94
/// @group panel
95
$accordionHeaderTextColor: $panelHeaderTextColor;
96

97
/// Font weight of an accordion panel header
98
/// @group panel
99
$accordionHeaderFontWeight: $panelHeaderFontWeight;
100

101
/// Padding of an accordion panel header
102
/// @group panel
103
$accordionHeaderPadding: $panelHeaderPadding;
104

105
/// Background of an accordion panel header in hover state
106
/// @group panel
107
$accordionHeaderHoverBg: #e9ecef;
108

109
/// Border of an accordion panel header in hover state
110
/// @group panel
111
$accordionHeaderHoverBorderColor: $panelHeaderBorder;
112

113
/// Text color of an accordion panel header in hover state
114
/// @group panel
115
$accordionHeaderTextHoverColor: $textColor;
116

117
/// Background of an accordion panel header in expanded state
118
/// @group panel
119
$accordionHeaderActiveBg: $panelHeaderBg;
120

121
/// Border of an accordion panel header in expanded state
122
/// @group panel
123
$accordionHeaderActiveBorderColor: #dee2e6;
124

125
/// Text color of an accordion panel header in expanded state
126
/// @group panel
127
$accordionHeaderTextActiveColor: $textColor;
128

129
/// Hover background of an accordion panel header in expanded state
130
/// @group panel
131
$accordionHeaderActiveHoverBg: #e9ecef;
132

133
/// Hover border of an accordion panel header in expanded state
134
/// @group panel
135
$accordionHeaderActiveHoverBorderColor: #dee2e6;
136

137
/// Text color of an accordion panel header in expanded state
138
/// @group panel
139
$accordionHeaderTextActiveHoverColor: $textColor;
140

141
/// Border for a content section of an accordion panel
142
/// @group panel
143
$accordionContentBorder: $panelContentBorder;
144

145
/// Background for a content section of an accordion panel
146
/// @group panel
147
$accordionContentBg: $panelContentBg;
148

149
/// Text color for a content section of an accordion panel
150
/// @group panel
151
$accordionContentTextColor: $panelContentTextColor;
152

153
/// Padding for a content section of an accordion panel
154
/// @group panel
155
$accordionContentPadding: $panelContentPadding;
156

157
/// Border for a parent element containing all the headers of a tabview
158
/// @group panel
159
$tabviewNavBorder: 1px solid #dee2e6;
160

161
/// Border width for a parent element containing all the headers of a tabview
162
/// @group panel
163
$tabviewNavBorderWidth: 0 0 2px 0;
164

165
/// Background for a parent element containing all the headers of a tabview
166
/// @group panel
167
$tabviewNavBg: #ffffff;
168

169
/// Spacing between tabview headers
170
/// @group panel
171
$tabviewHeaderSpacing: 0;
172

173
/// Border of a tabview header
174
/// @group panel
175
$tabviewHeaderBorder: solid #dee2e6;
176

177
/// Border width of a tabview header
178
/// @group panel
179
$tabviewHeaderBorderWidth: 0 0 2px 0;
180

181
/// Border color of a tabview header
182
/// @group panel
183
$tabviewHeaderBorderColor: transparent transparent #dee2e6 transparent;
184

185
/// Background of a tabview header
186
/// @group panel
187
$tabviewHeaderBg: #ffffff;
188

189
/// Text color of a tabview header
190
/// @group panel
191
$tabviewHeaderTextColor: $textSecondaryColor;
192

193
/// Font weight of a tabview header
194
/// @group panel
195
$tabviewHeaderFontWeight: $panelHeaderFontWeight;
196

197
/// Padding of a tabview header
198
/// @group panel
199
$tabviewHeaderPadding: $panelHeaderPadding;
200

201
/// Margin of a tabview header
202
/// @group panel
203
$tabviewHeaderMargin: 0 0 -2px 0;
204

205
/// Background of a tabview header in hover state
206
/// @group panel
207
$tabviewHeaderHoverBg: #ffffff;
208

209
/// Border of a tabview header in hover state
210
/// @group panel
211
$tabviewHeaderHoverBorderColor: #9ba2aa;
212

213
/// Text color of a tabview header in hover state
214
/// @group panel
215
$tabviewHeaderTextHoverColor: $textSecondaryColor;
216

217
/// Background of a tabview header in selected state
218
/// @group panel
219
$tabviewHeaderActiveBg: #ffffff;
220

221
/// Border of a tabview header in selected state
222
/// @group panel
223
$tabviewHeaderActiveBorderColor: $primaryColor;
224

225
/// Text color of a tabview header in selected state
226
/// @group panel
227
$tabviewHeaderTextActiveColor: $primaryColor;
228

229
/// Border for content section of a tabview tab
230
/// @group panel
231
$tabviewContentBorder: 0 none;
232

233
/// Background for content section of a tabview tab
234
/// @group panel
235
$tabviewContentBg: $panelContentBg;
236

237
/// Text color for a content section of a tabview tab
238
/// @group panel
239
$tabviewContentTextColor: $panelContentTextColor;
240

241
/// Padding for a content section of a tabview tab
242
/// @group panel
243
$tabviewContentPadding: $panelContentPadding;
244

245
/// Background of a fieldset header in hover state
246
/// @group panel
247
$panelHeaderHoverBg: #e9ecef;
248

249
/// Border of a fieldset header in hover state
250
/// @group panel
251
$panelHeaderHoverBorderColor: #dee2e6;
252

253
/// Text color of a fieldset header in hover state
254
/// @group panel
255
$panelHeaderTextHoverColor: $textColor;
256

257
/// Border for a track bar of a scroll panel
258
/// @group panel
259
$scrollPanelTrackBorder: 0 none;
260

261
/// Background for a track bar of a scroll panel
262
/// @group panel
263
$scrollPanelTrackBg: #f8f9fa;
264

265
/// Padding of a card body
266
/// @group panel
267
$cardBodyPadding: 1rem;
268

269
/// Font size of a card title
270
/// @group panel
271
$cardTitleFontSize: 1.5rem;
272

273
/// Font weight of a card title
274
/// @group panel
275
$cardTitleFontWeight: 700;
276

277
/// Font size of a card subtitle
278
/// @group panel
279
$cardSubTitleFontWeight: 700;
280

281
/// Text color of a card subtitle
282
/// @group panel
283
$cardSubTitleColor: $textSecondaryColor;
284

285
/// Padding of a card content
286
/// @group panel
287
$cardContentPadding: 1rem 0;
288

289
/// Padding of a card footer
290
/// @group panel
291
$cardFooterPadding: 1rem 0 0 0;
292

293
/// Box shadow of a card
294
/// @group panel
295
$cardShadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0,0,0,.12);
296

297
/// Margin of divider in horizontal layout
298
/// @group panel
299
$dividerHorizontalMargin:1rem 0;
300

301
/// Padding of divider in horizontal layout
302
/// @group panel
303
$dividerHorizontalPadding:0 1rem;
304

305
/// Margin of divider in vertical layout
306
/// @group panel
307
$dividerVerticalMargin:0 1rem;
308

309
/// Padding of divider in vertical layout
310
/// @group panel
311
$dividerVerticalPadding:1rem 0;
312

313
/// Border width of the divider
314
/// @group panel
315
$dividerSize:1px;
316

317
/// Color of the divider border
318
/// @group panel
319
$dividerColor:#dee2e6;
320

321
/// Background of the splitter gutter
322
/// @group panel
323
$splitterGutterBg:#f8f9fa;
324

325
/// Background of the splitter gutter handle
326
/// @group panel
327
$splitterGutterHandleBg:#dee2e6;

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.