##// END OF EJS Templates
style: bring back bold font style.
marcink -
r3186:3a350ddc default
parent child Browse files
Show More
@@ -79,6 +79,7 b' div.diffblock {'
79 79 min-width: 5em;
80 80 margin: 0;
81 81 padding: @button-padding @button-padding @button-padding 0;
82 font-weight: @text-semibold-weight;
82 83 font-family: @text-semibold;
83 84 }
84 85
@@ -422,6 +423,7 b' div.codeblock {'
422 423 .author {
423 424 clear: both;
424 425 vertical-align: middle;
426 font-weight: @text-bold-weight;
425 427 font-family: @text-bold;
426 428 }
427 429
@@ -62,6 +62,7 b' tr.inline-comments div {'
62 62 line-height: .8em;
63 63
64 64 font-family: @text-italic;
65 font-style: italic;
65 66 background: #fff none;
66 67 color: @grey4;
67 68 border: 1px solid @grey4;
@@ -72,6 +73,8 b' tr.inline-comments div {'
72 73
73 74 &.todo {
74 75 color: @color5;
76 font-style: italic;
77 font-weight: @text-bold-italic-weight;
75 78 font-family: @text-bold-italic;
76 79 }
77 80
@@ -92,6 +95,7 b' tr.inline-comments div {'
92 95 color: @color1;
93 96 margin: 2px 8px;
94 97 font-family: @text-italic;
98 font-style: italic;
95 99 }
96 100 }
97 101
@@ -95,6 +95,7 b' div.diffblock.margined.comm tr {'
95 95
96 96 .compare-label {
97 97 clear: both;
98 font-weight: @text-semibold-weight;
98 99 font-family: @text-semibold;
99 100 }
100 101 }
@@ -29,16 +29,17 b''
29 29
30 30 //--- BASE ------------------//
31 31 .noscript-error {
32 top: 0;
33 left: 0;
34 width: 100%;
35 z-index: 101;
36 text-align: center;
37 font-family: @text-semibold;
38 font-size: 120%;
39 color: white;
40 background-color: @alert2;
41 padding: 5px 0 5px 0;
32 top: 0;
33 left: 0;
34 width: 100%;
35 z-index: 101;
36 text-align: center;
37 font-size: 120%;
38 color: white;
39 background-color: @alert2;
40 padding: 5px 0 5px 0;
41 font-weight: @text-semibold-weight;
42 font-family: @text-semibold;
42 43 }
43 44
44 45 html {
@@ -160,8 +161,9 b' input.inline[type="file"] {'
160 161 }
161 162
162 163 .error-branding {
163 font-family: @text-semibold;
164 color: @grey4;
164 color: @grey4;
165 font-weight: @text-semibold-weight;
166 font-family: @text-semibold;
165 167 }
166 168
167 169 .error_message {
@@ -213,8 +215,9 b' input.inline[type="file"] {'
213 215 }
214 216
215 217 h4 {
216 margin: 0 0 @padding;
217 font-family: @text-semibold;
218 margin: 0 0 @padding;
219 font-weight: @text-semibold-weight;
220 font-family: @text-semibold;
218 221 }
219 222 }
220 223 }
@@ -348,10 +351,11 b' ul.auth_plugins {'
348 351 // Pull Requests
349 352
350 353 .pullrequests_section_head {
351 display: block;
352 clear: both;
353 margin: @padding 0;
354 font-family: @text-bold;
354 display: block;
355 clear: both;
356 margin: @padding 0;
357 font-weight: @text-bold-weight;
358 font-family: @text-bold;
355 359 }
356 360
357 361 .pr-origininfo, .pr-targetinfo {
@@ -390,14 +394,15 b' ul.auth_plugins {'
390 394
391 395
392 396 #pr-title-input {
393 width: 72%;
394 font-size: 1em;
395 font-family: @text-bold;
396 margin: 0;
397 padding: 0 0 0 @padding/4;
398 line-height: 1.7em;
399 color: @text-color;
400 letter-spacing: .02em;
397 width: 72%;
398 font-size: 1em;
399 margin: 0;
400 padding: 0 0 0 @padding/4;
401 line-height: 1.7em;
402 color: @text-color;
403 letter-spacing: .02em;
404 font-weight: @text-bold-weight;
405 font-family: @text-bold;
401 406 }
402 407
403 408 #pullrequest_title {
@@ -470,19 +475,20 b' ul.auth_plugins {'
470 475
471 476 // Server Announcement
472 477 #server-announcement {
473 width: 95%;
474 margin: @padding auto;
475 padding: @padding;
476 border-width: 2px;
477 border-style: solid;
478 .border-radius(2px);
479 font-family: @text-bold;
480
481 &.info { border-color: @alert4; background-color: @alert4-inner; }
482 &.warning { border-color: @alert3; background-color: @alert3-inner; }
483 &.error { border-color: @alert2; background-color: @alert2-inner; }
484 &.success { border-color: @alert1; background-color: @alert1-inner; }
485 &.neutral { border-color: @grey3; background-color: @grey6; }
478 width: 95%;
479 margin: @padding auto;
480 padding: @padding;
481 border-width: 2px;
482 border-style: solid;
483 .border-radius(2px);
484 font-weight: @text-bold-weight;
485 font-family: @text-bold;
486
487 &.info { border-color: @alert4; background-color: @alert4-inner; }
488 &.warning { border-color: @alert3; background-color: @alert3-inner; }
489 &.error { border-color: @alert2; background-color: @alert2-inner; }
490 &.success { border-color: @alert1; background-color: @alert1-inner; }
491 &.neutral { border-color: @grey3; background-color: @grey6; }
486 492 }
487 493
488 494 // Fixed Sidebar Column
@@ -2202,9 +2208,10 b' h3.files_location{'
2202 2208 margin-left: 0.5em;
2203 2209 display: inline-block;
2204 2210
2205 em{
2206 font-family: @text-bold;
2207 }
2211 em {
2212 font-weight: @text-bold-weight;
2213 font-family: @text-bold;
2214 }
2208 2215 }
2209 2216 }
2210 2217
@@ -198,9 +198,10 b' select.select2{height:28px;visibility:hi'
198 198 &.select2-result-with-children {
199 199
200 200 .select2-result-label {
201 font-family: @text-semibold;
202 201 color: @rcdarkblue;
203 202 cursor: default;
203 font-weight: @text-semibold-weight;
204 font-family: @text-semibold;
204 205 }
205 206
206 207 ul.select2-result-sub li .select2-result-label {
@@ -62,6 +62,7 b''
62 62 height: 30px;
63 63 margin: 0;
64 64 padding: 0;
65 font-weight: @text-semibold-weight;
65 66 font-family: @text-semibold;
66 67 }
67 68
@@ -165,6 +166,7 b''
165 166 width: 25%;
166 167 margin: 0;
167 168 padding: 0;
169 font-weight: @text-semibold-weight;
168 170 font-family: @text-semibold;
169 171 }
170 172
@@ -67,6 +67,7 b' table.dataTable {'
67 67
68 68 th {
69 69 text-align: left;
70 font-weight: @text-semibold-weight;
70 71 font-family: @text-semibold;
71 72 }
72 73
@@ -322,6 +323,7 b' table#repo_list_table {'
322 323 table.keyboard-mappings {
323 324 th {
324 325 text-align: left;
326 font-weight: @text-semibold-weight;
325 327 font-family: @text-semibold;
326 328 }
327 329 }
@@ -35,12 +35,12 b' h1, h2, h3, h4, h5, h6,'
35 35 }
36 36 }
37 37
38 h1, .h1 { font-size: 1.54em; font-family: @text-bold; }
39 h2, .h2 { font-size: 1.23em; font-family: @text-semibold; }
40 h3, .h3 { font-size: 1.23em; font-family: @text-regular; }
41 h4, .h4 { font-size: 1em; font-family: @text-bold; }
42 h5, .h5 { font-size: 1em; font-family: @text-bold-italic; }
43 h6, .h6 { font-size: 1em; font-family: @text-bold-italic; }
38 h1, .h1 { font-size: 1.54em; font-weight: @text-bold-weight; font-family: @text-bold; }
39 h2, .h2 { font-size: 1.23em; font-weight: @text-semibold-weight; font-family: @text-semibold; }
40 h3, .h3 { font-size: 1.23em; font-family: @text-regular; }
41 h4, .h4 { font-size: 1em; font-weight: @text-bold-weight; font-family: @text-bold; }
42 h5, .h5 { font-size: 1em; font-weight: @text-bold-weight; font-family: @text-bold; }
43 h6, .h6 { font-size: 1em; font-weight: @text-bold-weight; font-family: @text-bold; }
44 44
45 45 // Breadcrumbs
46 46 .breadcrumbs {
@@ -95,15 +95,19 b' img {'
95 95 }
96 96
97 97 strong {
98 font-weight: @text-bold-weight;
98 99 font-family: @text-bold;
99 100 }
100 101
101 102 em {
102 103 font-family: @text-italic;
104 font-style: italic;
103 105 }
104 106
105 107 strong em,
106 108 em strong {
109 font-style: italic;
110 font-weight: @text-bold-italic-weight;
107 111 font-family: @text-bold-italic;
108 112 }
109 113
@@ -384,6 +388,7 b' dd {'
384 388
385 389 dt {
386 390 margin: @textmargin 0 0 0;
391 font-weight: @text-bold-weight;
387 392 font-family: @text-bold;
388 393 }
389 394
@@ -57,13 +57,20 b''
57 57 @text-monospace: 'Menlo', 'Liberation Mono', 'Consolas', 'DejaVu Sans Mono', 'Ubuntu Mono', 'Courier New', 'andale mono', 'lucida console', monospace;
58 58
59 59 @text-italic: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
60
60 61 @text-bold: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
62 @text-bold-weight: 600;
63
61 64 @text-semibold: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
65 @text-semibold-weight: 500;
66
62 67 @text-bold-italic: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
63 @text-code: 'Menlo', 'Liberation Mono', 'Consolas', 'DejaVu Sans Mono', 'Ubuntu Mono', 'Courier New', 'andale mono', 'lucida console', monospace;
68 @text-bold-italic-weight: 600;
64 69
70 @text-code: @text-monospace;
65 71 @text-light: @text-regular;
66 @text-light-italic: @text-italic;
72
73
67 74 // Used for .close buttons
68 75 @text-bootstrap: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
69 76
General Comments 0
You need to be logged in to leave comments. Login now