Fix build_lists bugs. Add build list display and new build list pages design, apply compass. Refactor and cleanup assets. Refactor abilities. Refactor build_list search. Improve layout_class helper. Change defaul build_lists index filter and fix specs. Fix assets path. Refs #223
This commit is contained in:
parent
318dc72d29
commit
036dfb6dd5
|
@ -3,9 +3,9 @@
|
||||||
//= require jquery-ui
|
//= require jquery-ui
|
||||||
//= require autocomplete-rails
|
//= require autocomplete-rails
|
||||||
//= require vendor
|
//= require vendor
|
||||||
//= require_tree .
|
//= require_tree ./design
|
||||||
//
|
//= require_tree ./extra
|
||||||
// require_self
|
//= require_self
|
||||||
|
|
||||||
// function disableNotifierCbx(global_cbx) {
|
// function disableNotifierCbx(global_cbx) {
|
||||||
// if ($(global_cbx).attr('checked')) {
|
// if ($(global_cbx).attr('checked')) {
|
||||||
|
@ -18,47 +18,24 @@
|
||||||
// }
|
// }
|
||||||
//
|
//
|
||||||
// $(document).ready(function() {
|
// $(document).ready(function() {
|
||||||
// $('select#build_list_pl_id').change(function() {
|
// $('input.user_role_chbx').click(function() {
|
||||||
// var platform_id = $(this).val();
|
// var current = $(this);
|
||||||
// var base_platforms = $('.base_platforms input[type=checkbox]');
|
// current.parent().find('input.user_role_chbx').each(function(i,el) {
|
||||||
|
// if ($(el).attr('id') != current.attr('id')) {
|
||||||
|
// $(el).removeAttr('checked');
|
||||||
|
// }
|
||||||
|
// });
|
||||||
|
// });
|
||||||
//
|
//
|
||||||
// $('#include_repos').html($('.preloaded_include_repos .include_repos_' + platform_id).html());
|
// $('#settings_notifier_can_notify').click(function() {
|
||||||
|
// disableNotifierCbx($(this));
|
||||||
|
// });
|
||||||
//
|
//
|
||||||
// base_platforms.each(function(){
|
// $('div.information > div.user').live('click', function() {
|
||||||
// if ($.inArray(platform_id, base_platforms.map(function(){ return $(this).val() }).get()) >= 0) {
|
// droplist();
|
||||||
// if ($(this).val() == platform_id) {
|
// });
|
||||||
// $(this).attr('checked', 'checked');
|
|
||||||
// $(this).removeAttr('disabled');
|
|
||||||
// } else {
|
|
||||||
// $(this).removeAttr('checked');
|
|
||||||
// $(this).attr('disabled', 'disabled');
|
|
||||||
// }
|
|
||||||
// } else {
|
|
||||||
// $(this).removeAttr('disabled');
|
|
||||||
// }
|
|
||||||
// });
|
|
||||||
// });
|
|
||||||
// $('select#build_list_pl_id').trigger('change');
|
|
||||||
//
|
|
||||||
// $('input.user_role_chbx').click(function() {
|
|
||||||
// var current = $(this);
|
|
||||||
// current.parent().find('input.user_role_chbx').each(function(i,el) {
|
|
||||||
// if ($(el).attr('id') != current.attr('id')) {
|
|
||||||
// $(el).removeAttr('checked');
|
|
||||||
// }
|
|
||||||
// });
|
|
||||||
// });
|
|
||||||
//
|
|
||||||
// $('#settings_notifier_can_notify').click(function() {
|
|
||||||
// disableNotifierCbx($(this));
|
|
||||||
// });
|
|
||||||
//
|
|
||||||
// $('div.information > div.user').live('click', function() {
|
|
||||||
// droplist();
|
|
||||||
// });
|
|
||||||
//
|
|
||||||
// $('div.information > div.profile > a').live('click', function(e) {
|
|
||||||
// e.preventDefault();
|
|
||||||
// });
|
|
||||||
//
|
//
|
||||||
|
// $('div.information > div.profile > a').live('click', function(e) {
|
||||||
|
// e.preventDefault();
|
||||||
|
// });
|
||||||
// });
|
// });
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
$(document).ready(function() {
|
||||||
|
$('select#build_list_pl_id').change(function() {
|
||||||
|
var platform_id = $(this).val();
|
||||||
|
var base_platforms = $('.base_platforms input[type=checkbox]');
|
||||||
|
|
||||||
|
$('#include_repos').html($('.preloaded_include_repos .include_repos_' + platform_id).html());
|
||||||
|
|
||||||
|
base_platforms.each(function(){
|
||||||
|
if ($.inArray(platform_id, base_platforms.map(function(){ return $(this).val() }).get()) >= 0) {
|
||||||
|
if ($(this).val() == platform_id) {
|
||||||
|
$(this).attr('checked', 'checked');
|
||||||
|
$(this).removeAttr('disabled');
|
||||||
|
} else {
|
||||||
|
$(this).removeAttr('checked');
|
||||||
|
$(this).attr('disabled', 'disabled');
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$(this).removeAttr('disabled');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
$('select#build_list_pl_id').trigger('change');
|
||||||
|
});
|
|
@ -46,7 +46,7 @@ $(document).ready(function() {
|
||||||
return send_index_tracker_request('GET');
|
return send_index_tracker_request('GET');
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#myradio1").live('change', function(event) {
|
$("#filter_issues #myradio1").live('change', function(event) {
|
||||||
return send_index_tracker_request('GET');
|
return send_index_tracker_request('GET');
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,29 +1,5 @@
|
||||||
@import "vendor";
|
@import "vendor";
|
||||||
@import "main";
|
@import "design/main";
|
||||||
@import "custom";
|
@import "design/git";
|
||||||
@import "blue/style";
|
@import "design/common";
|
||||||
//@import "hl/shCore";
|
@import "design/custom";
|
||||||
//@import "hl/shCoreDefault";
|
|
||||||
//@import "hl/shCoreDjango";
|
|
||||||
//@import "hl/shCoreEclipse";
|
|
||||||
//@import "hl/shCoreEmacs";
|
|
||||||
//@import "hl/shCoreFadeToGrey";
|
|
||||||
//@import "hl/shCoreMDUltra";
|
|
||||||
//@import "hl/shCoreMidnight";
|
|
||||||
//@import "hl/shCoreRDark";
|
|
||||||
//@import "hl/shThemeDefault";
|
|
||||||
//@import "hl/shThemeDjango";
|
|
||||||
//@import "hl/shThemeEclipse";
|
|
||||||
//@import "hl/shThemeEmacs";
|
|
||||||
//@import "hl/shThemeFadeToGrey";
|
|
||||||
//@import "hl/shThemeMDUltra";
|
|
||||||
//@import "hl/shThemeMidnight";
|
|
||||||
//@import "hl/shThemeRDark";
|
|
||||||
//@import "hl/my";
|
|
||||||
|
|
||||||
/*
|
|
||||||
*= require main
|
|
||||||
*= require blue/style
|
|
||||||
*= require vendor
|
|
||||||
*= require custom
|
|
||||||
*/
|
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 2.8 KiB |
Binary file not shown.
Before Width: | Height: | Size: 2.9 KiB |
Binary file not shown.
Before Width: | Height: | Size: 2.8 KiB |
|
@ -1,118 +0,0 @@
|
||||||
/* tables */
|
|
||||||
table.tablesorter {
|
|
||||||
font-family:arial;
|
|
||||||
margin:10px 0pt 15px;
|
|
||||||
font-size: 12px;
|
|
||||||
width: 100%;
|
|
||||||
text-align: left;
|
|
||||||
border: 1px solid #DDD;
|
|
||||||
border-bottom: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter thead th{
|
|
||||||
padding-left: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter thead tr th, table.tablesorter tfoot tr th {
|
|
||||||
font-size: 12px;
|
|
||||||
margin: 0px;
|
|
||||||
}
|
|
||||||
table.tablesorter thead tr .header {
|
|
||||||
background-image: url("bg.png");
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-position: center left;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
table.tablesorter tbody td {
|
|
||||||
color: #3D3D3D;
|
|
||||||
padding: 5px;
|
|
||||||
margin: 0px;
|
|
||||||
background-color: #FFF;
|
|
||||||
vertical-align: top;
|
|
||||||
|
|
||||||
}
|
|
||||||
table.tablesorter tbody tr.odd td {
|
|
||||||
background-color:#F0F0F6;
|
|
||||||
}
|
|
||||||
table.tablesorter thead tr .headerSortUp {
|
|
||||||
background-image: url("asc.png");
|
|
||||||
}
|
|
||||||
table.tablesorter thead tr .headerSortDown {
|
|
||||||
background-image: url("desc.png");
|
|
||||||
}
|
|
||||||
table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter thead tr {
|
|
||||||
height: 38px;
|
|
||||||
background: #ededed;
|
|
||||||
-webkit-box-shadow: 0px 3px 3px -1px rgba(18, 86, 135, 0.2);
|
|
||||||
-moz-box-shadow: 0px 3px 3px -1px rgba(18, 86, 135, 0.2);
|
|
||||||
box-shadow: 0px 3px 3px -1px rgba(18, 86, 135, 0.2);
|
|
||||||
position: relative;
|
|
||||||
z-index: 99;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter thead tr th{
|
|
||||||
border-bottom: 1px solid #FFF;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter tr {
|
|
||||||
position: relative;
|
|
||||||
z-index: 70;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter tbody tr td {
|
|
||||||
border-bottom: 1px solid #DDD;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter thead th {
|
|
||||||
color: #575756;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter tbody td {
|
|
||||||
color: #58595b;
|
|
||||||
padding-top: 8px;
|
|
||||||
padding-bottom: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter .th1 {
|
|
||||||
width: 180px;
|
|
||||||
/*padding-left: 17px;*/
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter .th2 {
|
|
||||||
width: 390px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter .th3 {
|
|
||||||
width: 110px;
|
|
||||||
/*padding-left: 17px;*/
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter .td2 {
|
|
||||||
padding-right: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter .th4 {
|
|
||||||
width: 120px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter .td5 {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter .td5 img{
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-sort-left {
|
|
||||||
float: left;
|
|
||||||
width: 25px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-sort-right {
|
|
||||||
float: left;
|
|
||||||
}
|
|
|
@ -1,113 +0,0 @@
|
||||||
/* tables */
|
|
||||||
table.tablesorter {
|
|
||||||
font-family:arial;
|
|
||||||
margin:10px 0pt 15px;
|
|
||||||
font-size: 12px;
|
|
||||||
width: 100%;
|
|
||||||
text-align: left;
|
|
||||||
border: 1px solid #DDD;
|
|
||||||
border-bottom: none;
|
|
||||||
}
|
|
||||||
table.tablesorter thead tr th, table.tablesorter tfoot tr th {
|
|
||||||
font-size: 12px;
|
|
||||||
margin: 0px;
|
|
||||||
}
|
|
||||||
table.tablesorter thead tr .header {
|
|
||||||
background-image: image-url("bg-sortable.png");
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-position: center left;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
table.tablesorter tbody td {
|
|
||||||
color: #3D3D3D;
|
|
||||||
padding: 5px;
|
|
||||||
margin: 0px;
|
|
||||||
background-color: #FFF;
|
|
||||||
vertical-align: top;
|
|
||||||
|
|
||||||
}
|
|
||||||
table.tablesorter tbody tr.odd td {
|
|
||||||
background-color:#F0F0F6;
|
|
||||||
}
|
|
||||||
table.tablesorter thead tr .headerSortUp {
|
|
||||||
background-image: image-url("asc.png");
|
|
||||||
}
|
|
||||||
table.tablesorter thead tr .headerSortDown {
|
|
||||||
background-image: image-url("desc.png");
|
|
||||||
}
|
|
||||||
table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter thead tr {
|
|
||||||
height: 38px;
|
|
||||||
background: #ededed;
|
|
||||||
-webkit-box-shadow: 0px 3px 3px -1px rgba(18, 86, 135, 0.2);
|
|
||||||
-moz-box-shadow: 0px 3px 3px -1px rgba(18, 86, 135, 0.2);
|
|
||||||
box-shadow: 0px 3px 3px -1px rgba(18, 86, 135, 0.2);
|
|
||||||
position: relative;
|
|
||||||
z-index: 99;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter thead tr th{
|
|
||||||
border-bottom: 1px solid #FFF;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter tr {
|
|
||||||
position: relative;
|
|
||||||
z-index: 70;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter tbody tr td {
|
|
||||||
border-bottom: 1px solid #DDD;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter thead th {
|
|
||||||
color: #575756;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter tbody td {
|
|
||||||
color: #58595b;
|
|
||||||
padding-top: 8px;
|
|
||||||
padding-bottom: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter .th1 {
|
|
||||||
width: 180px;
|
|
||||||
padding-left: 17px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter .th2 {
|
|
||||||
width: 390px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter .th3 {
|
|
||||||
width: 110px;
|
|
||||||
padding-left: 17px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter .td2 {
|
|
||||||
padding-right: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter .th4 {
|
|
||||||
width: 120px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter .td5 {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.tablesorter .td5 img{
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-sort-left {
|
|
||||||
float: left;
|
|
||||||
width: 25px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-sort-right {
|
|
||||||
float: left;
|
|
||||||
}
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
@import 'compass/utilities/tables';
|
||||||
|
|
||||||
|
table.info {
|
||||||
|
width: 100%;
|
||||||
|
td {padding: 5px;}
|
||||||
|
}
|
||||||
|
|
||||||
|
table.columns2 {
|
||||||
|
@include inner-table-borders;
|
||||||
|
th.first, td.first {width: 50%;}
|
||||||
|
}
|
||||||
|
|
||||||
|
table.columns3 {
|
||||||
|
@include alternating-rows-and-columns(#eee, #ccc, #000);
|
||||||
|
th.first, td.first, th.last, td.last {width: 30%;}
|
||||||
|
}
|
|
@ -1,8 +0,0 @@
|
||||||
td.gutter {
|
|
||||||
background: #ededed;
|
|
||||||
color: #575756;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.syntaxhighlighter {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
|
@ -1,226 +0,0 @@
|
||||||
/**
|
|
||||||
* SyntaxHighlighter
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter
|
|
||||||
*
|
|
||||||
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
|
||||||
*
|
|
||||||
* @version
|
|
||||||
* 3.0.83 (July 02 2010)
|
|
||||||
*
|
|
||||||
* @copyright
|
|
||||||
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
|
||||||
*
|
|
||||||
* @license
|
|
||||||
* Dual licensed under the MIT and GPL licenses.
|
|
||||||
*/
|
|
||||||
.syntaxhighlighter a,
|
|
||||||
.syntaxhighlighter div,
|
|
||||||
.syntaxhighlighter code,
|
|
||||||
.syntaxhighlighter table,
|
|
||||||
.syntaxhighlighter table td,
|
|
||||||
.syntaxhighlighter table tr,
|
|
||||||
.syntaxhighlighter table tbody,
|
|
||||||
.syntaxhighlighter table thead,
|
|
||||||
.syntaxhighlighter table caption,
|
|
||||||
.syntaxhighlighter textarea {
|
|
||||||
-moz-border-radius: 0 0 0 0 !important;
|
|
||||||
-webkit-border-radius: 0 0 0 0 !important;
|
|
||||||
background: none !important;
|
|
||||||
border: 0 !important;
|
|
||||||
bottom: auto !important;
|
|
||||||
float: none !important;
|
|
||||||
height: auto !important;
|
|
||||||
left: auto !important;
|
|
||||||
line-height: 1.1em !important;
|
|
||||||
margin: 0 !important;
|
|
||||||
outline: 0 !important;
|
|
||||||
overflow: visible !important;
|
|
||||||
padding: 0 !important;
|
|
||||||
position: static !important;
|
|
||||||
right: auto !important;
|
|
||||||
text-align: left !important;
|
|
||||||
top: auto !important;
|
|
||||||
vertical-align: baseline !important;
|
|
||||||
width: auto !important;
|
|
||||||
box-sizing: content-box !important;
|
|
||||||
font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important;
|
|
||||||
font-weight: normal !important;
|
|
||||||
font-style: normal !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
min-height: inherit !important;
|
|
||||||
min-height: auto !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter {
|
|
||||||
width: 100% !important;
|
|
||||||
margin: 1em 0 1em 0 !important;
|
|
||||||
position: relative !important;
|
|
||||||
overflow: auto !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.source {
|
|
||||||
overflow: hidden !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .bold {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .italic {
|
|
||||||
font-style: italic !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line {
|
|
||||||
white-space: pre !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
text-align: left !important;
|
|
||||||
padding: .5em 0 0.5em 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .container {
|
|
||||||
position: relative !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .container textarea {
|
|
||||||
box-sizing: border-box !important;
|
|
||||||
position: absolute !important;
|
|
||||||
left: 0 !important;
|
|
||||||
top: 0 !important;
|
|
||||||
width: 100% !important;
|
|
||||||
height: 100% !important;
|
|
||||||
border: none !important;
|
|
||||||
background: white !important;
|
|
||||||
padding-left: 1em !important;
|
|
||||||
overflow: hidden !important;
|
|
||||||
white-space: pre !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.gutter .line {
|
|
||||||
text-align: right !important;
|
|
||||||
padding: 0 0.5em 0 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .line {
|
|
||||||
padding: 0 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.nogutter td.code .container textarea, .syntaxhighlighter.nogutter td.code .line {
|
|
||||||
padding-left: 0em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.show {
|
|
||||||
display: block !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed table {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
padding: 0.1em 0.8em 0em 0.8em !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
position: static !important;
|
|
||||||
width: auto !important;
|
|
||||||
height: auto !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span {
|
|
||||||
display: inline !important;
|
|
||||||
margin-right: 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span a {
|
|
||||||
padding: 0 !important;
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span a.expandSource {
|
|
||||||
display: inline !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
position: absolute !important;
|
|
||||||
right: 1px !important;
|
|
||||||
top: 1px !important;
|
|
||||||
width: 11px !important;
|
|
||||||
height: 11px !important;
|
|
||||||
font-size: 10px !important;
|
|
||||||
z-index: 10 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar span.title {
|
|
||||||
display: inline !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
display: block !important;
|
|
||||||
text-align: center !important;
|
|
||||||
text-decoration: none !important;
|
|
||||||
padding-top: 1px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a.expandSource {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie {
|
|
||||||
font-size: .9em !important;
|
|
||||||
padding: 1px 0 1px 0 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie .toolbar {
|
|
||||||
line-height: 8px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie .toolbar a {
|
|
||||||
padding-top: 0px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line.alt1 .content,
|
|
||||||
.syntaxhighlighter.printing .line.alt2 .content,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted .number,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted.alt1 .content,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted.alt2 .content {
|
|
||||||
background: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .number {
|
|
||||||
color: #bbbbbb !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .toolbar {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing a {
|
|
||||||
text-decoration: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .plain, .syntaxhighlighter.printing .plain a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .comments, .syntaxhighlighter.printing .comments a {
|
|
||||||
color: #008200 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .string, .syntaxhighlighter.printing .string a {
|
|
||||||
color: blue !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .keyword {
|
|
||||||
color: #006699 !important;
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .preprocessor {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .variable {
|
|
||||||
color: #aa7700 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .value {
|
|
||||||
color: #009900 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .functions {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .constants {
|
|
||||||
color: #0066cc !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color1, .syntaxhighlighter.printing .color1 a {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color2, .syntaxhighlighter.printing .color2 a {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color3, .syntaxhighlighter.printing .color3 a {
|
|
||||||
color: red !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .break, .syntaxhighlighter.printing .break a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
|
@ -1,328 +0,0 @@
|
||||||
/**
|
|
||||||
* SyntaxHighlighter
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter
|
|
||||||
*
|
|
||||||
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
|
||||||
*
|
|
||||||
* @version
|
|
||||||
* 3.0.83 (July 02 2010)
|
|
||||||
*
|
|
||||||
* @copyright
|
|
||||||
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
|
||||||
*
|
|
||||||
* @license
|
|
||||||
* Dual licensed under the MIT and GPL licenses.
|
|
||||||
*/
|
|
||||||
.syntaxhighlighter a,
|
|
||||||
.syntaxhighlighter div,
|
|
||||||
.syntaxhighlighter code,
|
|
||||||
.syntaxhighlighter table,
|
|
||||||
.syntaxhighlighter table td,
|
|
||||||
.syntaxhighlighter table tr,
|
|
||||||
.syntaxhighlighter table tbody,
|
|
||||||
.syntaxhighlighter table thead,
|
|
||||||
.syntaxhighlighter table caption,
|
|
||||||
.syntaxhighlighter textarea {
|
|
||||||
-moz-border-radius: 0 0 0 0 !important;
|
|
||||||
-webkit-border-radius: 0 0 0 0 !important;
|
|
||||||
background: none !important;
|
|
||||||
border: 0 !important;
|
|
||||||
bottom: auto !important;
|
|
||||||
float: none !important;
|
|
||||||
height: auto !important;
|
|
||||||
left: auto !important;
|
|
||||||
line-height: 1.1em !important;
|
|
||||||
margin: 0 !important;
|
|
||||||
outline: 0 !important;
|
|
||||||
overflow: visible !important;
|
|
||||||
padding: 0 !important;
|
|
||||||
position: static !important;
|
|
||||||
right: auto !important;
|
|
||||||
text-align: left !important;
|
|
||||||
top: auto !important;
|
|
||||||
vertical-align: baseline !important;
|
|
||||||
width: auto !important;
|
|
||||||
box-sizing: content-box !important;
|
|
||||||
font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important;
|
|
||||||
font-weight: normal !important;
|
|
||||||
font-style: normal !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
min-height: inherit !important;
|
|
||||||
min-height: auto !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter {
|
|
||||||
width: 100% !important;
|
|
||||||
margin: 1em 0 1em 0 !important;
|
|
||||||
position: relative !important;
|
|
||||||
overflow: auto !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.source {
|
|
||||||
overflow: hidden !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .bold {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .italic {
|
|
||||||
font-style: italic !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line {
|
|
||||||
white-space: pre !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
text-align: left !important;
|
|
||||||
padding: .5em 0 0.5em 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .container {
|
|
||||||
position: relative !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .container textarea {
|
|
||||||
box-sizing: border-box !important;
|
|
||||||
position: absolute !important;
|
|
||||||
left: 0 !important;
|
|
||||||
top: 0 !important;
|
|
||||||
width: 100% !important;
|
|
||||||
height: 100% !important;
|
|
||||||
border: none !important;
|
|
||||||
background: white !important;
|
|
||||||
padding-left: 1em !important;
|
|
||||||
overflow: hidden !important;
|
|
||||||
white-space: pre !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.gutter .line {
|
|
||||||
text-align: right !important;
|
|
||||||
padding: 0 0.5em 0 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .line {
|
|
||||||
padding: 0 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.nogutter td.code .container textarea, .syntaxhighlighter.nogutter td.code .line {
|
|
||||||
padding-left: 0em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.show {
|
|
||||||
display: block !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed table {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
padding: 0.1em 0.8em 0em 0.8em !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
position: static !important;
|
|
||||||
width: auto !important;
|
|
||||||
height: auto !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span {
|
|
||||||
display: inline !important;
|
|
||||||
margin-right: 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span a {
|
|
||||||
padding: 0 !important;
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span a.expandSource {
|
|
||||||
display: inline !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
position: absolute !important;
|
|
||||||
right: 1px !important;
|
|
||||||
top: 1px !important;
|
|
||||||
width: 11px !important;
|
|
||||||
height: 11px !important;
|
|
||||||
font-size: 10px !important;
|
|
||||||
z-index: 10 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar span.title {
|
|
||||||
display: inline !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
display: block !important;
|
|
||||||
text-align: center !important;
|
|
||||||
text-decoration: none !important;
|
|
||||||
padding-top: 1px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a.expandSource {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie {
|
|
||||||
font-size: .9em !important;
|
|
||||||
padding: 1px 0 1px 0 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie .toolbar {
|
|
||||||
line-height: 8px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie .toolbar a {
|
|
||||||
padding-top: 0px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line.alt1 .content,
|
|
||||||
.syntaxhighlighter.printing .line.alt2 .content,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted .number,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted.alt1 .content,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted.alt2 .content {
|
|
||||||
background: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .number {
|
|
||||||
color: #bbbbbb !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .toolbar {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing a {
|
|
||||||
text-decoration: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .plain, .syntaxhighlighter.printing .plain a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .comments, .syntaxhighlighter.printing .comments a {
|
|
||||||
color: #008200 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .string, .syntaxhighlighter.printing .string a {
|
|
||||||
color: blue !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .keyword {
|
|
||||||
color: #006699 !important;
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .preprocessor {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .variable {
|
|
||||||
color: #aa7700 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .value {
|
|
||||||
color: #009900 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .functions {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .constants {
|
|
||||||
color: #0066cc !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color1, .syntaxhighlighter.printing .color1 a {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color2, .syntaxhighlighter.printing .color2 a {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color3, .syntaxhighlighter.printing .color3 a {
|
|
||||||
color: red !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .break, .syntaxhighlighter.printing .break a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter {
|
|
||||||
background-color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt1 {
|
|
||||||
background-color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt2 {
|
|
||||||
background-color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 {
|
|
||||||
background-color: #e0e0e0 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.number {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter {
|
|
||||||
color: #afafaf !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line {
|
|
||||||
border-right: 3px solid #6ce26c !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line.highlighted {
|
|
||||||
background-color: #6ce26c !important;
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed {
|
|
||||||
overflow: visible !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
color: blue !important;
|
|
||||||
background: white !important;
|
|
||||||
border: 1px solid #6ce26c !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a {
|
|
||||||
color: blue !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a:hover {
|
|
||||||
color: red !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
color: white !important;
|
|
||||||
background: #6ce26c !important;
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a:hover {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .plain, .syntaxhighlighter .plain a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .comments, .syntaxhighlighter .comments a {
|
|
||||||
color: #008200 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .string, .syntaxhighlighter .string a {
|
|
||||||
color: blue !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
color: #006699 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .preprocessor {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .variable {
|
|
||||||
color: #aa7700 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .value {
|
|
||||||
color: #009900 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .functions {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .constants {
|
|
||||||
color: #0066cc !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
color: #006699 !important;
|
|
||||||
background-color: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color1, .syntaxhighlighter .color1 a {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color2, .syntaxhighlighter .color2 a {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color3, .syntaxhighlighter .color3 a {
|
|
||||||
color: red !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
|
@ -1,331 +0,0 @@
|
||||||
/**
|
|
||||||
* SyntaxHighlighter
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter
|
|
||||||
*
|
|
||||||
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
|
||||||
*
|
|
||||||
* @version
|
|
||||||
* 3.0.83 (July 02 2010)
|
|
||||||
*
|
|
||||||
* @copyright
|
|
||||||
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
|
||||||
*
|
|
||||||
* @license
|
|
||||||
* Dual licensed under the MIT and GPL licenses.
|
|
||||||
*/
|
|
||||||
.syntaxhighlighter a,
|
|
||||||
.syntaxhighlighter div,
|
|
||||||
.syntaxhighlighter code,
|
|
||||||
.syntaxhighlighter table,
|
|
||||||
.syntaxhighlighter table td,
|
|
||||||
.syntaxhighlighter table tr,
|
|
||||||
.syntaxhighlighter table tbody,
|
|
||||||
.syntaxhighlighter table thead,
|
|
||||||
.syntaxhighlighter table caption,
|
|
||||||
.syntaxhighlighter textarea {
|
|
||||||
-moz-border-radius: 0 0 0 0 !important;
|
|
||||||
-webkit-border-radius: 0 0 0 0 !important;
|
|
||||||
background: none !important;
|
|
||||||
border: 0 !important;
|
|
||||||
bottom: auto !important;
|
|
||||||
float: none !important;
|
|
||||||
height: auto !important;
|
|
||||||
left: auto !important;
|
|
||||||
line-height: 1.1em !important;
|
|
||||||
margin: 0 !important;
|
|
||||||
outline: 0 !important;
|
|
||||||
overflow: visible !important;
|
|
||||||
padding: 0 !important;
|
|
||||||
position: static !important;
|
|
||||||
right: auto !important;
|
|
||||||
text-align: left !important;
|
|
||||||
top: auto !important;
|
|
||||||
vertical-align: baseline !important;
|
|
||||||
width: auto !important;
|
|
||||||
box-sizing: content-box !important;
|
|
||||||
font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important;
|
|
||||||
font-weight: normal !important;
|
|
||||||
font-style: normal !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
min-height: inherit !important;
|
|
||||||
min-height: auto !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter {
|
|
||||||
width: 100% !important;
|
|
||||||
margin: 1em 0 1em 0 !important;
|
|
||||||
position: relative !important;
|
|
||||||
overflow: auto !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.source {
|
|
||||||
overflow: hidden !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .bold {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .italic {
|
|
||||||
font-style: italic !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line {
|
|
||||||
white-space: pre !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
text-align: left !important;
|
|
||||||
padding: .5em 0 0.5em 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .container {
|
|
||||||
position: relative !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .container textarea {
|
|
||||||
box-sizing: border-box !important;
|
|
||||||
position: absolute !important;
|
|
||||||
left: 0 !important;
|
|
||||||
top: 0 !important;
|
|
||||||
width: 100% !important;
|
|
||||||
height: 100% !important;
|
|
||||||
border: none !important;
|
|
||||||
background: white !important;
|
|
||||||
padding-left: 1em !important;
|
|
||||||
overflow: hidden !important;
|
|
||||||
white-space: pre !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.gutter .line {
|
|
||||||
text-align: right !important;
|
|
||||||
padding: 0 0.5em 0 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .line {
|
|
||||||
padding: 0 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.nogutter td.code .container textarea, .syntaxhighlighter.nogutter td.code .line {
|
|
||||||
padding-left: 0em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.show {
|
|
||||||
display: block !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed table {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
padding: 0.1em 0.8em 0em 0.8em !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
position: static !important;
|
|
||||||
width: auto !important;
|
|
||||||
height: auto !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span {
|
|
||||||
display: inline !important;
|
|
||||||
margin-right: 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span a {
|
|
||||||
padding: 0 !important;
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span a.expandSource {
|
|
||||||
display: inline !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
position: absolute !important;
|
|
||||||
right: 1px !important;
|
|
||||||
top: 1px !important;
|
|
||||||
width: 11px !important;
|
|
||||||
height: 11px !important;
|
|
||||||
font-size: 10px !important;
|
|
||||||
z-index: 10 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar span.title {
|
|
||||||
display: inline !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
display: block !important;
|
|
||||||
text-align: center !important;
|
|
||||||
text-decoration: none !important;
|
|
||||||
padding-top: 1px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a.expandSource {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie {
|
|
||||||
font-size: .9em !important;
|
|
||||||
padding: 1px 0 1px 0 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie .toolbar {
|
|
||||||
line-height: 8px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie .toolbar a {
|
|
||||||
padding-top: 0px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line.alt1 .content,
|
|
||||||
.syntaxhighlighter.printing .line.alt2 .content,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted .number,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted.alt1 .content,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted.alt2 .content {
|
|
||||||
background: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .number {
|
|
||||||
color: #bbbbbb !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .toolbar {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing a {
|
|
||||||
text-decoration: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .plain, .syntaxhighlighter.printing .plain a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .comments, .syntaxhighlighter.printing .comments a {
|
|
||||||
color: #008200 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .string, .syntaxhighlighter.printing .string a {
|
|
||||||
color: blue !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .keyword {
|
|
||||||
color: #006699 !important;
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .preprocessor {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .variable {
|
|
||||||
color: #aa7700 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .value {
|
|
||||||
color: #009900 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .functions {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .constants {
|
|
||||||
color: #0066cc !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color1, .syntaxhighlighter.printing .color1 a {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color2, .syntaxhighlighter.printing .color2 a {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color3, .syntaxhighlighter.printing .color3 a {
|
|
||||||
color: red !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .break, .syntaxhighlighter.printing .break a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter {
|
|
||||||
background-color: #0a2b1d !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt1 {
|
|
||||||
background-color: #0a2b1d !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt2 {
|
|
||||||
background-color: #0a2b1d !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 {
|
|
||||||
background-color: #233729 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.number {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
color: #f8f8f8 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter {
|
|
||||||
color: #497958 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line {
|
|
||||||
border-right: 3px solid #41a83e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line.highlighted {
|
|
||||||
background-color: #41a83e !important;
|
|
||||||
color: #0a2b1d !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed {
|
|
||||||
overflow: visible !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
color: #96dd3b !important;
|
|
||||||
background: black !important;
|
|
||||||
border: 1px solid #41a83e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a {
|
|
||||||
color: #96dd3b !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a:hover {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
color: white !important;
|
|
||||||
background: #41a83e !important;
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a:hover {
|
|
||||||
color: #ffe862 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .plain, .syntaxhighlighter .plain a {
|
|
||||||
color: #f8f8f8 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .comments, .syntaxhighlighter .comments a {
|
|
||||||
color: #336442 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .string, .syntaxhighlighter .string a {
|
|
||||||
color: #9df39f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
color: #96dd3b !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .preprocessor {
|
|
||||||
color: #91bb9e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .variable {
|
|
||||||
color: #ffaa3e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .value {
|
|
||||||
color: #f7e741 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .functions {
|
|
||||||
color: #ffaa3e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .constants {
|
|
||||||
color: #e0e8ff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
color: #96dd3b !important;
|
|
||||||
background-color: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color1, .syntaxhighlighter .color1 a {
|
|
||||||
color: #eb939a !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color2, .syntaxhighlighter .color2 a {
|
|
||||||
color: #91bb9e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color3, .syntaxhighlighter .color3 a {
|
|
||||||
color: #edef7d !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter .comments {
|
|
||||||
font-style: italic !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
|
@ -1,348 +0,0 @@
|
||||||
/**
|
|
||||||
* SyntaxHighlighter
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter
|
|
||||||
*
|
|
||||||
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
|
||||||
*
|
|
||||||
* @version
|
|
||||||
* 3.0.83 (July 02 2010)
|
|
||||||
*
|
|
||||||
* @copyright
|
|
||||||
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
|
||||||
*
|
|
||||||
* @license
|
|
||||||
* Dual licensed under the MIT and GPL licenses.
|
|
||||||
*/
|
|
||||||
.syntaxhighlighter a,
|
|
||||||
.syntaxhighlighter div,
|
|
||||||
.syntaxhighlighter code,
|
|
||||||
.syntaxhighlighter table,
|
|
||||||
.syntaxhighlighter table td,
|
|
||||||
.syntaxhighlighter table tr,
|
|
||||||
.syntaxhighlighter table tbody,
|
|
||||||
.syntaxhighlighter table thead,
|
|
||||||
.syntaxhighlighter table caption,
|
|
||||||
.syntaxhighlighter textarea {
|
|
||||||
-moz-border-radius: 0 0 0 0 !important;
|
|
||||||
-webkit-border-radius: 0 0 0 0 !important;
|
|
||||||
|
|
||||||
border: 0 !important;
|
|
||||||
bottom: auto !important;
|
|
||||||
float: none !important;
|
|
||||||
height: auto !important;
|
|
||||||
left: auto !important;
|
|
||||||
margin: 0 !important;
|
|
||||||
outline: 0 !important;
|
|
||||||
overflow: visible !important;
|
|
||||||
padding: 0;
|
|
||||||
/*padding-left: 5px;*/
|
|
||||||
position: static !important;
|
|
||||||
right: auto !important;
|
|
||||||
text-align: left !important;
|
|
||||||
top: auto !important;
|
|
||||||
vertical-align: baseline !important;
|
|
||||||
width: auto !important;
|
|
||||||
box-sizing: content-box !important;
|
|
||||||
font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important;
|
|
||||||
font-weight: normal !important;
|
|
||||||
font-style: normal !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
min-height: inherit !important;
|
|
||||||
min-height: auto !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.syntaxhighlighter {
|
|
||||||
width: auto;
|
|
||||||
margin: 0 !important;
|
|
||||||
position: relative !important;
|
|
||||||
overflow: auto !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.source {
|
|
||||||
overflow: hidden !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .bold {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .italic {
|
|
||||||
font-style: italic !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line {
|
|
||||||
white-space: pre !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table {
|
|
||||||
width: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter table tr td{
|
|
||||||
padding: 10px 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
text-align: left !important;
|
|
||||||
padding: .5em 0 0.5em 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code {
|
|
||||||
width: auto;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .container {
|
|
||||||
position: relative !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .container textarea {
|
|
||||||
box-sizing: border-box !important;
|
|
||||||
position: absolute !important;
|
|
||||||
left: 0 !important;
|
|
||||||
top: 0 !important;
|
|
||||||
width: auto;
|
|
||||||
height: 100% !important;
|
|
||||||
border: none !important;
|
|
||||||
|
|
||||||
padding-left: 1em !important;
|
|
||||||
overflow: hidden !important;
|
|
||||||
white-space: pre !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.gutter .line {
|
|
||||||
text-align: right !important;
|
|
||||||
padding: 0 0.5em 0 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .line {
|
|
||||||
padding: 0 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.nogutter td.code .container textarea, .syntaxhighlighter.nogutter td.code .line {
|
|
||||||
padding-left: 0em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.show {
|
|
||||||
display: block !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed table {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
padding: 0.1em 0.8em 0em 0.8em !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
position: static !important;
|
|
||||||
width: auto !important;
|
|
||||||
height: auto !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span {
|
|
||||||
display: inline !important;
|
|
||||||
margin-right: 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span a {
|
|
||||||
padding: 0 !important;
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span a.expandSource {
|
|
||||||
display: inline !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
position: absolute !important;
|
|
||||||
right: 1px !important;
|
|
||||||
top: 1px !important;
|
|
||||||
width: 11px !important;
|
|
||||||
height: 11px !important;
|
|
||||||
font-size: 10px !important;
|
|
||||||
z-index: 10 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar span.title {
|
|
||||||
display: inline !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
display: block !important;
|
|
||||||
text-align: center !important;
|
|
||||||
text-decoration: none !important;
|
|
||||||
padding-top: 1px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a.expandSource {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie {
|
|
||||||
font-size: .9em !important;
|
|
||||||
padding: 1px 0 1px 0 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie .toolbar {
|
|
||||||
line-height: 8px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie .toolbar a {
|
|
||||||
padding-top: 0px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line.alt1 .content,
|
|
||||||
.syntaxhighlighter.printing .line.alt2 .content,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted .number,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted.alt1 .content,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted.alt2 .content {
|
|
||||||
background: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .number {
|
|
||||||
color: #bbbbbb !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .toolbar {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing a {
|
|
||||||
text-decoration: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .plain, .syntaxhighlighter.printing .plain a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .comments, .syntaxhighlighter.printing .comments a {
|
|
||||||
color: #008200 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .string, .syntaxhighlighter.printing .string a {
|
|
||||||
color: blue !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .keyword {
|
|
||||||
color: #006699 !important;
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .preprocessor {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .variable {
|
|
||||||
color: #aa7700 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .value {
|
|
||||||
color: #009900 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .functions {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .constants {
|
|
||||||
color: #0066cc !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color1, .syntaxhighlighter.printing .color1 a {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color2, .syntaxhighlighter.printing .color2 a {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color3, .syntaxhighlighter.printing .color3 a {
|
|
||||||
color: red !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .break, .syntaxhighlighter.printing .break a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter {
|
|
||||||
background-color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt1 {
|
|
||||||
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt2 {
|
|
||||||
background-color: none;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 {
|
|
||||||
background-color: #c3defe !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.number {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter {
|
|
||||||
color: #565657 !important;
|
|
||||||
background: #ededed;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line {
|
|
||||||
border-right: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line.highlighted {
|
|
||||||
background-color: #d4d0c8 !important;
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed {
|
|
||||||
overflow: visible !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
color: #3f5fbf !important;
|
|
||||||
background: white !important;
|
|
||||||
border: 1px solid #d4d0c8 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a {
|
|
||||||
color: #3f5fbf !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a:hover {
|
|
||||||
color: #aa7700 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
color: #a0a0a0 !important;
|
|
||||||
background: #d4d0c8 !important;
|
|
||||||
border: none !important;
|
|
||||||
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
color: #a0a0a0 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a:hover {
|
|
||||||
color: red !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .plain, .syntaxhighlighter .plain a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .comments, .syntaxhighlighter .comments a {
|
|
||||||
color: #3f5fbf !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .string, .syntaxhighlighter .string a {
|
|
||||||
color: #2a00ff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
color: #7f0055 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .preprocessor {
|
|
||||||
color: #646464 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .variable {
|
|
||||||
color: #aa7700 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .value {
|
|
||||||
color: #009900 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .functions {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .constants {
|
|
||||||
color: #0066cc !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
color: #7f0055 !important;
|
|
||||||
background-color: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color1, .syntaxhighlighter .color1 a {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color2, .syntaxhighlighter .color2 a {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color3, .syntaxhighlighter .color3 a {
|
|
||||||
color: red !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .xml .keyword {
|
|
||||||
color: #3f7f7f !important;
|
|
||||||
font-weight: normal !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .xml .color1, .syntaxhighlighter .xml .color1 a {
|
|
||||||
color: #7f007f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .xml .string {
|
|
||||||
font-style: italic !important;
|
|
||||||
color: #2a00ff !important;
|
|
||||||
}
|
|
|
@ -1,324 +0,0 @@
|
||||||
/**
|
|
||||||
* SyntaxHighlighter
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter
|
|
||||||
*
|
|
||||||
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
|
||||||
*
|
|
||||||
* @version
|
|
||||||
* 3.0.83 (July 02 2010)
|
|
||||||
*
|
|
||||||
* @copyright
|
|
||||||
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
|
||||||
*
|
|
||||||
* @license
|
|
||||||
* Dual licensed under the MIT and GPL licenses.
|
|
||||||
*/
|
|
||||||
.syntaxhighlighter a,
|
|
||||||
.syntaxhighlighter div,
|
|
||||||
.syntaxhighlighter code,
|
|
||||||
.syntaxhighlighter table,
|
|
||||||
.syntaxhighlighter table td,
|
|
||||||
.syntaxhighlighter table tr,
|
|
||||||
.syntaxhighlighter table tbody,
|
|
||||||
.syntaxhighlighter table thead,
|
|
||||||
.syntaxhighlighter table caption,
|
|
||||||
.syntaxhighlighter textarea {
|
|
||||||
-moz-border-radius: 0 0 0 0 !important;
|
|
||||||
-webkit-border-radius: 0 0 0 0 !important;
|
|
||||||
background: none !important;
|
|
||||||
border: 0 !important;
|
|
||||||
bottom: auto !important;
|
|
||||||
float: none !important;
|
|
||||||
height: auto !important;
|
|
||||||
left: auto !important;
|
|
||||||
line-height: 1.1em !important;
|
|
||||||
margin: 0 !important;
|
|
||||||
outline: 0 !important;
|
|
||||||
overflow: visible !important;
|
|
||||||
padding: 0 !important;
|
|
||||||
position: static !important;
|
|
||||||
right: auto !important;
|
|
||||||
text-align: left !important;
|
|
||||||
top: auto !important;
|
|
||||||
vertical-align: baseline !important;
|
|
||||||
width: auto !important;
|
|
||||||
box-sizing: content-box !important;
|
|
||||||
font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important;
|
|
||||||
font-weight: normal !important;
|
|
||||||
font-style: normal !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
min-height: inherit !important;
|
|
||||||
min-height: auto !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter {
|
|
||||||
width: 100% !important;
|
|
||||||
margin: 1em 0 1em 0 !important;
|
|
||||||
position: relative !important;
|
|
||||||
overflow: auto !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.source {
|
|
||||||
overflow: hidden !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .bold {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .italic {
|
|
||||||
font-style: italic !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line {
|
|
||||||
white-space: pre !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
text-align: left !important;
|
|
||||||
padding: .5em 0 0.5em 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .container {
|
|
||||||
position: relative !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .container textarea {
|
|
||||||
box-sizing: border-box !important;
|
|
||||||
position: absolute !important;
|
|
||||||
left: 0 !important;
|
|
||||||
top: 0 !important;
|
|
||||||
width: 100% !important;
|
|
||||||
height: 100% !important;
|
|
||||||
border: none !important;
|
|
||||||
background: white !important;
|
|
||||||
padding-left: 1em !important;
|
|
||||||
overflow: hidden !important;
|
|
||||||
white-space: pre !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.gutter .line {
|
|
||||||
text-align: right !important;
|
|
||||||
padding: 0 0.5em 0 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .line {
|
|
||||||
padding: 0 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.nogutter td.code .container textarea, .syntaxhighlighter.nogutter td.code .line {
|
|
||||||
padding-left: 0em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.show {
|
|
||||||
display: block !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed table {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
padding: 0.1em 0.8em 0em 0.8em !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
position: static !important;
|
|
||||||
width: auto !important;
|
|
||||||
height: auto !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span {
|
|
||||||
display: inline !important;
|
|
||||||
margin-right: 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span a {
|
|
||||||
padding: 0 !important;
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span a.expandSource {
|
|
||||||
display: inline !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
position: absolute !important;
|
|
||||||
right: 1px !important;
|
|
||||||
top: 1px !important;
|
|
||||||
width: 11px !important;
|
|
||||||
height: 11px !important;
|
|
||||||
font-size: 10px !important;
|
|
||||||
z-index: 10 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar span.title {
|
|
||||||
display: inline !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
display: block !important;
|
|
||||||
text-align: center !important;
|
|
||||||
text-decoration: none !important;
|
|
||||||
padding-top: 1px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a.expandSource {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie {
|
|
||||||
font-size: .9em !important;
|
|
||||||
padding: 1px 0 1px 0 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie .toolbar {
|
|
||||||
line-height: 8px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie .toolbar a {
|
|
||||||
padding-top: 0px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line.alt1 .content,
|
|
||||||
.syntaxhighlighter.printing .line.alt2 .content,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted .number,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted.alt1 .content,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted.alt2 .content {
|
|
||||||
background: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .number {
|
|
||||||
color: #bbbbbb !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .toolbar {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing a {
|
|
||||||
text-decoration: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .plain, .syntaxhighlighter.printing .plain a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .comments, .syntaxhighlighter.printing .comments a {
|
|
||||||
color: #008200 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .string, .syntaxhighlighter.printing .string a {
|
|
||||||
color: blue !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .keyword {
|
|
||||||
color: #006699 !important;
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .preprocessor {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .variable {
|
|
||||||
color: #aa7700 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .value {
|
|
||||||
color: #009900 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .functions {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .constants {
|
|
||||||
color: #0066cc !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color1, .syntaxhighlighter.printing .color1 a {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color2, .syntaxhighlighter.printing .color2 a {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color3, .syntaxhighlighter.printing .color3 a {
|
|
||||||
color: red !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .break, .syntaxhighlighter.printing .break a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter {
|
|
||||||
background-color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt1 {
|
|
||||||
background-color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt2 {
|
|
||||||
background-color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 {
|
|
||||||
background-color: #2a3133 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.number {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
color: #d3d3d3 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter {
|
|
||||||
color: #d3d3d3 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line {
|
|
||||||
border-right: 3px solid #990000 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line.highlighted {
|
|
||||||
background-color: #990000 !important;
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed {
|
|
||||||
overflow: visible !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
color: #ebdb8d !important;
|
|
||||||
background: black !important;
|
|
||||||
border: 1px solid #990000 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a {
|
|
||||||
color: #ebdb8d !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a:hover {
|
|
||||||
color: #ff7d27 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
color: white !important;
|
|
||||||
background: #990000 !important;
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a:hover {
|
|
||||||
color: #9ccff4 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .plain, .syntaxhighlighter .plain a {
|
|
||||||
color: #d3d3d3 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .comments, .syntaxhighlighter .comments a {
|
|
||||||
color: #ff7d27 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .string, .syntaxhighlighter .string a {
|
|
||||||
color: #ff9e7b !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
color: aqua !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .preprocessor {
|
|
||||||
color: #aec4de !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .variable {
|
|
||||||
color: #ffaa3e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .value {
|
|
||||||
color: #009900 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .functions {
|
|
||||||
color: #81cef9 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .constants {
|
|
||||||
color: #ff9e7b !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
color: aqua !important;
|
|
||||||
background-color: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color1, .syntaxhighlighter .color1 a {
|
|
||||||
color: #ebdb8d !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color2, .syntaxhighlighter .color2 a {
|
|
||||||
color: #ff7d27 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color3, .syntaxhighlighter .color3 a {
|
|
||||||
color: #aec4de !important;
|
|
||||||
}
|
|
|
@ -1,328 +0,0 @@
|
||||||
/**
|
|
||||||
* SyntaxHighlighter
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter
|
|
||||||
*
|
|
||||||
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
|
||||||
*
|
|
||||||
* @version
|
|
||||||
* 3.0.83 (July 02 2010)
|
|
||||||
*
|
|
||||||
* @copyright
|
|
||||||
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
|
||||||
*
|
|
||||||
* @license
|
|
||||||
* Dual licensed under the MIT and GPL licenses.
|
|
||||||
*/
|
|
||||||
.syntaxhighlighter a,
|
|
||||||
.syntaxhighlighter div,
|
|
||||||
.syntaxhighlighter code,
|
|
||||||
.syntaxhighlighter table,
|
|
||||||
.syntaxhighlighter table td,
|
|
||||||
.syntaxhighlighter table tr,
|
|
||||||
.syntaxhighlighter table tbody,
|
|
||||||
.syntaxhighlighter table thead,
|
|
||||||
.syntaxhighlighter table caption,
|
|
||||||
.syntaxhighlighter textarea {
|
|
||||||
-moz-border-radius: 0 0 0 0 !important;
|
|
||||||
-webkit-border-radius: 0 0 0 0 !important;
|
|
||||||
background: none !important;
|
|
||||||
border: 0 !important;
|
|
||||||
bottom: auto !important;
|
|
||||||
float: none !important;
|
|
||||||
height: auto !important;
|
|
||||||
left: auto !important;
|
|
||||||
line-height: 1.1em !important;
|
|
||||||
margin: 0 !important;
|
|
||||||
outline: 0 !important;
|
|
||||||
overflow: visible !important;
|
|
||||||
padding: 0 !important;
|
|
||||||
position: static !important;
|
|
||||||
right: auto !important;
|
|
||||||
text-align: left !important;
|
|
||||||
top: auto !important;
|
|
||||||
vertical-align: baseline !important;
|
|
||||||
width: auto !important;
|
|
||||||
box-sizing: content-box !important;
|
|
||||||
font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important;
|
|
||||||
font-weight: normal !important;
|
|
||||||
font-style: normal !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
min-height: inherit !important;
|
|
||||||
min-height: auto !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter {
|
|
||||||
width: 100% !important;
|
|
||||||
margin: 1em 0 1em 0 !important;
|
|
||||||
position: relative !important;
|
|
||||||
overflow: auto !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.source {
|
|
||||||
overflow: hidden !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .bold {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .italic {
|
|
||||||
font-style: italic !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line {
|
|
||||||
white-space: pre !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
text-align: left !important;
|
|
||||||
padding: .5em 0 0.5em 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .container {
|
|
||||||
position: relative !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .container textarea {
|
|
||||||
box-sizing: border-box !important;
|
|
||||||
position: absolute !important;
|
|
||||||
left: 0 !important;
|
|
||||||
top: 0 !important;
|
|
||||||
width: 100% !important;
|
|
||||||
height: 100% !important;
|
|
||||||
border: none !important;
|
|
||||||
background: white !important;
|
|
||||||
padding-left: 1em !important;
|
|
||||||
overflow: hidden !important;
|
|
||||||
white-space: pre !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.gutter .line {
|
|
||||||
text-align: right !important;
|
|
||||||
padding: 0 0.5em 0 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .line {
|
|
||||||
padding: 0 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.nogutter td.code .container textarea, .syntaxhighlighter.nogutter td.code .line {
|
|
||||||
padding-left: 0em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.show {
|
|
||||||
display: block !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed table {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
padding: 0.1em 0.8em 0em 0.8em !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
position: static !important;
|
|
||||||
width: auto !important;
|
|
||||||
height: auto !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span {
|
|
||||||
display: inline !important;
|
|
||||||
margin-right: 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span a {
|
|
||||||
padding: 0 !important;
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span a.expandSource {
|
|
||||||
display: inline !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
position: absolute !important;
|
|
||||||
right: 1px !important;
|
|
||||||
top: 1px !important;
|
|
||||||
width: 11px !important;
|
|
||||||
height: 11px !important;
|
|
||||||
font-size: 10px !important;
|
|
||||||
z-index: 10 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar span.title {
|
|
||||||
display: inline !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
display: block !important;
|
|
||||||
text-align: center !important;
|
|
||||||
text-decoration: none !important;
|
|
||||||
padding-top: 1px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a.expandSource {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie {
|
|
||||||
font-size: .9em !important;
|
|
||||||
padding: 1px 0 1px 0 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie .toolbar {
|
|
||||||
line-height: 8px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie .toolbar a {
|
|
||||||
padding-top: 0px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line.alt1 .content,
|
|
||||||
.syntaxhighlighter.printing .line.alt2 .content,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted .number,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted.alt1 .content,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted.alt2 .content {
|
|
||||||
background: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .number {
|
|
||||||
color: #bbbbbb !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .toolbar {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing a {
|
|
||||||
text-decoration: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .plain, .syntaxhighlighter.printing .plain a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .comments, .syntaxhighlighter.printing .comments a {
|
|
||||||
color: #008200 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .string, .syntaxhighlighter.printing .string a {
|
|
||||||
color: blue !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .keyword {
|
|
||||||
color: #006699 !important;
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .preprocessor {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .variable {
|
|
||||||
color: #aa7700 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .value {
|
|
||||||
color: #009900 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .functions {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .constants {
|
|
||||||
color: #0066cc !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color1, .syntaxhighlighter.printing .color1 a {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color2, .syntaxhighlighter.printing .color2 a {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color3, .syntaxhighlighter.printing .color3 a {
|
|
||||||
color: red !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .break, .syntaxhighlighter.printing .break a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter {
|
|
||||||
background-color: #121212 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt1 {
|
|
||||||
background-color: #121212 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt2 {
|
|
||||||
background-color: #121212 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 {
|
|
||||||
background-color: #2c2c29 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.number {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter {
|
|
||||||
color: #afafaf !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line {
|
|
||||||
border-right: 3px solid #3185b9 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line.highlighted {
|
|
||||||
background-color: #3185b9 !important;
|
|
||||||
color: #121212 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed {
|
|
||||||
overflow: visible !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
color: #3185b9 !important;
|
|
||||||
background: black !important;
|
|
||||||
border: 1px solid #3185b9 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a {
|
|
||||||
color: #3185b9 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a:hover {
|
|
||||||
color: #d01d33 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
color: white !important;
|
|
||||||
background: #3185b9 !important;
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a:hover {
|
|
||||||
color: #96daff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .plain, .syntaxhighlighter .plain a {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .comments, .syntaxhighlighter .comments a {
|
|
||||||
color: #696854 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .string, .syntaxhighlighter .string a {
|
|
||||||
color: #e3e658 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
color: #d01d33 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .preprocessor {
|
|
||||||
color: #435a5f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .variable {
|
|
||||||
color: #898989 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .value {
|
|
||||||
color: #009900 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .functions {
|
|
||||||
color: #aaaaaa !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .constants {
|
|
||||||
color: #96daff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
color: #d01d33 !important;
|
|
||||||
background-color: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color1, .syntaxhighlighter .color1 a {
|
|
||||||
color: #ffc074 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color2, .syntaxhighlighter .color2 a {
|
|
||||||
color: #4a8cdb !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color3, .syntaxhighlighter .color3 a {
|
|
||||||
color: #96daff !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter .functions {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
|
@ -1,324 +0,0 @@
|
||||||
/**
|
|
||||||
* SyntaxHighlighter
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter
|
|
||||||
*
|
|
||||||
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
|
||||||
*
|
|
||||||
* @version
|
|
||||||
* 3.0.83 (July 02 2010)
|
|
||||||
*
|
|
||||||
* @copyright
|
|
||||||
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
|
||||||
*
|
|
||||||
* @license
|
|
||||||
* Dual licensed under the MIT and GPL licenses.
|
|
||||||
*/
|
|
||||||
.syntaxhighlighter a,
|
|
||||||
.syntaxhighlighter div,
|
|
||||||
.syntaxhighlighter code,
|
|
||||||
.syntaxhighlighter table,
|
|
||||||
.syntaxhighlighter table td,
|
|
||||||
.syntaxhighlighter table tr,
|
|
||||||
.syntaxhighlighter table tbody,
|
|
||||||
.syntaxhighlighter table thead,
|
|
||||||
.syntaxhighlighter table caption,
|
|
||||||
.syntaxhighlighter textarea {
|
|
||||||
-moz-border-radius: 0 0 0 0 !important;
|
|
||||||
-webkit-border-radius: 0 0 0 0 !important;
|
|
||||||
background: none !important;
|
|
||||||
border: 0 !important;
|
|
||||||
bottom: auto !important;
|
|
||||||
float: none !important;
|
|
||||||
height: auto !important;
|
|
||||||
left: auto !important;
|
|
||||||
line-height: 1.1em !important;
|
|
||||||
margin: 0 !important;
|
|
||||||
outline: 0 !important;
|
|
||||||
overflow: visible !important;
|
|
||||||
padding: 0 !important;
|
|
||||||
position: static !important;
|
|
||||||
right: auto !important;
|
|
||||||
text-align: left !important;
|
|
||||||
top: auto !important;
|
|
||||||
vertical-align: baseline !important;
|
|
||||||
width: auto !important;
|
|
||||||
box-sizing: content-box !important;
|
|
||||||
font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important;
|
|
||||||
font-weight: normal !important;
|
|
||||||
font-style: normal !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
min-height: inherit !important;
|
|
||||||
min-height: auto !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter {
|
|
||||||
width: 100% !important;
|
|
||||||
margin: 1em 0 1em 0 !important;
|
|
||||||
position: relative !important;
|
|
||||||
overflow: auto !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.source {
|
|
||||||
overflow: hidden !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .bold {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .italic {
|
|
||||||
font-style: italic !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line {
|
|
||||||
white-space: pre !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
text-align: left !important;
|
|
||||||
padding: .5em 0 0.5em 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .container {
|
|
||||||
position: relative !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .container textarea {
|
|
||||||
box-sizing: border-box !important;
|
|
||||||
position: absolute !important;
|
|
||||||
left: 0 !important;
|
|
||||||
top: 0 !important;
|
|
||||||
width: 100% !important;
|
|
||||||
height: 100% !important;
|
|
||||||
border: none !important;
|
|
||||||
background: white !important;
|
|
||||||
padding-left: 1em !important;
|
|
||||||
overflow: hidden !important;
|
|
||||||
white-space: pre !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.gutter .line {
|
|
||||||
text-align: right !important;
|
|
||||||
padding: 0 0.5em 0 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .line {
|
|
||||||
padding: 0 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.nogutter td.code .container textarea, .syntaxhighlighter.nogutter td.code .line {
|
|
||||||
padding-left: 0em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.show {
|
|
||||||
display: block !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed table {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
padding: 0.1em 0.8em 0em 0.8em !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
position: static !important;
|
|
||||||
width: auto !important;
|
|
||||||
height: auto !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span {
|
|
||||||
display: inline !important;
|
|
||||||
margin-right: 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span a {
|
|
||||||
padding: 0 !important;
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span a.expandSource {
|
|
||||||
display: inline !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
position: absolute !important;
|
|
||||||
right: 1px !important;
|
|
||||||
top: 1px !important;
|
|
||||||
width: 11px !important;
|
|
||||||
height: 11px !important;
|
|
||||||
font-size: 10px !important;
|
|
||||||
z-index: 10 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar span.title {
|
|
||||||
display: inline !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
display: block !important;
|
|
||||||
text-align: center !important;
|
|
||||||
text-decoration: none !important;
|
|
||||||
padding-top: 1px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a.expandSource {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie {
|
|
||||||
font-size: .9em !important;
|
|
||||||
padding: 1px 0 1px 0 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie .toolbar {
|
|
||||||
line-height: 8px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie .toolbar a {
|
|
||||||
padding-top: 0px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line.alt1 .content,
|
|
||||||
.syntaxhighlighter.printing .line.alt2 .content,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted .number,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted.alt1 .content,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted.alt2 .content {
|
|
||||||
background: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .number {
|
|
||||||
color: #bbbbbb !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .toolbar {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing a {
|
|
||||||
text-decoration: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .plain, .syntaxhighlighter.printing .plain a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .comments, .syntaxhighlighter.printing .comments a {
|
|
||||||
color: #008200 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .string, .syntaxhighlighter.printing .string a {
|
|
||||||
color: blue !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .keyword {
|
|
||||||
color: #006699 !important;
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .preprocessor {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .variable {
|
|
||||||
color: #aa7700 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .value {
|
|
||||||
color: #009900 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .functions {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .constants {
|
|
||||||
color: #0066cc !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color1, .syntaxhighlighter.printing .color1 a {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color2, .syntaxhighlighter.printing .color2 a {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color3, .syntaxhighlighter.printing .color3 a {
|
|
||||||
color: red !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .break, .syntaxhighlighter.printing .break a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter {
|
|
||||||
background-color: #222222 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt1 {
|
|
||||||
background-color: #222222 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt2 {
|
|
||||||
background-color: #222222 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 {
|
|
||||||
background-color: #253e5a !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.number {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
color: lime !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter {
|
|
||||||
color: #38566f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line {
|
|
||||||
border-right: 3px solid #435a5f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line.highlighted {
|
|
||||||
background-color: #435a5f !important;
|
|
||||||
color: #222222 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed {
|
|
||||||
overflow: visible !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
color: #428bdd !important;
|
|
||||||
background: black !important;
|
|
||||||
border: 1px solid #435a5f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a {
|
|
||||||
color: #428bdd !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a:hover {
|
|
||||||
color: lime !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
color: #aaaaff !important;
|
|
||||||
background: #435a5f !important;
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
color: #aaaaff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a:hover {
|
|
||||||
color: #9ccff4 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .plain, .syntaxhighlighter .plain a {
|
|
||||||
color: lime !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .comments, .syntaxhighlighter .comments a {
|
|
||||||
color: #428bdd !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .string, .syntaxhighlighter .string a {
|
|
||||||
color: lime !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
color: #aaaaff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .preprocessor {
|
|
||||||
color: #8aa6c1 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .variable {
|
|
||||||
color: aqua !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .value {
|
|
||||||
color: #f7e741 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .functions {
|
|
||||||
color: #ff8000 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .constants {
|
|
||||||
color: yellow !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
color: #aaaaff !important;
|
|
||||||
background-color: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color1, .syntaxhighlighter .color1 a {
|
|
||||||
color: red !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color2, .syntaxhighlighter .color2 a {
|
|
||||||
color: yellow !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color3, .syntaxhighlighter .color3 a {
|
|
||||||
color: #ffaa3e !important;
|
|
||||||
}
|
|
|
@ -1,324 +0,0 @@
|
||||||
/**
|
|
||||||
* SyntaxHighlighter
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter
|
|
||||||
*
|
|
||||||
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
|
||||||
*
|
|
||||||
* @version
|
|
||||||
* 3.0.83 (July 02 2010)
|
|
||||||
*
|
|
||||||
* @copyright
|
|
||||||
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
|
||||||
*
|
|
||||||
* @license
|
|
||||||
* Dual licensed under the MIT and GPL licenses.
|
|
||||||
*/
|
|
||||||
.syntaxhighlighter a,
|
|
||||||
.syntaxhighlighter div,
|
|
||||||
.syntaxhighlighter code,
|
|
||||||
.syntaxhighlighter table,
|
|
||||||
.syntaxhighlighter table td,
|
|
||||||
.syntaxhighlighter table tr,
|
|
||||||
.syntaxhighlighter table tbody,
|
|
||||||
.syntaxhighlighter table thead,
|
|
||||||
.syntaxhighlighter table caption,
|
|
||||||
.syntaxhighlighter textarea {
|
|
||||||
-moz-border-radius: 0 0 0 0 !important;
|
|
||||||
-webkit-border-radius: 0 0 0 0 !important;
|
|
||||||
background: none !important;
|
|
||||||
border: 0 !important;
|
|
||||||
bottom: auto !important;
|
|
||||||
float: none !important;
|
|
||||||
height: auto !important;
|
|
||||||
left: auto !important;
|
|
||||||
line-height: 1.1em !important;
|
|
||||||
margin: 0 !important;
|
|
||||||
outline: 0 !important;
|
|
||||||
overflow: visible !important;
|
|
||||||
padding: 0 !important;
|
|
||||||
position: static !important;
|
|
||||||
right: auto !important;
|
|
||||||
text-align: left !important;
|
|
||||||
top: auto !important;
|
|
||||||
vertical-align: baseline !important;
|
|
||||||
width: auto !important;
|
|
||||||
box-sizing: content-box !important;
|
|
||||||
font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important;
|
|
||||||
font-weight: normal !important;
|
|
||||||
font-style: normal !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
min-height: inherit !important;
|
|
||||||
min-height: auto !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter {
|
|
||||||
width: 100% !important;
|
|
||||||
margin: 1em 0 1em 0 !important;
|
|
||||||
position: relative !important;
|
|
||||||
overflow: auto !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.source {
|
|
||||||
overflow: hidden !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .bold {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .italic {
|
|
||||||
font-style: italic !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line {
|
|
||||||
white-space: pre !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
text-align: left !important;
|
|
||||||
padding: .5em 0 0.5em 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .container {
|
|
||||||
position: relative !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .container textarea {
|
|
||||||
box-sizing: border-box !important;
|
|
||||||
position: absolute !important;
|
|
||||||
left: 0 !important;
|
|
||||||
top: 0 !important;
|
|
||||||
width: 100% !important;
|
|
||||||
height: 100% !important;
|
|
||||||
border: none !important;
|
|
||||||
background: white !important;
|
|
||||||
padding-left: 1em !important;
|
|
||||||
overflow: hidden !important;
|
|
||||||
white-space: pre !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.gutter .line {
|
|
||||||
text-align: right !important;
|
|
||||||
padding: 0 0.5em 0 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .line {
|
|
||||||
padding: 0 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.nogutter td.code .container textarea, .syntaxhighlighter.nogutter td.code .line {
|
|
||||||
padding-left: 0em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.show {
|
|
||||||
display: block !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed table {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
padding: 0.1em 0.8em 0em 0.8em !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
position: static !important;
|
|
||||||
width: auto !important;
|
|
||||||
height: auto !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span {
|
|
||||||
display: inline !important;
|
|
||||||
margin-right: 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span a {
|
|
||||||
padding: 0 !important;
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span a.expandSource {
|
|
||||||
display: inline !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
position: absolute !important;
|
|
||||||
right: 1px !important;
|
|
||||||
top: 1px !important;
|
|
||||||
width: 11px !important;
|
|
||||||
height: 11px !important;
|
|
||||||
font-size: 10px !important;
|
|
||||||
z-index: 10 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar span.title {
|
|
||||||
display: inline !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
display: block !important;
|
|
||||||
text-align: center !important;
|
|
||||||
text-decoration: none !important;
|
|
||||||
padding-top: 1px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a.expandSource {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie {
|
|
||||||
font-size: .9em !important;
|
|
||||||
padding: 1px 0 1px 0 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie .toolbar {
|
|
||||||
line-height: 8px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie .toolbar a {
|
|
||||||
padding-top: 0px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line.alt1 .content,
|
|
||||||
.syntaxhighlighter.printing .line.alt2 .content,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted .number,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted.alt1 .content,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted.alt2 .content {
|
|
||||||
background: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .number {
|
|
||||||
color: #bbbbbb !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .toolbar {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing a {
|
|
||||||
text-decoration: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .plain, .syntaxhighlighter.printing .plain a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .comments, .syntaxhighlighter.printing .comments a {
|
|
||||||
color: #008200 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .string, .syntaxhighlighter.printing .string a {
|
|
||||||
color: blue !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .keyword {
|
|
||||||
color: #006699 !important;
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .preprocessor {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .variable {
|
|
||||||
color: #aa7700 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .value {
|
|
||||||
color: #009900 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .functions {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .constants {
|
|
||||||
color: #0066cc !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color1, .syntaxhighlighter.printing .color1 a {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color2, .syntaxhighlighter.printing .color2 a {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color3, .syntaxhighlighter.printing .color3 a {
|
|
||||||
color: red !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .break, .syntaxhighlighter.printing .break a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter {
|
|
||||||
background-color: #0f192a !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt1 {
|
|
||||||
background-color: #0f192a !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt2 {
|
|
||||||
background-color: #0f192a !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 {
|
|
||||||
background-color: #253e5a !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.number {
|
|
||||||
color: #38566f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
color: #d1edff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter {
|
|
||||||
color: #afafaf !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line {
|
|
||||||
border-right: 3px solid #435a5f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line.highlighted {
|
|
||||||
background-color: #435a5f !important;
|
|
||||||
color: #0f192a !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed {
|
|
||||||
overflow: visible !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
color: #428bdd !important;
|
|
||||||
background: black !important;
|
|
||||||
border: 1px solid #435a5f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a {
|
|
||||||
color: #428bdd !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a:hover {
|
|
||||||
color: #1dc116 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
color: #d1edff !important;
|
|
||||||
background: #435a5f !important;
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
color: #d1edff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a:hover {
|
|
||||||
color: #8aa6c1 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .plain, .syntaxhighlighter .plain a {
|
|
||||||
color: #d1edff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .comments, .syntaxhighlighter .comments a {
|
|
||||||
color: #428bdd !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .string, .syntaxhighlighter .string a {
|
|
||||||
color: #1dc116 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
color: #b43d3d !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .preprocessor {
|
|
||||||
color: #8aa6c1 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .variable {
|
|
||||||
color: #ffaa3e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .value {
|
|
||||||
color: #f7e741 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .functions {
|
|
||||||
color: #ffaa3e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .constants {
|
|
||||||
color: #e0e8ff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
color: #b43d3d !important;
|
|
||||||
background-color: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color1, .syntaxhighlighter .color1 a {
|
|
||||||
color: #f8bb00 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color2, .syntaxhighlighter .color2 a {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color3, .syntaxhighlighter .color3 a {
|
|
||||||
color: #ffaa3e !important;
|
|
||||||
}
|
|
|
@ -1,324 +0,0 @@
|
||||||
/**
|
|
||||||
* SyntaxHighlighter
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter
|
|
||||||
*
|
|
||||||
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
|
||||||
*
|
|
||||||
* @version
|
|
||||||
* 3.0.83 (July 02 2010)
|
|
||||||
*
|
|
||||||
* @copyright
|
|
||||||
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
|
||||||
*
|
|
||||||
* @license
|
|
||||||
* Dual licensed under the MIT and GPL licenses.
|
|
||||||
*/
|
|
||||||
.syntaxhighlighter a,
|
|
||||||
.syntaxhighlighter div,
|
|
||||||
.syntaxhighlighter code,
|
|
||||||
.syntaxhighlighter table,
|
|
||||||
.syntaxhighlighter table td,
|
|
||||||
.syntaxhighlighter table tr,
|
|
||||||
.syntaxhighlighter table tbody,
|
|
||||||
.syntaxhighlighter table thead,
|
|
||||||
.syntaxhighlighter table caption,
|
|
||||||
.syntaxhighlighter textarea {
|
|
||||||
-moz-border-radius: 0 0 0 0 !important;
|
|
||||||
-webkit-border-radius: 0 0 0 0 !important;
|
|
||||||
background: none !important;
|
|
||||||
border: 0 !important;
|
|
||||||
bottom: auto !important;
|
|
||||||
float: none !important;
|
|
||||||
height: auto !important;
|
|
||||||
left: auto !important;
|
|
||||||
line-height: 1.1em !important;
|
|
||||||
margin: 0 !important;
|
|
||||||
outline: 0 !important;
|
|
||||||
overflow: visible !important;
|
|
||||||
padding: 0 !important;
|
|
||||||
position: static !important;
|
|
||||||
right: auto !important;
|
|
||||||
text-align: left !important;
|
|
||||||
top: auto !important;
|
|
||||||
vertical-align: baseline !important;
|
|
||||||
width: auto !important;
|
|
||||||
box-sizing: content-box !important;
|
|
||||||
font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important;
|
|
||||||
font-weight: normal !important;
|
|
||||||
font-style: normal !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
min-height: inherit !important;
|
|
||||||
min-height: auto !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter {
|
|
||||||
width: 100% !important;
|
|
||||||
margin: 1em 0 1em 0 !important;
|
|
||||||
position: relative !important;
|
|
||||||
overflow: auto !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.source {
|
|
||||||
overflow: hidden !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .bold {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .italic {
|
|
||||||
font-style: italic !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line {
|
|
||||||
white-space: pre !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
text-align: left !important;
|
|
||||||
padding: .5em 0 0.5em 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .container {
|
|
||||||
position: relative !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .container textarea {
|
|
||||||
box-sizing: border-box !important;
|
|
||||||
position: absolute !important;
|
|
||||||
left: 0 !important;
|
|
||||||
top: 0 !important;
|
|
||||||
width: 100% !important;
|
|
||||||
height: 100% !important;
|
|
||||||
border: none !important;
|
|
||||||
background: white !important;
|
|
||||||
padding-left: 1em !important;
|
|
||||||
overflow: hidden !important;
|
|
||||||
white-space: pre !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.gutter .line {
|
|
||||||
text-align: right !important;
|
|
||||||
padding: 0 0.5em 0 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table td.code .line {
|
|
||||||
padding: 0 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.nogutter td.code .container textarea, .syntaxhighlighter.nogutter td.code .line {
|
|
||||||
padding-left: 0em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.show {
|
|
||||||
display: block !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed table {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
padding: 0.1em 0.8em 0em 0.8em !important;
|
|
||||||
font-size: 1em !important;
|
|
||||||
position: static !important;
|
|
||||||
width: auto !important;
|
|
||||||
height: auto !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span {
|
|
||||||
display: inline !important;
|
|
||||||
margin-right: 1em !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span a {
|
|
||||||
padding: 0 !important;
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar span a.expandSource {
|
|
||||||
display: inline !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
position: absolute !important;
|
|
||||||
right: 1px !important;
|
|
||||||
top: 1px !important;
|
|
||||||
width: 11px !important;
|
|
||||||
height: 11px !important;
|
|
||||||
font-size: 10px !important;
|
|
||||||
z-index: 10 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar span.title {
|
|
||||||
display: inline !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
display: block !important;
|
|
||||||
text-align: center !important;
|
|
||||||
text-decoration: none !important;
|
|
||||||
padding-top: 1px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a.expandSource {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie {
|
|
||||||
font-size: .9em !important;
|
|
||||||
padding: 1px 0 1px 0 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie .toolbar {
|
|
||||||
line-height: 8px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.ie .toolbar a {
|
|
||||||
padding-top: 0px !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line.alt1 .content,
|
|
||||||
.syntaxhighlighter.printing .line.alt2 .content,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted .number,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted.alt1 .content,
|
|
||||||
.syntaxhighlighter.printing .line.highlighted.alt2 .content {
|
|
||||||
background: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .number {
|
|
||||||
color: #bbbbbb !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .toolbar {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing a {
|
|
||||||
text-decoration: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .plain, .syntaxhighlighter.printing .plain a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .comments, .syntaxhighlighter.printing .comments a {
|
|
||||||
color: #008200 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .string, .syntaxhighlighter.printing .string a {
|
|
||||||
color: blue !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .keyword {
|
|
||||||
color: #006699 !important;
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .preprocessor {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .variable {
|
|
||||||
color: #aa7700 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .value {
|
|
||||||
color: #009900 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .functions {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .constants {
|
|
||||||
color: #0066cc !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color1, .syntaxhighlighter.printing .color1 a {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color2, .syntaxhighlighter.printing .color2 a {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .color3, .syntaxhighlighter.printing .color3 a {
|
|
||||||
color: red !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .break, .syntaxhighlighter.printing .break a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter {
|
|
||||||
background-color: #1b2426 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt1 {
|
|
||||||
background-color: #1b2426 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt2 {
|
|
||||||
background-color: #1b2426 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 {
|
|
||||||
background-color: #323e41 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.number {
|
|
||||||
color: #b9bdb6 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
color: #b9bdb6 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter {
|
|
||||||
color: #afafaf !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line {
|
|
||||||
border-right: 3px solid #435a5f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line.highlighted {
|
|
||||||
background-color: #435a5f !important;
|
|
||||||
color: #1b2426 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed {
|
|
||||||
overflow: visible !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
color: #5ba1cf !important;
|
|
||||||
background: black !important;
|
|
||||||
border: 1px solid #435a5f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a {
|
|
||||||
color: #5ba1cf !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a:hover {
|
|
||||||
color: #5ce638 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
color: white !important;
|
|
||||||
background: #435a5f !important;
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a:hover {
|
|
||||||
color: #e0e8ff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .plain, .syntaxhighlighter .plain a {
|
|
||||||
color: #b9bdb6 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .comments, .syntaxhighlighter .comments a {
|
|
||||||
color: #878a85 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .string, .syntaxhighlighter .string a {
|
|
||||||
color: #5ce638 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
color: #5ba1cf !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .preprocessor {
|
|
||||||
color: #435a5f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .variable {
|
|
||||||
color: #ffaa3e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .value {
|
|
||||||
color: #009900 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .functions {
|
|
||||||
color: #ffaa3e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .constants {
|
|
||||||
color: #e0e8ff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
color: #5ba1cf !important;
|
|
||||||
background-color: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color1, .syntaxhighlighter .color1 a {
|
|
||||||
color: #e0e8ff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color2, .syntaxhighlighter .color2 a {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color3, .syntaxhighlighter .color3 a {
|
|
||||||
color: #ffaa3e !important;
|
|
||||||
}
|
|
|
@ -1,117 +0,0 @@
|
||||||
/**
|
|
||||||
* SyntaxHighlighter
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter
|
|
||||||
*
|
|
||||||
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
|
||||||
*
|
|
||||||
* @version
|
|
||||||
* 3.0.83 (July 02 2010)
|
|
||||||
*
|
|
||||||
* @copyright
|
|
||||||
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
|
||||||
*
|
|
||||||
* @license
|
|
||||||
* Dual licensed under the MIT and GPL licenses.
|
|
||||||
*/
|
|
||||||
.syntaxhighlighter {
|
|
||||||
background-color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt1 {
|
|
||||||
background-color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt2 {
|
|
||||||
background-color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 {
|
|
||||||
background-color: #e0e0e0 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.number {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter {
|
|
||||||
color: #afafaf !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line {
|
|
||||||
border-right: 3px solid #6ce26c !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line.highlighted {
|
|
||||||
background-color: #6ce26c !important;
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed {
|
|
||||||
overflow: visible !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
color: blue !important;
|
|
||||||
background: white !important;
|
|
||||||
border: 1px solid #6ce26c !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a {
|
|
||||||
color: blue !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a:hover {
|
|
||||||
color: red !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
color: white !important;
|
|
||||||
background: #6ce26c !important;
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a:hover {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .plain, .syntaxhighlighter .plain a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .comments, .syntaxhighlighter .comments a {
|
|
||||||
color: #008200 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .string, .syntaxhighlighter .string a {
|
|
||||||
color: blue !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
color: #006699 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .preprocessor {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .variable {
|
|
||||||
color: #aa7700 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .value {
|
|
||||||
color: #009900 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .functions {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .constants {
|
|
||||||
color: #0066cc !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
color: #006699 !important;
|
|
||||||
background-color: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color1, .syntaxhighlighter .color1 a {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color2, .syntaxhighlighter .color2 a {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color3, .syntaxhighlighter .color3 a {
|
|
||||||
color: red !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
|
@ -1,120 +0,0 @@
|
||||||
/**
|
|
||||||
* SyntaxHighlighter
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter
|
|
||||||
*
|
|
||||||
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
|
||||||
*
|
|
||||||
* @version
|
|
||||||
* 3.0.83 (July 02 2010)
|
|
||||||
*
|
|
||||||
* @copyright
|
|
||||||
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
|
||||||
*
|
|
||||||
* @license
|
|
||||||
* Dual licensed under the MIT and GPL licenses.
|
|
||||||
*/
|
|
||||||
.syntaxhighlighter {
|
|
||||||
background-color: #0a2b1d !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt1 {
|
|
||||||
background-color: #0a2b1d !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt2 {
|
|
||||||
background-color: #0a2b1d !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 {
|
|
||||||
background-color: #233729 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.number {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
color: #f8f8f8 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter {
|
|
||||||
color: #497958 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line {
|
|
||||||
border-right: 3px solid #41a83e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line.highlighted {
|
|
||||||
background-color: #41a83e !important;
|
|
||||||
color: #0a2b1d !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed {
|
|
||||||
overflow: visible !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
color: #96dd3b !important;
|
|
||||||
background: black !important;
|
|
||||||
border: 1px solid #41a83e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a {
|
|
||||||
color: #96dd3b !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a:hover {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
color: white !important;
|
|
||||||
background: #41a83e !important;
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a:hover {
|
|
||||||
color: #ffe862 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .plain, .syntaxhighlighter .plain a {
|
|
||||||
color: #f8f8f8 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .comments, .syntaxhighlighter .comments a {
|
|
||||||
color: #336442 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .string, .syntaxhighlighter .string a {
|
|
||||||
color: #9df39f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
color: #96dd3b !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .preprocessor {
|
|
||||||
color: #91bb9e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .variable {
|
|
||||||
color: #ffaa3e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .value {
|
|
||||||
color: #f7e741 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .functions {
|
|
||||||
color: #ffaa3e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .constants {
|
|
||||||
color: #e0e8ff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
color: #96dd3b !important;
|
|
||||||
background-color: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color1, .syntaxhighlighter .color1 a {
|
|
||||||
color: #eb939a !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color2, .syntaxhighlighter .color2 a {
|
|
||||||
color: #91bb9e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color3, .syntaxhighlighter .color3 a {
|
|
||||||
color: #edef7d !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter .comments {
|
|
||||||
font-style: italic !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
|
@ -1,128 +0,0 @@
|
||||||
/**
|
|
||||||
* SyntaxHighlighter
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter
|
|
||||||
*
|
|
||||||
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
|
||||||
*
|
|
||||||
* @version
|
|
||||||
* 3.0.83 (July 02 2010)
|
|
||||||
*
|
|
||||||
* @copyright
|
|
||||||
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
|
||||||
*
|
|
||||||
* @license
|
|
||||||
* Dual licensed under the MIT and GPL licenses.
|
|
||||||
*/
|
|
||||||
.syntaxhighlighter {
|
|
||||||
background-color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt1 {
|
|
||||||
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt2 {
|
|
||||||
background-color: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 {
|
|
||||||
background-color: #c3defe !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.number {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter {
|
|
||||||
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line {
|
|
||||||
border-right: 3px solid #ededed !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line.highlighted {
|
|
||||||
background-color: #d4d0c8 !important;
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
border: 3px solid #ededed !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed {
|
|
||||||
overflow: visible !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
color: #3f5fbf !important;
|
|
||||||
background: white !important;
|
|
||||||
border: 1px solid #d4d0c8 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a {
|
|
||||||
color: #3f5fbf !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a:hover {
|
|
||||||
color: #aa7700 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
color: #a0a0a0 !important;
|
|
||||||
background: #d4d0c8 !important;
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
color: #a0a0a0 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a:hover {
|
|
||||||
color: red !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .plain, .syntaxhighlighter .plain a {
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .comments, .syntaxhighlighter .comments a {
|
|
||||||
color: #3f5fbf !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .string, .syntaxhighlighter .string a {
|
|
||||||
color: #2a00ff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
color: #7f0055 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .preprocessor {
|
|
||||||
color: #646464 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .variable {
|
|
||||||
color: #aa7700 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .value {
|
|
||||||
color: #009900 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .functions {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .constants {
|
|
||||||
color: #0066cc !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
color: #7f0055 !important;
|
|
||||||
background-color: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color1, .syntaxhighlighter .color1 a {
|
|
||||||
color: gray !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color2, .syntaxhighlighter .color2 a {
|
|
||||||
color: #ff1493 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color3, .syntaxhighlighter .color3 a {
|
|
||||||
color: red !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .xml .keyword {
|
|
||||||
color: #3f7f7f !important;
|
|
||||||
font-weight: normal !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .xml .color1, .syntaxhighlighter .xml .color1 a {
|
|
||||||
color: #7f007f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .xml .string {
|
|
||||||
font-style: italic !important;
|
|
||||||
color: #2a00ff !important;
|
|
||||||
}
|
|
|
@ -1,113 +0,0 @@
|
||||||
/**
|
|
||||||
* SyntaxHighlighter
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter
|
|
||||||
*
|
|
||||||
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
|
||||||
*
|
|
||||||
* @version
|
|
||||||
* 3.0.83 (July 02 2010)
|
|
||||||
*
|
|
||||||
* @copyright
|
|
||||||
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
|
||||||
*
|
|
||||||
* @license
|
|
||||||
* Dual licensed under the MIT and GPL licenses.
|
|
||||||
*/
|
|
||||||
.syntaxhighlighter {
|
|
||||||
background-color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt1 {
|
|
||||||
background-color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt2 {
|
|
||||||
background-color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 {
|
|
||||||
background-color: #2a3133 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.number {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
color: #d3d3d3 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter {
|
|
||||||
color: #d3d3d3 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line {
|
|
||||||
border-right: 3px solid #990000 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line.highlighted {
|
|
||||||
background-color: #990000 !important;
|
|
||||||
color: black !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed {
|
|
||||||
overflow: visible !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
color: #ebdb8d !important;
|
|
||||||
background: black !important;
|
|
||||||
border: 1px solid #990000 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a {
|
|
||||||
color: #ebdb8d !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a:hover {
|
|
||||||
color: #ff7d27 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
color: white !important;
|
|
||||||
background: #990000 !important;
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a:hover {
|
|
||||||
color: #9ccff4 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .plain, .syntaxhighlighter .plain a {
|
|
||||||
color: #d3d3d3 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .comments, .syntaxhighlighter .comments a {
|
|
||||||
color: #ff7d27 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .string, .syntaxhighlighter .string a {
|
|
||||||
color: #ff9e7b !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
color: aqua !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .preprocessor {
|
|
||||||
color: #aec4de !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .variable {
|
|
||||||
color: #ffaa3e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .value {
|
|
||||||
color: #009900 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .functions {
|
|
||||||
color: #81cef9 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .constants {
|
|
||||||
color: #ff9e7b !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
color: aqua !important;
|
|
||||||
background-color: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color1, .syntaxhighlighter .color1 a {
|
|
||||||
color: #ebdb8d !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color2, .syntaxhighlighter .color2 a {
|
|
||||||
color: #ff7d27 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color3, .syntaxhighlighter .color3 a {
|
|
||||||
color: #aec4de !important;
|
|
||||||
}
|
|
|
@ -1,117 +0,0 @@
|
||||||
/**
|
|
||||||
* SyntaxHighlighter
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter
|
|
||||||
*
|
|
||||||
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
|
||||||
*
|
|
||||||
* @version
|
|
||||||
* 3.0.83 (July 02 2010)
|
|
||||||
*
|
|
||||||
* @copyright
|
|
||||||
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
|
||||||
*
|
|
||||||
* @license
|
|
||||||
* Dual licensed under the MIT and GPL licenses.
|
|
||||||
*/
|
|
||||||
.syntaxhighlighter {
|
|
||||||
background-color: #121212 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt1 {
|
|
||||||
background-color: #121212 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt2 {
|
|
||||||
background-color: #121212 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 {
|
|
||||||
background-color: #2c2c29 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.number {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter {
|
|
||||||
color: #afafaf !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line {
|
|
||||||
border-right: 3px solid #3185b9 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line.highlighted {
|
|
||||||
background-color: #3185b9 !important;
|
|
||||||
color: #121212 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed {
|
|
||||||
overflow: visible !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
color: #3185b9 !important;
|
|
||||||
background: black !important;
|
|
||||||
border: 1px solid #3185b9 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a {
|
|
||||||
color: #3185b9 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a:hover {
|
|
||||||
color: #d01d33 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
color: white !important;
|
|
||||||
background: #3185b9 !important;
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a:hover {
|
|
||||||
color: #96daff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .plain, .syntaxhighlighter .plain a {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .comments, .syntaxhighlighter .comments a {
|
|
||||||
color: #696854 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .string, .syntaxhighlighter .string a {
|
|
||||||
color: #e3e658 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
color: #d01d33 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .preprocessor {
|
|
||||||
color: #435a5f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .variable {
|
|
||||||
color: #898989 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .value {
|
|
||||||
color: #009900 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .functions {
|
|
||||||
color: #aaaaaa !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .constants {
|
|
||||||
color: #96daff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
color: #d01d33 !important;
|
|
||||||
background-color: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color1, .syntaxhighlighter .color1 a {
|
|
||||||
color: #ffc074 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color2, .syntaxhighlighter .color2 a {
|
|
||||||
color: #4a8cdb !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color3, .syntaxhighlighter .color3 a {
|
|
||||||
color: #96daff !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.syntaxhighlighter .functions {
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
|
@ -1,113 +0,0 @@
|
||||||
/**
|
|
||||||
* SyntaxHighlighter
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter
|
|
||||||
*
|
|
||||||
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
|
||||||
*
|
|
||||||
* @version
|
|
||||||
* 3.0.83 (July 02 2010)
|
|
||||||
*
|
|
||||||
* @copyright
|
|
||||||
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
|
||||||
*
|
|
||||||
* @license
|
|
||||||
* Dual licensed under the MIT and GPL licenses.
|
|
||||||
*/
|
|
||||||
.syntaxhighlighter {
|
|
||||||
background-color: #222222 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt1 {
|
|
||||||
background-color: #222222 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt2 {
|
|
||||||
background-color: #222222 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 {
|
|
||||||
background-color: #253e5a !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.number {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
color: lime !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter {
|
|
||||||
color: #38566f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line {
|
|
||||||
border-right: 3px solid #435a5f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line.highlighted {
|
|
||||||
background-color: #435a5f !important;
|
|
||||||
color: #222222 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed {
|
|
||||||
overflow: visible !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
color: #428bdd !important;
|
|
||||||
background: black !important;
|
|
||||||
border: 1px solid #435a5f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a {
|
|
||||||
color: #428bdd !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a:hover {
|
|
||||||
color: lime !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
color: #aaaaff !important;
|
|
||||||
background: #435a5f !important;
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
color: #aaaaff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a:hover {
|
|
||||||
color: #9ccff4 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .plain, .syntaxhighlighter .plain a {
|
|
||||||
color: lime !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .comments, .syntaxhighlighter .comments a {
|
|
||||||
color: #428bdd !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .string, .syntaxhighlighter .string a {
|
|
||||||
color: lime !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
color: #aaaaff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .preprocessor {
|
|
||||||
color: #8aa6c1 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .variable {
|
|
||||||
color: aqua !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .value {
|
|
||||||
color: #f7e741 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .functions {
|
|
||||||
color: #ff8000 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .constants {
|
|
||||||
color: yellow !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
color: #aaaaff !important;
|
|
||||||
background-color: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color1, .syntaxhighlighter .color1 a {
|
|
||||||
color: red !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color2, .syntaxhighlighter .color2 a {
|
|
||||||
color: yellow !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color3, .syntaxhighlighter .color3 a {
|
|
||||||
color: #ffaa3e !important;
|
|
||||||
}
|
|
|
@ -1,113 +0,0 @@
|
||||||
/**
|
|
||||||
* SyntaxHighlighter
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter
|
|
||||||
*
|
|
||||||
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
|
||||||
*
|
|
||||||
* @version
|
|
||||||
* 3.0.83 (July 02 2010)
|
|
||||||
*
|
|
||||||
* @copyright
|
|
||||||
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
|
||||||
*
|
|
||||||
* @license
|
|
||||||
* Dual licensed under the MIT and GPL licenses.
|
|
||||||
*/
|
|
||||||
.syntaxhighlighter {
|
|
||||||
background-color: #0f192a !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt1 {
|
|
||||||
background-color: #0f192a !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt2 {
|
|
||||||
background-color: #0f192a !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 {
|
|
||||||
background-color: #253e5a !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.number {
|
|
||||||
color: #38566f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
color: #d1edff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter {
|
|
||||||
color: #afafaf !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line {
|
|
||||||
border-right: 3px solid #435a5f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line.highlighted {
|
|
||||||
background-color: #435a5f !important;
|
|
||||||
color: #0f192a !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed {
|
|
||||||
overflow: visible !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
color: #428bdd !important;
|
|
||||||
background: black !important;
|
|
||||||
border: 1px solid #435a5f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a {
|
|
||||||
color: #428bdd !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a:hover {
|
|
||||||
color: #1dc116 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
color: #d1edff !important;
|
|
||||||
background: #435a5f !important;
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
color: #d1edff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a:hover {
|
|
||||||
color: #8aa6c1 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .plain, .syntaxhighlighter .plain a {
|
|
||||||
color: #d1edff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .comments, .syntaxhighlighter .comments a {
|
|
||||||
color: #428bdd !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .string, .syntaxhighlighter .string a {
|
|
||||||
color: #1dc116 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
color: #b43d3d !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .preprocessor {
|
|
||||||
color: #8aa6c1 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .variable {
|
|
||||||
color: #ffaa3e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .value {
|
|
||||||
color: #f7e741 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .functions {
|
|
||||||
color: #ffaa3e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .constants {
|
|
||||||
color: #e0e8ff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
color: #b43d3d !important;
|
|
||||||
background-color: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color1, .syntaxhighlighter .color1 a {
|
|
||||||
color: #f8bb00 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color2, .syntaxhighlighter .color2 a {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color3, .syntaxhighlighter .color3 a {
|
|
||||||
color: #ffaa3e !important;
|
|
||||||
}
|
|
|
@ -1,113 +0,0 @@
|
||||||
/**
|
|
||||||
* SyntaxHighlighter
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter
|
|
||||||
*
|
|
||||||
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
|
||||||
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
|
||||||
*
|
|
||||||
* @version
|
|
||||||
* 3.0.83 (July 02 2010)
|
|
||||||
*
|
|
||||||
* @copyright
|
|
||||||
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
|
||||||
*
|
|
||||||
* @license
|
|
||||||
* Dual licensed under the MIT and GPL licenses.
|
|
||||||
*/
|
|
||||||
.syntaxhighlighter {
|
|
||||||
background-color: #1b2426 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt1 {
|
|
||||||
background-color: #1b2426 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.alt2 {
|
|
||||||
background-color: #1b2426 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 {
|
|
||||||
background-color: #323e41 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .line.highlighted.number {
|
|
||||||
color: #b9bdb6 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter table caption {
|
|
||||||
color: #b9bdb6 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter {
|
|
||||||
color: #afafaf !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line {
|
|
||||||
border-right: 3px solid #435a5f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .gutter .line.highlighted {
|
|
||||||
background-color: #435a5f !important;
|
|
||||||
color: #1b2426 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.printing .line .content {
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed {
|
|
||||||
overflow: visible !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar {
|
|
||||||
color: #5ba1cf !important;
|
|
||||||
background: black !important;
|
|
||||||
border: 1px solid #435a5f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a {
|
|
||||||
color: #5ba1cf !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter.collapsed .toolbar a:hover {
|
|
||||||
color: #5ce638 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar {
|
|
||||||
color: white !important;
|
|
||||||
background: #435a5f !important;
|
|
||||||
border: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .toolbar a:hover {
|
|
||||||
color: #e0e8ff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .plain, .syntaxhighlighter .plain a {
|
|
||||||
color: #b9bdb6 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .comments, .syntaxhighlighter .comments a {
|
|
||||||
color: #878a85 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .string, .syntaxhighlighter .string a {
|
|
||||||
color: #5ce638 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .keyword {
|
|
||||||
color: #5ba1cf !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .preprocessor {
|
|
||||||
color: #435a5f !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .variable {
|
|
||||||
color: #ffaa3e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .value {
|
|
||||||
color: #009900 !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .functions {
|
|
||||||
color: #ffaa3e !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .constants {
|
|
||||||
color: #e0e8ff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .script {
|
|
||||||
font-weight: bold !important;
|
|
||||||
color: #5ba1cf !important;
|
|
||||||
background-color: none !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color1, .syntaxhighlighter .color1 a {
|
|
||||||
color: #e0e8ff !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color2, .syntaxhighlighter .color2 a {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.syntaxhighlighter .color3, .syntaxhighlighter .color3 a {
|
|
||||||
color: #ffaa3e !important;
|
|
||||||
}
|
|
|
@ -1,4 +1,4 @@
|
||||||
@import "registration";
|
@import "devise/registration";
|
||||||
|
|
||||||
nav {
|
nav {
|
||||||
width: 96px;
|
width: 96px;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# -*- encoding : utf-8 -*-
|
# -*- encoding : utf-8 -*-
|
||||||
class BuildListsController < ApplicationController
|
class BuildListsController < ApplicationController
|
||||||
CALLBACK_ACTIONS = [:publish_build, :status_build, :pre_build, :post_build, :circle_build, :new_bbdt]
|
CALLBACK_ACTIONS = [:publish_build, :status_build, :pre_build, :post_build, :circle_build, :new_bbdt]
|
||||||
NESTED_ACTIONS = [:index, :new, :create]
|
NESTED_ACTIONS = [:search, :index, :new, :create]
|
||||||
|
|
||||||
before_filter :authenticate_user!, :except => CALLBACK_ACTIONS
|
before_filter :authenticate_user!, :except => CALLBACK_ACTIONS
|
||||||
before_filter :authenticate_build_service!, :only => CALLBACK_ACTIONS
|
before_filter :authenticate_build_service!, :only => CALLBACK_ACTIONS
|
||||||
|
@ -13,23 +13,23 @@ class BuildListsController < ApplicationController
|
||||||
load_and_authorize_resource :build_list, :through => :project, :only => NESTED_ACTIONS, :shallow => true
|
load_and_authorize_resource :build_list, :through => :project, :only => NESTED_ACTIONS, :shallow => true
|
||||||
load_and_authorize_resource :except => CALLBACK_ACTIONS.concat(NESTED_ACTIONS)
|
load_and_authorize_resource :except => CALLBACK_ACTIONS.concat(NESTED_ACTIONS)
|
||||||
|
|
||||||
def index
|
def search
|
||||||
if request.post?
|
new_params = {:filter => {}}
|
||||||
new_params = {:filter => {}}
|
params[:filter].each do |k,v|
|
||||||
params[:filter].each do |k,v|
|
new_params[:filter][k] = v unless v.empty?
|
||||||
new_params[:filter][k] = v unless v.empty?
|
end
|
||||||
end
|
redirect_to @project ? project_build_lists_path(@project, new_params) : build_lists_path(new_params)
|
||||||
redirect_to build_lists_path(new_params)
|
end
|
||||||
else
|
|
||||||
@action_url = @project ? project_build_lists_path(@project) : build_lists_path
|
|
||||||
@filter = BuildList::Filter.new(@project, current_user, params[:filter] || {})
|
|
||||||
@build_lists = @filter.find.recent.paginate :page => params[:page]
|
|
||||||
|
|
||||||
@build_server_status = begin
|
def index
|
||||||
BuildServer.get_status
|
@action_url = @project ? search_project_build_lists_path(@project) : search_build_lists_path
|
||||||
rescue Exception # Timeout::Error
|
@filter = BuildList::Filter.new(@project, current_user, params[:filter] || {})
|
||||||
{}
|
@build_lists = @filter.find.recent.paginate :page => params[:page]
|
||||||
end
|
|
||||||
|
@build_server_status = begin
|
||||||
|
BuildServer.get_status
|
||||||
|
rescue Exception # Timeout::Error
|
||||||
|
{}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -13,11 +13,13 @@ module ApplicationHelper
|
||||||
def layout_class
|
def layout_class
|
||||||
case
|
case
|
||||||
when params[:controller] == 'issues' && params[:action] == 'new'
|
when params[:controller] == 'issues' && params[:action] == 'new'
|
||||||
'nopadding'
|
'right nopadding'
|
||||||
when params[:controller] == 'build_lists'
|
when params[:controller] == 'build_lists' && params[:action] == 'index'
|
||||||
'slim'
|
'right slim'
|
||||||
else
|
when params[:controller] == 'build_lists' && ['new', 'create'].include?(params[:action])
|
||||||
nil
|
nil
|
||||||
|
else
|
||||||
|
content_for?(:sidebar) ? 'right' : 'all'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -12,25 +12,27 @@ class Ability
|
||||||
user ||= User.new # guest user (not logged in)
|
user ||= User.new # guest user (not logged in)
|
||||||
@user = user
|
@user = user
|
||||||
|
|
||||||
if user.admin?
|
# Shared rights between guests and registered users
|
||||||
can :manage, :all
|
can :forbidden, Platform
|
||||||
cannot :destroy, Subscribe
|
# TODO remove because auth callbacks skipped
|
||||||
cannot :create, Subscribe
|
can :auto_build, Project
|
||||||
cannot :create, RegisterRequest
|
can [:publish_build, :status_build, :pre_build, :post_build, :circle_build, :new_bbdt], BuildList
|
||||||
cannot :approve, RegisterRequest, :approved => true
|
|
||||||
cannot :reject, RegisterRequest, :rejected => true
|
|
||||||
else
|
|
||||||
# Shared rights between guests and registered users
|
|
||||||
can :forbidden, Platform
|
|
||||||
|
|
||||||
# TODO remove because auth callbacks skipped
|
if user.guest? # Guest rights
|
||||||
can :auto_build, Project
|
can :create, User
|
||||||
can [:publish_build, :status_build, :pre_build, :post_build, :circle_build, :new_bbdt], BuildList
|
can [:create, :show_message], RegisterRequest
|
||||||
|
else # Registered user rights
|
||||||
|
if user.admin?
|
||||||
|
can :manage, :all
|
||||||
|
cannot :destroy, Subscribe
|
||||||
|
cannot :create, Subscribe
|
||||||
|
cannot :create, RegisterRequest
|
||||||
|
cannot :approve, RegisterRequest, :approved => true
|
||||||
|
cannot :reject, RegisterRequest, :rejected => true
|
||||||
|
cannot [:owned, :related], BuildList
|
||||||
|
end
|
||||||
|
|
||||||
if user.guest? # Guest rights
|
if user.user?
|
||||||
can :create, User
|
|
||||||
can [:create, :show_message], RegisterRequest
|
|
||||||
else # Registered user rights
|
|
||||||
can [:show, :autocomplete_user_uname], User
|
can [:show, :autocomplete_user_uname], User
|
||||||
|
|
||||||
can [:show, :update], Settings::Notifier, :user_id => user.id
|
can [:show, :update], Settings::Notifier, :user_id => user.id
|
||||||
|
@ -60,7 +62,7 @@ class Ability
|
||||||
can [:read, :related], BuildList, :project => {:owner_type => 'User', :owner_id => user.id}
|
can [:read, :related], BuildList, :project => {:owner_type => 'User', :owner_id => user.id}
|
||||||
can [:read, :related], BuildList, :project => {:owner_type => 'Group', :owner_id => user.group_ids}
|
can [:read, :related], BuildList, :project => {:owner_type => 'Group', :owner_id => user.group_ids}
|
||||||
can(:read, BuildList, read_relations_for('build_lists', 'projects')) {|build_list| can? :read, build_list.project}
|
can(:read, BuildList, read_relations_for('build_lists', 'projects')) {|build_list| can? :read, build_list.project}
|
||||||
can(:create, BuildList) {|build_list| can? :write, build_list.project}
|
can(:create, BuildList) {|build_list| build_list.project.is_rpm && can?(:write, build_list.project)}
|
||||||
can(:publish, BuildList) {|build_list| build_list.can_publish? && can?(:write, build_list.project)}
|
can(:publish, BuildList) {|build_list| build_list.can_publish? && can?(:write, build_list.project)}
|
||||||
can(:cancel, BuildList) {|build_list| build_list.can_cancel? && can?(:write, build_list.project)}
|
can(:cancel, BuildList) {|build_list| build_list.can_cancel? && can?(:write, build_list.project)}
|
||||||
|
|
||||||
|
@ -105,19 +107,19 @@ class Ability
|
||||||
cannot(:manage, Comment) {|comment| comment.commentable_type == 'Issue' && !comment.commentable.project.has_issues} # switch off issues
|
cannot(:manage, Comment) {|comment| comment.commentable_type == 'Issue' && !comment.commentable.project.has_issues} # switch off issues
|
||||||
cannot :manage, RegisterRequest
|
cannot :manage, RegisterRequest
|
||||||
end
|
end
|
||||||
end
|
|
||||||
|
|
||||||
# Shared cannot rights for all users (guests, registered, admin)
|
# Shared cannot rights for all users (registered, admin)
|
||||||
cannot :destroy, Platform, :platform_type => 'personal'
|
cannot :destroy, Platform, :platform_type => 'personal'
|
||||||
cannot :destroy, Repository, :platform => {:platform_type => 'personal'}
|
cannot :destroy, Repository, :platform => {:platform_type => 'personal'}
|
||||||
cannot :fork, Project, :owner_id => user.id, :owner_type => user.class.to_s
|
cannot :fork, Project, :owner_id => user.id, :owner_type => user.class.to_s
|
||||||
cannot :destroy, Issue
|
cannot :destroy, Issue
|
||||||
|
|
||||||
can :create, Subscribe do |subscribe|
|
can :create, Subscribe do |subscribe|
|
||||||
!subscribe.subscribeable.subscribes.exists?(:user_id => user.id)
|
!subscribe.subscribeable.subscribes.exists?(:user_id => user.id)
|
||||||
end
|
end
|
||||||
can :destroy, Subscribe do |subscribe|
|
can :destroy, Subscribe do |subscribe|
|
||||||
subscribe.subscribeable.subscribes.exists?(:user_id => user.id) && user.id == subscribe.user_id
|
subscribe.subscribeable.subscribes.exists?(:user_id => user.id) && user.id == subscribe.user_id
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -56,7 +56,7 @@ class BuildList::Filter
|
||||||
:project_name => nil
|
:project_name => nil
|
||||||
}))
|
}))
|
||||||
|
|
||||||
@options[:ownership] = @options[:ownership].presence || 'index'
|
@options[:ownership] = @options[:ownership].presence || 'owned'
|
||||||
@options[:status] = @options[:status].present? ? @options[:status].to_i : nil
|
@options[:status] = @options[:status].present? ? @options[:status].to_i : nil
|
||||||
@options[:created_at_start] = build_date_from_params(:created_at_start, @options)
|
@options[:created_at_start] = build_date_from_params(:created_at_start, @options)
|
||||||
@options[:created_at_end] = build_date_from_params(:created_at_end, @options)
|
@options[:created_at_end] = build_date_from_params(:created_at_end, @options)
|
||||||
|
|
|
@ -44,8 +44,12 @@ class User < ActiveRecord::Base
|
||||||
role == 'admin'
|
role == 'admin'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def user?
|
||||||
|
persisted?
|
||||||
|
end
|
||||||
|
|
||||||
def guest?
|
def guest?
|
||||||
self.id.blank? # persisted?
|
new_record?
|
||||||
end
|
end
|
||||||
|
|
||||||
def fullname
|
def fullname
|
||||||
|
|
|
@ -4,6 +4,6 @@
|
||||||
%td= link_to build_list.project_version, "#"
|
%td= link_to build_list.project_version, "#"
|
||||||
%td= link_to build_list.project.name, build_list.project
|
%td= link_to build_list.project.name, build_list.project
|
||||||
%td= build_list.arch.name
|
%td= build_list.arch.name
|
||||||
%td= link_to build_list.user.fullname, build_list.user
|
%td= link_to build_list.user.try(:fullname), build_list.user
|
||||||
%td= link_to image_tag('x.png', :class => 'delete-row', :id => "delete-row#{build_list_counter}"), cancel_build_list_path(build_list), :method => :put, :confirm => t('layout.confirm') if can?(:cancel, build_list)
|
%td= link_to image_tag('x.png', :class => 'delete-row', :id => "delete-row#{build_list_counter}"), cancel_build_list_path(build_list), :method => :put, :confirm => t('layout.confirm') if can?(:cancel, build_list)
|
||||||
%td= build_list.notified_at
|
%td= build_list.notified_at
|
|
@ -1,3 +1,4 @@
|
||||||
- platform.repositories.each do |repo|
|
- platform.repositories.each do |repo|
|
||||||
= check_box_tag "build_list[include_repos][]", repo.id, repo.name == 'main' || @project.repositories.map(&:id).include?(repo.id), :id => "include_repos_#{repo.id}" # (params[:build_list]||[]).fetch(:include_repos, []).include?(repo.id.to_s)
|
.both
|
||||||
= label_tag "include_repos_#{repo.id}", repo.name
|
= check_box_tag "build_list[include_repos][]", repo.id, repo.name == 'main' || @project.repositories.map(&:id).include?(repo.id), :id => "include_repos_#{repo.id}" # (params[:build_list]||[]).fetch(:include_repos, []).include?(repo.id.to_s)
|
||||||
|
= label_tag "include_repos_#{repo.id}", repo.name
|
|
@ -1,6 +0,0 @@
|
||||||
- content_for :sub_menu do
|
|
||||||
.left
|
|
||||||
%nav
|
|
||||||
%ul
|
|
||||||
%li= link_to t('layout.projects.list_header'), build_lists_path, :class => current_page?(:controller => 'build_lists') ? 'active' : nil
|
|
||||||
%li= link_to t('layout.products.list_header'), '#'
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
- content_for :submenu do
|
||||||
|
- if content_for?(:sidebar)
|
||||||
|
.left
|
||||||
|
%nav
|
||||||
|
%ul
|
||||||
|
%li= link_to t('layout.projects.list_header'), build_lists_path, :class => (params[:controller] == 'build_lists' ? 'active' : nil)
|
||||||
|
%li= link_to t('layout.products.list_header'), '#'
|
|
@ -15,5 +15,7 @@
|
||||||
|
|
||||||
= will_paginate @build_lists
|
= will_paginate @build_lists
|
||||||
|
|
||||||
= render 'build_lists/sub_menu'
|
= link_to t('layout.build_lists.new_header'), new_project_build_list_path(@project), :class => 'button' if @project and can?(:create, @project => BuildList)
|
||||||
= render 'build_lists/sidebar'
|
|
||||||
|
= render 'build_lists/filter'
|
||||||
|
= render @project ? 'projects/submenu' : 'build_lists/submenu'
|
||||||
|
|
|
@ -1,66 +1,37 @@
|
||||||
.block
|
= form_for [@project, @build_list], :html => { :class => :form, :method => :post } do |f|
|
||||||
.secondary-navigation
|
%section.left
|
||||||
%ul.wat-cf
|
%h3= t("activerecord.attributes.build_list.project_version")
|
||||||
%li.first=# link_to t("layout.projects.list"), platform_repository_path(@platform, @repository) + "#projects"
|
.lineForm= f.select :project_version, @project.versions
|
||||||
%li= link_to t("layout.projects.new"), new_project_path
|
%h3= t("activerecord.attributes.build_list.bpl")
|
||||||
%li= link_to t("layout.projects.show"), project_path(@project)
|
.base_platforms
|
||||||
%li=# link_to "git-repo", project_repo_path(@platform, @repository, @project)
|
- Platform.main.each do |bpl|
|
||||||
%li.active= link_to t("layout.projects.build"), new_project_build_list_path(@project)
|
.both
|
||||||
|
= check_box_tag "bpls[]", bpl.id, (params[:bpls]||[]).include?(bpl.id.to_s), :class => 'build_bpl_ids', :id => "bpls_#{bpl.id}"
|
||||||
.content
|
= label_tag "bpls_#{bpl.id}", bpl.name
|
||||||
%h2.title= t("layout.projects.new_build", :project_name => @project.name)
|
%h3= t("activerecord.attributes.build_list.update_type")
|
||||||
|
.lineForm= f.select :update_type, BuildList::UPDATE_TYPES
|
||||||
.inner
|
%h3= t("activerecord.attributes.build_list.preferences")
|
||||||
= form_for [@project, @build_list], :html => { :class => :form, :method => :post } do |f|
|
.both
|
||||||
.columns.wat-cf
|
= f.check_box :auto_publish
|
||||||
.column.left
|
= f.label :auto_publish
|
||||||
.group
|
.both
|
||||||
= f.label :project_version, t("activerecord.attributes.build_list.project_version"), :class => :label
|
= f.check_box :build_requires
|
||||||
= f.select :project_version, @project.versions
|
= f.label :build_requires
|
||||||
|
%br
|
||||||
.group.base_platforms
|
= f.submit t("layout.projects.build_button")
|
||||||
= f.label :bpl, t("activerecord.attributes.build_list.bpl"), :class => :label
|
%section.right
|
||||||
- Platform.main.each do |bpl|
|
%h3= t("activerecord.attributes.build_list.arch")
|
||||||
= check_box_tag "bpls[]", bpl.id, (params[:bpls]||[]).include?(bpl.id.to_s), :class => 'build_bpl_ids', :id => "bpls_#{bpl.id}"
|
- Arch.recent.each do |arch|
|
||||||
= label_tag "bpls_#{bpl.id}", bpl.name
|
.both
|
||||||
%br
|
= check_box_tag "arches[]", arch.id, (params[:arches]||[]).include?(arch.id.to_s), :id => "arches_#{arch.id}"
|
||||||
|
= label_tag "arches_#{arch.id}", arch.name
|
||||||
.group
|
%h3= t("activerecord.attributes.build_list.pl")
|
||||||
= f.label :update_type, t("activerecord.attributes.build_list.update_type"), :class => :label
|
.lineForm= f.select :pl_id, @project.repositories.collect{|r| ["#{r.platform.name}/#{r.name}", r.platform.id]}
|
||||||
= f.select :update_type, BuildList::UPDATE_TYPES
|
%h3= t("activerecord.attributes.build_list.include_repos")
|
||||||
|
#include_repos
|
||||||
.group
|
|
||||||
= f.check_box :build_requires
|
|
||||||
= f.label :build_requires, t("activerecord.attributes.build_list.build_requires")
|
|
||||||
|
|
||||||
|
|
||||||
.column.right
|
|
||||||
.group
|
|
||||||
= f.label :arches, t("activerecord.attributes.build_list.arch"), :class => :label
|
|
||||||
- Arch.recent.each do |arch|
|
|
||||||
= check_box_tag "arches[]", arch.id, (params[:arches]||[]).include?(arch.id.to_s), :id => "arches_#{arch.id}"
|
|
||||||
= label_tag "arches_#{arch.id}", arch.name
|
|
||||||
%br
|
|
||||||
|
|
||||||
.group
|
|
||||||
= f.label :pl_id, t("activerecord.attributes.build_list.pl"), :class => :label
|
|
||||||
= f.select :pl_id, @project.repositories.collect{|r| ["#{r.platform.name}/#{r.name}", r.platform.id]}
|
|
||||||
|
|
||||||
.group
|
|
||||||
= f.label :include_repos, t("activerecord.attributes.build_list.include_repos"), :class => :label
|
|
||||||
#include_repos
|
|
||||||
|
|
||||||
.group
|
|
||||||
= f.check_box :auto_publish
|
|
||||||
= f.label :auto_publish, t("activerecord.attributes.build_list.auto_publish")
|
|
||||||
|
|
||||||
.group.navform.wat-cf
|
|
||||||
%button.button{:type => "submit"}
|
|
||||||
= image_tag("choose.png", :alt => t("layout.projects.build_button"))
|
|
||||||
= t("layout.projects.build_button")
|
|
||||||
%span.text_button_padding= t("layout.or")
|
|
||||||
= link_to t("layout.cancel"), root_path, :class => "text_button_padding link_button"
|
|
||||||
|
|
||||||
.preloaded_include_repos{:style => 'display: none'}
|
.preloaded_include_repos{:style => 'display: none'}
|
||||||
- @project.platforms.each do |p|
|
- @project.platforms.each do |p|
|
||||||
%div{:class => "include_repos_#{p.id}"}= render 'include_repos', :platform => p
|
%div{:class => "include_repos_#{p.id}"}= render 'include_repos', :platform => p
|
||||||
|
|
||||||
|
= render 'projects/submenu'
|
||||||
|
|
|
@ -1,121 +1,81 @@
|
||||||
.block
|
%table.columns2.info
|
||||||
.secondary-navigation
|
%tr
|
||||||
%ul.wat-cf
|
%td.first= t("activerecord.attributes.build_list.name")
|
||||||
%li.first= link_to t("layout.build_lists.current"), project_path(@build_list.project) + "#build_lists"
|
%td= @build_list.present? ? @build_list.name : t("layout.build_lists.name_not_yet_defined")
|
||||||
%li= link_to t("layout.build_lists.all"), project_build_lists_path(@build_list.project)
|
%tr
|
||||||
%li.active= link_to t("layout.build_lists.show"), @build_list
|
%td= t("activerecord.attributes.build_list.bs_id")
|
||||||
|
%td= @build_list.bs_id
|
||||||
|
%tr
|
||||||
|
%td= t("activerecord.attributes.build_list.container_path")
|
||||||
|
%td
|
||||||
|
- if @build_list.status == BuildList::BUILD_PUBLISHED
|
||||||
|
= t("layout.build_lists.container_published")
|
||||||
|
- elsif @build_list.container_path.present?
|
||||||
|
- container_url = "http://#{request.host_with_port}/downloads#{@build_list.container_path}"
|
||||||
|
= link_to container_url, container_url
|
||||||
|
%tr
|
||||||
|
%td= t("activerecord.attributes.build_list.bpl")
|
||||||
|
%td= link_to @build_list.bpl.name, @build_list.bpl
|
||||||
|
%tr
|
||||||
|
%td= t("activerecord.attributes.build_list.pl")
|
||||||
|
%td= link_to @build_list.pl.name, @build_list.pl
|
||||||
|
%tr
|
||||||
|
%td= t("activerecord.attributes.build_list.include_repos")
|
||||||
|
%td= (@build_list.include_repos||[]).map{|r| Repository.find(r).name}.join(', ')
|
||||||
|
%tr
|
||||||
|
%td= t("activerecord.attributes.build_list.update_type")
|
||||||
|
%td= @build_list.update_type
|
||||||
|
%tr
|
||||||
|
%td= t("activerecord.attributes.build_list.build_requires")
|
||||||
|
%td= @build_list.build_requires
|
||||||
|
%tr
|
||||||
|
%td= t("activerecord.attributes.build_list.auto_publish")
|
||||||
|
%td= @build_list.auto_publish
|
||||||
|
%tr
|
||||||
|
%td= t("activerecord.attributes.build_list.status")
|
||||||
|
%td= @build_list.human_status
|
||||||
|
%tr
|
||||||
|
%td= t("activerecord.attributes.build_list.project_version")
|
||||||
|
%td= @build_list.project_version
|
||||||
|
%tr
|
||||||
|
%td= t("activerecord.attributes.build_list.project")
|
||||||
|
%td= link_to @build_list.project.name, project_path(@build_list.project)
|
||||||
|
%tr
|
||||||
|
%td= t("activerecord.attributes.build_list.arch")
|
||||||
|
%td= @build_list.arch.name
|
||||||
|
%tr
|
||||||
|
%td= t("activerecord.attributes.build_list.user")
|
||||||
|
%td= link_to @build_list.user.try(:fullname), @build_list.user
|
||||||
|
%tr
|
||||||
|
%td= t("activerecord.attributes.build_list.notified_at")
|
||||||
|
%td= @build_list.notified_at
|
||||||
|
%tr
|
||||||
|
%td= t("activerecord.attributes.build_list.is_circle")
|
||||||
|
%td= t("layout.#{@build_list.is_circle?}_")
|
||||||
|
|
||||||
.content
|
%br
|
||||||
.inner
|
%br
|
||||||
%p
|
|
||||||
%b
|
|
||||||
= t("activerecord.attributes.build_list.name")
|
|
||||||
\:
|
|
||||||
= @build_list.present? ? @build_list.name : t("layout.build_lists.name_not_yet_defined")
|
|
||||||
%p
|
|
||||||
%b
|
|
||||||
= t("activerecord.attributes.build_list.bs_id")
|
|
||||||
\:
|
|
||||||
= @build_list.bs_id
|
|
||||||
%p
|
|
||||||
%b
|
|
||||||
= t("activerecord.attributes.build_list.container_path")
|
|
||||||
\:
|
|
||||||
- if @build_list.status == BuildList::BUILD_PUBLISHED
|
|
||||||
= t("layout.build_lists.container_published")
|
|
||||||
- elsif @build_list.container_path.present?
|
|
||||||
- container_url = "http://#{request.host_with_port}/downloads#{@build_list.container_path}"
|
|
||||||
= link_to container_url, container_url
|
|
||||||
%p
|
|
||||||
%b
|
|
||||||
= t("activerecord.attributes.build_list.bpl")
|
|
||||||
\:
|
|
||||||
= @build_list.bpl.name
|
|
||||||
%p
|
|
||||||
%b
|
|
||||||
= t("activerecord.attributes.build_list.pl")
|
|
||||||
\:
|
|
||||||
= @build_list.pl.name
|
|
||||||
%p
|
|
||||||
%b
|
|
||||||
= t("activerecord.attributes.build_list.include_repos")
|
|
||||||
\:
|
|
||||||
= (@build_list.include_repos||[]).map{|r| Repository.find(r).name}.join(', ')
|
|
||||||
%p
|
|
||||||
%b
|
|
||||||
= t("activerecord.attributes.build_list.update_type")
|
|
||||||
\:
|
|
||||||
= @build_list.update_type
|
|
||||||
%p
|
|
||||||
%b
|
|
||||||
= t("activerecord.attributes.build_list.build_requires")
|
|
||||||
\:
|
|
||||||
= @build_list.build_requires
|
|
||||||
%p
|
|
||||||
%b
|
|
||||||
= t("activerecord.attributes.build_list.auto_publish")
|
|
||||||
\:
|
|
||||||
= @build_list.auto_publish
|
|
||||||
%p
|
|
||||||
%b
|
|
||||||
= t("activerecord.attributes.build_list.status")
|
|
||||||
\:
|
|
||||||
= @build_list.human_status
|
|
||||||
%p
|
|
||||||
%b
|
|
||||||
= t("activerecord.attributes.build_list.project_version")
|
|
||||||
\:
|
|
||||||
= @build_list.project_version
|
|
||||||
%p
|
|
||||||
%b
|
|
||||||
= t("activerecord.attributes.build_list.project")
|
|
||||||
\:
|
|
||||||
= link_to @build_list.project.name, project_path(@build_list.project)
|
|
||||||
%p
|
|
||||||
%b
|
|
||||||
= t("activerecord.attributes.build_list.arch")
|
|
||||||
\:
|
|
||||||
= @build_list.arch.name
|
|
||||||
%p
|
|
||||||
%b
|
|
||||||
= t("activerecord.attributes.build_list.user")
|
|
||||||
\:
|
|
||||||
= @build_list.user.try(:fullname)
|
|
||||||
%p
|
|
||||||
%b
|
|
||||||
= t("activerecord.attributes.build_list.notified_at")
|
|
||||||
\:
|
|
||||||
= @build_list.notified_at
|
|
||||||
%p
|
|
||||||
%b
|
|
||||||
= t("activerecord.attributes.build_list.is_circle")
|
|
||||||
\:
|
|
||||||
= t("layout.#{@build_list.is_circle?}_")
|
|
||||||
|
|
||||||
- if @build_list.can_publish?
|
= link_to t("layout.publish"), publish_build_list_path(@build_list), :method => "put", :confirm => t("layout.confirm"), :class => "button" if can? :publish, @build_list
|
||||||
.wat-cf
|
|
||||||
= link_to image_tag("choose.png", :alt => t("layout.publish")) + " " + t("layout.publish"), publish_build_list_path(@build_list), :method => "put", :class => "button", :confirm => t("layout.confirm")
|
|
||||||
|
|
||||||
.block
|
%br
|
||||||
.content
|
%br
|
||||||
%h2= t("layout.build_lists.items_header")
|
|
||||||
|
|
||||||
.inner
|
%h2= t("layout.build_lists.items_header")
|
||||||
- if @item_groups.blank?
|
= t("layout.build_lists.no_items_data") if @item_groups.blank?
|
||||||
= t("layout.build_lists.no_items_data")
|
|
||||||
|
|
||||||
- @item_groups.each_with_index do |group, level|
|
- @item_groups.each_with_index do |group, level|
|
||||||
%h3.title Level ##{level}
|
%h3.title Level ##{level}
|
||||||
%table.table
|
%table.columns3.info
|
||||||
%tr
|
%tr
|
||||||
%th.first= t("activerecord.attributes.build_list/item.name")
|
%th.first= t("activerecord.attributes.build_list/item.name")
|
||||||
%th= t("activerecord.attributes.build_list/item.version")
|
%th= t("activerecord.attributes.build_list/item.version")
|
||||||
%th.last= t("activerecord.attributes.build_list/item.status")
|
%th.last= t("activerecord.attributes.build_list/item.status")
|
||||||
|
|
||||||
- group.each do |item|
|
- group.each do |item|
|
||||||
%tr{:class => cycle("odd", "even")}
|
%tr{:class => cycle("odd", "even")}
|
||||||
%td= item.name
|
%td= item.name
|
||||||
%td= item.version
|
%td= item.version
|
||||||
%td.last= item.human_status
|
%td= item.human_status
|
||||||
|
|
||||||
- content_for :sidebar, render('sidebar', :project => @build_list.project)
|
= render 'build_lists/submenu'
|
||||||
|
|
|
@ -15,8 +15,7 @@
|
||||||
- if @path.present?
|
- if @path.present?
|
||||||
%tr
|
%tr
|
||||||
%td
|
%td
|
||||||
.pic
|
.pic= image_tag 'folder.png'
|
||||||
%img{:src => "/assets/folder.png"}/
|
|
||||||
.name
|
.name
|
||||||
= link_to "..", tree_path(@project, @treeish, File.join([@path.dup.encode_to_default, ".."].compact).encode_to_default)
|
= link_to "..", tree_path(@project, @treeish, File.join([@path.dup.encode_to_default, ".."].compact).encode_to_default)
|
||||||
%td==
|
%td==
|
||||||
|
@ -27,13 +26,11 @@
|
||||||
%td
|
%td
|
||||||
- entry_path = File.join([@path.present? ? @path : nil, entry.name].compact).encode_to_default
|
- entry_path = File.join([@path.present? ? @path : nil, entry.name].compact).encode_to_default
|
||||||
- if entry.is_a? Grit::Blob
|
- if entry.is_a? Grit::Blob
|
||||||
.pic
|
.pic= image_tag 'code.png'
|
||||||
%img{:src => "/assets/code.png"}/
|
|
||||||
.name
|
.name
|
||||||
= link_to(entry.name, blob_path(@project, @treeish, entry_path), :class => 'files-see').encode_to_default
|
= link_to(entry.name, blob_path(@project, @treeish, entry_path), :class => 'files-see').encode_to_default
|
||||||
- else
|
- else
|
||||||
.pic
|
.pic= image_tag 'folder.png'
|
||||||
%img{:src => "/assets/folder.png"}/
|
|
||||||
.name
|
.name
|
||||||
= link_to(entry.name, tree_path(@project, @treeish, entry_path), :class => 'files-see').encode_to_default
|
= link_to(entry.name, tree_path(@project, @treeish, entry_path), :class => 'files-see').encode_to_default
|
||||||
%td
|
%td
|
||||||
|
|
|
@ -18,7 +18,6 @@
|
||||||
=link_to image_tag(issue.user.avatar(22), :alt => 'avatar'), user_path(issue.user) if issue.user
|
=link_to image_tag(issue.user.avatar(22), :alt => 'avatar'), user_path(issue.user) if issue.user
|
||||||
%a{:href => "#{project_issue_path @project, issue}#block-list"}
|
%a{:href => "#{project_issue_path @project, issue}#block-list"}
|
||||||
.answers
|
.answers
|
||||||
.pic
|
.pic= image_tag 'answers.png'
|
||||||
%img{:alt => '', :src => "/assets/answers.png"}
|
|
||||||
.count=issue.comments.count
|
.count=issue.comments.count
|
||||||
.both
|
.both
|
|
@ -21,8 +21,7 @@
|
||||||
.labeltext.edit{:style => "background: ##{label.color};"}
|
.labeltext.edit{:style => "background: ##{label.color};"}
|
||||||
.text=link_to(label.name, project_issues_update_label_path(@project, label.id), :class => 'edit_label')
|
.text=link_to(label.name, project_issues_update_label_path(@project, label.id), :class => 'edit_label')
|
||||||
.delete{:id => "delete#{index}"}
|
.delete{:id => "delete#{index}"}
|
||||||
%a{:href => project_issues_delete_label_path(@project, label.id), :class => 'delete_label'}
|
%a{:href => project_issues_delete_label_path(@project, label.id), :class => 'delete_label'}= image_tag 'x-label.png'
|
||||||
%img{:alt => "x", :src => "/assets/x-label.png"}
|
|
||||||
.both
|
.both
|
||||||
.edit_label_form{:style => 'display:none'}
|
.edit_label_form{:style => 'display:none'}
|
||||||
=form_tag project_issues_update_label_path(@project, label.id), :id => 'update_label', :method => :post do
|
=form_tag project_issues_update_label_path(@project, label.id), :id => 'update_label', :method => :post do
|
||||||
|
|
|
@ -36,16 +36,14 @@
|
||||||
.a= link_to t('layout.logout'), destroy_user_session_path, :method => :delete
|
.a= link_to t('layout.logout'), destroy_user_session_path, :method => :delete
|
||||||
.right
|
.right
|
||||||
.both
|
.both
|
||||||
- if content_for?(:sub_menu)
|
- if content_for?(:submenu)
|
||||||
.sub-menu= yield :sub_menu
|
.sub-menu= yield :submenu
|
||||||
.both
|
.both
|
||||||
= render "layouts/flashes"
|
= render "layouts/flashes"
|
||||||
%article
|
%article
|
||||||
- if content_for?(:sidebar)
|
- if content_for?(:sidebar)
|
||||||
%aside= yield :sidebar
|
%aside= yield :sidebar
|
||||||
.right{:class => layout_class}= yield
|
%div{:class => layout_class}= yield
|
||||||
- else
|
|
||||||
.all= yield
|
|
||||||
.both
|
.both
|
||||||
|
|
||||||
%footer= render "layouts/menu/bottom"
|
%footer= render "layouts/menu/bottom"
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
= presenter.caption
|
= presenter.caption
|
||||||
- if presenter.expandable? and presenter.content?
|
- if presenter.expandable? and presenter.content?
|
||||||
%span.data-expander.collapsed{:id => "expand#{item_no}"}
|
%span.data-expander.collapsed{:id => "expand#{item_no}"}
|
||||||
-#%img#expand1.activity-full{:alt => "expand", :onclick => "showActivity(4)", :src => "/assets/expand-gray.png"}/
|
/ = image_tag 'expand-gray.png', :class => 'activity-full', :id => 'expand1', :onclick => "showActivity(4)"
|
||||||
.both
|
.both
|
||||||
- if presenter.content?
|
- if presenter.content?
|
||||||
.fulltext{:class => presenter.expandable? ? "hidden" : '',
|
.fulltext{:class => presenter.expandable? ? "hidden" : '',
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
.description-top
|
.description-top
|
||||||
.img
|
.img= image_tag 'code.png'
|
||||||
%img{:alt => "pic", :src => "/assets/code.png"}/
|
|
||||||
= text_field_tag :url, git_repo_url(project.git_repo_name), :class => 'name',
|
= text_field_tag :url, git_repo_url(project.git_repo_name), :class => 'name',
|
||||||
:type => 'text',:spellcheck => 'false', :disabled => 'disabled'
|
:type => 'text',:spellcheck => 'false', :disabled => 'disabled'
|
||||||
.role
|
.role
|
||||||
|
|
|
@ -1,17 +1,16 @@
|
||||||
- content_for :sub_menu do
|
- content_for :submenu do
|
||||||
- act = action_name.to_sym
|
- act = action_name.to_sym; contr = controller_name.to_sym
|
||||||
- contr = controller_name.to_sym
|
.left= @project.name
|
||||||
.left
|
|
||||||
= @project.name
|
|
||||||
%nav
|
%nav
|
||||||
%ul
|
%ul
|
||||||
%li= link_to t("project_menu.project"), project_path(@project), {:class => (act.in?([:show, :edit]) && contr.in?([:trees, :blobs])) ? 'active' : ''}
|
%li= link_to t("project_menu.project"), project_path(@project), :class => (act.in?([:show, :edit]) && contr.in?([:trees, :blobs]) ? 'active' : nil)
|
||||||
%li= link_to t("project_menu.commits"), commits_path(@project), {:class => (act.in?([:index, :show]) && contr == :commits) ? 'active' : ''}
|
%li= link_to t("project_menu.commits"), commits_path(@project), :class => (act.in?([:index, :show]) && contr == :commits ? 'active' : nil)
|
||||||
- if @project.is_rpm
|
- if @project.is_rpm and can?(:create, @project => BuildList)
|
||||||
%li= link_to t("project_menu.builds"), project_build_lists_path(@project), {:class => (act == :index && contr == :builds) ? 'active' : ''}
|
%li= link_to t("project_menu.builds"), project_build_lists_path(@project), :class => (contr == :build_lists ? 'active' : nil)
|
||||||
- if @project.has_issues
|
- if @project.has_issues
|
||||||
%li= link_to t("project_menu.tracker"), project_issues_path(@project), {:class => (act == :index && contr == :issues) ? 'active' : ''}
|
%li= link_to t("project_menu.tracker"), project_issues_path(@project), :class => (act == :index && contr == :issues ? 'active' : nil)
|
||||||
- if @project.has_wiki
|
- if @project.has_wiki
|
||||||
%li= link_to t("project_menu.wiki"), project_wiki_index_path(@project), {:class => contr == :wiki ? 'active' : ''}
|
%li= link_to t("project_menu.wiki"), project_wiki_index_path(@project), :class => (contr == :wiki ? 'active' : nil)
|
||||||
%li= link_to t("project_menu.readme"), "#" #pending
|
%li= link_to t("project_menu.readme"), "#" #pending
|
||||||
%li= link_to t("project_menu.settings"), edit_project_path(@project), {:class => (act == :edit && contr == :projects) ? 'active' : ''}
|
- if can? :update, @project
|
||||||
|
%li= link_to t("project_menu.settings"), edit_project_path(@project), :class => (act == :edit && contr == :projects ? 'active' : nil)
|
||||||
|
|
|
@ -32,8 +32,7 @@
|
||||||
- if @path.present?
|
- if @path.present?
|
||||||
%tr
|
%tr
|
||||||
%td
|
%td
|
||||||
.pic
|
.pic= image_tag 'folder.png'
|
||||||
%img{:src => "/assets/folder.png"}/
|
|
||||||
.name
|
.name
|
||||||
= link_to "..", tree_path(@project, @treeish, File.join([@path.dup.encode_to_default, ".."].compact).encode_to_default)
|
= link_to "..", tree_path(@project, @treeish, File.join([@path.dup.encode_to_default, ".."].compact).encode_to_default)
|
||||||
%td==
|
%td==
|
||||||
|
@ -44,13 +43,11 @@
|
||||||
%td
|
%td
|
||||||
- entry_path = File.join([@path.present? ? @path : nil, entry.name].compact).encode_to_default
|
- entry_path = File.join([@path.present? ? @path : nil, entry.name].compact).encode_to_default
|
||||||
- if entry.is_a? Grit::Blob
|
- if entry.is_a? Grit::Blob
|
||||||
.pic
|
.pic= image_tag 'code.png'
|
||||||
%img{:src => "/assets/code.png"}/
|
|
||||||
.name
|
.name
|
||||||
= link_to(entry.name, blob_path(@project, @treeish, entry_path), :class => 'files-see').encode_to_default
|
= link_to(entry.name, blob_path(@project, @treeish, entry_path), :class => 'files-see').encode_to_default
|
||||||
- else
|
- else
|
||||||
.pic
|
.pic= image_tag 'folder.png'
|
||||||
%img{:src => "/assets/folder.png"}/
|
|
||||||
.name
|
.name
|
||||||
= link_to(entry.name, tree_path(@project, @treeish, entry_path), :class => 'files-see').encode_to_default
|
= link_to(entry.name, tree_path(@project, @treeish, entry_path), :class => 'files-see').encode_to_default
|
||||||
%td
|
%td
|
||||||
|
|
|
@ -55,5 +55,8 @@ module Rosa
|
||||||
|
|
||||||
# Version of your assets, change this if you want to expire all your assets
|
# Version of your assets, change this if you want to expire all your assets
|
||||||
config.assets.version = '1.0'
|
config.assets.version = '1.0'
|
||||||
|
|
||||||
|
# Compass
|
||||||
|
config.sass.load_paths << Compass::Frameworks['compass'].stylesheets_directory if config.respond_to?(:sass)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -28,6 +28,7 @@ en:
|
||||||
auto_publish: Automated publising
|
auto_publish: Automated publising
|
||||||
project_version: Version
|
project_version: Version
|
||||||
user: User
|
user: User
|
||||||
|
preferences: Preferences
|
||||||
|
|
||||||
build_list/item:
|
build_list/item:
|
||||||
name: Name
|
name: Name
|
||||||
|
@ -56,6 +57,7 @@ en:
|
||||||
publish_fail: 'Errors on publish queue!'
|
publish_fail: 'Errors on publish queue!'
|
||||||
container_published: 'Container in a repository'
|
container_published: 'Container in a repository'
|
||||||
action: Action
|
action: Action
|
||||||
|
new_header: New build
|
||||||
|
|
||||||
ownership:
|
ownership:
|
||||||
header: Build list ownership
|
header: Build list ownership
|
||||||
|
|
|
@ -28,6 +28,7 @@ ru:
|
||||||
auto_publish: Автоматическая публикация
|
auto_publish: Автоматическая публикация
|
||||||
project_version: Версия
|
project_version: Версия
|
||||||
user: Пользователь
|
user: Пользователь
|
||||||
|
preferences: Настройки
|
||||||
|
|
||||||
build_list/item:
|
build_list/item:
|
||||||
name: Название
|
name: Название
|
||||||
|
@ -56,6 +57,7 @@ ru:
|
||||||
publish_fail: 'При публикации сборки произошла ошибка!'
|
publish_fail: 'При публикации сборки произошла ошибка!'
|
||||||
container_published: 'Контейнер размещен в репозитории'
|
container_published: 'Контейнер размещен в репозитории'
|
||||||
action: Действие
|
action: Действие
|
||||||
|
new_header: Новая сборка
|
||||||
|
|
||||||
ownership:
|
ownership:
|
||||||
header: Принадлежность заданий
|
header: Принадлежность заданий
|
||||||
|
|
|
@ -50,10 +50,9 @@ Rosa::Application.routes.draw do
|
||||||
put :cancel
|
put :cancel
|
||||||
put :publish
|
put :publish
|
||||||
end
|
end
|
||||||
|
collection { post :search }
|
||||||
end
|
end
|
||||||
|
|
||||||
post 'build_lists' => 'build_lists#index', :as => 'build_lists'
|
|
||||||
|
|
||||||
resources :auto_build_lists, :only => [:index, :create, :destroy]
|
resources :auto_build_lists, :only => [:index, :create, :destroy]
|
||||||
|
|
||||||
resources :personal_repositories, :only => [:show] do
|
resources :personal_repositories, :only => [:show] do
|
||||||
|
@ -131,7 +130,9 @@ Rosa::Application.routes.draw do
|
||||||
post "labels/:label_id/update" => "issues#update_label", :as => :issues_update_label
|
post "labels/:label_id/update" => "issues#update_label", :as => :issues_update_label
|
||||||
|
|
||||||
resource :repo, :controller => "git/repositories", :only => [:show]
|
resource :repo, :controller => "git/repositories", :only => [:show]
|
||||||
resources :build_lists, :only => [:index, :new, :create]
|
resources :build_lists, :only => [:index, :new, :create] do
|
||||||
|
collection { post :search }
|
||||||
|
end
|
||||||
|
|
||||||
resources :collaborators, :only => [:index, :edit, :update, :add] do
|
resources :collaborators, :only => [:index, :edit, :update, :add] do
|
||||||
collection do
|
collection do
|
||||||
|
|
|
@ -276,11 +276,11 @@ ActiveRecord::Schema.define(:version => 20120229182356) do
|
||||||
t.text "description"
|
t.text "description"
|
||||||
t.string "ancestry"
|
t.string "ancestry"
|
||||||
t.boolean "has_issues", :default => true
|
t.boolean "has_issues", :default => true
|
||||||
t.boolean "has_wiki", :default => false
|
|
||||||
t.string "srpm_file_name"
|
t.string "srpm_file_name"
|
||||||
t.string "srpm_content_type"
|
t.string "srpm_content_type"
|
||||||
t.integer "srpm_file_size"
|
t.integer "srpm_file_size"
|
||||||
t.datetime "srpm_updated_at"
|
t.datetime "srpm_updated_at"
|
||||||
|
t.boolean "has_wiki", :default => false
|
||||||
t.string "default_branch", :default => "master"
|
t.string "default_branch", :default => "master"
|
||||||
t.boolean "is_rpm", :default => true
|
t.boolean "is_rpm", :default => true
|
||||||
end
|
end
|
||||||
|
@ -301,6 +301,7 @@ ActiveRecord::Schema.define(:version => 20120229182356) do
|
||||||
end
|
end
|
||||||
|
|
||||||
add_index "register_requests", ["email"], :name => "index_register_requests_on_email", :unique => true, :case_sensitive => false
|
add_index "register_requests", ["email"], :name => "index_register_requests_on_email", :unique => true, :case_sensitive => false
|
||||||
|
add_index "register_requests", ["token"], :name => "index_register_requests_on_token", :unique => true, :case_sensitive => false
|
||||||
|
|
||||||
create_table "relations", :force => true do |t|
|
create_table "relations", :force => true do |t|
|
||||||
t.integer "object_id"
|
t.integer "object_id"
|
||||||
|
@ -360,7 +361,6 @@ ActiveRecord::Schema.define(:version => 20120229182356) do
|
||||||
t.string "email", :default => "", :null => false
|
t.string "email", :default => "", :null => false
|
||||||
t.string "encrypted_password", :limit => 128, :default => "", :null => false
|
t.string "encrypted_password", :limit => 128, :default => "", :null => false
|
||||||
t.string "reset_password_token"
|
t.string "reset_password_token"
|
||||||
t.datetime "reset_password_sent_at"
|
|
||||||
t.datetime "remember_created_at"
|
t.datetime "remember_created_at"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at"
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at"
|
||||||
|
@ -368,6 +368,7 @@ ActiveRecord::Schema.define(:version => 20120229182356) do
|
||||||
t.string "uname"
|
t.string "uname"
|
||||||
t.string "role"
|
t.string "role"
|
||||||
t.string "language", :default => "en"
|
t.string "language", :default => "en"
|
||||||
|
t.datetime "reset_password_sent_at"
|
||||||
t.integer "own_projects_count", :default => 0, :null => false
|
t.integer "own_projects_count", :default => 0, :null => false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -118,7 +118,7 @@ describe BuildListsController do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'should show only accessible build_lists' do
|
it 'should show only accessible build_lists' do
|
||||||
get :index
|
get :index, :filter => {:ownership => 'index'}
|
||||||
assigns(:build_lists).should include(@build_list1)
|
assigns(:build_lists).should include(@build_list1)
|
||||||
assigns(:build_lists).should_not include(@build_list2)
|
assigns(:build_lists).should_not include(@build_list2)
|
||||||
assigns(:build_lists).should include(@build_list3)
|
assigns(:build_lists).should include(@build_list3)
|
||||||
|
@ -203,7 +203,7 @@ describe BuildListsController do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'should show only accessible build_lists' do
|
it 'should show only accessible build_lists' do
|
||||||
get :index
|
get :index, :filter => {:ownership => 'index'}
|
||||||
assigns(:build_lists).should include(@build_list1)
|
assigns(:build_lists).should include(@build_list1)
|
||||||
assigns(:build_lists).should_not include(@build_list2)
|
assigns(:build_lists).should_not include(@build_list2)
|
||||||
assigns(:build_lists).should include(@build_list3)
|
assigns(:build_lists).should include(@build_list3)
|
||||||
|
@ -290,14 +290,14 @@ describe BuildListsController do
|
||||||
|
|
||||||
it 'should filter by project_name' do
|
it 'should filter by project_name' do
|
||||||
# Project.where(:id => build_list2.project.id).update_all(:name => 'project_name')
|
# Project.where(:id => build_list2.project.id).update_all(:name => 'project_name')
|
||||||
get :index, :filter => {:project_name => @build_list2.project.name}
|
get :index, :filter => {:project_name => @build_list2.project.name, :ownership => 'index'}
|
||||||
assigns[:build_lists].should_not include(@build_list1)
|
assigns[:build_lists].should_not include(@build_list1)
|
||||||
assigns[:build_lists].should include(@build_list2)
|
assigns[:build_lists].should include(@build_list2)
|
||||||
assigns[:build_lists].should_not include(@build_list3)
|
assigns[:build_lists].should_not include(@build_list3)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'should filter by project_name and start_date' do
|
it 'should filter by project_name and start_date' do
|
||||||
get :index, :filter => {:project_name => @build_list3.project.name,
|
get :index, :filter => {:project_name => @build_list3.project.name, :ownership => 'index',
|
||||||
"created_at_start(1i)" => @build_list3.created_at.year.to_s,
|
"created_at_start(1i)" => @build_list3.created_at.year.to_s,
|
||||||
"created_at_start(2i)" => @build_list3.created_at.month.to_s,
|
"created_at_start(2i)" => @build_list3.created_at.month.to_s,
|
||||||
"created_at_start(3i)" => @build_list3.created_at.day.to_s}
|
"created_at_start(3i)" => @build_list3.created_at.day.to_s}
|
||||||
|
|
|
@ -1,13 +1,3 @@
|
||||||
/*
|
|
||||||
*= require hl/shCore
|
|
||||||
*= require hl/shCoreEclipse
|
|
||||||
*= require hl/shThemeEclipse
|
|
||||||
|
|
||||||
*= require codemirror
|
|
||||||
*= require codemirror/themes/night
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
@import "tablesorter";
|
@import "tablesorter";
|
||||||
@import "cusel";
|
@import "cusel";
|
||||||
@import "jquery.dataTables";
|
@import "jquery.dataTables";
|
||||||
|
@ -17,10 +7,5 @@
|
||||||
//@import "gollum/template";
|
//@import "gollum/template";
|
||||||
@import "gollum/editor";
|
@import "gollum/editor";
|
||||||
|
|
||||||
@import "hl/shCore";
|
|
||||||
@import "hl/shCoreEclipse";
|
|
||||||
@import "hl/shThemeEclipse";
|
|
||||||
|
|
||||||
@import "codemirror";
|
@import "codemirror";
|
||||||
@import "codemirror/themes/eclipse";
|
@import "codemirror/themes/eclipse";
|
||||||
@import "git/style";
|
|
||||||
|
|
Loading…
Reference in New Issue