##// END OF EJS Templates
pull-requests: move text with commit summary to left. It looks better.
marcink -
r1469:f85bca1f default
parent child Browse files
Show More
@@ -1,2349 +1,2349 b''
1 //Primary CSS
1 //Primary CSS
2
2
3 //--- IMPORTS ------------------//
3 //--- IMPORTS ------------------//
4
4
5 @import 'helpers';
5 @import 'helpers';
6 @import 'mixins';
6 @import 'mixins';
7 @import 'rcicons';
7 @import 'rcicons';
8 @import 'fonts';
8 @import 'fonts';
9 @import 'variables';
9 @import 'variables';
10 @import 'bootstrap-variables';
10 @import 'bootstrap-variables';
11 @import 'form-bootstrap';
11 @import 'form-bootstrap';
12 @import 'codemirror';
12 @import 'codemirror';
13 @import 'legacy_code_styles';
13 @import 'legacy_code_styles';
14 @import 'progress-bar';
14 @import 'progress-bar';
15
15
16 @import 'type';
16 @import 'type';
17 @import 'alerts';
17 @import 'alerts';
18 @import 'buttons';
18 @import 'buttons';
19 @import 'tags';
19 @import 'tags';
20 @import 'code-block';
20 @import 'code-block';
21 @import 'examples';
21 @import 'examples';
22 @import 'login';
22 @import 'login';
23 @import 'main-content';
23 @import 'main-content';
24 @import 'select2';
24 @import 'select2';
25 @import 'comments';
25 @import 'comments';
26 @import 'panels-bootstrap';
26 @import 'panels-bootstrap';
27 @import 'panels';
27 @import 'panels';
28 @import 'deform';
28 @import 'deform';
29
29
30 //--- BASE ------------------//
30 //--- BASE ------------------//
31 .noscript-error {
31 .noscript-error {
32 top: 0;
32 top: 0;
33 left: 0;
33 left: 0;
34 width: 100%;
34 width: 100%;
35 z-index: 101;
35 z-index: 101;
36 text-align: center;
36 text-align: center;
37 font-family: @text-semibold;
37 font-family: @text-semibold;
38 font-size: 120%;
38 font-size: 120%;
39 color: white;
39 color: white;
40 background-color: @alert2;
40 background-color: @alert2;
41 padding: 5px 0 5px 0;
41 padding: 5px 0 5px 0;
42 }
42 }
43
43
44 html {
44 html {
45 display: table;
45 display: table;
46 height: 100%;
46 height: 100%;
47 width: 100%;
47 width: 100%;
48 }
48 }
49
49
50 body {
50 body {
51 display: table-cell;
51 display: table-cell;
52 width: 100%;
52 width: 100%;
53 }
53 }
54
54
55 //--- LAYOUT ------------------//
55 //--- LAYOUT ------------------//
56
56
57 .hidden{
57 .hidden{
58 display: none !important;
58 display: none !important;
59 }
59 }
60
60
61 .box{
61 .box{
62 float: left;
62 float: left;
63 width: 100%;
63 width: 100%;
64 }
64 }
65
65
66 .browser-header {
66 .browser-header {
67 clear: both;
67 clear: both;
68 }
68 }
69 .main {
69 .main {
70 clear: both;
70 clear: both;
71 padding:0 0 @pagepadding;
71 padding:0 0 @pagepadding;
72 height: auto;
72 height: auto;
73
73
74 &:after { //clearfix
74 &:after { //clearfix
75 content:"";
75 content:"";
76 clear:both;
76 clear:both;
77 width:100%;
77 width:100%;
78 display:block;
78 display:block;
79 }
79 }
80 }
80 }
81
81
82 .action-link{
82 .action-link{
83 margin-left: @padding;
83 margin-left: @padding;
84 padding-left: @padding;
84 padding-left: @padding;
85 border-left: @border-thickness solid @border-default-color;
85 border-left: @border-thickness solid @border-default-color;
86 }
86 }
87
87
88 input + .action-link, .action-link.first{
88 input + .action-link, .action-link.first{
89 border-left: none;
89 border-left: none;
90 }
90 }
91
91
92 .action-link.last{
92 .action-link.last{
93 margin-right: @padding;
93 margin-right: @padding;
94 padding-right: @padding;
94 padding-right: @padding;
95 }
95 }
96
96
97 .action-link.active,
97 .action-link.active,
98 .action-link.active a{
98 .action-link.active a{
99 color: @grey4;
99 color: @grey4;
100 }
100 }
101
101
102 ul.simple-list{
102 ul.simple-list{
103 list-style: none;
103 list-style: none;
104 margin: 0;
104 margin: 0;
105 padding: 0;
105 padding: 0;
106 }
106 }
107
107
108 .main-content {
108 .main-content {
109 padding-bottom: @pagepadding;
109 padding-bottom: @pagepadding;
110 }
110 }
111
111
112 .wide-mode-wrapper {
112 .wide-mode-wrapper {
113 max-width:4000px !important;
113 max-width:4000px !important;
114 }
114 }
115
115
116 .wrapper {
116 .wrapper {
117 position: relative;
117 position: relative;
118 max-width: @wrapper-maxwidth;
118 max-width: @wrapper-maxwidth;
119 margin: 0 auto;
119 margin: 0 auto;
120 }
120 }
121
121
122 #content {
122 #content {
123 clear: both;
123 clear: both;
124 padding: 0 @contentpadding;
124 padding: 0 @contentpadding;
125 }
125 }
126
126
127 .advanced-settings-fields{
127 .advanced-settings-fields{
128 input{
128 input{
129 margin-left: @textmargin;
129 margin-left: @textmargin;
130 margin-right: @padding/2;
130 margin-right: @padding/2;
131 }
131 }
132 }
132 }
133
133
134 .cs_files_title {
134 .cs_files_title {
135 margin: @pagepadding 0 0;
135 margin: @pagepadding 0 0;
136 }
136 }
137
137
138 input.inline[type="file"] {
138 input.inline[type="file"] {
139 display: inline;
139 display: inline;
140 }
140 }
141
141
142 .error_page {
142 .error_page {
143 margin: 10% auto;
143 margin: 10% auto;
144
144
145 h1 {
145 h1 {
146 color: @grey2;
146 color: @grey2;
147 }
147 }
148
148
149 .alert {
149 .alert {
150 margin: @padding 0;
150 margin: @padding 0;
151 }
151 }
152
152
153 .error-branding {
153 .error-branding {
154 font-family: @text-semibold;
154 font-family: @text-semibold;
155 color: @grey4;
155 color: @grey4;
156 }
156 }
157
157
158 .error_message {
158 .error_message {
159 font-family: @text-regular;
159 font-family: @text-regular;
160 }
160 }
161
161
162 .sidebar {
162 .sidebar {
163 min-height: 275px;
163 min-height: 275px;
164 margin: 0;
164 margin: 0;
165 padding: 0 0 @sidebarpadding @sidebarpadding;
165 padding: 0 0 @sidebarpadding @sidebarpadding;
166 border: none;
166 border: none;
167 }
167 }
168
168
169 .main-content {
169 .main-content {
170 position: relative;
170 position: relative;
171 margin: 0 @sidebarpadding @sidebarpadding;
171 margin: 0 @sidebarpadding @sidebarpadding;
172 padding: 0 0 0 @sidebarpadding;
172 padding: 0 0 0 @sidebarpadding;
173 border-left: @border-thickness solid @grey5;
173 border-left: @border-thickness solid @grey5;
174
174
175 @media (max-width:767px) {
175 @media (max-width:767px) {
176 clear: both;
176 clear: both;
177 width: 100%;
177 width: 100%;
178 margin: 0;
178 margin: 0;
179 border: none;
179 border: none;
180 }
180 }
181 }
181 }
182
182
183 .inner-column {
183 .inner-column {
184 float: left;
184 float: left;
185 width: 29.75%;
185 width: 29.75%;
186 min-height: 150px;
186 min-height: 150px;
187 margin: @sidebarpadding 2% 0 0;
187 margin: @sidebarpadding 2% 0 0;
188 padding: 0 2% 0 0;
188 padding: 0 2% 0 0;
189 border-right: @border-thickness solid @grey5;
189 border-right: @border-thickness solid @grey5;
190
190
191 @media (max-width:767px) {
191 @media (max-width:767px) {
192 clear: both;
192 clear: both;
193 width: 100%;
193 width: 100%;
194 border: none;
194 border: none;
195 }
195 }
196
196
197 ul {
197 ul {
198 padding-left: 1.25em;
198 padding-left: 1.25em;
199 }
199 }
200
200
201 &:last-child {
201 &:last-child {
202 margin: @sidebarpadding 0 0;
202 margin: @sidebarpadding 0 0;
203 border: none;
203 border: none;
204 }
204 }
205
205
206 h4 {
206 h4 {
207 margin: 0 0 @padding;
207 margin: 0 0 @padding;
208 font-family: @text-semibold;
208 font-family: @text-semibold;
209 }
209 }
210 }
210 }
211 }
211 }
212 .error-page-logo {
212 .error-page-logo {
213 width: 130px;
213 width: 130px;
214 height: 160px;
214 height: 160px;
215 }
215 }
216
216
217 // HEADER
217 // HEADER
218 .header {
218 .header {
219
219
220 // TODO: johbo: Fix login pages, so that they work without a min-height
220 // TODO: johbo: Fix login pages, so that they work without a min-height
221 // for the header and then remove the min-height. I chose a smaller value
221 // for the header and then remove the min-height. I chose a smaller value
222 // intentionally here to avoid rendering issues in the main navigation.
222 // intentionally here to avoid rendering issues in the main navigation.
223 min-height: 49px;
223 min-height: 49px;
224
224
225 position: relative;
225 position: relative;
226 vertical-align: bottom;
226 vertical-align: bottom;
227 padding: 0 @header-padding;
227 padding: 0 @header-padding;
228 background-color: @grey2;
228 background-color: @grey2;
229 color: @grey5;
229 color: @grey5;
230
230
231 .title {
231 .title {
232 overflow: visible;
232 overflow: visible;
233 }
233 }
234
234
235 &:before,
235 &:before,
236 &:after {
236 &:after {
237 content: "";
237 content: "";
238 clear: both;
238 clear: both;
239 width: 100%;
239 width: 100%;
240 }
240 }
241
241
242 // TODO: johbo: Avoids breaking "Repositories" chooser
242 // TODO: johbo: Avoids breaking "Repositories" chooser
243 .select2-container .select2-choice .select2-arrow {
243 .select2-container .select2-choice .select2-arrow {
244 display: none;
244 display: none;
245 }
245 }
246 }
246 }
247
247
248 #header-inner {
248 #header-inner {
249 &.title {
249 &.title {
250 margin: 0;
250 margin: 0;
251 }
251 }
252 &:before,
252 &:before,
253 &:after {
253 &:after {
254 content: "";
254 content: "";
255 clear: both;
255 clear: both;
256 }
256 }
257 }
257 }
258
258
259 // Gists
259 // Gists
260 #files_data {
260 #files_data {
261 clear: both; //for firefox
261 clear: both; //for firefox
262 }
262 }
263 #gistid {
263 #gistid {
264 margin-right: @padding;
264 margin-right: @padding;
265 }
265 }
266
266
267 // Global Settings Editor
267 // Global Settings Editor
268 .textarea.editor {
268 .textarea.editor {
269 float: left;
269 float: left;
270 position: relative;
270 position: relative;
271 max-width: @texteditor-width;
271 max-width: @texteditor-width;
272
272
273 select {
273 select {
274 position: absolute;
274 position: absolute;
275 top:10px;
275 top:10px;
276 right:0;
276 right:0;
277 }
277 }
278
278
279 .CodeMirror {
279 .CodeMirror {
280 margin: 0;
280 margin: 0;
281 }
281 }
282
282
283 .help-block {
283 .help-block {
284 margin: 0 0 @padding;
284 margin: 0 0 @padding;
285 padding:.5em;
285 padding:.5em;
286 background-color: @grey6;
286 background-color: @grey6;
287 }
287 }
288 }
288 }
289
289
290 ul.auth_plugins {
290 ul.auth_plugins {
291 margin: @padding 0 @padding @legend-width;
291 margin: @padding 0 @padding @legend-width;
292 padding: 0;
292 padding: 0;
293
293
294 li {
294 li {
295 margin-bottom: @padding;
295 margin-bottom: @padding;
296 line-height: 1em;
296 line-height: 1em;
297 list-style-type: none;
297 list-style-type: none;
298
298
299 .auth_buttons .btn {
299 .auth_buttons .btn {
300 margin-right: @padding;
300 margin-right: @padding;
301 }
301 }
302
302
303 &:before { content: none; }
303 &:before { content: none; }
304 }
304 }
305 }
305 }
306
306
307
307
308 // My Account PR list
308 // My Account PR list
309
309
310 #show_closed {
310 #show_closed {
311 margin: 0 1em 0 0;
311 margin: 0 1em 0 0;
312 }
312 }
313
313
314 .pullrequestlist {
314 .pullrequestlist {
315 .closed {
315 .closed {
316 background-color: @grey6;
316 background-color: @grey6;
317 }
317 }
318 .td-status {
318 .td-status {
319 padding-left: .5em;
319 padding-left: .5em;
320 }
320 }
321 .log-container .truncate {
321 .log-container .truncate {
322 height: 2.75em;
322 height: 2.75em;
323 white-space: pre-line;
323 white-space: pre-line;
324 }
324 }
325 table.rctable .user {
325 table.rctable .user {
326 padding-left: 0;
326 padding-left: 0;
327 }
327 }
328 table.rctable {
328 table.rctable {
329 td.td-description,
329 td.td-description,
330 .rc-user {
330 .rc-user {
331 min-width: auto;
331 min-width: auto;
332 }
332 }
333 }
333 }
334 }
334 }
335
335
336 // Pull Requests
336 // Pull Requests
337
337
338 .pullrequests_section_head {
338 .pullrequests_section_head {
339 display: block;
339 display: block;
340 clear: both;
340 clear: both;
341 margin: @padding 0;
341 margin: @padding 0;
342 font-family: @text-bold;
342 font-family: @text-bold;
343 }
343 }
344
344
345 .pr-origininfo, .pr-targetinfo {
345 .pr-origininfo, .pr-targetinfo {
346 position: relative;
346 position: relative;
347
347
348 .tag {
348 .tag {
349 display: inline-block;
349 display: inline-block;
350 margin: 0 1em .5em 0;
350 margin: 0 1em .5em 0;
351 }
351 }
352
352
353 .clone-url {
353 .clone-url {
354 display: inline-block;
354 display: inline-block;
355 margin: 0 0 .5em 0;
355 margin: 0 0 .5em 0;
356 padding: 0;
356 padding: 0;
357 line-height: 1.2em;
357 line-height: 1.2em;
358 }
358 }
359 }
359 }
360
360
361 .pr-pullinfo {
361 .pr-pullinfo {
362 clear: both;
362 clear: both;
363 margin: .5em 0;
363 margin: .5em 0;
364 }
364 }
365
365
366 #pr-title-input {
366 #pr-title-input {
367 width: 72%;
367 width: 72%;
368 font-size: 1em;
368 font-size: 1em;
369 font-family: @text-bold;
369 font-family: @text-bold;
370 margin: 0;
370 margin: 0;
371 padding: 0 0 0 @padding/4;
371 padding: 0 0 0 @padding/4;
372 line-height: 1.7em;
372 line-height: 1.7em;
373 color: @text-color;
373 color: @text-color;
374 letter-spacing: .02em;
374 letter-spacing: .02em;
375 }
375 }
376
376
377 #pullrequest_title {
377 #pullrequest_title {
378 width: 100%;
378 width: 100%;
379 box-sizing: border-box;
379 box-sizing: border-box;
380 }
380 }
381
381
382 #pr_open_message {
382 #pr_open_message {
383 border: @border-thickness solid #fff;
383 border: @border-thickness solid #fff;
384 border-radius: @border-radius;
384 border-radius: @border-radius;
385 padding: @padding-large-vertical @padding-large-vertical @padding-large-vertical 0;
385 padding: @padding-large-vertical @padding-large-vertical @padding-large-vertical 0;
386 text-align: right;
386 text-align: left;
387 overflow: hidden;
387 overflow: hidden;
388 }
388 }
389
389
390 .pr-submit-button {
390 .pr-submit-button {
391 float: right;
391 float: right;
392 margin: 0 0 0 5px;
392 margin: 0 0 0 5px;
393 }
393 }
394
394
395 .pr-spacing-container {
395 .pr-spacing-container {
396 padding: 20px;
396 padding: 20px;
397 clear: both
397 clear: both
398 }
398 }
399
399
400 #pr-description-input {
400 #pr-description-input {
401 margin-bottom: 0;
401 margin-bottom: 0;
402 }
402 }
403
403
404 .pr-description-label {
404 .pr-description-label {
405 vertical-align: top;
405 vertical-align: top;
406 }
406 }
407
407
408 .perms_section_head {
408 .perms_section_head {
409 min-width: 625px;
409 min-width: 625px;
410
410
411 h2 {
411 h2 {
412 margin-bottom: 0;
412 margin-bottom: 0;
413 }
413 }
414
414
415 .label-checkbox {
415 .label-checkbox {
416 float: left;
416 float: left;
417 }
417 }
418
418
419 &.field {
419 &.field {
420 margin: @space 0 @padding;
420 margin: @space 0 @padding;
421 }
421 }
422
422
423 &:first-child.field {
423 &:first-child.field {
424 margin-top: 0;
424 margin-top: 0;
425
425
426 .label {
426 .label {
427 margin-top: 0;
427 margin-top: 0;
428 padding-top: 0;
428 padding-top: 0;
429 }
429 }
430
430
431 .radios {
431 .radios {
432 padding-top: 0;
432 padding-top: 0;
433 }
433 }
434 }
434 }
435
435
436 .radios {
436 .radios {
437 float: right;
437 float: right;
438 position: relative;
438 position: relative;
439 width: 405px;
439 width: 405px;
440 }
440 }
441 }
441 }
442
442
443 //--- MODULES ------------------//
443 //--- MODULES ------------------//
444
444
445
445
446 // Server Announcement
446 // Server Announcement
447 #server-announcement {
447 #server-announcement {
448 width: 95%;
448 width: 95%;
449 margin: @padding auto;
449 margin: @padding auto;
450 padding: @padding;
450 padding: @padding;
451 border-width: 2px;
451 border-width: 2px;
452 border-style: solid;
452 border-style: solid;
453 .border-radius(2px);
453 .border-radius(2px);
454 font-family: @text-bold;
454 font-family: @text-bold;
455
455
456 &.info { border-color: @alert4; background-color: @alert4-inner; }
456 &.info { border-color: @alert4; background-color: @alert4-inner; }
457 &.warning { border-color: @alert3; background-color: @alert3-inner; }
457 &.warning { border-color: @alert3; background-color: @alert3-inner; }
458 &.error { border-color: @alert2; background-color: @alert2-inner; }
458 &.error { border-color: @alert2; background-color: @alert2-inner; }
459 &.success { border-color: @alert1; background-color: @alert1-inner; }
459 &.success { border-color: @alert1; background-color: @alert1-inner; }
460 &.neutral { border-color: @grey3; background-color: @grey6; }
460 &.neutral { border-color: @grey3; background-color: @grey6; }
461 }
461 }
462
462
463 // Fixed Sidebar Column
463 // Fixed Sidebar Column
464 .sidebar-col-wrapper {
464 .sidebar-col-wrapper {
465 padding-left: @sidebar-all-width;
465 padding-left: @sidebar-all-width;
466
466
467 .sidebar {
467 .sidebar {
468 width: @sidebar-width;
468 width: @sidebar-width;
469 margin-left: -@sidebar-all-width;
469 margin-left: -@sidebar-all-width;
470 }
470 }
471 }
471 }
472
472
473 .sidebar-col-wrapper.scw-small {
473 .sidebar-col-wrapper.scw-small {
474 padding-left: @sidebar-small-all-width;
474 padding-left: @sidebar-small-all-width;
475
475
476 .sidebar {
476 .sidebar {
477 width: @sidebar-small-width;
477 width: @sidebar-small-width;
478 margin-left: -@sidebar-small-all-width;
478 margin-left: -@sidebar-small-all-width;
479 }
479 }
480 }
480 }
481
481
482
482
483 // FOOTER
483 // FOOTER
484 #footer {
484 #footer {
485 padding: 0;
485 padding: 0;
486 text-align: center;
486 text-align: center;
487 vertical-align: middle;
487 vertical-align: middle;
488 color: @grey2;
488 color: @grey2;
489 background-color: @grey6;
489 background-color: @grey6;
490
490
491 p {
491 p {
492 margin: 0;
492 margin: 0;
493 padding: 1em;
493 padding: 1em;
494 line-height: 1em;
494 line-height: 1em;
495 }
495 }
496
496
497 .server-instance { //server instance
497 .server-instance { //server instance
498 display: none;
498 display: none;
499 }
499 }
500
500
501 .title {
501 .title {
502 float: none;
502 float: none;
503 margin: 0 auto;
503 margin: 0 auto;
504 }
504 }
505 }
505 }
506
506
507 button.close {
507 button.close {
508 padding: 0;
508 padding: 0;
509 cursor: pointer;
509 cursor: pointer;
510 background: transparent;
510 background: transparent;
511 border: 0;
511 border: 0;
512 .box-shadow(none);
512 .box-shadow(none);
513 -webkit-appearance: none;
513 -webkit-appearance: none;
514 }
514 }
515
515
516 .close {
516 .close {
517 float: right;
517 float: right;
518 font-size: 21px;
518 font-size: 21px;
519 font-family: @text-bootstrap;
519 font-family: @text-bootstrap;
520 line-height: 1em;
520 line-height: 1em;
521 font-weight: bold;
521 font-weight: bold;
522 color: @grey2;
522 color: @grey2;
523
523
524 &:hover,
524 &:hover,
525 &:focus {
525 &:focus {
526 color: @grey1;
526 color: @grey1;
527 text-decoration: none;
527 text-decoration: none;
528 cursor: pointer;
528 cursor: pointer;
529 }
529 }
530 }
530 }
531
531
532 // GRID
532 // GRID
533 .sorting,
533 .sorting,
534 .sorting_desc,
534 .sorting_desc,
535 .sorting_asc {
535 .sorting_asc {
536 cursor: pointer;
536 cursor: pointer;
537 }
537 }
538 .sorting_desc:after {
538 .sorting_desc:after {
539 content: "\00A0\25B2";
539 content: "\00A0\25B2";
540 font-size: .75em;
540 font-size: .75em;
541 }
541 }
542 .sorting_asc:after {
542 .sorting_asc:after {
543 content: "\00A0\25BC";
543 content: "\00A0\25BC";
544 font-size: .68em;
544 font-size: .68em;
545 }
545 }
546
546
547
547
548 .user_auth_tokens {
548 .user_auth_tokens {
549
549
550 &.truncate {
550 &.truncate {
551 white-space: nowrap;
551 white-space: nowrap;
552 overflow: hidden;
552 overflow: hidden;
553 text-overflow: ellipsis;
553 text-overflow: ellipsis;
554 }
554 }
555
555
556 .fields .field .input {
556 .fields .field .input {
557 margin: 0;
557 margin: 0;
558 }
558 }
559
559
560 input#description {
560 input#description {
561 width: 100px;
561 width: 100px;
562 margin: 0;
562 margin: 0;
563 }
563 }
564
564
565 .drop-menu {
565 .drop-menu {
566 // TODO: johbo: Remove this, should work out of the box when
566 // TODO: johbo: Remove this, should work out of the box when
567 // having multiple inputs inline
567 // having multiple inputs inline
568 margin: 0 0 0 5px;
568 margin: 0 0 0 5px;
569 }
569 }
570 }
570 }
571 #user_list_table {
571 #user_list_table {
572 .closed {
572 .closed {
573 background-color: @grey6;
573 background-color: @grey6;
574 }
574 }
575 }
575 }
576
576
577
577
578 input {
578 input {
579 &.disabled {
579 &.disabled {
580 opacity: .5;
580 opacity: .5;
581 }
581 }
582 }
582 }
583
583
584 // remove extra padding in firefox
584 // remove extra padding in firefox
585 input::-moz-focus-inner { border:0; padding:0 }
585 input::-moz-focus-inner { border:0; padding:0 }
586
586
587 .adjacent input {
587 .adjacent input {
588 margin-bottom: @padding;
588 margin-bottom: @padding;
589 }
589 }
590
590
591 .permissions_boxes {
591 .permissions_boxes {
592 display: block;
592 display: block;
593 }
593 }
594
594
595 //TODO: lisa: this should be in tables
595 //TODO: lisa: this should be in tables
596 .show_more_col {
596 .show_more_col {
597 width: 20px;
597 width: 20px;
598 }
598 }
599
599
600 //FORMS
600 //FORMS
601
601
602 .medium-inline,
602 .medium-inline,
603 input#description.medium-inline {
603 input#description.medium-inline {
604 display: inline;
604 display: inline;
605 width: @medium-inline-input-width;
605 width: @medium-inline-input-width;
606 min-width: 100px;
606 min-width: 100px;
607 }
607 }
608
608
609 select {
609 select {
610 //reset
610 //reset
611 -webkit-appearance: none;
611 -webkit-appearance: none;
612 -moz-appearance: none;
612 -moz-appearance: none;
613
613
614 display: inline-block;
614 display: inline-block;
615 height: 28px;
615 height: 28px;
616 width: auto;
616 width: auto;
617 margin: 0 @padding @padding 0;
617 margin: 0 @padding @padding 0;
618 padding: 0 18px 0 8px;
618 padding: 0 18px 0 8px;
619 line-height:1em;
619 line-height:1em;
620 font-size: @basefontsize;
620 font-size: @basefontsize;
621 border: @border-thickness solid @rcblue;
621 border: @border-thickness solid @rcblue;
622 background:white url("../images/dt-arrow-dn.png") no-repeat 100% 50%;
622 background:white url("../images/dt-arrow-dn.png") no-repeat 100% 50%;
623 color: @rcblue;
623 color: @rcblue;
624
624
625 &:after {
625 &:after {
626 content: "\00A0\25BE";
626 content: "\00A0\25BE";
627 }
627 }
628
628
629 &:focus {
629 &:focus {
630 outline: none;
630 outline: none;
631 }
631 }
632 }
632 }
633
633
634 option {
634 option {
635 &:focus {
635 &:focus {
636 outline: none;
636 outline: none;
637 }
637 }
638 }
638 }
639
639
640 input,
640 input,
641 textarea {
641 textarea {
642 padding: @input-padding;
642 padding: @input-padding;
643 border: @input-border-thickness solid @border-highlight-color;
643 border: @input-border-thickness solid @border-highlight-color;
644 .border-radius (@border-radius);
644 .border-radius (@border-radius);
645 font-family: @text-light;
645 font-family: @text-light;
646 font-size: @basefontsize;
646 font-size: @basefontsize;
647
647
648 &.input-sm {
648 &.input-sm {
649 padding: 5px;
649 padding: 5px;
650 }
650 }
651
651
652 &#description {
652 &#description {
653 min-width: @input-description-minwidth;
653 min-width: @input-description-minwidth;
654 min-height: 1em;
654 min-height: 1em;
655 padding: 10px;
655 padding: 10px;
656 }
656 }
657 }
657 }
658
658
659 .field-sm {
659 .field-sm {
660 input,
660 input,
661 textarea {
661 textarea {
662 padding: 5px;
662 padding: 5px;
663 }
663 }
664 }
664 }
665
665
666 textarea {
666 textarea {
667 display: block;
667 display: block;
668 clear: both;
668 clear: both;
669 width: 100%;
669 width: 100%;
670 min-height: 100px;
670 min-height: 100px;
671 margin-bottom: @padding;
671 margin-bottom: @padding;
672 .box-sizing(border-box);
672 .box-sizing(border-box);
673 overflow: auto;
673 overflow: auto;
674 }
674 }
675
675
676 label {
676 label {
677 font-family: @text-light;
677 font-family: @text-light;
678 }
678 }
679
679
680 // GRAVATARS
680 // GRAVATARS
681 // centers gravatar on username to the right
681 // centers gravatar on username to the right
682
682
683 .gravatar {
683 .gravatar {
684 display: inline;
684 display: inline;
685 min-width: 16px;
685 min-width: 16px;
686 min-height: 16px;
686 min-height: 16px;
687 margin: -5px 0;
687 margin: -5px 0;
688 padding: 0;
688 padding: 0;
689 line-height: 1em;
689 line-height: 1em;
690 border: 1px solid @grey4;
690 border: 1px solid @grey4;
691 box-sizing: content-box;
691 box-sizing: content-box;
692
692
693 &.gravatar-large {
693 &.gravatar-large {
694 margin: -0.5em .25em -0.5em 0;
694 margin: -0.5em .25em -0.5em 0;
695 }
695 }
696
696
697 & + .user {
697 & + .user {
698 display: inline;
698 display: inline;
699 margin: 0;
699 margin: 0;
700 padding: 0 0 0 .17em;
700 padding: 0 0 0 .17em;
701 line-height: 1em;
701 line-height: 1em;
702 }
702 }
703 }
703 }
704
704
705 .user-inline-data {
705 .user-inline-data {
706 display: inline-block;
706 display: inline-block;
707 float: left;
707 float: left;
708 padding-left: .5em;
708 padding-left: .5em;
709 line-height: 1.3em;
709 line-height: 1.3em;
710 }
710 }
711
711
712 .rc-user { // gravatar + user wrapper
712 .rc-user { // gravatar + user wrapper
713 float: left;
713 float: left;
714 position: relative;
714 position: relative;
715 min-width: 100px;
715 min-width: 100px;
716 max-width: 200px;
716 max-width: 200px;
717 min-height: (@gravatar-size + @border-thickness * 2); // account for border
717 min-height: (@gravatar-size + @border-thickness * 2); // account for border
718 display: block;
718 display: block;
719 padding: 0 0 0 (@gravatar-size + @basefontsize/2 + @border-thickness * 2);
719 padding: 0 0 0 (@gravatar-size + @basefontsize/2 + @border-thickness * 2);
720
720
721
721
722 .gravatar {
722 .gravatar {
723 display: block;
723 display: block;
724 position: absolute;
724 position: absolute;
725 top: 0;
725 top: 0;
726 left: 0;
726 left: 0;
727 min-width: @gravatar-size;
727 min-width: @gravatar-size;
728 min-height: @gravatar-size;
728 min-height: @gravatar-size;
729 margin: 0;
729 margin: 0;
730 }
730 }
731
731
732 .user {
732 .user {
733 display: block;
733 display: block;
734 max-width: 175px;
734 max-width: 175px;
735 padding-top: 2px;
735 padding-top: 2px;
736 overflow: hidden;
736 overflow: hidden;
737 text-overflow: ellipsis;
737 text-overflow: ellipsis;
738 }
738 }
739 }
739 }
740
740
741 .gist-gravatar,
741 .gist-gravatar,
742 .journal_container {
742 .journal_container {
743 .gravatar-large {
743 .gravatar-large {
744 margin: 0 .5em -10px 0;
744 margin: 0 .5em -10px 0;
745 }
745 }
746 }
746 }
747
747
748
748
749 // ADMIN SETTINGS
749 // ADMIN SETTINGS
750
750
751 // Tag Patterns
751 // Tag Patterns
752 .tag_patterns {
752 .tag_patterns {
753 .tag_input {
753 .tag_input {
754 margin-bottom: @padding;
754 margin-bottom: @padding;
755 }
755 }
756 }
756 }
757
757
758 .locked_input {
758 .locked_input {
759 position: relative;
759 position: relative;
760
760
761 input {
761 input {
762 display: inline;
762 display: inline;
763 margin-top: 3px;
763 margin-top: 3px;
764 }
764 }
765
765
766 br {
766 br {
767 display: none;
767 display: none;
768 }
768 }
769
769
770 .error-message {
770 .error-message {
771 float: left;
771 float: left;
772 width: 100%;
772 width: 100%;
773 }
773 }
774
774
775 .lock_input_button {
775 .lock_input_button {
776 display: inline;
776 display: inline;
777 }
777 }
778
778
779 .help-block {
779 .help-block {
780 clear: both;
780 clear: both;
781 }
781 }
782 }
782 }
783
783
784 // Notifications
784 // Notifications
785
785
786 .notifications_buttons {
786 .notifications_buttons {
787 margin: 0 0 @space 0;
787 margin: 0 0 @space 0;
788 padding: 0;
788 padding: 0;
789
789
790 .btn {
790 .btn {
791 display: inline-block;
791 display: inline-block;
792 }
792 }
793 }
793 }
794
794
795 .notification-list {
795 .notification-list {
796
796
797 div {
797 div {
798 display: inline-block;
798 display: inline-block;
799 vertical-align: middle;
799 vertical-align: middle;
800 }
800 }
801
801
802 .container {
802 .container {
803 display: block;
803 display: block;
804 margin: 0 0 @padding 0;
804 margin: 0 0 @padding 0;
805 }
805 }
806
806
807 .delete-notifications {
807 .delete-notifications {
808 margin-left: @padding;
808 margin-left: @padding;
809 text-align: right;
809 text-align: right;
810 cursor: pointer;
810 cursor: pointer;
811 }
811 }
812
812
813 .read-notifications {
813 .read-notifications {
814 margin-left: @padding/2;
814 margin-left: @padding/2;
815 text-align: right;
815 text-align: right;
816 width: 35px;
816 width: 35px;
817 cursor: pointer;
817 cursor: pointer;
818 }
818 }
819
819
820 .icon-minus-sign {
820 .icon-minus-sign {
821 color: @alert2;
821 color: @alert2;
822 }
822 }
823
823
824 .icon-ok-sign {
824 .icon-ok-sign {
825 color: @alert1;
825 color: @alert1;
826 }
826 }
827 }
827 }
828
828
829 .user_settings {
829 .user_settings {
830 float: left;
830 float: left;
831 clear: both;
831 clear: both;
832 display: block;
832 display: block;
833 width: 100%;
833 width: 100%;
834
834
835 .gravatar_box {
835 .gravatar_box {
836 margin-bottom: @padding;
836 margin-bottom: @padding;
837
837
838 &:after {
838 &:after {
839 content: " ";
839 content: " ";
840 clear: both;
840 clear: both;
841 width: 100%;
841 width: 100%;
842 }
842 }
843 }
843 }
844
844
845 .fields .field {
845 .fields .field {
846 clear: both;
846 clear: both;
847 }
847 }
848 }
848 }
849
849
850 .advanced_settings {
850 .advanced_settings {
851 margin-bottom: @space;
851 margin-bottom: @space;
852
852
853 .help-block {
853 .help-block {
854 margin-left: 0;
854 margin-left: 0;
855 }
855 }
856
856
857 button + .help-block {
857 button + .help-block {
858 margin-top: @padding;
858 margin-top: @padding;
859 }
859 }
860 }
860 }
861
861
862 // admin settings radio buttons and labels
862 // admin settings radio buttons and labels
863 .label-2 {
863 .label-2 {
864 float: left;
864 float: left;
865 width: @label2-width;
865 width: @label2-width;
866
866
867 label {
867 label {
868 color: @grey1;
868 color: @grey1;
869 }
869 }
870 }
870 }
871 .checkboxes {
871 .checkboxes {
872 float: left;
872 float: left;
873 width: @checkboxes-width;
873 width: @checkboxes-width;
874 margin-bottom: @padding;
874 margin-bottom: @padding;
875
875
876 .checkbox {
876 .checkbox {
877 width: 100%;
877 width: 100%;
878
878
879 label {
879 label {
880 margin: 0;
880 margin: 0;
881 padding: 0;
881 padding: 0;
882 }
882 }
883 }
883 }
884
884
885 .checkbox + .checkbox {
885 .checkbox + .checkbox {
886 display: inline-block;
886 display: inline-block;
887 }
887 }
888
888
889 label {
889 label {
890 margin-right: 1em;
890 margin-right: 1em;
891 }
891 }
892 }
892 }
893
893
894 // CHANGELOG
894 // CHANGELOG
895 .container_header {
895 .container_header {
896 float: left;
896 float: left;
897 display: block;
897 display: block;
898 width: 100%;
898 width: 100%;
899 margin: @padding 0 @padding;
899 margin: @padding 0 @padding;
900
900
901 #filter_changelog {
901 #filter_changelog {
902 float: left;
902 float: left;
903 margin-right: @padding;
903 margin-right: @padding;
904 }
904 }
905
905
906 .breadcrumbs_light {
906 .breadcrumbs_light {
907 display: inline-block;
907 display: inline-block;
908 }
908 }
909 }
909 }
910
910
911 .info_box {
911 .info_box {
912 float: right;
912 float: right;
913 }
913 }
914
914
915
915
916 #graph_nodes {
916 #graph_nodes {
917 padding-top: 43px;
917 padding-top: 43px;
918 }
918 }
919
919
920 #graph_content{
920 #graph_content{
921
921
922 // adjust for table headers so that graph renders properly
922 // adjust for table headers so that graph renders properly
923 // #graph_nodes padding - table cell padding
923 // #graph_nodes padding - table cell padding
924 padding-top: (@space - (@basefontsize * 2.4));
924 padding-top: (@space - (@basefontsize * 2.4));
925
925
926 &.graph_full_width {
926 &.graph_full_width {
927 width: 100%;
927 width: 100%;
928 max-width: 100%;
928 max-width: 100%;
929 }
929 }
930 }
930 }
931
931
932 #graph {
932 #graph {
933 .flag_status {
933 .flag_status {
934 margin: 0;
934 margin: 0;
935 }
935 }
936
936
937 .pagination-left {
937 .pagination-left {
938 float: left;
938 float: left;
939 clear: both;
939 clear: both;
940 }
940 }
941
941
942 .log-container {
942 .log-container {
943 max-width: 345px;
943 max-width: 345px;
944
944
945 .message{
945 .message{
946 max-width: 340px;
946 max-width: 340px;
947 }
947 }
948 }
948 }
949
949
950 .graph-col-wrapper {
950 .graph-col-wrapper {
951 padding-left: 110px;
951 padding-left: 110px;
952
952
953 #graph_nodes {
953 #graph_nodes {
954 width: 100px;
954 width: 100px;
955 margin-left: -110px;
955 margin-left: -110px;
956 float: left;
956 float: left;
957 clear: left;
957 clear: left;
958 }
958 }
959 }
959 }
960
960
961 .load-more-commits {
961 .load-more-commits {
962 text-align: center;
962 text-align: center;
963 }
963 }
964 .load-more-commits:hover {
964 .load-more-commits:hover {
965 background-color: @grey7;
965 background-color: @grey7;
966 }
966 }
967 .load-more-commits {
967 .load-more-commits {
968 a {
968 a {
969 display: block;
969 display: block;
970 }
970 }
971 }
971 }
972 }
972 }
973
973
974 #filter_changelog {
974 #filter_changelog {
975 float: left;
975 float: left;
976 }
976 }
977
977
978
978
979 //--- THEME ------------------//
979 //--- THEME ------------------//
980
980
981 #logo {
981 #logo {
982 float: left;
982 float: left;
983 margin: 9px 0 0 0;
983 margin: 9px 0 0 0;
984
984
985 .header {
985 .header {
986 background-color: transparent;
986 background-color: transparent;
987 }
987 }
988
988
989 a {
989 a {
990 display: inline-block;
990 display: inline-block;
991 }
991 }
992
992
993 img {
993 img {
994 height:30px;
994 height:30px;
995 }
995 }
996 }
996 }
997
997
998 .logo-wrapper {
998 .logo-wrapper {
999 float:left;
999 float:left;
1000 }
1000 }
1001
1001
1002 .branding{
1002 .branding{
1003 float: left;
1003 float: left;
1004 padding: 9px 2px;
1004 padding: 9px 2px;
1005 line-height: 1em;
1005 line-height: 1em;
1006 font-size: @navigation-fontsize;
1006 font-size: @navigation-fontsize;
1007 }
1007 }
1008
1008
1009 img {
1009 img {
1010 border: none;
1010 border: none;
1011 outline: none;
1011 outline: none;
1012 }
1012 }
1013 user-profile-header
1013 user-profile-header
1014 label {
1014 label {
1015
1015
1016 input[type="checkbox"] {
1016 input[type="checkbox"] {
1017 margin-right: 1em;
1017 margin-right: 1em;
1018 }
1018 }
1019 input[type="radio"] {
1019 input[type="radio"] {
1020 margin-right: 1em;
1020 margin-right: 1em;
1021 }
1021 }
1022 }
1022 }
1023
1023
1024 .flag_status {
1024 .flag_status {
1025 margin: 2px 8px 6px 2px;
1025 margin: 2px 8px 6px 2px;
1026 &.under_review {
1026 &.under_review {
1027 .circle(5px, @alert3);
1027 .circle(5px, @alert3);
1028 }
1028 }
1029 &.approved {
1029 &.approved {
1030 .circle(5px, @alert1);
1030 .circle(5px, @alert1);
1031 }
1031 }
1032 &.rejected,
1032 &.rejected,
1033 &.forced_closed{
1033 &.forced_closed{
1034 .circle(5px, @alert2);
1034 .circle(5px, @alert2);
1035 }
1035 }
1036 &.not_reviewed {
1036 &.not_reviewed {
1037 .circle(5px, @grey5);
1037 .circle(5px, @grey5);
1038 }
1038 }
1039 }
1039 }
1040
1040
1041 .flag_status_comment_box {
1041 .flag_status_comment_box {
1042 margin: 5px 6px 0px 2px;
1042 margin: 5px 6px 0px 2px;
1043 }
1043 }
1044 .test_pattern_preview {
1044 .test_pattern_preview {
1045 margin: @space 0;
1045 margin: @space 0;
1046
1046
1047 p {
1047 p {
1048 margin-bottom: 0;
1048 margin-bottom: 0;
1049 border-bottom: @border-thickness solid @border-default-color;
1049 border-bottom: @border-thickness solid @border-default-color;
1050 color: @grey3;
1050 color: @grey3;
1051 }
1051 }
1052
1052
1053 .btn {
1053 .btn {
1054 margin-bottom: @padding;
1054 margin-bottom: @padding;
1055 }
1055 }
1056 }
1056 }
1057 #test_pattern_result {
1057 #test_pattern_result {
1058 display: none;
1058 display: none;
1059 &:extend(pre);
1059 &:extend(pre);
1060 padding: .9em;
1060 padding: .9em;
1061 color: @grey3;
1061 color: @grey3;
1062 background-color: @grey7;
1062 background-color: @grey7;
1063 border-right: @border-thickness solid @border-default-color;
1063 border-right: @border-thickness solid @border-default-color;
1064 border-bottom: @border-thickness solid @border-default-color;
1064 border-bottom: @border-thickness solid @border-default-color;
1065 border-left: @border-thickness solid @border-default-color;
1065 border-left: @border-thickness solid @border-default-color;
1066 }
1066 }
1067
1067
1068 #repo_vcs_settings {
1068 #repo_vcs_settings {
1069 #inherit_overlay_vcs_default {
1069 #inherit_overlay_vcs_default {
1070 display: none;
1070 display: none;
1071 }
1071 }
1072 #inherit_overlay_vcs_custom {
1072 #inherit_overlay_vcs_custom {
1073 display: custom;
1073 display: custom;
1074 }
1074 }
1075 &.inherited {
1075 &.inherited {
1076 #inherit_overlay_vcs_default {
1076 #inherit_overlay_vcs_default {
1077 display: block;
1077 display: block;
1078 }
1078 }
1079 #inherit_overlay_vcs_custom {
1079 #inherit_overlay_vcs_custom {
1080 display: none;
1080 display: none;
1081 }
1081 }
1082 }
1082 }
1083 }
1083 }
1084
1084
1085 .issue-tracker-link {
1085 .issue-tracker-link {
1086 color: @rcblue;
1086 color: @rcblue;
1087 }
1087 }
1088
1088
1089 // Issue Tracker Table Show/Hide
1089 // Issue Tracker Table Show/Hide
1090 #repo_issue_tracker {
1090 #repo_issue_tracker {
1091 #inherit_overlay {
1091 #inherit_overlay {
1092 display: none;
1092 display: none;
1093 }
1093 }
1094 #custom_overlay {
1094 #custom_overlay {
1095 display: custom;
1095 display: custom;
1096 }
1096 }
1097 &.inherited {
1097 &.inherited {
1098 #inherit_overlay {
1098 #inherit_overlay {
1099 display: block;
1099 display: block;
1100 }
1100 }
1101 #custom_overlay {
1101 #custom_overlay {
1102 display: none;
1102 display: none;
1103 }
1103 }
1104 }
1104 }
1105 }
1105 }
1106 table.issuetracker {
1106 table.issuetracker {
1107 &.readonly {
1107 &.readonly {
1108 tr, td {
1108 tr, td {
1109 color: @grey3;
1109 color: @grey3;
1110 }
1110 }
1111 }
1111 }
1112 .edit {
1112 .edit {
1113 display: none;
1113 display: none;
1114 }
1114 }
1115 .editopen {
1115 .editopen {
1116 .edit {
1116 .edit {
1117 display: inline;
1117 display: inline;
1118 }
1118 }
1119 .entry {
1119 .entry {
1120 display: none;
1120 display: none;
1121 }
1121 }
1122 }
1122 }
1123 tr td.td-action {
1123 tr td.td-action {
1124 min-width: 117px;
1124 min-width: 117px;
1125 }
1125 }
1126 td input {
1126 td input {
1127 max-width: none;
1127 max-width: none;
1128 min-width: 30px;
1128 min-width: 30px;
1129 width: 80%;
1129 width: 80%;
1130 }
1130 }
1131 .issuetracker_pref input {
1131 .issuetracker_pref input {
1132 width: 40%;
1132 width: 40%;
1133 }
1133 }
1134 input.edit_issuetracker_update {
1134 input.edit_issuetracker_update {
1135 margin-right: 0;
1135 margin-right: 0;
1136 width: auto;
1136 width: auto;
1137 }
1137 }
1138 }
1138 }
1139
1139
1140 table.integrations {
1140 table.integrations {
1141 .td-icon {
1141 .td-icon {
1142 width: 20px;
1142 width: 20px;
1143 .integration-icon {
1143 .integration-icon {
1144 height: 20px;
1144 height: 20px;
1145 width: 20px;
1145 width: 20px;
1146 }
1146 }
1147 }
1147 }
1148 }
1148 }
1149
1149
1150 .integrations {
1150 .integrations {
1151 a.integration-box {
1151 a.integration-box {
1152 color: @text-color;
1152 color: @text-color;
1153 &:hover {
1153 &:hover {
1154 .panel {
1154 .panel {
1155 background: #fbfbfb;
1155 background: #fbfbfb;
1156 }
1156 }
1157 }
1157 }
1158 .integration-icon {
1158 .integration-icon {
1159 width: 30px;
1159 width: 30px;
1160 height: 30px;
1160 height: 30px;
1161 margin-right: 20px;
1161 margin-right: 20px;
1162 float: left;
1162 float: left;
1163 }
1163 }
1164
1164
1165 .panel-body {
1165 .panel-body {
1166 padding: 10px;
1166 padding: 10px;
1167 }
1167 }
1168 .panel {
1168 .panel {
1169 margin-bottom: 10px;
1169 margin-bottom: 10px;
1170 }
1170 }
1171 h2 {
1171 h2 {
1172 display: inline-block;
1172 display: inline-block;
1173 margin: 0;
1173 margin: 0;
1174 min-width: 140px;
1174 min-width: 140px;
1175 }
1175 }
1176 }
1176 }
1177 }
1177 }
1178
1178
1179 //Permissions Settings
1179 //Permissions Settings
1180 #add_perm {
1180 #add_perm {
1181 margin: 0 0 @padding;
1181 margin: 0 0 @padding;
1182 cursor: pointer;
1182 cursor: pointer;
1183 }
1183 }
1184
1184
1185 .perm_ac {
1185 .perm_ac {
1186 input {
1186 input {
1187 width: 95%;
1187 width: 95%;
1188 }
1188 }
1189 }
1189 }
1190
1190
1191 .autocomplete-suggestions {
1191 .autocomplete-suggestions {
1192 width: auto !important; // overrides autocomplete.js
1192 width: auto !important; // overrides autocomplete.js
1193 margin: 0;
1193 margin: 0;
1194 border: @border-thickness solid @rcblue;
1194 border: @border-thickness solid @rcblue;
1195 border-radius: @border-radius;
1195 border-radius: @border-radius;
1196 color: @rcblue;
1196 color: @rcblue;
1197 background-color: white;
1197 background-color: white;
1198 }
1198 }
1199 .autocomplete-selected {
1199 .autocomplete-selected {
1200 background: #F0F0F0;
1200 background: #F0F0F0;
1201 }
1201 }
1202 .ac-container-wrap {
1202 .ac-container-wrap {
1203 margin: 0;
1203 margin: 0;
1204 padding: 8px;
1204 padding: 8px;
1205 border-bottom: @border-thickness solid @rclightblue;
1205 border-bottom: @border-thickness solid @rclightblue;
1206 list-style-type: none;
1206 list-style-type: none;
1207 cursor: pointer;
1207 cursor: pointer;
1208
1208
1209 &:hover {
1209 &:hover {
1210 background-color: @rclightblue;
1210 background-color: @rclightblue;
1211 }
1211 }
1212
1212
1213 img {
1213 img {
1214 height: @gravatar-size;
1214 height: @gravatar-size;
1215 width: @gravatar-size;
1215 width: @gravatar-size;
1216 margin-right: 1em;
1216 margin-right: 1em;
1217 }
1217 }
1218
1218
1219 strong {
1219 strong {
1220 font-weight: normal;
1220 font-weight: normal;
1221 }
1221 }
1222 }
1222 }
1223
1223
1224 // Settings Dropdown
1224 // Settings Dropdown
1225 .user-menu .container {
1225 .user-menu .container {
1226 padding: 0 4px;
1226 padding: 0 4px;
1227 margin: 0;
1227 margin: 0;
1228 }
1228 }
1229
1229
1230 .user-menu .gravatar {
1230 .user-menu .gravatar {
1231 cursor: pointer;
1231 cursor: pointer;
1232 }
1232 }
1233
1233
1234 .codeblock {
1234 .codeblock {
1235 margin-bottom: @padding;
1235 margin-bottom: @padding;
1236 clear: both;
1236 clear: both;
1237
1237
1238 .stats{
1238 .stats{
1239 overflow: hidden;
1239 overflow: hidden;
1240 }
1240 }
1241
1241
1242 .message{
1242 .message{
1243 textarea{
1243 textarea{
1244 margin: 0;
1244 margin: 0;
1245 }
1245 }
1246 }
1246 }
1247
1247
1248 .code-header {
1248 .code-header {
1249 .stats {
1249 .stats {
1250 line-height: 2em;
1250 line-height: 2em;
1251
1251
1252 .revision_id {
1252 .revision_id {
1253 margin-left: 0;
1253 margin-left: 0;
1254 }
1254 }
1255 .buttons {
1255 .buttons {
1256 padding-right: 0;
1256 padding-right: 0;
1257 }
1257 }
1258 }
1258 }
1259
1259
1260 .item{
1260 .item{
1261 margin-right: 0.5em;
1261 margin-right: 0.5em;
1262 }
1262 }
1263 }
1263 }
1264
1264
1265 #editor_container{
1265 #editor_container{
1266 position: relative;
1266 position: relative;
1267 margin: @padding;
1267 margin: @padding;
1268 }
1268 }
1269 }
1269 }
1270
1270
1271 #file_history_container {
1271 #file_history_container {
1272 display: none;
1272 display: none;
1273 }
1273 }
1274
1274
1275 .file-history-inner {
1275 .file-history-inner {
1276 margin-bottom: 10px;
1276 margin-bottom: 10px;
1277 }
1277 }
1278
1278
1279 // Pull Requests
1279 // Pull Requests
1280 .summary-details {
1280 .summary-details {
1281 width: 72%;
1281 width: 72%;
1282 }
1282 }
1283 .pr-summary {
1283 .pr-summary {
1284 border-bottom: @border-thickness solid @grey5;
1284 border-bottom: @border-thickness solid @grey5;
1285 margin-bottom: @space;
1285 margin-bottom: @space;
1286 }
1286 }
1287 .reviewers-title {
1287 .reviewers-title {
1288 width: 25%;
1288 width: 25%;
1289 min-width: 200px;
1289 min-width: 200px;
1290 }
1290 }
1291 .reviewers {
1291 .reviewers {
1292 width: 25%;
1292 width: 25%;
1293 min-width: 200px;
1293 min-width: 200px;
1294 }
1294 }
1295 .reviewers ul li {
1295 .reviewers ul li {
1296 position: relative;
1296 position: relative;
1297 width: 100%;
1297 width: 100%;
1298 margin-bottom: 8px;
1298 margin-bottom: 8px;
1299 }
1299 }
1300 .reviewers_member {
1300 .reviewers_member {
1301 width: 100%;
1301 width: 100%;
1302 overflow: auto;
1302 overflow: auto;
1303 }
1303 }
1304 .reviewer_reason {
1304 .reviewer_reason {
1305 padding-left: 20px;
1305 padding-left: 20px;
1306 }
1306 }
1307 .reviewer_status {
1307 .reviewer_status {
1308 display: inline-block;
1308 display: inline-block;
1309 vertical-align: top;
1309 vertical-align: top;
1310 width: 7%;
1310 width: 7%;
1311 min-width: 20px;
1311 min-width: 20px;
1312 height: 1.2em;
1312 height: 1.2em;
1313 margin-top: 3px;
1313 margin-top: 3px;
1314 line-height: 1em;
1314 line-height: 1em;
1315 }
1315 }
1316
1316
1317 .reviewer_name {
1317 .reviewer_name {
1318 display: inline-block;
1318 display: inline-block;
1319 max-width: 83%;
1319 max-width: 83%;
1320 padding-right: 20px;
1320 padding-right: 20px;
1321 vertical-align: middle;
1321 vertical-align: middle;
1322 line-height: 1;
1322 line-height: 1;
1323
1323
1324 .rc-user {
1324 .rc-user {
1325 min-width: 0;
1325 min-width: 0;
1326 margin: -2px 1em 0 0;
1326 margin: -2px 1em 0 0;
1327 }
1327 }
1328
1328
1329 .reviewer {
1329 .reviewer {
1330 float: left;
1330 float: left;
1331 }
1331 }
1332
1332
1333 &.to-delete {
1333 &.to-delete {
1334 .user,
1334 .user,
1335 .reviewer {
1335 .reviewer {
1336 text-decoration: line-through;
1336 text-decoration: line-through;
1337 }
1337 }
1338 }
1338 }
1339 }
1339 }
1340
1340
1341 .reviewer_member_remove {
1341 .reviewer_member_remove {
1342 position: absolute;
1342 position: absolute;
1343 right: 0;
1343 right: 0;
1344 top: 0;
1344 top: 0;
1345 width: 16px;
1345 width: 16px;
1346 margin-bottom: 10px;
1346 margin-bottom: 10px;
1347 padding: 0;
1347 padding: 0;
1348 color: black;
1348 color: black;
1349 }
1349 }
1350 .reviewer_member_status {
1350 .reviewer_member_status {
1351 margin-top: 5px;
1351 margin-top: 5px;
1352 }
1352 }
1353 .pr-summary #summary{
1353 .pr-summary #summary{
1354 width: 100%;
1354 width: 100%;
1355 }
1355 }
1356 .pr-summary .action_button:hover {
1356 .pr-summary .action_button:hover {
1357 border: 0;
1357 border: 0;
1358 cursor: pointer;
1358 cursor: pointer;
1359 }
1359 }
1360 .pr-details-title {
1360 .pr-details-title {
1361 padding-bottom: 8px;
1361 padding-bottom: 8px;
1362 border-bottom: @border-thickness solid @grey5;
1362 border-bottom: @border-thickness solid @grey5;
1363
1363
1364 .action_button.disabled {
1364 .action_button.disabled {
1365 color: @grey4;
1365 color: @grey4;
1366 cursor: inherit;
1366 cursor: inherit;
1367 }
1367 }
1368 .action_button {
1368 .action_button {
1369 color: @rcblue;
1369 color: @rcblue;
1370 }
1370 }
1371 }
1371 }
1372 .pr-details-content {
1372 .pr-details-content {
1373 margin-top: @textmargin;
1373 margin-top: @textmargin;
1374 margin-bottom: @textmargin;
1374 margin-bottom: @textmargin;
1375 }
1375 }
1376 .pr-description {
1376 .pr-description {
1377 white-space:pre-wrap;
1377 white-space:pre-wrap;
1378 }
1378 }
1379 .group_members {
1379 .group_members {
1380 margin-top: 0;
1380 margin-top: 0;
1381 padding: 0;
1381 padding: 0;
1382 list-style: outside none none;
1382 list-style: outside none none;
1383
1383
1384 img {
1384 img {
1385 height: @gravatar-size;
1385 height: @gravatar-size;
1386 width: @gravatar-size;
1386 width: @gravatar-size;
1387 margin-right: .5em;
1387 margin-right: .5em;
1388 margin-left: 3px;
1388 margin-left: 3px;
1389 }
1389 }
1390
1390
1391 .to-delete {
1391 .to-delete {
1392 .user {
1392 .user {
1393 text-decoration: line-through;
1393 text-decoration: line-through;
1394 }
1394 }
1395 }
1395 }
1396 }
1396 }
1397
1397
1398 .compare_view_commits_title {
1398 .compare_view_commits_title {
1399 .disabled {
1399 .disabled {
1400 cursor: inherit;
1400 cursor: inherit;
1401 &:hover{
1401 &:hover{
1402 background-color: inherit;
1402 background-color: inherit;
1403 color: inherit;
1403 color: inherit;
1404 }
1404 }
1405 }
1405 }
1406 }
1406 }
1407
1407
1408 .subtitle-compare {
1408 .subtitle-compare {
1409 margin: -15px 0px 0px 0px;
1409 margin: -15px 0px 0px 0px;
1410 }
1410 }
1411
1411
1412 .comments-summary-td {
1412 .comments-summary-td {
1413 border-top: 1px dashed @grey5;
1413 border-top: 1px dashed @grey5;
1414 }
1414 }
1415
1415
1416 // new entry in group_members
1416 // new entry in group_members
1417 .td-author-new-entry {
1417 .td-author-new-entry {
1418 background-color: rgba(red(@alert1), green(@alert1), blue(@alert1), 0.3);
1418 background-color: rgba(red(@alert1), green(@alert1), blue(@alert1), 0.3);
1419 }
1419 }
1420
1420
1421 .usergroup_member_remove {
1421 .usergroup_member_remove {
1422 width: 16px;
1422 width: 16px;
1423 margin-bottom: 10px;
1423 margin-bottom: 10px;
1424 padding: 0;
1424 padding: 0;
1425 color: black !important;
1425 color: black !important;
1426 cursor: pointer;
1426 cursor: pointer;
1427 }
1427 }
1428
1428
1429 .reviewer_ac .ac-input {
1429 .reviewer_ac .ac-input {
1430 width: 92%;
1430 width: 92%;
1431 margin-bottom: 1em;
1431 margin-bottom: 1em;
1432 }
1432 }
1433
1433
1434 .compare_view_commits tr{
1434 .compare_view_commits tr{
1435 height: 20px;
1435 height: 20px;
1436 }
1436 }
1437 .compare_view_commits td {
1437 .compare_view_commits td {
1438 vertical-align: top;
1438 vertical-align: top;
1439 padding-top: 10px;
1439 padding-top: 10px;
1440 }
1440 }
1441 .compare_view_commits .author {
1441 .compare_view_commits .author {
1442 margin-left: 5px;
1442 margin-left: 5px;
1443 }
1443 }
1444
1444
1445 .compare_view_commits {
1445 .compare_view_commits {
1446 .color-a {
1446 .color-a {
1447 color: @alert1;
1447 color: @alert1;
1448 }
1448 }
1449
1449
1450 .color-c {
1450 .color-c {
1451 color: @color3;
1451 color: @color3;
1452 }
1452 }
1453
1453
1454 .color-r {
1454 .color-r {
1455 color: @color5;
1455 color: @color5;
1456 }
1456 }
1457
1457
1458 .color-a-bg {
1458 .color-a-bg {
1459 background-color: @alert1;
1459 background-color: @alert1;
1460 }
1460 }
1461
1461
1462 .color-c-bg {
1462 .color-c-bg {
1463 background-color: @alert3;
1463 background-color: @alert3;
1464 }
1464 }
1465
1465
1466 .color-r-bg {
1466 .color-r-bg {
1467 background-color: @alert2;
1467 background-color: @alert2;
1468 }
1468 }
1469
1469
1470 .color-a-border {
1470 .color-a-border {
1471 border: 1px solid @alert1;
1471 border: 1px solid @alert1;
1472 }
1472 }
1473
1473
1474 .color-c-border {
1474 .color-c-border {
1475 border: 1px solid @alert3;
1475 border: 1px solid @alert3;
1476 }
1476 }
1477
1477
1478 .color-r-border {
1478 .color-r-border {
1479 border: 1px solid @alert2;
1479 border: 1px solid @alert2;
1480 }
1480 }
1481
1481
1482 .commit-change-indicator {
1482 .commit-change-indicator {
1483 width: 15px;
1483 width: 15px;
1484 height: 15px;
1484 height: 15px;
1485 position: relative;
1485 position: relative;
1486 left: 15px;
1486 left: 15px;
1487 }
1487 }
1488
1488
1489 .commit-change-content {
1489 .commit-change-content {
1490 text-align: center;
1490 text-align: center;
1491 vertical-align: middle;
1491 vertical-align: middle;
1492 line-height: 15px;
1492 line-height: 15px;
1493 }
1493 }
1494 }
1494 }
1495
1495
1496 .compare_view_files {
1496 .compare_view_files {
1497 width: 100%;
1497 width: 100%;
1498
1498
1499 td {
1499 td {
1500 vertical-align: middle;
1500 vertical-align: middle;
1501 }
1501 }
1502 }
1502 }
1503
1503
1504 .compare_view_filepath {
1504 .compare_view_filepath {
1505 color: @grey1;
1505 color: @grey1;
1506 }
1506 }
1507
1507
1508 .show_more {
1508 .show_more {
1509 display: inline-block;
1509 display: inline-block;
1510 position: relative;
1510 position: relative;
1511 vertical-align: middle;
1511 vertical-align: middle;
1512 width: 4px;
1512 width: 4px;
1513 height: @basefontsize;
1513 height: @basefontsize;
1514
1514
1515 &:after {
1515 &:after {
1516 content: "\00A0\25BE";
1516 content: "\00A0\25BE";
1517 display: inline-block;
1517 display: inline-block;
1518 width:10px;
1518 width:10px;
1519 line-height: 5px;
1519 line-height: 5px;
1520 font-size: 12px;
1520 font-size: 12px;
1521 cursor: pointer;
1521 cursor: pointer;
1522 }
1522 }
1523 }
1523 }
1524
1524
1525 .journal_more .show_more {
1525 .journal_more .show_more {
1526 display: inline;
1526 display: inline;
1527
1527
1528 &:after {
1528 &:after {
1529 content: none;
1529 content: none;
1530 }
1530 }
1531 }
1531 }
1532
1532
1533 .open .show_more:after,
1533 .open .show_more:after,
1534 .select2-dropdown-open .show_more:after {
1534 .select2-dropdown-open .show_more:after {
1535 .rotate(180deg);
1535 .rotate(180deg);
1536 margin-left: 4px;
1536 margin-left: 4px;
1537 }
1537 }
1538
1538
1539
1539
1540 .compare_view_commits .collapse_commit:after {
1540 .compare_view_commits .collapse_commit:after {
1541 cursor: pointer;
1541 cursor: pointer;
1542 content: "\00A0\25B4";
1542 content: "\00A0\25B4";
1543 margin-left: -3px;
1543 margin-left: -3px;
1544 font-size: 17px;
1544 font-size: 17px;
1545 color: @grey4;
1545 color: @grey4;
1546 }
1546 }
1547
1547
1548 .diff_links {
1548 .diff_links {
1549 margin-left: 8px;
1549 margin-left: 8px;
1550 }
1550 }
1551
1551
1552 div.ancestor {
1552 div.ancestor {
1553 margin: -30px 0px;
1553 margin: -30px 0px;
1554 }
1554 }
1555
1555
1556 .cs_icon_td input[type="checkbox"] {
1556 .cs_icon_td input[type="checkbox"] {
1557 display: none;
1557 display: none;
1558 }
1558 }
1559
1559
1560 .cs_icon_td .expand_file_icon:after {
1560 .cs_icon_td .expand_file_icon:after {
1561 cursor: pointer;
1561 cursor: pointer;
1562 content: "\00A0\25B6";
1562 content: "\00A0\25B6";
1563 font-size: 12px;
1563 font-size: 12px;
1564 color: @grey4;
1564 color: @grey4;
1565 }
1565 }
1566
1566
1567 .cs_icon_td .collapse_file_icon:after {
1567 .cs_icon_td .collapse_file_icon:after {
1568 cursor: pointer;
1568 cursor: pointer;
1569 content: "\00A0\25BC";
1569 content: "\00A0\25BC";
1570 font-size: 12px;
1570 font-size: 12px;
1571 color: @grey4;
1571 color: @grey4;
1572 }
1572 }
1573
1573
1574 /*new binary
1574 /*new binary
1575 NEW_FILENODE = 1
1575 NEW_FILENODE = 1
1576 DEL_FILENODE = 2
1576 DEL_FILENODE = 2
1577 MOD_FILENODE = 3
1577 MOD_FILENODE = 3
1578 RENAMED_FILENODE = 4
1578 RENAMED_FILENODE = 4
1579 COPIED_FILENODE = 5
1579 COPIED_FILENODE = 5
1580 CHMOD_FILENODE = 6
1580 CHMOD_FILENODE = 6
1581 BIN_FILENODE = 7
1581 BIN_FILENODE = 7
1582 */
1582 */
1583 .cs_files_expand {
1583 .cs_files_expand {
1584 font-size: @basefontsize + 5px;
1584 font-size: @basefontsize + 5px;
1585 line-height: 1.8em;
1585 line-height: 1.8em;
1586 float: right;
1586 float: right;
1587 }
1587 }
1588
1588
1589 .cs_files_expand span{
1589 .cs_files_expand span{
1590 color: @rcblue;
1590 color: @rcblue;
1591 cursor: pointer;
1591 cursor: pointer;
1592 }
1592 }
1593 .cs_files {
1593 .cs_files {
1594 clear: both;
1594 clear: both;
1595 padding-bottom: @padding;
1595 padding-bottom: @padding;
1596
1596
1597 .cur_cs {
1597 .cur_cs {
1598 margin: 10px 2px;
1598 margin: 10px 2px;
1599 font-weight: bold;
1599 font-weight: bold;
1600 }
1600 }
1601
1601
1602 .node {
1602 .node {
1603 float: left;
1603 float: left;
1604 }
1604 }
1605
1605
1606 .changes {
1606 .changes {
1607 float: right;
1607 float: right;
1608 color: white;
1608 color: white;
1609 font-size: @basefontsize - 4px;
1609 font-size: @basefontsize - 4px;
1610 margin-top: 4px;
1610 margin-top: 4px;
1611 opacity: 0.6;
1611 opacity: 0.6;
1612 filter: Alpha(opacity=60); /* IE8 and earlier */
1612 filter: Alpha(opacity=60); /* IE8 and earlier */
1613
1613
1614 .added {
1614 .added {
1615 background-color: @alert1;
1615 background-color: @alert1;
1616 float: left;
1616 float: left;
1617 text-align: center;
1617 text-align: center;
1618 }
1618 }
1619
1619
1620 .deleted {
1620 .deleted {
1621 background-color: @alert2;
1621 background-color: @alert2;
1622 float: left;
1622 float: left;
1623 text-align: center;
1623 text-align: center;
1624 }
1624 }
1625
1625
1626 .bin {
1626 .bin {
1627 background-color: @alert1;
1627 background-color: @alert1;
1628 text-align: center;
1628 text-align: center;
1629 }
1629 }
1630
1630
1631 /*new binary*/
1631 /*new binary*/
1632 .bin.bin1 {
1632 .bin.bin1 {
1633 background-color: @alert1;
1633 background-color: @alert1;
1634 text-align: center;
1634 text-align: center;
1635 }
1635 }
1636
1636
1637 /*deleted binary*/
1637 /*deleted binary*/
1638 .bin.bin2 {
1638 .bin.bin2 {
1639 background-color: @alert2;
1639 background-color: @alert2;
1640 text-align: center;
1640 text-align: center;
1641 }
1641 }
1642
1642
1643 /*mod binary*/
1643 /*mod binary*/
1644 .bin.bin3 {
1644 .bin.bin3 {
1645 background-color: @grey2;
1645 background-color: @grey2;
1646 text-align: center;
1646 text-align: center;
1647 }
1647 }
1648
1648
1649 /*rename file*/
1649 /*rename file*/
1650 .bin.bin4 {
1650 .bin.bin4 {
1651 background-color: @alert4;
1651 background-color: @alert4;
1652 text-align: center;
1652 text-align: center;
1653 }
1653 }
1654
1654
1655 /*copied file*/
1655 /*copied file*/
1656 .bin.bin5 {
1656 .bin.bin5 {
1657 background-color: @alert4;
1657 background-color: @alert4;
1658 text-align: center;
1658 text-align: center;
1659 }
1659 }
1660
1660
1661 /*chmod file*/
1661 /*chmod file*/
1662 .bin.bin6 {
1662 .bin.bin6 {
1663 background-color: @grey2;
1663 background-color: @grey2;
1664 text-align: center;
1664 text-align: center;
1665 }
1665 }
1666 }
1666 }
1667 }
1667 }
1668
1668
1669 .cs_files .cs_added, .cs_files .cs_A,
1669 .cs_files .cs_added, .cs_files .cs_A,
1670 .cs_files .cs_added, .cs_files .cs_M,
1670 .cs_files .cs_added, .cs_files .cs_M,
1671 .cs_files .cs_added, .cs_files .cs_D {
1671 .cs_files .cs_added, .cs_files .cs_D {
1672 height: 16px;
1672 height: 16px;
1673 padding-right: 10px;
1673 padding-right: 10px;
1674 margin-top: 7px;
1674 margin-top: 7px;
1675 text-align: left;
1675 text-align: left;
1676 }
1676 }
1677
1677
1678 .cs_icon_td {
1678 .cs_icon_td {
1679 min-width: 16px;
1679 min-width: 16px;
1680 width: 16px;
1680 width: 16px;
1681 }
1681 }
1682
1682
1683 .pull-request-merge {
1683 .pull-request-merge {
1684 border: 1px solid @grey5;
1684 border: 1px solid @grey5;
1685 padding: 10px 0px 20px;
1685 padding: 10px 0px 20px;
1686 margin-top: 10px;
1686 margin-top: 10px;
1687 margin-bottom: 20px;
1687 margin-bottom: 20px;
1688 }
1688 }
1689
1689
1690 .pull-request-merge ul {
1690 .pull-request-merge ul {
1691 padding: 0px 0px;
1691 padding: 0px 0px;
1692 }
1692 }
1693
1693
1694 .pull-request-merge li:before{
1694 .pull-request-merge li:before{
1695 content:none;
1695 content:none;
1696 }
1696 }
1697
1697
1698 .pull-request-merge .pull-request-wrap {
1698 .pull-request-merge .pull-request-wrap {
1699 height: auto;
1699 height: auto;
1700 padding: 0px 0px;
1700 padding: 0px 0px;
1701 text-align: right;
1701 text-align: right;
1702 }
1702 }
1703
1703
1704 .pull-request-merge span {
1704 .pull-request-merge span {
1705 margin-right: 5px;
1705 margin-right: 5px;
1706 }
1706 }
1707
1707
1708 .pull-request-merge-actions {
1708 .pull-request-merge-actions {
1709 height: 30px;
1709 height: 30px;
1710 padding: 0px 0px;
1710 padding: 0px 0px;
1711 }
1711 }
1712
1712
1713 .merge-status {
1713 .merge-status {
1714 margin-right: 5px;
1714 margin-right: 5px;
1715 }
1715 }
1716
1716
1717 .merge-message {
1717 .merge-message {
1718 font-size: 1.2em
1718 font-size: 1.2em
1719 }
1719 }
1720
1720
1721 .merge-message.success i,
1721 .merge-message.success i,
1722 .merge-icon.success i {
1722 .merge-icon.success i {
1723 color:@alert1;
1723 color:@alert1;
1724 }
1724 }
1725
1725
1726 .merge-message.warning i,
1726 .merge-message.warning i,
1727 .merge-icon.warning i {
1727 .merge-icon.warning i {
1728 color: @alert3;
1728 color: @alert3;
1729 }
1729 }
1730
1730
1731 .merge-message.error i,
1731 .merge-message.error i,
1732 .merge-icon.error i {
1732 .merge-icon.error i {
1733 color:@alert2;
1733 color:@alert2;
1734 }
1734 }
1735
1735
1736 .pr-versions {
1736 .pr-versions {
1737 font-size: 1.1em;
1737 font-size: 1.1em;
1738
1738
1739 table {
1739 table {
1740 padding: 0px 5px;
1740 padding: 0px 5px;
1741 }
1741 }
1742
1742
1743 td {
1743 td {
1744 line-height: 15px;
1744 line-height: 15px;
1745 }
1745 }
1746
1746
1747 .flag_status {
1747 .flag_status {
1748 margin: 0;
1748 margin: 0;
1749 }
1749 }
1750
1750
1751 .compare-radio-button {
1751 .compare-radio-button {
1752 position: relative;
1752 position: relative;
1753 top: -3px;
1753 top: -3px;
1754 }
1754 }
1755 }
1755 }
1756
1756
1757
1757
1758 #close_pull_request {
1758 #close_pull_request {
1759 margin-right: 0px;
1759 margin-right: 0px;
1760 }
1760 }
1761
1761
1762 .empty_data {
1762 .empty_data {
1763 color: @grey4;
1763 color: @grey4;
1764 }
1764 }
1765
1765
1766 #changeset_compare_view_content {
1766 #changeset_compare_view_content {
1767 margin-bottom: @space;
1767 margin-bottom: @space;
1768 clear: both;
1768 clear: both;
1769 width: 100%;
1769 width: 100%;
1770 box-sizing: border-box;
1770 box-sizing: border-box;
1771 .border-radius(@border-radius);
1771 .border-radius(@border-radius);
1772
1772
1773 .help-block {
1773 .help-block {
1774 margin: @padding 0;
1774 margin: @padding 0;
1775 color: @text-color;
1775 color: @text-color;
1776 }
1776 }
1777
1777
1778 .empty_data {
1778 .empty_data {
1779 margin: @padding 0;
1779 margin: @padding 0;
1780 }
1780 }
1781
1781
1782 .alert {
1782 .alert {
1783 margin-bottom: @space;
1783 margin-bottom: @space;
1784 }
1784 }
1785 }
1785 }
1786
1786
1787 .table_disp {
1787 .table_disp {
1788 .status {
1788 .status {
1789 width: auto;
1789 width: auto;
1790
1790
1791 .flag_status {
1791 .flag_status {
1792 float: left;
1792 float: left;
1793 }
1793 }
1794 }
1794 }
1795 }
1795 }
1796
1796
1797 .status_box_menu {
1797 .status_box_menu {
1798 margin: 0;
1798 margin: 0;
1799 }
1799 }
1800
1800
1801 .notification-table{
1801 .notification-table{
1802 margin-bottom: @space;
1802 margin-bottom: @space;
1803 display: table;
1803 display: table;
1804 width: 100%;
1804 width: 100%;
1805
1805
1806 .container{
1806 .container{
1807 display: table-row;
1807 display: table-row;
1808
1808
1809 .notification-header{
1809 .notification-header{
1810 border-bottom: @border-thickness solid @border-default-color;
1810 border-bottom: @border-thickness solid @border-default-color;
1811 }
1811 }
1812
1812
1813 .notification-subject{
1813 .notification-subject{
1814 display: table-cell;
1814 display: table-cell;
1815 }
1815 }
1816 }
1816 }
1817 }
1817 }
1818
1818
1819 // Notifications
1819 // Notifications
1820 .notification-header{
1820 .notification-header{
1821 display: table;
1821 display: table;
1822 width: 100%;
1822 width: 100%;
1823 padding: floor(@basefontsize/2) 0;
1823 padding: floor(@basefontsize/2) 0;
1824 line-height: 1em;
1824 line-height: 1em;
1825
1825
1826 .desc, .delete-notifications, .read-notifications{
1826 .desc, .delete-notifications, .read-notifications{
1827 display: table-cell;
1827 display: table-cell;
1828 text-align: left;
1828 text-align: left;
1829 }
1829 }
1830
1830
1831 .desc{
1831 .desc{
1832 width: 1163px;
1832 width: 1163px;
1833 }
1833 }
1834
1834
1835 .delete-notifications, .read-notifications{
1835 .delete-notifications, .read-notifications{
1836 width: 35px;
1836 width: 35px;
1837 min-width: 35px; //fixes when only one button is displayed
1837 min-width: 35px; //fixes when only one button is displayed
1838 }
1838 }
1839 }
1839 }
1840
1840
1841 .notification-body {
1841 .notification-body {
1842 .markdown-block,
1842 .markdown-block,
1843 .rst-block {
1843 .rst-block {
1844 padding: @padding 0;
1844 padding: @padding 0;
1845 }
1845 }
1846
1846
1847 .notification-subject {
1847 .notification-subject {
1848 padding: @textmargin 0;
1848 padding: @textmargin 0;
1849 border-bottom: @border-thickness solid @border-default-color;
1849 border-bottom: @border-thickness solid @border-default-color;
1850 }
1850 }
1851 }
1851 }
1852
1852
1853
1853
1854 .notifications_buttons{
1854 .notifications_buttons{
1855 float: right;
1855 float: right;
1856 }
1856 }
1857
1857
1858 #notification-status{
1858 #notification-status{
1859 display: inline;
1859 display: inline;
1860 }
1860 }
1861
1861
1862 // Repositories
1862 // Repositories
1863
1863
1864 #summary.fields{
1864 #summary.fields{
1865 display: table;
1865 display: table;
1866
1866
1867 .field{
1867 .field{
1868 display: table-row;
1868 display: table-row;
1869
1869
1870 .label-summary{
1870 .label-summary{
1871 display: table-cell;
1871 display: table-cell;
1872 min-width: @label-summary-minwidth;
1872 min-width: @label-summary-minwidth;
1873 padding-top: @padding/2;
1873 padding-top: @padding/2;
1874 padding-bottom: @padding/2;
1874 padding-bottom: @padding/2;
1875 padding-right: @padding/2;
1875 padding-right: @padding/2;
1876 }
1876 }
1877
1877
1878 .input{
1878 .input{
1879 display: table-cell;
1879 display: table-cell;
1880 padding: @padding/2;
1880 padding: @padding/2;
1881
1881
1882 input{
1882 input{
1883 min-width: 29em;
1883 min-width: 29em;
1884 padding: @padding/4;
1884 padding: @padding/4;
1885 }
1885 }
1886 }
1886 }
1887 .statistics, .downloads{
1887 .statistics, .downloads{
1888 .disabled{
1888 .disabled{
1889 color: @grey4;
1889 color: @grey4;
1890 }
1890 }
1891 }
1891 }
1892 }
1892 }
1893 }
1893 }
1894
1894
1895 #summary{
1895 #summary{
1896 width: 70%;
1896 width: 70%;
1897 }
1897 }
1898
1898
1899
1899
1900 // Journal
1900 // Journal
1901 .journal.title {
1901 .journal.title {
1902 h5 {
1902 h5 {
1903 float: left;
1903 float: left;
1904 margin: 0;
1904 margin: 0;
1905 width: 70%;
1905 width: 70%;
1906 }
1906 }
1907
1907
1908 ul {
1908 ul {
1909 float: right;
1909 float: right;
1910 display: inline-block;
1910 display: inline-block;
1911 margin: 0;
1911 margin: 0;
1912 width: 30%;
1912 width: 30%;
1913 text-align: right;
1913 text-align: right;
1914
1914
1915 li {
1915 li {
1916 display: inline;
1916 display: inline;
1917 font-size: @journal-fontsize;
1917 font-size: @journal-fontsize;
1918 line-height: 1em;
1918 line-height: 1em;
1919
1919
1920 &:before { content: none; }
1920 &:before { content: none; }
1921 }
1921 }
1922 }
1922 }
1923 }
1923 }
1924
1924
1925 .filterexample {
1925 .filterexample {
1926 position: absolute;
1926 position: absolute;
1927 top: 95px;
1927 top: 95px;
1928 left: @contentpadding;
1928 left: @contentpadding;
1929 color: @rcblue;
1929 color: @rcblue;
1930 font-size: 11px;
1930 font-size: 11px;
1931 font-family: @text-regular;
1931 font-family: @text-regular;
1932 cursor: help;
1932 cursor: help;
1933
1933
1934 &:hover {
1934 &:hover {
1935 color: @rcdarkblue;
1935 color: @rcdarkblue;
1936 }
1936 }
1937
1937
1938 @media (max-width:768px) {
1938 @media (max-width:768px) {
1939 position: relative;
1939 position: relative;
1940 top: auto;
1940 top: auto;
1941 left: auto;
1941 left: auto;
1942 display: block;
1942 display: block;
1943 }
1943 }
1944 }
1944 }
1945
1945
1946
1946
1947 #journal{
1947 #journal{
1948 margin-bottom: @space;
1948 margin-bottom: @space;
1949
1949
1950 .journal_day{
1950 .journal_day{
1951 margin-bottom: @textmargin/2;
1951 margin-bottom: @textmargin/2;
1952 padding-bottom: @textmargin/2;
1952 padding-bottom: @textmargin/2;
1953 font-size: @journal-fontsize;
1953 font-size: @journal-fontsize;
1954 border-bottom: @border-thickness solid @border-default-color;
1954 border-bottom: @border-thickness solid @border-default-color;
1955 }
1955 }
1956
1956
1957 .journal_container{
1957 .journal_container{
1958 margin-bottom: @space;
1958 margin-bottom: @space;
1959
1959
1960 .journal_user{
1960 .journal_user{
1961 display: inline-block;
1961 display: inline-block;
1962 }
1962 }
1963 .journal_action_container{
1963 .journal_action_container{
1964 display: block;
1964 display: block;
1965 margin-top: @textmargin;
1965 margin-top: @textmargin;
1966
1966
1967 div{
1967 div{
1968 display: inline;
1968 display: inline;
1969 }
1969 }
1970
1970
1971 div.journal_action_params{
1971 div.journal_action_params{
1972 display: block;
1972 display: block;
1973 }
1973 }
1974
1974
1975 div.journal_repo:after{
1975 div.journal_repo:after{
1976 content: "\A";
1976 content: "\A";
1977 white-space: pre;
1977 white-space: pre;
1978 }
1978 }
1979
1979
1980 div.date{
1980 div.date{
1981 display: block;
1981 display: block;
1982 margin-bottom: @textmargin;
1982 margin-bottom: @textmargin;
1983 }
1983 }
1984 }
1984 }
1985 }
1985 }
1986 }
1986 }
1987
1987
1988 // Files
1988 // Files
1989 .edit-file-title {
1989 .edit-file-title {
1990 border-bottom: @border-thickness solid @border-default-color;
1990 border-bottom: @border-thickness solid @border-default-color;
1991
1991
1992 .breadcrumbs {
1992 .breadcrumbs {
1993 margin-bottom: 0;
1993 margin-bottom: 0;
1994 }
1994 }
1995 }
1995 }
1996
1996
1997 .edit-file-fieldset {
1997 .edit-file-fieldset {
1998 margin-top: @sidebarpadding;
1998 margin-top: @sidebarpadding;
1999
1999
2000 .fieldset {
2000 .fieldset {
2001 .left-label {
2001 .left-label {
2002 width: 13%;
2002 width: 13%;
2003 }
2003 }
2004 .right-content {
2004 .right-content {
2005 width: 87%;
2005 width: 87%;
2006 max-width: 100%;
2006 max-width: 100%;
2007 }
2007 }
2008 .filename-label {
2008 .filename-label {
2009 margin-top: 13px;
2009 margin-top: 13px;
2010 }
2010 }
2011 .commit-message-label {
2011 .commit-message-label {
2012 margin-top: 4px;
2012 margin-top: 4px;
2013 }
2013 }
2014 .file-upload-input {
2014 .file-upload-input {
2015 input {
2015 input {
2016 display: none;
2016 display: none;
2017 }
2017 }
2018 }
2018 }
2019 p {
2019 p {
2020 margin-top: 5px;
2020 margin-top: 5px;
2021 }
2021 }
2022
2022
2023 }
2023 }
2024 .custom-path-link {
2024 .custom-path-link {
2025 margin-left: 5px;
2025 margin-left: 5px;
2026 }
2026 }
2027 #commit {
2027 #commit {
2028 resize: vertical;
2028 resize: vertical;
2029 }
2029 }
2030 }
2030 }
2031
2031
2032 .delete-file-preview {
2032 .delete-file-preview {
2033 max-height: 250px;
2033 max-height: 250px;
2034 }
2034 }
2035
2035
2036 .new-file,
2036 .new-file,
2037 #filter_activate,
2037 #filter_activate,
2038 #filter_deactivate {
2038 #filter_deactivate {
2039 float: left;
2039 float: left;
2040 margin: 0 0 0 15px;
2040 margin: 0 0 0 15px;
2041 }
2041 }
2042
2042
2043 h3.files_location{
2043 h3.files_location{
2044 line-height: 2.4em;
2044 line-height: 2.4em;
2045 }
2045 }
2046
2046
2047 .browser-nav {
2047 .browser-nav {
2048 display: table;
2048 display: table;
2049 margin-bottom: @space;
2049 margin-bottom: @space;
2050
2050
2051
2051
2052 .info_box {
2052 .info_box {
2053 display: inline-table;
2053 display: inline-table;
2054 height: 2.5em;
2054 height: 2.5em;
2055
2055
2056 .browser-cur-rev, .info_box_elem {
2056 .browser-cur-rev, .info_box_elem {
2057 display: table-cell;
2057 display: table-cell;
2058 vertical-align: middle;
2058 vertical-align: middle;
2059 }
2059 }
2060
2060
2061 .info_box_elem {
2061 .info_box_elem {
2062 border-top: @border-thickness solid @rcblue;
2062 border-top: @border-thickness solid @rcblue;
2063 border-bottom: @border-thickness solid @rcblue;
2063 border-bottom: @border-thickness solid @rcblue;
2064
2064
2065 #at_rev, a {
2065 #at_rev, a {
2066 padding: 0.6em 0.9em;
2066 padding: 0.6em 0.9em;
2067 margin: 0;
2067 margin: 0;
2068 .box-shadow(none);
2068 .box-shadow(none);
2069 border: 0;
2069 border: 0;
2070 height: 12px;
2070 height: 12px;
2071 }
2071 }
2072
2072
2073 input#at_rev {
2073 input#at_rev {
2074 max-width: 50px;
2074 max-width: 50px;
2075 text-align: right;
2075 text-align: right;
2076 }
2076 }
2077
2077
2078 &.previous {
2078 &.previous {
2079 border: @border-thickness solid @rcblue;
2079 border: @border-thickness solid @rcblue;
2080 .disabled {
2080 .disabled {
2081 color: @grey4;
2081 color: @grey4;
2082 cursor: not-allowed;
2082 cursor: not-allowed;
2083 }
2083 }
2084 }
2084 }
2085
2085
2086 &.next {
2086 &.next {
2087 border: @border-thickness solid @rcblue;
2087 border: @border-thickness solid @rcblue;
2088 .disabled {
2088 .disabled {
2089 color: @grey4;
2089 color: @grey4;
2090 cursor: not-allowed;
2090 cursor: not-allowed;
2091 }
2091 }
2092 }
2092 }
2093 }
2093 }
2094
2094
2095 .browser-cur-rev {
2095 .browser-cur-rev {
2096
2096
2097 span{
2097 span{
2098 margin: 0;
2098 margin: 0;
2099 color: @rcblue;
2099 color: @rcblue;
2100 height: 12px;
2100 height: 12px;
2101 display: inline-block;
2101 display: inline-block;
2102 padding: 0.7em 1em ;
2102 padding: 0.7em 1em ;
2103 border: @border-thickness solid @rcblue;
2103 border: @border-thickness solid @rcblue;
2104 margin-right: @padding;
2104 margin-right: @padding;
2105 }
2105 }
2106 }
2106 }
2107 }
2107 }
2108
2108
2109 .search_activate {
2109 .search_activate {
2110 display: table-cell;
2110 display: table-cell;
2111 vertical-align: middle;
2111 vertical-align: middle;
2112
2112
2113 input, label{
2113 input, label{
2114 margin: 0;
2114 margin: 0;
2115 padding: 0;
2115 padding: 0;
2116 }
2116 }
2117
2117
2118 input{
2118 input{
2119 margin-left: @textmargin;
2119 margin-left: @textmargin;
2120 }
2120 }
2121
2121
2122 }
2122 }
2123 }
2123 }
2124
2124
2125 .browser-cur-rev{
2125 .browser-cur-rev{
2126 margin-bottom: @textmargin;
2126 margin-bottom: @textmargin;
2127 }
2127 }
2128
2128
2129 #node_filter_box_loading{
2129 #node_filter_box_loading{
2130 .info_text;
2130 .info_text;
2131 }
2131 }
2132
2132
2133 .browser-search {
2133 .browser-search {
2134 margin: -25px 0px 5px 0px;
2134 margin: -25px 0px 5px 0px;
2135 }
2135 }
2136
2136
2137 .node-filter {
2137 .node-filter {
2138 font-size: @repo-title-fontsize;
2138 font-size: @repo-title-fontsize;
2139 padding: 4px 0px 0px 0px;
2139 padding: 4px 0px 0px 0px;
2140
2140
2141 .node-filter-path {
2141 .node-filter-path {
2142 float: left;
2142 float: left;
2143 color: @grey4;
2143 color: @grey4;
2144 }
2144 }
2145 .node-filter-input {
2145 .node-filter-input {
2146 float: left;
2146 float: left;
2147 margin: -2px 0px 0px 2px;
2147 margin: -2px 0px 0px 2px;
2148 input {
2148 input {
2149 padding: 2px;
2149 padding: 2px;
2150 border: none;
2150 border: none;
2151 font-size: @repo-title-fontsize;
2151 font-size: @repo-title-fontsize;
2152 }
2152 }
2153 }
2153 }
2154 }
2154 }
2155
2155
2156
2156
2157 .browser-result{
2157 .browser-result{
2158 td a{
2158 td a{
2159 margin-left: 0.5em;
2159 margin-left: 0.5em;
2160 display: inline-block;
2160 display: inline-block;
2161
2161
2162 em{
2162 em{
2163 font-family: @text-bold;
2163 font-family: @text-bold;
2164 }
2164 }
2165 }
2165 }
2166 }
2166 }
2167
2167
2168 .browser-highlight{
2168 .browser-highlight{
2169 background-color: @grey5-alpha;
2169 background-color: @grey5-alpha;
2170 }
2170 }
2171
2171
2172
2172
2173 // Search
2173 // Search
2174
2174
2175 .search-form{
2175 .search-form{
2176 #q {
2176 #q {
2177 width: @search-form-width;
2177 width: @search-form-width;
2178 }
2178 }
2179 .fields{
2179 .fields{
2180 margin: 0 0 @space;
2180 margin: 0 0 @space;
2181 }
2181 }
2182
2182
2183 label{
2183 label{
2184 display: inline-block;
2184 display: inline-block;
2185 margin-right: @textmargin;
2185 margin-right: @textmargin;
2186 padding-top: 0.25em;
2186 padding-top: 0.25em;
2187 }
2187 }
2188
2188
2189
2189
2190 .results{
2190 .results{
2191 clear: both;
2191 clear: both;
2192 margin: 0 0 @padding;
2192 margin: 0 0 @padding;
2193 }
2193 }
2194 }
2194 }
2195
2195
2196 div.search-feedback-items {
2196 div.search-feedback-items {
2197 display: inline-block;
2197 display: inline-block;
2198 padding:0px 0px 0px 96px;
2198 padding:0px 0px 0px 96px;
2199 }
2199 }
2200
2200
2201 div.search-code-body {
2201 div.search-code-body {
2202 background-color: #ffffff; padding: 5px 0 5px 10px;
2202 background-color: #ffffff; padding: 5px 0 5px 10px;
2203 pre {
2203 pre {
2204 .match { background-color: #faffa6;}
2204 .match { background-color: #faffa6;}
2205 .break { display: block; width: 100%; background-color: #DDE7EF; color: #747474; }
2205 .break { display: block; width: 100%; background-color: #DDE7EF; color: #747474; }
2206 }
2206 }
2207 }
2207 }
2208
2208
2209 .expand_commit.search {
2209 .expand_commit.search {
2210 .show_more.open {
2210 .show_more.open {
2211 height: auto;
2211 height: auto;
2212 max-height: none;
2212 max-height: none;
2213 }
2213 }
2214 }
2214 }
2215
2215
2216 .search-results {
2216 .search-results {
2217
2217
2218 h2 {
2218 h2 {
2219 margin-bottom: 0;
2219 margin-bottom: 0;
2220 }
2220 }
2221 .codeblock {
2221 .codeblock {
2222 border: none;
2222 border: none;
2223 background: transparent;
2223 background: transparent;
2224 }
2224 }
2225
2225
2226 .codeblock-header {
2226 .codeblock-header {
2227 border: none;
2227 border: none;
2228 background: transparent;
2228 background: transparent;
2229 }
2229 }
2230
2230
2231 .code-body {
2231 .code-body {
2232 border: @border-thickness solid @border-default-color;
2232 border: @border-thickness solid @border-default-color;
2233 .border-radius(@border-radius);
2233 .border-radius(@border-radius);
2234 }
2234 }
2235
2235
2236 .td-commit {
2236 .td-commit {
2237 &:extend(pre);
2237 &:extend(pre);
2238 border-bottom: @border-thickness solid @border-default-color;
2238 border-bottom: @border-thickness solid @border-default-color;
2239 }
2239 }
2240
2240
2241 .message {
2241 .message {
2242 height: auto;
2242 height: auto;
2243 max-width: 350px;
2243 max-width: 350px;
2244 white-space: normal;
2244 white-space: normal;
2245 text-overflow: initial;
2245 text-overflow: initial;
2246 overflow: visible;
2246 overflow: visible;
2247
2247
2248 .match { background-color: #faffa6;}
2248 .match { background-color: #faffa6;}
2249 .break { background-color: #DDE7EF; width: 100%; color: #747474; display: block; }
2249 .break { background-color: #DDE7EF; width: 100%; color: #747474; display: block; }
2250 }
2250 }
2251
2251
2252 }
2252 }
2253
2253
2254 table.rctable td.td-search-results div {
2254 table.rctable td.td-search-results div {
2255 max-width: 100%;
2255 max-width: 100%;
2256 }
2256 }
2257
2257
2258 #tip-box, .tip-box{
2258 #tip-box, .tip-box{
2259 padding: @menupadding/2;
2259 padding: @menupadding/2;
2260 display: block;
2260 display: block;
2261 border: @border-thickness solid @border-highlight-color;
2261 border: @border-thickness solid @border-highlight-color;
2262 .border-radius(@border-radius);
2262 .border-radius(@border-radius);
2263 background-color: white;
2263 background-color: white;
2264 z-index: 99;
2264 z-index: 99;
2265 white-space: pre-wrap;
2265 white-space: pre-wrap;
2266 }
2266 }
2267
2267
2268 #linktt {
2268 #linktt {
2269 width: 79px;
2269 width: 79px;
2270 }
2270 }
2271
2271
2272 #help_kb .modal-content{
2272 #help_kb .modal-content{
2273 max-width: 750px;
2273 max-width: 750px;
2274 margin: 10% auto;
2274 margin: 10% auto;
2275
2275
2276 table{
2276 table{
2277 td,th{
2277 td,th{
2278 border-bottom: none;
2278 border-bottom: none;
2279 line-height: 2.5em;
2279 line-height: 2.5em;
2280 }
2280 }
2281 th{
2281 th{
2282 padding-bottom: @textmargin/2;
2282 padding-bottom: @textmargin/2;
2283 }
2283 }
2284 td.keys{
2284 td.keys{
2285 text-align: center;
2285 text-align: center;
2286 }
2286 }
2287 }
2287 }
2288
2288
2289 .block-left{
2289 .block-left{
2290 width: 45%;
2290 width: 45%;
2291 margin-right: 5%;
2291 margin-right: 5%;
2292 }
2292 }
2293 .modal-footer{
2293 .modal-footer{
2294 clear: both;
2294 clear: both;
2295 }
2295 }
2296 .key.tag{
2296 .key.tag{
2297 padding: 0.5em;
2297 padding: 0.5em;
2298 background-color: @rcblue;
2298 background-color: @rcblue;
2299 color: white;
2299 color: white;
2300 border-color: @rcblue;
2300 border-color: @rcblue;
2301 .box-shadow(none);
2301 .box-shadow(none);
2302 }
2302 }
2303 }
2303 }
2304
2304
2305
2305
2306
2306
2307 //--- IMPORTS FOR REFACTORED STYLES ------------------//
2307 //--- IMPORTS FOR REFACTORED STYLES ------------------//
2308
2308
2309 @import 'statistics-graph';
2309 @import 'statistics-graph';
2310 @import 'tables';
2310 @import 'tables';
2311 @import 'forms';
2311 @import 'forms';
2312 @import 'diff';
2312 @import 'diff';
2313 @import 'summary';
2313 @import 'summary';
2314 @import 'navigation';
2314 @import 'navigation';
2315
2315
2316 //--- SHOW/HIDE SECTIONS --//
2316 //--- SHOW/HIDE SECTIONS --//
2317
2317
2318 .btn-collapse {
2318 .btn-collapse {
2319 float: right;
2319 float: right;
2320 text-align: right;
2320 text-align: right;
2321 font-family: @text-light;
2321 font-family: @text-light;
2322 font-size: @basefontsize;
2322 font-size: @basefontsize;
2323 cursor: pointer;
2323 cursor: pointer;
2324 border: none;
2324 border: none;
2325 color: @rcblue;
2325 color: @rcblue;
2326 }
2326 }
2327
2327
2328 table.rctable,
2328 table.rctable,
2329 table.dataTable {
2329 table.dataTable {
2330 .btn-collapse {
2330 .btn-collapse {
2331 float: right;
2331 float: right;
2332 text-align: right;
2332 text-align: right;
2333 }
2333 }
2334 }
2334 }
2335
2335
2336
2336
2337 // TODO: johbo: Fix for IE10, this avoids that we see a border
2337 // TODO: johbo: Fix for IE10, this avoids that we see a border
2338 // and padding around checkboxes and radio boxes. Move to the right place,
2338 // and padding around checkboxes and radio boxes. Move to the right place,
2339 // or better: Remove this once we did the form refactoring.
2339 // or better: Remove this once we did the form refactoring.
2340 input[type=checkbox],
2340 input[type=checkbox],
2341 input[type=radio] {
2341 input[type=radio] {
2342 padding: 0;
2342 padding: 0;
2343 border: none;
2343 border: none;
2344 }
2344 }
2345
2345
2346 .toggle-ajax-spinner{
2346 .toggle-ajax-spinner{
2347 height: 16px;
2347 height: 16px;
2348 width: 16px;
2348 width: 16px;
2349 }
2349 }
General Comments 0
You need to be logged in to leave comments. Login now