From 170f46db8d06935424568f9a50b1684da881a79f Mon Sep 17 00:00:00 2001 From: Alexander Machehin Date: Tue, 3 Feb 2015 16:13:52 +0500 Subject: [PATCH] [#369] remove old assets --- app/assets/javascripts/application.js | 127 - .../javascripts/design/checkbox-main.js | 32 - app/assets/javascripts/design/checkbox.js | 37 - app/assets/javascripts/design/cusel-init.js | 11 - app/assets/javascripts/design/myprojects.js | 16 - app/assets/javascripts/design/project-page.js | 20 - app/assets/javascripts/design/radio.js | 99 - app/assets/javascripts/extra/comment.js | 99 - app/assets/javascripts/new_application.js | 6 - app/assets/stylesheets/application.scss | 9 - .../design/build_lists_monitoring.scss | 159 -- app/assets/stylesheets/design/common.scss | 27 - app/assets/stylesheets/design/contents.scss | 26 - app/assets/stylesheets/design/custom.scss | 2101 --------------- app/assets/stylesheets/design/git.scss | 295 -- app/assets/stylesheets/design/main.scss | 2394 ----------------- app/assets/stylesheets/design/profile.scss | 145 - app/assets/stylesheets/design/statistics.scss | 14 - app/assets/stylesheets/tour.scss | 458 ---- vendor/assets/javascripts/bootstrap-alert.js | 90 - vendor/assets/javascripts/bootstrap-button.js | 100 - .../assets/javascripts/bootstrap-dropdown.js | 92 - vendor/assets/javascripts/bootstrap-modal.js | 210 -- vendor/assets/javascripts/bootstrap-tab.js | 130 - vendor/assets/stylesheets/chosen.scss | 396 --- vendor/assets/stylesheets/old-bootstrap.scss | 1136 -------- 26 files changed, 8229 deletions(-) delete mode 100644 app/assets/javascripts/application.js delete mode 100644 app/assets/javascripts/design/checkbox-main.js delete mode 100644 app/assets/javascripts/design/checkbox.js delete mode 100644 app/assets/javascripts/design/cusel-init.js delete mode 100644 app/assets/javascripts/design/myprojects.js delete mode 100644 app/assets/javascripts/design/project-page.js delete mode 100644 app/assets/javascripts/design/radio.js delete mode 100644 app/assets/javascripts/extra/comment.js delete mode 100644 app/assets/stylesheets/application.scss delete mode 100644 app/assets/stylesheets/design/build_lists_monitoring.scss delete mode 100644 app/assets/stylesheets/design/common.scss delete mode 100644 app/assets/stylesheets/design/contents.scss delete mode 100644 app/assets/stylesheets/design/custom.scss delete mode 100644 app/assets/stylesheets/design/git.scss delete mode 100644 app/assets/stylesheets/design/main.scss delete mode 100644 app/assets/stylesheets/design/profile.scss delete mode 100644 app/assets/stylesheets/design/statistics.scss delete mode 100644 app/assets/stylesheets/tour.scss delete mode 100644 vendor/assets/javascripts/bootstrap-alert.js delete mode 100644 vendor/assets/javascripts/bootstrap-button.js delete mode 100644 vendor/assets/javascripts/bootstrap-dropdown.js delete mode 100644 vendor/assets/javascripts/bootstrap-modal.js delete mode 100644 vendor/assets/javascripts/bootstrap-tab.js delete mode 100755 vendor/assets/stylesheets/chosen.scss delete mode 100644 vendor/assets/stylesheets/old-bootstrap.scss diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js deleted file mode 100644 index 3c90f9cb2..000000000 --- a/app/assets/javascripts/application.js +++ /dev/null @@ -1,127 +0,0 @@ -//= require jquery -//= require jquery-migrate-min -//= require jquery_ujs -//= require jquery-ui -//= require autocomplete-rails -//= require vendor -//= require jquery.dataTables_ext -//= require_tree ./design -//= require_tree ./extra -//= require_tree ./lib - -//= require underscore - -//= require js-routes -// require angular -//= require unstable/angular -// require angular-resource -//= require unstable/angular-resource -//= require ng-rails-csrf -//= require angular-i18n -//= require_tree ./angularjs -//= require moment - -// require soundmanager2 -//= require soundmanager2-nodebug-jsmin - -//= require_self - -function disableNotifierCbx(global_cbx) { - if ($(global_cbx).attr('checked')) { - $('.notify_cbx').removeAttr('disabled'); - $('.notify_cbx').each(function(i,el) { $(el).prev().removeAttr('disabled'); }) - } else { - $('.notify_cbx').attr('disabled', 'disabled'); - $('.notify_cbx').each(function(i,el) { $(el).prev().attr('disabled', 'disabled'); }) - } -} - -$(document).ready(function() { - // setup all placeholders on page - $('input[placeholder], textarea[placeholder]').placeholder(); - - - $('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.profile > a').on('click', function(e) { - e.preventDefault(); - }); - - $('.more_activities').on('click', function(){ - var button = $(this); - $.ajax({ - type: 'GET', - url: button.attr("href"), - success: function(data){ - button.fadeOut('slow').after(data); - button.remove(); - updateTime(); - } - }); - return false; - }); - - $('#description-top .git_help').click(function() { - $('#git_help_data').toggle(); - }); - - $(".toggle_btn").click(function() { - var target = $( $(this).attr('data-target') ); - //target.toggle(); - if ( target.css('visibility') == 'hidden' ) { - target.css('visibility', 'visible'); - } else { - target.css('visibility', 'hidden'); - } - return false; - }); - - window.updateTime = function () { - $('.datetime_moment').each(function() { - $(this).html(moment($(this).attr('origin_datetime'), 'X').fromNow()); - }); - }; - - updateTime(); - setInterval( updateTime, 15000 ); - - window.updatePagination = function(link) { - var page = parseInt($('.pagination .current').text()); - if (link.hasClass('next_page')) { - page += 1; - } else { - if (link.hasClass('previous_page')) { - page -= 1; - } else { - page = link.text(); - } - } - $('.pagination .current').html(page); - }; - - window.isSearchUser = null; - window.search_items = function(path, fdata, dom) { - if (window.isSearchUser != null) { window.isSearchUser.abort(); } - window.isSearchUser = $.ajax({ - type: 'GET', - url: path, - data: fdata, - success: function(data) { - dom.html(data); - updateTime(); - } - }); - return false; - } -}); diff --git a/app/assets/javascripts/design/checkbox-main.js b/app/assets/javascripts/design/checkbox-main.js deleted file mode 100644 index b8b219cfb..000000000 --- a/app/assets/javascripts/design/checkbox-main.js +++ /dev/null @@ -1,32 +0,0 @@ -function changeCheck(el) { - var input = el.find('input[type="checkbox"]'); - - if(input.attr("checked")) { - el.css('backgroundPosition', '0 0'); - input.removeAttr('checked'); - } else { - el.css('backgroundPosition', '0 -18px'); - input.attr('checked', true); - } - - return true; -} - -function startChangeCheck(el) { - var input = el.find('input[type="checkbox"]'); - - if(input.attr('checked')) { - el.css('backgroundPosition', '0 -18px'); - } - - return true; -} - -$(document).ready(function(){ - $('.niceCheck-main').each(function(i,el) { - startChangeCheck($(el)); - }); - $('.niceCheck-main').click(function() { - changeCheck($(this)); - }); -}); diff --git a/app/assets/javascripts/design/checkbox.js b/app/assets/javascripts/design/checkbox.js deleted file mode 100644 index 306f9f95a..000000000 --- a/app/assets/javascripts/design/checkbox.js +++ /dev/null @@ -1,37 +0,0 @@ - - -/*function changeCheck(el) - -{ - var el = el, - input = el.getElementsByTagName("input")[0]; - - if(input.checked) - { - el.style.backgroundPosition="0 0"; - input.checked=false; - } - else - { - el.style.backgroundPosition="0 -17px"; - input.checked=true; - } - return true; -} -function startChangeCheck(el) - -{ - var el = el, - input = el.getElementsByTagName("input")[0]; - if(input.checked) - { - el.style.backgroundPosition="0 -17px"; - } - return true; -} - -function startCheck() -{ - - startChangeCheck(document.getElementById("niceCheckbox1")); -}*/ diff --git a/app/assets/javascripts/design/cusel-init.js b/app/assets/javascripts/design/cusel-init.js deleted file mode 100644 index c23d47791..000000000 --- a/app/assets/javascripts/design/cusel-init.js +++ /dev/null @@ -1,11 +0,0 @@ -jQuery(document).ready(function(){ - -var params = { - changedEl: ".lineForm select.cusel", - visRows: 999999, - scrollArrows: false - } - - cuSel(params); - -}); \ No newline at end of file diff --git a/app/assets/javascripts/design/myprojects.js b/app/assets/javascripts/design/myprojects.js deleted file mode 100644 index 9c92ba457..000000000 --- a/app/assets/javascripts/design/myprojects.js +++ /dev/null @@ -1,16 +0,0 @@ -$(document).ready(function() { -// $("#myTable").tablesorter({ -// headers: { -// 1: { -// sorter: false -// }, -// 3: { -// sorter: false -// } -// } -// }); -}); - -function deleteRow(num) { -// $("#Row"+num).fadeOut("slow"); -} diff --git a/app/assets/javascripts/design/project-page.js b/app/assets/javascripts/design/project-page.js deleted file mode 100644 index b81b98545..000000000 --- a/app/assets/javascripts/design/project-page.js +++ /dev/null @@ -1,20 +0,0 @@ -$(document).ready(function() { -// $("#myTable").tablesorter({ -// headers: { -// 2: { -// sorter: false -// } -// } -// -// }); -}); - -$(document).ready(function() { -// $("a.files-see").click(function() { -// $("#file1").fadeOut(0); -// $("#file2").fadeIn("slow"); -// $("#file-name1").fadeOut(0); -// $("#file-name2").fadeIn("slow"); -// $("#fork-and-edit").fadeIn("slow"); -// }); -}); diff --git a/app/assets/javascripts/design/radio.js b/app/assets/javascripts/design/radio.js deleted file mode 100644 index 318fe8676..000000000 --- a/app/assets/javascripts/design/radio.js +++ /dev/null @@ -1,99 +0,0 @@ -$(document).ready(function(){ - $(".niceRadio").each(function() { - changeRadioStart($(this)); - }); -}); - -function changeRadio(el) { - var el = el, input = el.find("input").eq(0); - var nm = input.attr("name"); - - $(".niceRadio input").each( - - function() { - if($(this).attr("name")==nm) { - $(this).parent().removeClass("radioChecked"); - } - }); - - if(el.attr("class").indexOf("niceRadioDisabled")==-1) { - el.addClass("radioChecked"); - input.attr("checked", true); - } - - return true; -} - -function changeVisualRadio(input) { - - var wrapInput = input.parent(); - var nm=input.attr("name"); - - $(".niceRadio input").each(function() { - if($(this).attr("name")==nm) - { - $(this).parent().removeClass("radioChecked"); - } - }); - - if(input.attr("checked")) - { - wrapInput.addClass("radioChecked"); - } -} - -function changeRadioStart(el) { - - try { - var el = el, - radioName = el.attr("name"), - radioId = el.attr("id"), - radioChecked = el.attr("checked"), - radioDisabled = el.attr("disabled"), - radioTab = el.attr("tabindex"), - radioValue = el.attr("value"); - - if(radioChecked) { - el.after(""+ - ""); - } else { - el.after(""+ - ""); - } - - if(radioDisabled) { - el.next().addClass("niceRadioDisabled"); - el.next().find("input").eq(0).attr("disabled","disabled"); - } - - el.next().bind("mousedown", function(e) { - if (e.which === 1) { - changeRadio($(this)); - }; - $(this).find("input:radio").change(); - }); - if($.browser.msie) { - el.next().find("input").eq(0).bind("click", function(e) { - changeVisualRadio($(this)) - }); - } else { - el.next().find("input").eq(0).bind("change", function(e) { - changeVisualRadio($(this)) - }); - } - el.remove(); - } - - catch(e) { } - - return true; -} diff --git a/app/assets/javascripts/extra/comment.js b/app/assets/javascripts/extra/comment.js deleted file mode 100644 index 5c8435bf4..000000000 --- a/app/assets/javascripts/extra/comment.js +++ /dev/null @@ -1,99 +0,0 @@ -$(document).ready(function() { - var new_comment = $('#open-comment.comment.hidden.new_line_comment'); - - $(document).on('click', '.buttons a.edit_comment', function() { - $(this).parents('div.activity').hide() - .next().show(); - return false; - }); - - $(document).on('click', '.cancel_edit_comment.button', function() { - $(this).parents('#open-comment.comment').hide() - .prev().show(); - return false; - }); - - $(document).on('submit', 'form.edit_comment', function() { - var form = $(this); - form.parent().find('.flash').remove(); - $.ajax({ - type: 'POST', - url: form.attr("action"), - data: form.serialize(), - success: function(data){ - var cancel_button = form.find('.cancel_edit_comment.button'); - var id = cancel_button.attr('id').match(/\d+$/)[0]; - cancel_button.click(); - $('#comment'+id+', #diff-comment'+id).find('.cm-s-default.md_and_cm').html(data); - }, - error: function(data){ - form.before(data.responseText); - } - }); - return false; - }); - - $('.new_inline_comment.button').on('click', function() { - $(this).parents('tr').prev('tr').find("a[href='"+$(this).attr('href')+"']").click(); - return false; - }); - - $('.add_line-comment').on('click', function() { - function ProcessData(data) { - if (inline_comment) { - var str = ""+data+""; - par.after(str); - par = par.next(); - } else { - par.find('td:last').append(data); - } - par.find('#md_tabs.nav.nav-tabs').each(function(i) { - $(this).find('a:first').tab('show'); - $(this).parent().find('#new_line_edit_input').focus(); - }); - } - var line = $(this); - var tmp = line.parents('tr'); - var inline_comment = false; - var par = null; - - if (tmp.hasClass('inline-comments')) { - par = tmp; - } else { - par = tmp.next('tr.inline-comments'); - } - - if(par.length == 0) { - par = tmp; - inline_comment = true; - } - - // Hide visible new comment form - $('#open-comment.new_line_comment').parents('.inline-comments').each(function(i) { - if($(this).find('.line-comments').length > 0) { - $(this).find('#open-comment.new_line_comment').remove(); - $(this).find('.new_inline_comment.button').show(); - } - else { - $(this).remove(); - } - }); - par.find('.new_inline_comment.button').hide(); - - $.get(line.attr('href'), null, ProcessData); - return false; - }); - - $(document).on('click', '.cancel_inline_comment.button', function() { - var tr = $(this).parents('.inline-comments'); - if(tr.find('.line-comments').length > 0) { - tr.find('#open-comment.new_line_comment').remove(); - tr.find('.new_inline_comment.button').show(); - } - else { - tr.remove(); - } - return false; - }); -}); - diff --git a/app/assets/javascripts/new_application.js b/app/assets/javascripts/new_application.js index 0cea25b71..59599e2f1 100644 --- a/app/assets/javascripts/new_application.js +++ b/app/assets/javascripts/new_application.js @@ -3,12 +3,6 @@ //= require jquery-ui //= require js-routes -// require jquery.dataTables -// require jquery.dataTables_ext - -// require autocomplete-rails -// require extra/autocomplete-form - //= require bootstrap-sprockets //= require angular diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss deleted file mode 100644 index 3f16fa64e..000000000 --- a/app/assets/stylesheets/application.scss +++ /dev/null @@ -1,9 +0,0 @@ -@import "vendor"; -@import "design/main"; -@import "design/git"; -@import "design/common"; -@import "design/contents"; -@import "design/custom"; -@import "design/build_lists_monitoring"; -@import "design/profile"; -@import "design/statistics"; diff --git a/app/assets/stylesheets/design/build_lists_monitoring.scss b/app/assets/stylesheets/design/build_lists_monitoring.scss deleted file mode 100644 index 6ff2fa878..000000000 --- a/app/assets/stylesheets/design/build_lists_monitoring.scss +++ /dev/null @@ -1,159 +0,0 @@ -article .all .top.box { - background: #e9f4fb; - border: 1px solid #dfeefa; - -moz-border-radius: 5px; - -webkit-border-radius: 5px; - border-radius: 5px; - // width: 760px; - color: 477cae; - padding: 8px; -} - -article .all .top .column { - width: 190px; - margin: 5px 10px; - float:left; -} - -div.reloader { -float: none; -} - -.floatright, article input.floatright { - float: right; - margin-right: 8px; -} - -.floatleft { - float: left; -} - -h3.medium { - font-size: 13px; - margin: 5px 0px; - padding: 3px 0px; -} - -.switch { - font-size: 11px; - float: center; - text-align: center; - color: #125687; - font-weight: bold; -} - -.top .switch a { - text-decoration: none; -} -.btn-group { - width: 180px; -} - -.btn-group .btn { - width: 40%; - height: 26px; - padding: 2px 0px; -} - -.btn-group > .btn:first-child, -.btn-group > .btn:last-child { - width: 30%; -} - -.sel80.medium { - display: inline-block; - width: 180px; - margin-bottom: 0px; - height: 26px; - line-height: 26px; - padding: 4px 2px; - // margin-bottom: 5px; - color: #555; - vertical-align: middle; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - background-color: white; - border: 1px solid #CCC; -} - -input.mediumheight { - height: 20px; - margin-bottom: 0px; - width: 180px; - margin-right: -19px; -} -input.mediumheight.min { - width: 85px; - font-size: 12px; -} -article .all .top form .butgrp { - margin-top: 20px; - float: right; - margin-right: 17px; -} - -article .all .top form .butgrp input[type="submit"] { - width: 100px; - padding: 3px 5px 5px; - float: right; - margin-left: 10px; -} - -.ui-datepicker, .ui-widget, .ui-widget-content, .ui-helper-clearfix, .ui-corner-all { - font-size: 75%; - z-index: 99!important; -} - -article label { - font-size: 12px; -} - -article .all .top form .floatleft a img, -article .all .top form .floatright a img { - vertical-align: middle; -} - -/* bootstrap 3149*/ -.btn { - display: inline-block; - padding: 4px 12px; - margin-bottom: 0; - line-height: 20px; - text-align: center; - vertical-align: middle; - cursor: pointer; - background-color: #f5f5f5; - background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6)); - background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6); - background-image: -o-linear-gradient(top, #ffffff, #e6e6e6); - background-image: linear-gradient(to bottom, #ffffff, #e6e6e6); - background-repeat: repeat-x; - border: 1px solid #bbbbbb; - border-color: #e6e6e6 #e6e6e6 #bfbfbf; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - border-bottom-color: #a2a2a2; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); - -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); -} - -/* bootstrap 3190*/ -.btn:hover, .btn:active, .btn.active, .btn.disabled, .btn[disabled] { - background-color: #e6e6e6; -} - -/* bootstrap 3222*/ -.btn.active, .btn:active { - background-image: none; - outline: 0; - -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); - -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); -} \ No newline at end of file diff --git a/app/assets/stylesheets/design/common.scss b/app/assets/stylesheets/design/common.scss deleted file mode 100644 index 991c793d9..000000000 --- a/app/assets/stylesheets/design/common.scss +++ /dev/null @@ -1,27 +0,0 @@ -@import 'compass/utilities/tables'; -table.info { - width: 100%; - border-spacing: 0; - td {padding: 5px;} -} -table.columns2 { - @include inner-table-borders; - th.first, td.first {width: 30%;} -} -table.columns3 { - @include alternating-rows-and-columns(#eee, #ccc, #000); - th.first, td.first, th.last, td.last {width: 30%;} -} - -@import 'blueprint/interaction'; -.flash { - .notice { - @include success; - } - .warning { - @include notice; - } - .error, .alert { - @include error; - } -} diff --git a/app/assets/stylesheets/design/contents.scss b/app/assets/stylesheets/design/contents.scss deleted file mode 100644 index e33c9d81d..000000000 --- a/app/assets/stylesheets/design/contents.scss +++ /dev/null @@ -1,26 +0,0 @@ -#contents { - - a { - cursor: pointer; - } - .path { - a { - margin-right: 20px; - } - .text { - padding: 5px 10px; - background-color: #dcecfa; - float: left; - height: 14px; - } - .arrow-right { - content: ''; - width: 0; - height: 0; - border: 12px solid transparent; - border-left: 12px solid #dcecfa; - float: left; - } - } - -} \ No newline at end of file diff --git a/app/assets/stylesheets/design/custom.scss b/app/assets/stylesheets/design/custom.scss deleted file mode 100644 index eb116fe68..000000000 --- a/app/assets/stylesheets/design/custom.scss +++ /dev/null @@ -1,2101 +0,0 @@ -// PUT custom styles here ONLY - -span.error, .hidden { - display: none; -} - -.centered { - text-align: center; -} - -a#manage-labels { - margin-bottom: 10px; -} -article a.edit_label { - color: #FFF; -} - -header div.information div.user { - float: left; - margin-left: 5px; -} - -header div.user div.avatar { - padding: 6px 10px 10px 10px; -} - -header menu ul li a { - padding: 15px 8px 15px 8px; -} - -#description-top { - height: auto; - input.name { - width: 350px; - padding: 0; - margin: 8px 0 20px 10px; - } - div.name input { - width: 100%; - height: 100%; - } - .git_help { - float: left; - margin-top: 11px; - margin-left: 10px; - font-size: 11px; - color: green; - cursor: pointer; - } - .project-tabnav .tabnav-tabs { - height: 26px; - margin: 0; - li { - display: inline-block; - padding: 5px 10px 0; - height: 21px; - margin: 0 5px; - border: 1px solid #a9c6dd; - border-bottom: none; - float: left; - } - li.selected { - background-color: #FFF; - } - .tags { float: right; } - } -} -#project-branches { - width: 100%; - border-spacing: 0; - margin-top: 20px; - tr.base { - background: #dcecfa; - } - td.actions ul { - float: right; - } - .text { - font-size: 12px; - padding-top: 2px; - } - td { - border-bottom: 1px solid #a9c6dd; - padding: 0 20px; - } - .name { - font-weight: bold; - } -} -#project-tags { - .release-list { - padding: 0; - li { - list-style-type: none; - border-bottom: 1px solid #a9c6dd; - padding: 10px 20px; - } - } - .date { - display: inline-block; - padding: 0 5px; - opacity: 0.5; - } - .name { - display: inline-block; - } - .detail-link { - margin: 0 5px; - float: right; - } -} -article div.activity, .commits_activity { - border: 1px solid #D6D6D6; - border-radius: 5px 5px 5px 5px; - color: #333333; - margin-top: 15px; - padding: 6px; -} - -.commits_activity table { - border-collapse: collapse; - width: 100%; - img { margin: 2px 0 0 2px; } - .date { width: 140px; } - .name { width: 250px; } - tr:nth-child(2n) { - .md_and_cm, .data-expander { background-color: #E2E4FF; } - background-color: #E2E4FF; - } -} - -article div.messages div.activity { - margin-top: 0; - margin-bottom: 10px; -} - -article div.activity .top div.image { - //position: absolute; // TODO broken issue page - float: left; - width: 40px; - height: 40px; - margin-left: 2px; - margin-top: 2px; -} - -article div.activity .top .buttons { - display: block; - position: relative; - float: right; - } - -article div.activity .top div.text { - float: left; - font-size: 12px; - padding-left: 10px; - max-width: 579px; -} - -article div.activity .top .imaged { - margin-left: 44px; -} - -article div.activity .top div.text .name { - font-weight: 700; - display: block; - float: left; -} - -article div.activity .top div.text .date { - font-size: 11px; - float: left; -} - -article div.activity div.fulltext { - font-size: 12px; - padding-top: 5px; - display: block; -} - -article div.activity div.fulltext.alone { - padding-top: 0px; -} - -article div.activity .fulltext.hidden { - display: none; -} - -div.activity, .commits_activity { - .data-expander { - margin-left: 10px; - display: inline-block; - width: 12px; - cursor: pointer; - } - .data-expander.collapsed { - background: #FFF image-url('expand-gray.png') no-repeat; - background-position: 0 2px; - } - .data-expander.expanded { - background: #FFF image-url('expand-gray2.png') no-repeat; - background-position: 0 2px; - } -} - -div.activity .fulltext p { - margin: 5px; - line-height: 1.3em; -} - -table.blob td.lines pre { - background-color: #ECECEC; - border-right: 1px solid #DDDDDD; - color: #AAAAAA; - padding: 10px; - text-align: right; -} - -textarea#code { - width: 845px; - resize: vertical; - height: 30em; -} - -article div.date-block { - margin-bottom: 30px; -} - -article div.year { - margin-top: 0; -} - -article h3 { - margin-bottom: 10px; -} - -article div.date-block div.date { - height: 52px; -} - -.date_select { - select {margin:3px 0px; padding:0px;} -} - -article div#repo-wrapper div.hr { - width: 100%; -} - -article table.commit_stats { - line-height: 1.4em; - margin-top: 12px; - width: 100%; - border-spacing: 0; - border-top: 1px solid #DDDDDD; - margin: 10px 0; - padding: 0; - font-size: 90%; - border-collapse: collapse; -} - -article table.commit_stats td { - border-bottom: 1px solid #DDDDDD; - padding: 0.4em 5px; -} - -article table.commit_stats .diffstat { - text-align: right; - white-space: nowrap; - padding-right: 0; - width: 1%; -} - -article div.file div.diff_data { - overflow-x: auto; -} - -article div.file table { - border-spacing: 0; - border-collapse: collapse; -} - -#repo-wrapper table.diff td.line_numbers { - -moz-user-select: none; - font-size: 12px; - padding: 0 0.5em; - background-color: #ECECEC; - border-right: 1px solid #DDDDDD; - color: #999999; - text-align: right; -} - -#repo-wrapper table.diff td.line_numbers, -#repo-wrapper table.diff td.header, -#repo-wrapper table.diff td.code { - font-family: 'Bitstream Vera Sans Mono','Courier',monospace; -} - -#repo-wrapper table.diff td.header { - background-color: #ECECEC; - color: #999999; - width: 100%; - line-height: 1.4em; - font-size: 90%; -} - -#repo-wrapper table.diff td.code, #repo-wrapper table.diff td.header { - padding-left: 10px; -} - -#repo-wrapper table.diff pre { - padding: 0; - margin: 0; -} - -#repo-wrapper table.diff .diff-content { - padding: 0; - margin: 0; -} - -#repo-wrapper table.diff tr td.code.del { - background-color: #FFDDDD; -} - -#repo-wrapper table.diff tr td.code.del .idiff { - background-color: #F2ACAD; -} - -#repo-wrapper table.diff tr td.code.ins { - background-color: #DDFFDD; -} - -#repo-wrapper table.diff tr td.code.highlight-line { - background-color: #FFFFCC; -} -.gutter .highlight-line { - background-color: #FF9900; - width: 805px; - height: 12px; - margin: -12px 0 0 50px; - opacity: 0.2; - position: absolute; -} - -#repo-wrapper table.diff tr td.code.ins .idiff { - background-color: #BAFBAD; -} - -#repo-wrapper div.comment { - background: none repeat scroll 0 0 #DCECFA; - border: 1px solid #B3CCE0; - border-radius: 4px 4px 4px 4px; - margin-bottom: 10px; - margin-top: 15px; - padding: 6px; - text-align: left; -} - -#repo-wrapper div.view { - display: block; -} - -#repo-wrapper div.comment div.wrapper { - border: 1px solid #DEDEDE; - border-radius: 4px 4px 4px 4px; - color: #575756; - background: #FFFFFF; - font-size: 12px; - height: 110px; - margin: 10px 0; - padding: 5px; -} - -#repo-wrapper div.comment div.wrapper textarea { - border: none; - color: #575756; - font-family: Tahoma,Geneva,Helvetica,sans-serif; - width: 100%; - height: 100%; - resize: none; -} - -div.comment div.comment-left { - float: left; - font-size: 12px; - margin-top: 4px; -} - -div.comment div.comment-right { - float: right; -} - -div.comment textarea { resize: none } - -#repo-wrapper div.file div.data .formatted { - overflow-x: auto; - overflow-y: none; -} - -table.tablesorter tbody td a .issue_title { - color: #58595B; - font-size: 13px; -} - -.syntaxhighlighter { - padding: 11px; -} - -#output.formatted { - width: auto; - font-family: "Consolas","Bitstream Vera Sans Mono","Courier New",Courier,monospace; - color: #000000; - padding: 10px 5px 0px; - margin-left: 45px; -} - -#output.formatted pre { - font-family: "Consolas","Bitstream Vera Sans Mono","Courier New",Courier,monospace; - padding: 0; - margin: 0; -} - -div.gutter { - border-right: 1px solid #CCCCCC !important; -} - -table.tablesorter tr td.centered { - text-align: center; -} - -/* TODO change this */ -header div.user div.avatar img { - border: 1px solid #DDDDDD; -} - -div.blame_data { - font-size: 80%; -} - -div.blame_data tr.firstrow { - border-top: 1px solid #DDDDDD; -} - - -div.blame_data tr td.commit_info { - padding: 0.5em !important; - vertical-align: top; - width: 210px; - border-right: 1px solid #DDDDDD; -} - -div.blame_data tr td.commit_info .date { - display: block; - float: left; - color: #666666; -} - -div.blame_data tr td.commit_info .message { - width: 210px; - display: block; - float: right; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - font-size: 12px; -} - -div.blame_data tr td.lines { - padding: 0 0.5em !important; - width: 1%; - font-size: 12px; - line-height: 1.4em; -} - -div.blame_data tr td.code { - padding: 0 10px !important; - font-size: 12px; - width: auto; - font-family: "Consolas","Bitstream Vera Sans Mono","Courier New",Courier,monospace; - color: #000000; - padding: 10px 5px 0px; - margin-left: 45px; -} - -div.blame_data tr td.code pre { - padding: 0; - margin: 0; -} - -// Search -p.block { margin-bottom: 10px; clear: both; } -table.tablesorter.bmargin5 { - th { padding: 5px; } - td p.block {margin-bottom: 0px;} -} - - -div#gollum-searchbar-fauxtext { - padding-left: 10px; -} - -div#gollum-searchbar-fauxtext input#search-query { - display: inline-block; - float: left; - width: 145px; - border: 1px solid #D3D3D3; - border-bottom-left-radius: 3px; - border-top-left-radius: 3px; - border-bottom-right-radius: 0; - border-top-right-radius: 0; - font-size: 12px; - height: 24px; - margin: 0; - padding: 0 4px; - vertical-align: middle; - white-space: nowrap; -} - -a#search-submit { - -moz-box-sizing: content-box; - border-left: medium none; - border-radius: 0 3px 3px 0; - height: 24px; - margin-left: 0; - padding: 0; - position: relative; - vertical-align: middle; - display: inline-block; - float: left; -} - -a#search-submit span { - background: image-url("gollum/icon-sprite.png") no-repeat scroll 50% 4px transparent; - background-position: -430px -2px; - height: 24px; - text-indent: -9999px; - width: 16px; - display: block; - height: 21px; - line-height: 21px; - padding: 0 9px 0 7px; -} - -a#search-submit:hover span { - background-position: -430px -29px; -} - -table.wiki .history .td2 .name span.username { - overflow: hidden; - white-space: nowrap; - text-overflow: ellipsis; - width: 164px; -} - -table.tablesorter.platforms .th1 { - width: 290px; -} - -table.tablesorter.platforms .th2 { - width: 280px; -} - -table.tablesorter.advisories .th1 { - width: 120px; -} - -table.tablesorter.advisories .th2 { - width: 250px; -} - -table.tablesorter.advisories .th3 { - width: auto; -} - -table.tablesorter tr td.buttons { - text-align: center; -} - -table.tablesorter tr td.buttons a span.delete, -span.delete { - background: image-url('x.png') no-repeat 0 0 transparent; - width: 12px; - height: 12px; - display: inline-block; - cursor: pointer; -} - -#fork-and-edit {display:block;} - -.notify.blue { - .error, .red, .nocolor, .warning, .success { float: left; } - .error, .red { - border: 1px solid #ddd; - background-color: #FBE3E4; - border-color: #FBC2C4; - } - .success { - border: 1px solid #bad099; - background: #d7e599; - } - .nocolor { border: 1px solid #a9c6dd; } - .warning { - border: 1px solid #FBEED5; - background-color: #FCF8E3; - } -} - -a.button.left_floated { - display: inline-block; - float: left; - margin-right: 5px; -} - -div.buttons_block { - margin-top: 20px; -} - -table.tablesorter.unbordered { - border: none; -} - -table.tablesorter.unbordered tr td { - border: none; - padding: 3px; -} - -table.tablesorter.repo-projects th.th1 { - width: 250px; -} - -table.tablesorter.repo-projects th.th3, -table.tablesorter th.buttons { - width: 60px; - text-align: center; -} - -table.tablesorter.repo-projects td.td2, -.table-sort-right { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -div.dataTables_filter { - margin-bottom: 15px; -} - -div.dataTables_paginate { - float: left; -} - -div.dataTables_info { - float: right; -} - -div.dataTables_info, -div.dataTables_paginate.paging_will_paginate_like { - margin-top: 15px; -} - -div.dataTables_paginate.paging_will_paginate_like a.paginate_button, -div.dataTables_paginate.paging_will_paginate_like a.paginate_active { - background: none repeat scroll 0 0 #EDEDED; - color: #4C90D0 !important; - border: 1px solid #DDDDDD; - border-radius: 1px 1px 1px 1px; - padding: 3px 7px; - margin-right: 3px; - cursor: pointer; -} - -div.dataTables_paginate.paging_will_paginate_like a.paginate_button_disabled, -div.dataTables_paginate.paging_will_paginate_like a.paginate_active { - color: #565657 !important; - cursor: default; -} - -div.dataTables_paginate.paging_will_paginate_like a.paginate_button_disabled:hover, -div.dataTables_paginate.paging_will_paginate_like a.paginate_active:hover { - text-decoration: none; -} - -div.dataTables_paginate.paging_will_paginate_like a.previous { - margin-left: 0px; - margin-right: 4px; -} - -div.dataTables_paginate.paging_will_paginate_like a.next { - margin-left: 1px; - margin-right: 0px; -} - -div.dataTables_paginate.paging_will_paginate_like a.paginate_active { - background: none repeat scroll 0 0 #D5E7F9; - border: 1px solid #C1DAED; -} - -div.dataTables_processing { - z-index: 999; -} - -div.rightlist textarea { - resize: none; -} - -table.dataTable tr.odd td.sorting_1 { - background-color: #F0F0F6; -} - -table.dataTable tr.even td.sorting_1 { - background-color: #FFFFFF; -} - -div.right.bigpadding div.command_select div.rightlist { - width: 245px; -} - -div.right.bigpadding div.command_select div.rightlist select { - width: 240px; - height: 23px; -} - -div.right.bigpadding div.command_select div.rightlist textarea { - width: 430px; - height: 50px; -} - -div.rightlist textarea.resizable { - resize: both; -} - -table.tablesorter.list-users th.th1 { - width: 150px; -} - -table.tablesorter.list-users th.th2 { - width: 100px; -} - -table.tablesorter.list-users th.th3 { - width: 200px; -} - -table.tablesorter.list-users th.th4 { - width: 50px; -} - -table.tablesorter.tokens th.th2 { - width: 200px; -} - -div.admin-role { - padding-right: 10px; -} - -.right_floated { - float: right; -} - -/* TODO think, how to do it more beautiful */ -ul.ui-autocomplete { - z-index: 999 !important; -} - -table.dataTable { - margin: 10px 0 15px; -} - -table.tablesorter tr.search th { - background: none repeat scroll 0 0 #DCECFA; - padding: 0 17px 0 5px; -} - -table.tablesorter tr.search th input[type="text"] { - border: 1px solid #CDCDCD; - border-radius: 4px 4px 4px 4px; - font-family: Tahoma,Geneva,Helvetica,sans-serif; - font-size: 12px; - height: 16px; - padding: 5px; - width: 100%; - - margin-top: 2px; -} - -div.toolbar { -} - -div.toolbar a.button { - float: left; -} - -div.toolbar, table.dataTable { - > .group_owner, > .user_owner, > .group, > .user { margin-right: 15px; } - .group_owner, .user_owner, .group, .user { padding-left: 20px; } - .user_owner { background: image-url('user16g.png') no-repeat 0 0 transparent; } - .group_owner { background: image-url('group16g.png') no-repeat 0 0 transparent; } - .user { background: image-url('user16.png') no-repeat 0 0 transparent; } - .group { background: image-url('group16.png') no-repeat 0 0 transparent; } -} - -.div-filter-labels { - .group { background: image-url('group16b.png') no-repeat 0 0 transparent; } - .user { background: image-url('user16b.png') no-repeat 0 0 transparent; } - .user, .group { padding-left: 20px; } -} - -.root { - width: 100%; - text-align: center; - margin-top: 150px; -} - -div.tos { -} - -div.tos p { - margin: 5px 0; -} - -div.tos ol li { - margin: 3px 0; -} - -div.tos_sidebar ul { - list-style: none outside none; - margin: 20px 0 0; - padding: 0; - text-align: left; - width: 215px; -} - -div.tos_sidebar ul li { - padding-bottom: 5px; - padding-top: 5px; - width: 215px; -} - -div.tos_sidebar ul li:hover { - background: none repeat scroll 0 0 #DCECFA; -} - -div.tos_sidebar ul li a { - color: #292929; - padding-bottom: 5px; - padding-left: 15px; - padding-top: 5px; - text-decoration: none; -} - -table.tablesorter tbody tr.regular td { - background-color: #FFFFFF; -} - -table.tablesorter tbody tr.removed td, -table.tablesorter tbody tr.sync_error td { - background-color: #FFECEC; -} - -table.tablesorter tbody tr.sync_success td { - background-color: #E0ECFF; -} - -ul.ui-autocomplete li.item { -/* padding: 1px 0; */ -} - -ul.ui-autocomplete li.item div.collaborator { - padding: 0px 10px; -} - -ul.ui-autocomplete li.item a.ui-corner-all { - padding: 0; -} - -ul.ui-autocomplete li.item a.ui-corner-all.ui-state-hover { - background: #DCECFA; - border: 1px solid #65A6F7; -} - -ul.ui-autocomplete li.item div.collaborator div.img { - padding: 0; - padding-top: 1px; -} -ul.ui-autocomplete li.item div.collaborator div.name { - padding: 0; - margin-left: 5px; -} - -ul.ui-autocomplete.has_results { - overflow: auto; -} - -#add_collaborator_form div.admin-search.withimage { - width: 301px; -} - -#add_collaborator_form div.search_string { - margin-left: 5px; - float: left; - padding-top: 6px; -} -#collaborators { - .img, img { - width: 25px; - height: 25px; - } -} - -#add_collaborator_form .admin-role .lineForm { - padding-top: 7px; -} - -input:-moz-placeholder, -textarea:-moz-placeholder { - color: #CFCFCF; -} - -input::-webkit-input-placeholder, -textarea::-webkit-input-placeholder { - color: #CFCFCF; -} - -input.placeholder, -textarea.placeholder { - color: #CFCFCF; -} - -#git_help_data { - display: none; - padding-left: 10px; - p { padding-bottom: 5px; } -} - -// for bootstrap -.close { - float: right; - font-size: 20px; - font-weight: bold; - line-height: 18px; - color: #000000; - text-shadow: 0 1px 0 #ffffff; - opacity: 0.2; - filter: alpha(opacity=20); -} - -.close:hover { - color: #000000; - text-decoration: none; - opacity: 0.4; - filter: alpha(opacity=40); - cursor: pointer; -} - -.modal { - margin: -150px 0 0 -280px; -} - -#forkModal.modal .btn.btn-primary { - width: 100%; -} - -.center { - text-align: center; -} - -.zip { - float: left; - padding-left: 5px; - margin: 9px 0 0; - list-style: none; -} - -.nav > li > a:hover { - text-decoration: none; - background-color: #DCECFA; -} - -.dropdown-menu { - min-width: 0; -} - -.dropdown.open .dropdown-toggle { - background: none repeat scroll 0 0; -} - -.rightlist p { - padding-bottom: 1em; -} - -.leftlist span.hint { - padding-top: 1em; - display: block; - font-size: 0.9em; -} - -.atom_icon { - vertical-align: top; -} - -.tab-content.pull_diff_fix { - overflow: inherit; - display: block; -} - -table.diff { - font-size: 12px; -} - -/* Mass build forms */ -.mass-build-actions a.button { - margin-bottom: 5px; -} - -form.mass_build input[type="checkbox"] { - width: 10px; - height: 11px; -} - -/*div#new_advisory_form, -div#advisory_preview, -div#advisory_search_block, -div#advisory_search_block div.info { - display: none; -}*/ - -div#advisory_search_block { - padding-bottom: 15px; -} - -p.hint_text { - color: #666666; - font-size: 0.9em; - padding: 0; -} - -div#advisory_block p.hint_text { - display: block; - width: 350px; -} - -div#advisory_search_block div.info { - width: 565px; - border: solid 1px; - border-radius: 5px; -} - -div#advisory_search_block div.info p { - text-align: center; - margin: 0.5em 2em 0.7em; -} - -div#advisory_search_block div.advisory_not_found { - background-color: #B7CFFF; - border-color: #6666FF; -} - -div#advisory_search_block div.server_error { - background-color: #FACFCF; - border-color: #FF7777; -} - -div#advisory_search_block div.continue_input { - background-color: #CFFACF; - border-color: #00CF00; - display: block; -} - -/*=============== popovers ===============*/ - -.popover { - display: none; - left: 0; - padding: 5px; - position: absolute; - top: 0; - z-index: 1010; -} - -.popover.top { - margin-top: -5px; -} - -.popover.right { - margin-left: 5px; -} - -.popover.bottom { - margin-top: 5px; -} - -.popover.left { - margin-left: -5px; -} - -.popover.top .arrow { - border-left: 5px solid transparent; - border-right: 5px solid transparent; - border-top: 5px solid #000000; - bottom: 0; - left: 50%; - margin-left: -5px; -} - -.popover.right .arrow { - border-bottom: 5px solid transparent; - border-right: 5px solid #000000; - border-top: 5px solid transparent; - left: 0; - margin-top: -5px; - top: 50%; -} - -.popover.bottom .arrow { - border-bottom: 5px solid #000000; - border-left: 5px solid transparent; - border-right: 5px solid transparent; - left: 50%; - margin-left: -5px; - top: 0; -} - -.popover.left .arrow { - border-bottom: 5px solid transparent; - border-left: 5px solid #000000; - border-top: 5px solid transparent; - margin-top: -5px; - right: 0; - top: 50%; -} - -.popover .arrow { - height: 0; - position: absolute; - width: 0; -} - -.popover-inner { - background: none repeat scroll 0 0 rgba(0, 0, 0, 0.8); - border-radius: 6px 6px 6px 6px; - box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); - overflow: hidden; - padding: 3px; - width: 280px; - text-align: justify; -} - -.popover-title { - background-color: #F5F5F5; - border-bottom: 1px solid #EEEEEE; - border-radius: 3px 3px 0 0; - line-height: 1; - padding: 9px 15px; - margin: 0; -} - -.popover-content { - background-clip: padding-box; - background-color: #FFFFFF; - border-radius: 0 0 3px 3px; - padding: 14px; - font-size: 13px; -} - -.popover-content p, .popover-content ul, .popover-content ol { - margin-bottom: 0; - margin: 0; -} - -.fade { - -moz-transition: opacity 0.15s linear 0s; - opacity: 0; -} - -.fade.in { - opacity: 1; -} -/*=============== popovers end ===============*/ - -.bottom_20 { - margin-bottom: 20px; -} - -form.mass_build { - section.left { - margin-left: 10px; - width: 250px; - } - - section.right { - margin-right: 50px; - width: 300px; - } - input[type="submit"] { - margin: 10px 0 10px 0; - } - #projects_list { - min-width:315px; - } -} - -#new_build_list section.right { - width: 300px; - margin-right: 150px; -} - -.full-size { width: 100%; } - -.toggle { - overflow: hidden; - padding-top: 10px; - display: block; - visibility: hidden; -} - -.min_width_120 { - min-width: 120px; -} - -.chzn-select { - width: 350px; -} - -.packages_info_container ul { - list-style-type: none; - padding-left: 25px; - margin: 5px 0; -} - -.packages_info_container ul.platforms { - padding: 0; -} - -/* remove this lines after change to backbone */ -table.tablesorter.static-search thead tr.search th { - padding: 0 5px; -} - -table.tablesorter.static-search thead tr.search th input[type='text'] { - width: 640px; -} - -table.tablesorter.static-search thead tr.search th form { - float: left; -} - -table.tablesorter.static-search thead tr.search th form.button_to { - padding: 3px 0 0 7px; -} - -table.tablesorter tr td.no_results { - text-align: center; -} -/* end */ - -article div.all { - width: 860px; -} - -div.inner-columns { - width: 100%; - height: auto; - display: block; -} - -div.inner-columns:after { - clear: both; - content: "."; - display: block; - height: 0; - visibility: hidden; -} - -div.inner-columns.equal section { - width: 430px; - float: left; -} - -section.first div { - width: 415px; -} - -form.inline_errors span.error { - display: inline-block; - color: #FF5050; -} - -div.form-actions { - text-align: right; - padding-bottom: 5px; -} - -div.form-actions .button { - margin-right: 50px; -} - -dl.form, div.form-actions { - margin: 15px 0; -} - -dl.form > dt { - margin: 0 0 6px; -} - -dl.form > dt label { - color: #333333; - font-size: 14px; - font-weight: bold; - position: relative; -} - -dl.form > dd { - margin: 0; - padding: 0; - border: 0, none; -} - -dl.form > dd > input[type="text"], -dl.form > dd > input[type="password"], -dl.form > dd > textarea { - width: 350px; - border: 1px solid #A0A0A0; - border-radius: 4px; - padding: 5px; - font-family: Tahoma, Geneva, Helvetica, sans-serif; - font-size: 12px; -} - -dl.form > dd > input.error[type="text"], -dl.form > dd > input.error[type="password"], -dl.form > dd > textarea.error { - border-color: #FF8080; -} - -dl.form > dd > input[type="text"], -dl.form > dd > input[type="password"] { - height: 16px; -} - -dl.form > dd > textarea { - height: 110px; -} - -ul.checklist { - font-size: 12px; - font-weight: bold; - margin: 20px 0; - padding: 0; -} - -ul.checklist li { - background: image-url("check.png") no-repeat scroll 0 2px transparent; - list-style-type: none; - margin: 15px 0; - padding-left: 25px; -} - -div.all.feedback_sended { - background: image-url("feedback.png") no-repeat scroll 49% 0 transparent; - height: 500px; - text-align: center; -} - -article div.all.feedback_sended h1 { - font-size: 48px; - font-weight: normal; - margin: 165px 0 0; - padding: 0; -} - -article div.all.feedback_sended h2 { - font-size: 18px; - font-weight: normal; - margin: 5px 0 0; - padding: 0; -} -article div.all.feedback_sended p.pages { - margin-top: 70px; - width: 280px; -} - -article div.all.feedback_sended p.search { - margin-top: 80px; - width: 230px; -} - -article div.all.feedback_sended p { - font-size: 14px; - margin: 0 auto; - padding: 0; - text-align: center; -} - -hr.bootstrap { - border: 0; - border-top: 1px solid #eeeeee; - border-bottom: 1px solid #ffffff; -} - -.fork-modal { - top: 45%; -} - -.modal-body-fork { - max-height: 280px; -} - -.label-bootstrap.label-info.font14 { - padding: 4px; - line-height: 1.8; - a { color: #FFFFFF; } -} -.line_numbers a { - color: #999999; -} - -/* Flash Notifies */ - -.flash_notify { - .alert-success { - color: #468847; - background-color: #DFF0D8; - border-color: #D6E9C6; - } - - .alert { - padding: 8px 35px 8px 14px; - margin-bottom: 18px; - color: #C09853; - text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); - background-color: #FCF8E3; - border: 1px solid #FBEED5; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - } - - .alert-danger, .alert-error { - color: #B94A48; - background-color: #F2DEDE; - border-color: #EED3D7; - } - - .alert-info { - color: #3A87AD; - background-color: #D9EDF7; - border-color: #BCE8F1; - } - - .alert .close { - position: relative; - top: -2px; - right: -21px; - line-height: 18px; - } - - button.close { - padding: 0; - cursor: pointer; - background: transparent; - border: 0; - -webkit-appearance: none; - } - - .close { - float: right; - font-size: 20px; - font-weight: bold; - line-height: 18px; - color: black; - text-shadow: 0 1px 0 white; - opacity: 0.2; - filter: alpha(opacity=20); - } -} - -div.reloader { - float: right; -} - -.log-wrapper { - width: 565px; - - .log-header { - margin-bottom: 10px; - - .text-wrap, span { - height: 16px; - margin: 0; - padding: 0; - } - .text-wrap { - width: 545px; - float: left; - - h3 { - margin: 0; - } - } - - span { - background: image-url("trigger.gif") no-repeat scroll left bottom transparent; - margin: 1px; - cursor: pointer; - display: block; - font-size: 0; - height: 14px; - width: 14px; - float: right; - } - span.closed { - background-position: left top; - } - } - - .log-body { - - .reloader, .log { - border: 1px solid #ccc; - } - - .reloader { - padding: 5px 10px; - border-bottom: none; - border-radius: 5px 5px 0 0; - - table.options { - border-spacing: 5px 0; - - tr { - - td a { - display: inline-block; - height: 13px; - padding-left: 16px; - background: image-url('code.png') no-repeat; - padding-bottom: 2px; - margin: 2px 0 0 1px; - } - td.first { - padding-right: 5px; - } - td.last { - border-left: 1px solid #ccc; - } - } - } - } - - .log { - background: #f8f8f8; - height: 500px; - width: 543px; - white-space: pre; - min-width: 543px; - border-radius: 5px 0 5px 5px; - overflow: auto; - padding: 10px; - margin: 0; - font-family: monospace; - font-size: 13px; - } - } -} - -table.tablesorter.platform-maintainers.static-search thead tr.search th input[type="text"] { - width: 430px; -} - -.tablesorter .right { - text-align: right; -} - -.all_platforms { - > .both { margin: 0 0 5px; } - .build_for_pl { font-weight: bold; } - .offset25 { padding-left: 10px } -} - -.md_and_cm { - overflow: auto; - margin: 5px 0 0; - padding: 5px; - border-radius: 4px 4px 4px 4px; - background: #FFF; - - pre { - background-color: #F8F8F8; - border: 1px solid #D6D6D6; - border-radius: 5px 5px 5px 5px; - color: #333333; - padding: 6px 10px; - overflow: auto; - - code { - background-color: transparent; - border: none; - margin: 0; - padding: 0; - } - } - - code { - background-color: #F8F8F8; - border: 1px solid #D6D6D6; - border-radius: 5px 5px 5px 5px; - margin: 0 2px; - padding: 0px 5px; - } - - blockquote { - border-left: 4px solid #EDEDED; - padding: 0 15px; - } - - p { - margin-top: 10px !important; - } -} - -.md_and_cm > :first-child { - margin-top: 0 !important; -} - -#md_tabs { - margin: 0; -} - -#md_tabs.nav-tabs > li > a { - line-height: 5px; -} - -#open-comment { - textarea { - background: none repeat scroll 0 0 #FFFFFF; - border: 1px solid #DEDEDE; - border-radius: 4px 4px 4px 4px; - color: #575756; - font-size: 12px; - height: 110px; - padding: 5px; - width: 98%; - max-width: 98%; - margin: 10px 0 10px; - resize: vertical; - } - - textarea#issue_title, textarea#pull_request_issue_attributes_title { - height: 16px; - margin: 0 0 10px; - } - - .tab-pane textarea { - min-height: 112px; - } - - .edit_comment .comment-left { - margin-top: 0; - } -} - -#open-comment > h3.tmargin0 { - margin-bottom: 0; -} - -#md_help { - width: 800px; - top: 30%; - left: 42%; - - .modal-body { - max-height: 560px; - padding-top: 0; - } - - .modal-header { - padding-bottom: 0; - } - - .col { - width: 245px; - float: left; - padding: 0; - margin-right: 10px; - - h3 { - margin: 6px 0 0 0; - } - - pre { - background: none repeat scroll 0 0 #EDEDED; - box-shadow: 0 3px 3px -1px rgba(18, 86, 135, 0.2); - border: 1px solid #EDEDED; - padding: 5px; - margin-top: 3px; - } - } -} - -#repo-wrapper .add_line-comment { - position: absolute; - width: 25px; - height: 18px; - margin-left: -103px; - margin-top: 0; - cursor: pointer; - opacity: 0; - filter: alpha(Opacity=0); - -moz-opacity:0; -} - -#repo-wrapper tr:hover .add_line-comment { - opacity: 1; - filter: alpha(Opacity=100); - -moz-opacity:1; -} - -div.file .inline-comments { - .top { - height:auto; - background: none; - box-shadow: none; - } - - .activity { - border-radius: 0; - max-width: 752px; - margin-left: 10px; - } -} - -tr.inline-comments td { - border: solid #DDD; - border-width: 1px 0; -} - -.inline-comments #open-comment { - max-width: 754px; - margin: 10px; -} - -#repo-wrapper .edit_form.issue div.comment div.wrapper { - background: 0; - border: 0; - border-radius: 0; - height: 30px; - margin: 0; - padding: 0; -} - -form#new_pull_request { - .leftlist { - width: 50px; - margin: 5px 0 20px 0; - } - .leftlist.big-list { - margin-top: 0; - width: 150px; - } - - .l { - float: left; - margin-right: 10px; - - input { - height: 21px; - width: 380px; - } - - select { - width: 380px; - } - } -} - -#repo-wrapper form#new_pull_request .wrapper { - background: none; - border: none; - height: 36px; - margin: 0; - padding: 0; -} - -.new_inline_comment.button { - margin: 10px 0 10px 10px; -} - -.niceRadio input { - display:none; -} - -table#myTable thead tr.search th form.button_to div input { - margin-top: 2px; -} - -.file-editor { - margin-bottom: 10px; - margin-top: 10px; - max-width: 860px; -} - -.semi { - opacity: 0.5; -} - -#filter_new_build { - display: inline-block; - white-space: nowrap; - background-color: #125687; - background-image: -webkit-gradient(linear, left top, left bottom, from(#68a3d8), to(#125687)); - background-image: -webkit-linear-gradient(top, #68a3d8, #125687); - background-image: -moz-linear-gradient(top, #68a3d8, #125687); - background-image: -ms-linear-gradient(top, #68a3d8, #125687); - background-image: -o-linear-gradient(top, #68a3d8, #125687); - background-image: linear-gradient(top, #68a3d8, #125687); - filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#68a3d8', EndColorStr='#125687'); - border: 1px solid #5084b4; - padding: 3px 20px 5px; - margin: 0; - font-size: 12px; - text-decoration: none; - color: #FFF; - -moz-border-radius: 5px; - -webkit-border-radius: 5px; - border-radius: 5px; - text-align: center; - height: auto; - width: auto; - font-family: Tahoma; -} - -#filter_new_build:hover{ - background-color: #34719d; - background-image: -webkit-gradient(linear, left top, left bottom, from(#7fb3e1), to(#34719d)); - background-image: -webkit-linear-gradient(top, #7fb3e1, #34719d); - background-image: -moz-linear-gradient(top, #7fb3e1, #34719d); - background-image: -ms-linear-gradient(top, #7fb3e1, #34719d); - background-image: -o-linear-gradient(top, #7fb3e1, #34719d); - background-image: linear-gradient(top, #7fb3e1, #34719d); - filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#7fb3e1', EndColorStr='#34719d'); - text-decoration: none; - cursor: pointer; -} - -#filter_new_build { - width: 100px; - padding: 3px 5px 5px; - float: right; - margin-left: 10px; -} - - -.autocomplete-form { - width: 330px; - .actions { width: 15px; } - h3 { display: inline-block; } - .tablesorter { - width: auto; - min-width: 250px; - } -} - -#extra_repositories_dialog, #extra_build_lists_dialog { - font-size: 12px; - text-align: left; - p { margin: 0; } -} -#ui-dialog-title-extra_repositories_dialog, #ui-dialog-title-extra_build_lists_dialog { - font-size: 14px; -} - -#description-top input.name { - width:280px; - margin-left:0; -} - -.btn-group#clone-urls { - float:left; - margin-top:8px; - width:auto; - - .git-protocol-selector { - width:auto; - height:23px; - padding: 0 3px; - } -} - -#clone-urls > .git-protocol-selector:last-child { - margin: 0; -} -#clone-urls > .git-protocol-selector:first-child { - margin:0 0 0 10px; -} - -#table1 .tracker { - border-top: none; - margin-top: 0; -} -#description-top.issues-filter { - background: #dcecfa; - font-size: 12px; - color: #292929; - border: 1px solid #a9c6dd; - margin: 0; - padding: 5px 0 0; - - li { - cursor: pointer; - } - - li.list-browser-sorts { - float: right; - margin: -6px 0 0; - border: 1px solid #a9c6dd; - border-right: none; - width: 90px; - text-align: center; - padding: 7px 5px 3px; - } -} - -.activity .state { - float: right; - padding: 3px 10px; - margin: 3px 0; - font-size: 12px; - color: white; - border-radius: 2px; -} - -article .activity .top { - - .created { - margin-left: 50px; - span, a { - font-size: 11px; - } - } - .issue_title.text { - max-width: none; - float: none; - margin-left: 50px; - padding: 0; - } - h3.issue_title { - margin: 5px 0 0; - font-size: 18px; - } - .assigned-header { - padding: 10px 20px; - border: 1px solid #D6D6D6; - margin: 10px -7px; - border-left: none; - border-right: none; - } -} - -#assigned-container { - .icon-share { - cursor: pointer; - } - .image { - float: left; - width: auto; - height: auto; - margin: -1px 5px 0 0; - img { - width: 16px; - height: 16px; - } - } - .name { - margin-left: 5px; - } -} - -.users-search-popup { - z-index: 1001; - position: absolute; - margin: 5px 0 0 130px; - display: none; - min-width: 240px; - border: 1px solid #b3cce0; - background: #FFF; - -moz-border-radius: 5px; - -webkit-border-radius: 5px; - box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); - border-radius: 5px; - .header .icon-remove-circle { - cursor: pointer; - float: right; - } - .header { - padding: 10px; - background: #dcecfa; - border-bottom: 1px solid #D6D6D6; - font-weight: bold; - .title { display: inline-block; } - } - .search-container { - padding: 10px 15px 10px 10px; - border-bottom: 1px solid #D6D6D6; - input { - width: 100%; - max-width: 100%; - } - } - .edit_assignee { - display: none; - } - .list { - overflow-y: auto; - overflow-x: hidden; - max-height: 280px; - .people, .nothing { - margin: 0; - width: 100%; - padding: 10px 20px 10px 10px; - } - .clear, .nothing { - opacity: 0.8; - } - .container { - display: none; - } - } -} - -.cm-s-default.md_and_cm p img { - max-width: 800px; -} - -.tablesorter.project { - .th1 { - width: auto; - } - th { text-align: center; } -} - -.activity-tabs { - margin: 10px 0 0 0; - background: none; - -webkit-box-shadow: 0; - -moz-box-shadow: 0; - box-shadow: 0; -} - -.build-list .button { - margin: 2px 0; -} - -table tbody { - td.build-list-statuses, td.package { - background: #FFF; - - .status { - float: left; - border: 1px solid #DDD; - margin: 1px 2px; - } - .error { background: #fedede; } - .success { background: #e3edb7; } - .warning { background: #FCF8E3; } - .nocolor { background: #FFF; } - .expand { - position: absolute; - margin: -9px 0 0 -23px; - border: 1px solid #DDD; - border-right-color: #FFF; - padding: 1px; - cursor: pointer; - } - } - tr.group-start td { - border-top: 2px solid #125687; - } - tr.group-end td { - border-bottom: 2px solid #125687; - } -} - -#will_paginate .pagination { - div { - display: inline-block; - margin: 0 2px; - } - a { - text-decoration: none; - } - .disabled a { - color: #292929; - cursor: default; - } -} - -.fork_name { - height: 20px; - margin: 0 0 5px 10px; - width: 400px; - padding: 0 5px; - margin:auto; -} diff --git a/app/assets/stylesheets/design/git.scss b/app/assets/stylesheets/design/git.scss deleted file mode 100644 index 76b0bf35d..000000000 --- a/app/assets/stylesheets/design/git.scss +++ /dev/null @@ -1,295 +0,0 @@ -ul.commits { - -} - -li.commit { - -} - -li.commit table tr td { - vertical-align: top; - padding-top: 5px; -} - -li.commit .committers { - width: 175px; - border-right: 1px solid #E2E2E2; -} - -li.commit .committers .author { - -} - -li.commit .committers .committer { - margin-top: 5px; - color: #999999; - font-size: 11px; - font-weight: normal; - letter-spacing: normal; - text-transform: none; -} - -li.commit .message { - padding-left: 5px; - border-right: 1px solid #E2E2E2; - width: 575px; -} - -li.commit .trees { - padding-left: 5px; - width: 200px; -} - -li.commit .message a { - text-decoration: none; -} - -li.commit .message p { - margin: 0; -} - -li.commit .message a:hover { - text-decoration: underline; -} - -li.commit .trees div { - margin-bottom: 3px; -} - -table.git_tree .icon { - padding-left: 10px !important; - padding-right: 0px !important; - width: 16px; -} - -table.git_tree tree_element a { - text-decoration: none; -} - -table.git_tree ree_element a:hover { - text-decoration: underline; -} - -table.git_tree .icon img { - top: 1px; - position: relative; -} - -table.blob { - line-height: 1.4em; - font-family: 'Bitstream Vera Sans Mono','Courier',monospace; - border-left: 1px solid #EAEAEA; - border-right: 1px solid #EAEAEA; -} - -table.blob td { - padding: 0 !important; -} - -table.blob td.lines { - width: auto; - vertical-align: top; -} - -table.blob td.lines pre { - text-align: right; - background-color: #ECECEC; - border-right: 1px solid #DDDDDD; - color: #AAAAAA; - padding: 10px; -} - -table.blob td.blob { - vertical-align: top; -} - -table.blob td.blob pre { - padding: 10px; -} - -.blob_header { - background-color: #EAEAEA; - border-bottom: 1px solid #DDDDDD; - font-family: Monaco,"Courier New","DejaVu Sans Mono","Bitstream Vera Sans Mono",monospace; - font-size: 1.2em; - padding: 5px; - margin-top: 20px; -} - -.blob_header .size { - margin-left: 15px; - float: left; -} - -.blob_header .buttons { - float: right; - margin-right: 15px; -} - -table.commit_stats { - width: 100%; - margin-top: 12px; - line-height: 1.4em; -} - -table.commit_stats tr { - padding: 5px; -} - -.diff_data { - overflow-x: auto; - border-left: 1px solid #EAEAEA; - border-right: 1px solid #EAEAEA; -} - -table.diff { - line-height: 1.4em; - font-size: 1.2em; - font-family: 'Bitstream Vera Sans Mono','Courier',monospace; - border-top: 1px solid #EAEAEA; - border-bottom: 1px solid #EAEAEA; - width: 100%; -} - -table.diff tr td.line_numbers { - background-color: #ECECEC; - border-right: 1px solid #DDDDDD; - color: #AAAAAA; - padding: 0 0.5em; - text-align: right; -} - -table.diff tr td.header { - line-height: 1.4em; - font-family: 'Bitstream Vera Sans Mono','Courier',monospace; - width: 100%; - background-color: #ECECEC; - color: #AAAAAA; - padding-left: 10px; -} - -table.diff tr td.code { - width: 100%; - padding-left: 10px; -} - -table.diff tr td.code.del { - background-color: #FFDDDD; -} - -table.diff tr td.code.del .idiff { - background-color: #F2ACAD; -} - -table.diff tr td.code.ins { - background-color: #DDFFDD; -} - -table.diff tr td.code.ins .idiff { - background-color: #BAFBAD; -} - -table.diff .diff-content { -} - -.patch_and_diff { - margin-top: 10px; - float: right; - margin-right: 10px; -} - -.blame_data { - overflow-x: auto; - border-right: 1px solid #EAEAEA; -} - -table.blame { - line-height: 1.4em; - font-family: 'Bitstream Vera Sans Mono','Courier',monospace; - border-left: 1px solid #EAEAEA; - /*border-right: 1px solid #EAEAEA;*/ - width: 100%; -} - -table.blame td { - padding: 0 !important; -} - -table.blame td.lines { - width: auto; - text-align: right; - background-color: #ECECEC; - border-right: 1px solid #DDDDDD; - color: #AAAAAA; - padding: 10px; -} - -table.blame td.code { - width: auto; -} - -table.blame td.code pre { - margin-left: 10px; -} - -table.blame td.message { - width: auto; - padding: 10px; -} - -table.blame td.message .commit { - margin: 10px; - width: 430px; -} - -table.blame td.message .message { - margin-bottom: 10px; - margin-left: 10px; - width: 430px; -} - -#git_submenu { - margin: 0; - padding: 0; - z-index: 30; -} - -#git_submenu li a:hover { - background: #FFF; -} - -#git_submenu div { - background: none repeat scroll 0 0 #F8F8F8; - border: 1px solid #CCCCCC; - display: none; - max-height: 275px; - overflow: auto; - position: absolute; - z-index: 4; -} - -#git_submenu div span { - padding: 10px 15px; - display: block; - background: #ECECEC; -} - - -#git_submenu div a:hover { - background: #ECECEC; - color: #000; -} - -table.diff td.diff-image { - text-align: center; - - span.diff-image { - text-align: center; - margin: 0; - padding: 0; - - img { - margin-top: 5px; - } - } -} \ No newline at end of file diff --git a/app/assets/stylesheets/design/main.scss b/app/assets/stylesheets/design/main.scss deleted file mode 100644 index 29beb1cbf..000000000 --- a/app/assets/stylesheets/design/main.scss +++ /dev/null @@ -1,2394 +0,0 @@ -html, body { - margin: 0; - padding: 0; - font-family: Tahoma, Geneva, Helvetica, sans-serif; - color: #292929; - background: #1f60a1 image-url("bg.png") repeat-x; - min-width: 940px; - min-height: 600px; - text-align: center; - height: 100%; -} - -header, section, footer, aside, nav, article, menu { - display: block; -} - -input[type="text"]:focus { outline: none; } - -input[type="password"]:focus { outline: none; } - -input:focus { outline: none; } - -select:focus { outline: none; } - -a img { border: none; } - -.wrap { - width: 940px; - margin: 0 auto; - text-align: center; - border: 1px solid #3f668c; - -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5); - -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5); - box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5); - background: #FFF; - min-height: 92%; -} - -.wrap.columns { - background: #FFF image-url("page-bg.png") repeat-y; -} - -.both { - clear: both; -} - -/* Top menu */ - -header { - -webkit-box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.4); - -moz-box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.4); - box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.4); - position: relative; - z-index: 1000; -} - -header div.left { - background: image-url("top-left.png"); - height: 46px; - width: 14px; - float: left; -} - -header div.middle { - background: image-url("top-middle.png"); - float: left; - height: 46px; - width: 912px; -} - -header div.right { - background: image-url("top-right.png"); - height: 46px; - width: 14px; - float: left; -} - -/* Left part of top menu*/ - -header menu { - float: left; - margin: 0; - padding: 0; -} - -header menu ul { - list-style: none; - margin: 0; - padding-top: 10px; -} - -header menu ul li { - display: inline; -} - -header menu ul li a { - font-size: 12px; - color: #FFF; - text-decoration: none; - height: 43px; - padding: 15px 10px 15px 10px; -} - -header menu ul li a:hover { - color: #cee7ff; -} - -header menu ul li a.first { -} - -header menu ul li a.active { - background: image-url("menu-hover.png") repeat-x; -} - -header div.logo { - float: left; - margin-top: 5px; - padding-left: 0px; - padding-right: 0px; -} - -/* Right part of top menu */ - -header div.information { - float: right; -} - -header div.search { - float: left; - margin: 10px 0px 0px 0px; - -moz-border-radius-topleft: 3px; - -moz-border-radius-topright: 3px; - -moz-border-radius-bottomright: 3px; - -moz-border-radius-bottomleft: 3px; - -webkit-border-radius: 3px 3px 3px 3px; - border-radius: 3px 3px 3px 3px; - background: #FFF; - border: 1px solid #7691aa; -} - -header div.search div.pic { - background: image-url("search-button.png"); - height: 22px; - width: 24px; - float: left; -} - -header div.search div.field { - float: left; - margin: -1px 0px 0px 0px; -} - -header div.search div.field input { - border: none; - height: 18px; - background: none; - width: 132px; - font-size: 12px; - font-family: Arial; - padding: 2px 0px 0px 0px; -} - -header div.search div.field input.gray { - color: #cfcfcf; -} - -header div.search div.field input.black { - color: #333333; -} - -header div.avatar { - float:left; - padding: 6px 10px 10px 10px; - -} - -header div.information div.active { - background: image-url("menu-hover.png") repeat-x; -} - -header div.information div.user { - float: left; - margin-left: 14px; -} - -header div.profile { - float: left; - text-align: right; - color: #FFF; - font-size: 12px; - padding-top: 12px; -} - -header div.profile a { - color: #FFF; - text-decoration: none; - padding-right: 10px; -} - -header div.profile a:hover { - text-decoration: underline; -} - - -header div.droplist-wrap { - margin: -4px 0px 0px 0px; - width: 151px; - float: right; -} - -header div.droplist { - background: image-url("bg-droplist.png") repeat-x; - height: 91px; - width: 151px; - -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5); - -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5); - box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5); - position: absolute; - margin-top: 0px; - border-radius: 0px 0px 4px 4px; - display: none; - text-align: right; - z-index: 9999; -} - -header div.droplist-wrap div.a { - margin-top: 5px; -} - -header div.droplist a{ - position: relative; - padding-left: 15px; - font-size: 12px; - color: #447cae; - text-decoration: none; - padding-right: 15px; - margin-top: 10px; -} - -header div.droplist a:hover{ - text-decoration: underline; -} - - -/* Submenu */ - -.sub-menu { - height: 38px; - margin: -7px 0px 0px 0px; - padding: 0px 0px 0px 15px; - background: #ededed; - position: relative; - z-index: 100; - border-bottom: 1px solid #FFF; - -webkit-box-shadow: 0px 5px 3px -3px rgba(18, 86, 135, 0.2); - -moz-box-shadow: 0px 5px 3px -3px rgba(18, 86, 135, 0.2); - box-shadow: 0px 5px 3px -3px rgba(18, 86, 135, 0.2); -} - -.sub-menu div.left { - float: left; - width: 200px; - border-right: 1px solid #dcdcdc; - font-size: 12px; - text-align: left; - font-weight: 700; - padding: 10px 0px 0px 0px; - height: 21px; -} - -.sub-menu div.right { - float: left; -} - - -.sub-menu nav { - float: left; - margin: 0px 0px 0px 0px; -} - -.sub-menu nav ul { - list-style: none; - text-align: left; - padding: 0; - margin: 0; - padding-top: 4px; -} - -.sub-menu nav ul li { - display: inline; -} - -.sub-menu nav ul li a { - font-size: 12px; - color: #292929; - text-decoration: none; - height: 34px; - padding: 0px 20px 9px 20px; -} - -.sub-menu nav ul li a.active { - background: image-url("submenu-hover.png") repeat-x scroll 0 100% transparent; -} - -.sub-menu nav ul li a:hover { - color: #2b6daf; -} - -/* Page markup */ - -article { - font-size: 12px; -} - -aside { - float: left; - width: 215px; -} - -article div.right { - float: right; - width: 645px; - padding: 20px 40px 40px 40px; - text-align: left; -} - -article div.right.bigpadding { - width: 445px; - padding: 20px 140px 40px 140px; -} - -article div.right.middlepadding { - width: 510px; - padding: 20px 120px 40px 50px; -} - -article div.right.middlepadding div.rightlist{ - width: 300px; -} - -article div.right.middlepadding div.rightlist input{ - width: 300px; -} - -article div.right.middlepadding div.rightlist textarea{ - width: 300px; -} - -article div.all { - width: 855px; - padding: 20px 40px 20px 40px; - text-align: left; -} - -article div.all.bigpadding { - width: 605px; - padding: 0px 40px 20px 200px; - text-align: left; -} - -article div.all.verybigpadding { - width: 545px; - padding: 0px 40px 20px 200px; - text-align: left; - - .info, .avatar { - display: inline-block; - } - .avatar { margin: 0 20px 20px 0; } - .info { - width: 380px; - } - .content { - width: 550px; - display: inline-block; - .pagination { position: absolute; } - } - img { - padding-right: 40px; - margin-top: 20px; - } - h3, h4, p { width: 420px; } - tmargin5 { - padding-top: 5px; - position: relative; - } -} - -/* Left part of page markup */ - -aside div.bordered { - border-bottom: 1px solid #dee5eb; - text-align: left; - padding: 20px 0px 30px 15px; -} - -aside div.block { - text-align: left; - padding: 10px 0px 30px 15px; -} - -/* Common page parts markups */ - -article h4 { - font-size: 12px; - margin-bottom: 0px; - padding-bottom: 2px; -} - -article h4.nomargin { - margin: 0px; -} - -article p { - margin: 0; - padding: 0; -} - -div.expand-gray-down, div.expand-gray-up { - height: 10px; - width: 12px; - float: left; - margin: 3px 0px 0px 3px; - cursor: pointer; -} - -div.expand-gray-down { - background: image-url("expand-gray.png") no-repeat; -} - -div.expand-gray-up { - background: image-url("expand-gray2.png") no-repeat; -} - -article a.button { - display: inline-block; - white-space: nowrap; - background-color: #125687; - background-image: -webkit-gradient(linear, left top, left bottom, from(#68a3d8), to(#125687)); - background-image: -webkit-linear-gradient(top, #68a3d8, #125687); - background-image: -moz-linear-gradient(top, #68a3d8, #125687); - background-image: -ms-linear-gradient(top, #68a3d8, #125687); - background-image: -o-linear-gradient(top, #68a3d8, #125687); - background-image: linear-gradient(top, #68a3d8, #125687); - filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#68a3d8', EndColorStr='#125687'); - border: 1px solid #5084b4; - padding: 4px 20px 6px; - margin: 0; - font-size: 12px; - text-decoration: none; - color: #FFF; - -moz-border-radius: 5px; - -webkit-border-radius: 5px; - border-radius: 5px; - text-align: center; -} - -article a.button:hover{ - background-color: #34719d; - background-image: -webkit-gradient(linear, left top, left bottom, from(#7fb3e1), to(#34719d)); - background-image: -webkit-linear-gradient(top, #7fb3e1, #34719d); - background-image: -moz-linear-gradient(top, #7fb3e1, #34719d); - background-image: -ms-linear-gradient(top, #7fb3e1, #34719d); - background-image: -o-linear-gradient(top, #7fb3e1, #34719d); - background-image: linear-gradient(top, #7fb3e1, #34719d); - filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#7fb3e1', EndColorStr='#34719d'); - text-decoration: none; -} - - - -article a.button:active{ - background-color: #125687; - background-image: -webkit-gradient(linear, left top, left bottom, from(#68a3d8), to(#125687)); - background-image: -webkit-linear-gradient(top, #68a3d8, #125687); - background-image: -moz-linear-gradient(top, #68a3d8, #125687); - background-image: -ms-linear-gradient(top, #68a3d8, #125687); - background-image: -o-linear-gradient(top, #68a3d8, #125687); - background-image: linear-gradient(top, #68a3d8, #125687); - filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#68a3d8', EndColorStr='#125687'); -} - -article a.disabled { - background-color: #888888; - background-image: -webkit-gradient(linear, left top, left bottom, from(#aaaaaa), to(#888888)); - background-image: -webkit-linear-gradient(top, #aaaaaa, #888888); - background-image: -moz-linear-gradient(top, #aaaaaa, #888888); - background-image: -ms-linear-gradient(top, #aaaaaa, #888888); - background-image: -o-linear-gradient(top, #aaaaaa, #888888); - background-image: linear-gradient(top, #aaaaaa, #888888); - filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#aaaaaa', EndColorStr='#888888'); - cursor: default; - color: #d8d8d8; - border: 1px solid #aaaaaa; - cursor: default; - text-align: center; -} - -article input[type="file"] { - - -} - -article input[type="submit"] { - display: inline-block; - white-space: nowrap; - background-color: #125687; - background-image: -webkit-gradient(linear, left top, left bottom, from(#68a3d8), to(#125687)); - background-image: -webkit-linear-gradient(top, #68a3d8, #125687); - background-image: -moz-linear-gradient(top, #68a3d8, #125687); - background-image: -ms-linear-gradient(top, #68a3d8, #125687); - background-image: -o-linear-gradient(top, #68a3d8, #125687); - background-image: linear-gradient(top, #68a3d8, #125687); - filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#68a3d8', EndColorStr='#125687'); - border: 1px solid #5084b4; - padding: 3px 20px 5px; - margin: 0; - font-size: 12px; - text-decoration: none; - color: #FFF; - -moz-border-radius: 5px; - -webkit-border-radius: 5px; - border-radius: 5px; - text-align: center; - height: auto; - width: auto; - font-family: Tahoma; -} - -article input[type="submit"]:hover{ - background-color: #34719d; - background-image: -webkit-gradient(linear, left top, left bottom, from(#7fb3e1), to(#34719d)); - background-image: -webkit-linear-gradient(top, #7fb3e1, #34719d); - background-image: -moz-linear-gradient(top, #7fb3e1, #34719d); - background-image: -ms-linear-gradient(top, #7fb3e1, #34719d); - background-image: -o-linear-gradient(top, #7fb3e1, #34719d); - background-image: linear-gradient(top, #7fb3e1, #34719d); - filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#7fb3e1', EndColorStr='#34719d'); - text-decoration: none; - cursor: pointer; -} - - - -article input[type="submit"]:active{ - background-color: #125687; - background-image: -webkit-gradient(linear, left top, left bottom, from(#68a3d8), to(#125687)); - background-image: -webkit-linear-gradient(top, #68a3d8, #125687); - background-image: -moz-linear-gradient(top, #68a3d8, #125687); - background-image: -ms-linear-gradient(top, #68a3d8, #125687); - background-image: -o-linear-gradient(top, #68a3d8, #125687); - background-image: linear-gradient(top, #68a3d8, #125687); - filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#68a3d8', EndColorStr='#125687'); -} - -article input[type="submit"]:disabled { - background-color: #888888; - background-image: -webkit-gradient(linear, left top, left bottom, from(#aaaaaa), to(#888888)); - background-image: -webkit-linear-gradient(top, #aaaaaa, #888888); - background-image: -moz-linear-gradient(top, #aaaaaa, #888888); - background-image: -ms-linear-gradient(top, #aaaaaa, #888888); - background-image: -o-linear-gradient(top, #aaaaaa, #888888); - background-image: linear-gradient(top, #aaaaaa, #888888); - filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#aaaaaa', EndColorStr='#888888'); - cursor: default; - color: #d8d8d8; - border: 1px solid #aaaaaa; - cursor: default; - text-align: center; -} - - -article h3{ - font-size: 14px; - color: #292929; - margin-bottom: 0; - padding-bottom: 2px; -} - -article h3.fix { - margin-top: 0px; - padding-top: 0px; -} - -article a{ - color: #447cae; - font-size: 12px; - text-decoration: none; - padding: 0px 0px; -} - -article a:hover{ - text-decoration: underline; -} - -/* Right part of page markup */ - -article div.right div.hr { - border-bottom: 1px solid #dedede; - width: 100%; - padding-top: 30px; - margin-bottom: 30px; -} - -article div.right div.hr.bottom { - margin-bottom: 10px; - padding-top: 20px; -} - -article div.right div.hr.top { - padding-top: 7px; - margin-bottom: 20px; -} - -article div.leftside { - float: left; -} - -article div.rightside { - float: right; -} - -article div.all.bigpadding div.rightside { - margin-right: 40px; -} - -.lefter { - float: left; - margin-right: 5px; -} - -.lefter span.gap { - padding-right: 59px; -} - -.lefter.top { - margin-top: -6px; -} - -.w25 { - width: 25px; -} - -.w420 { - width: 420px; - padding-bottom: 20px; -} - -.padd25 { - padding-left: 25px; -} - -.width70 { - width: 70px; -} - -a.button.width81 { - width: 79px; - padding: 4px 0px; - text-align: center; - -} - - -/* Footer */ - -footer { - height: 32px; - padding-left: 15px; - width: 900px; - margin: 0 auto; - text-align: center; -} - -footer ul { - margin: 0; - padding: 0; - list-style: none; - font-size: 12px; - color: #FFF; - padding-top: 10px; - text-align: left; -} - -footer ul li { - display: inline; -} - -footer ul li a { - font-size: 12px; - color: #FFF; - text-decoration: none; -} - -footer ul li a:hover { - text-decoration: underline; -} - -/* Main page */ - -aside div.bordered table{ - padding: 0; - margin: 0; - padding-bottom: 0px; - margin-left: -10px; -} - -aside div.bordered table td{ - font-size: 12px; - padding: 1px 0px 0px 0px; -} - -aside div.block table td { - text-align: right; - padding: 2px 3px 1px 3px; -} - - -aside div.block table td.first{ - width: 150px; - text-align: left; -} - -article div.right div.messages { - background: #e9f4fb; - border: 1px solid #dfeefa; - border-radius: 5px; - width: 100%; - color: #477cae; - text-align: center; - font-size: 12px; - padding: 4px 0px 4px 0px; - cursor: pointer; - margin: 15px 0px 15px 0px; -} - -article div.right div.messages:hover { - background: #dceffa; -} - -article div.right div.messages p{ - margin: 0; - padding: 0; -} - -article div.activity { - border: 1px solid #d6d6d6; - /*width: 614px;*/ - border-radius: 5px; - padding: 6px; - margin-top: 15px; - color: #333; -} - -article div.activity div.top div.image { - float: left; -} - -article div.activity div.top div.text { - float: left; - padding-left: 10px; - font-size: 12px; -} - -article div.activity div.top span.name { - font-weight: 700; -} - -article div.activity div.top div.text span.date { - font-size: 11px; -} - -article div.text span.subject { - float: left; -} - -article div.activity div.top div.text span.subject img { - cursor: pointer; -} - -article div.activity div.fulltext { - font-size: 12px; - padding-top: 10px; - display: none; -} - -article div.activity div.fulltext.view { - display: block; -} - -/* Admin page */ - -.admin-preferences ul { - list-style: none; - margin: 0; - padding: 0; - margin-top: 20px; - width: 215px; - text-align: left; -} - -.admin-preferences ul li{ - padding-top: 5px; - padding-bottom: 5px; - width: 215px; -} - -.admin-preferences ul li.active, .admin-preferences ul li:hover { - background: #dcecfa; -} - -.admin-preferences ul li a{ - color: #292929; - text-decoration: none; - padding-top: 5px; - padding-bottom: 5px; - padding-left: 15px; -} - -.right div.leftlist, .all div.leftlist { - float: left; - width: 200px; - margin: 0px 0px 10px 0px; -} - -.right div.rightlist, .all div.rightlist { - float: left; - width: 400px; - font-size: 12px; - color: #292929; - margin: 0px 0px 10px 0px; -} - -div.rightlist div.check { - float: left; -} - -div.rightlist div.forcheck { - float: left; - margin: 1px 0px 0px 5px; -} -div.rightlist textarea { - height: 110px; - width: 350px; - border: 1px solid #dedede; - border-radius: 4px; - padding: 5px; - font-family: Tahoma, Geneva, Helvetica, sans-serif; - font-size: 12px; -} - -div.rightlist input[type="text"], div.rightlist input[type="password"] { - height: 16px; - width: 350px; - border: 1px solid #dedede; - border-radius: 4px; - padding: 5px; - font-family: Tahoma, Geneva, Helvetica, sans-serif; - font-size: 12px; -} - -/* Admin-members page */ - -div.img { - float: left; -} - - table div.radio { - float: left; - margin: 5px 0px 0px 0px; -} - -div.forimg { - float: left; - margin: 5px 0px 0px 5px; -} - -table div.forradio { - float: left; - margin: 5px 0px 0px 5px; -} - -table span.niceCheck-main { - margin-top: 3px; -} - -div.admin-search { - float: left; -} - -.right div.admin-role { - float: left; -} - -.right div.admin-search input { - width: 300px; - margin-right: 5px; - height: 23px; - border: 1px solid #dedede; - border-radius: 3px; - margin-top: 1px; - font-size: 12px; - font-family: Tahoma, Geneva, Helvetica, sans-serif; - padding-left: 5px; -} - -article input.gray { - color: #cfcfcf; -} - -article input.black { - color: #333333; -} - -article input.gray.withimage, article input.black.withimage { - padding-left: 30px; - width: 275px; - background-size: 25px 25px; -} - -div.admin-search.withimage { - width: 300px; - margin-right: 5px; - height: 25px; - border: 1px solid #dedede; - border-radius: 3px; - margin-top: 1px; -} - -div.admin-search.withimage img { - width: 25px; - height: 25px; - float: left; -} - -.right div.admin-search.withimage input { - width: 270px; - float: left; - margin-right: 0px; - height: 22px; - border: none; - border-radius: none; - margin-top: 1px; - font-size: 12px; - font-family: Tahoma, Geneva, Helvetica, sans-serif; - padding-left: 5px; -} - - -.right div.admin-add { - float: left; - padding-top: 1px; - margin-left: 5px; -} - -.right div.admin-add a { - width: 86px; - text-align: center; - padding-bottom: 5px; -} - -/* Input elements */ - -.niceRadio { - width: 17px; - height: 17px; - display: inline-block; - cursor: pointer; - background: image-url("radio.png"); - overflow: hidden; -} -.radioChecked { - background-position: 0 -17px; -} -.niceRadio input { - margin-left: -18px; -} - -.sel80 { - width: 200px; - padding-bottom: 4px; - text-align: left; -} - -.sel80.aside { - width: 185px; -} -.lineForm, -.lineForm3 { - margin-bottom: 0px; -} - -.niceCheck { - width: 17px; - height: 17px; - display: inline-block; - cursor: pointer; - background: image-url("checkbox.png"); -} -.niceCheck input { - display: none; -} - -.niceCheck-main { - width: 18px; - height: 18px; - display: inline-block; - cursor: pointer; - background: image-url("checkbox-main.png"); -} -.niceCheck-main input { - display: none; -} - -/* Admin build project */ - -section.left { - float: left; - text-align: left; - width: 230px; - margin-left: 250px; -} - -section.right { - float: right; - text-align: left; - width: 200px; - margin-right: 250px; -} - -section .left { - float: left; - margin-right: 4px; -} - -/* Commits history */ - - -article .date-block { - width: 100%; - margin-top: 17px; -} - -article .date-block div.date { - float: left; - background: #bedbf6; - color: #477cae; - border: 1px solid #98bede; - -moz-border-radius-topleft: 4px; - -moz-border-radius-topright: 0px; - -moz-border-radius-bottomright: 0px; - -moz-border-radius-bottomleft: 4px; - -webkit-border-radius: 4px 0px 0px 4px; - border-radius: 4px 0px 0px 4px; - width: 65px; - height: 55px; - padding: 10px; - padding-top: 20px; - -webkit-box-shadow: -1px 0px 0px 1px rgba(0, 0, 0, 0.1); - -moz-box-shadow: -1px 0px 0px 1px rgba(0, 0, 0, 0.1); - box-shadow: -1px 0px 0px 1px rgba(0, 0, 0, 0.1); - font-size: 14px; - text-align: center; -} - -article .date-block div.messages { - float: left; - border: 1px solid #cfdde7; - -moz-border-radius-topleft: 0px; - -moz-border-radius-topright: 4px; - -moz-border-radius-bottomright: 4px; - -moz-border-radius-bottomleft: 4px; - -webkit-border-radius: 0px 4px 4px 4px; - border-radius: 0px 4px 4px 4px; - padding: 10px; - padding-bottom: 0px; - width: 746px; -} - -article .date-block div.message { - border: 1px solid #d6d6d6; - -moz-border-radius-topleft: 4px; - -moz-border-radius-topright: 4px; - -moz-border-radius-bottomright: 4px; - -moz-border-radius-bottomleft: 4px; - -webkit-border-radius: 4px 4px 4px 4px; - border-radius: 4px 4px 4px 4px; - padding: 6px; - margin-bottom: 10px; -} - -article .date-block div.message div.body { - float: left; - text-align: left; -} - -article .date-block div.message div.code { - float: right; - margin: -7px 0px 0px 640px; - position: absolute; -} - -article .date-block div.code div.top { - width: 90px; - height: 22px; - border: 1px solid #9dbcd5; - background: #cbdeef; -} - -article .date-block div.code div.bottom { - width: 90px; - text-align: right; -} - -article .date-block div.code div.left { - float: left; - width: 13px; - height: 13px; - padding-left: 2px; - padding-top: 4px; -} - -article .date-block div.code div.right { - float: right; - border: 1px solid #bcd5ea; - background: #FFF; - font-size: 12px; - width: 65px; - height: 14px; - margin: 2px; - padding: 0px 2px 2px 0px; - text-align: center; -} - -article .date-block div.image, .last-commit div.image { - float: left; -} - -article .date-block div.text, .last-commit div.text { - float: left; - padding-left: 10px; - font-size: 12px; -} - -article .date-block div.text span.name, .last-commit span.name { - font-weight: 700; -} - -article .date-block div.text span.date, .last-commit span.date { - font-size: 11px; -} - -article .date-block div.text span.subject img, .last-commit span.subject img { - cursor: pointer; -} - -article .date-block div.fulltext, .last-commit div.fulltext { - font-size: 12px; - padding-top: 10px; - display: none; - /*width: 640px;*/ -} - - -article div.year { - background: #e9f4fb; - border: 1px solid #dfeefa; - border-radius: 5px; - width: 760px; - color: 477cae; - text-align: center; - font-size: 12px; - padding: 4px; - margin-left: 87px; - margin-top: 30px; - margin-bottom: 30px; -} - -article div.year p{ - margin: 0; - padding: 0; - color: #477CAE; -} - -div.pagination.tmargin30 { - margin-top: 30px; -} - -/* Create issue */ - -.bordered.nopadding, .right.nopadding { - padding-top: 0px; -} - -p.tmargin5 { - margin-top: 5px; -} - -aside input { - height: 25px; - width: 170px; - border: 1px solid #dedede; - border-radius: 4px; - padding: 0px 5px; - font-family: Tahoma, Geneva, Helvetica, sans-serif; - font-size: 12px; - margin-bottom: 5px; - margin-top: 5px; -} - -aside input.gray { - color: #cfcfcf; -} - -aside input.black { - color: #333333; -} - -div.people { - width: 202px; - clear: both; - cursor: pointer; - margin-left: -15px; - padding: 5px; - padding-left: 10px; - padding-right: 0px; -} - -div.people div.avatar, div.avatar { - float: left; - padding-left: 5px; -} - -div.people div.name, div.name { - padding-top: 4px; - padding-left: 3px; - float: left; -} - -aside div.select, div.people:hover { - background: #dcecfa; -} - -div.label.selected, div.label { - width: 196px; - clear: both; - cursor: pointer; - margin-left: -15px; - padding: 5px; - padding-left: 15px; -} - -div.label.selected:hover, div.label:hover { - background: #dcecfa; -} - -div.labeltext.selected { - float: left; - margin-left: 2px; - font-size: 12px; - margin-top: 0px; - padding-left: 3px; - padding-right: 3px; - color: #FFF; - padding-top: 1px; - padding-bottom: 1px; - border-radius: 2px; -} - -div.label div.flag { - height: 11px; - width: 3px; - background: #39b54a; - float: left; - margin-top: 3px; - margin-right: 3px; - border-radius: 2px; -} - -.right span.small-text { - font-size: 11px; -} - -.right .bpadding10, .all .bpadding10 { - padding-bottom: 10px; -} - - -/* Issue page */ - -aside div.switcher, aside div.switcher-off { - height: 23px; - width: 194px; - background: image-url("switch-on.png"); - color: #FFF; - font-size: 12px; - cursor: pointer; -} - -aside div.switcher-off { - background: image-url("switch-off.png"); -} - -aside div.switcher div.swleft, aside div.switcher-off div.swleft { - float: left; - width: 96px; - text-align: center; - padding-top: 3px; -} - -aside div.switcher div.swright, aside div.switcher-off div.swright { - float: right; - width: 96px; - text-align: center; - padding-top: 3px; -} - -p.non-view { - display: none; -} - -div.non-view { - display: none; -} - -div.view { - display: block; -} - -div.nopointer { - cursor: default; -} - -div.nopointer:hover { - background: none; -} - -a.button.tmargin10, input[type="submit"].tmargin10 { - margin-top: 10px; -} - -h3.tmargin0 { - margin-top: 0px; -} - -h3.bmargin10 { - margin-bottom: 10px; -} - -.right div.comment { - text-align: left; - border: 1px solid #b3cce0; - -moz-border-radius-topleft: 4px; - -moz-border-radius-topright: 4px; - -moz-border-radius-bottomright: 4px; - -moz-border-radius-bottomleft: 4px; - -webkit-border-radius: 4px 4px 4px 4px; - border-radius: 4px 4px 4px 4px; - padding: 6px; - margin-bottom: 10px; - width: 631px; - background: #dcecfa; -} - -.right div.comment div.issue-left { - float: left; - font-size: 12px; - margin-top: 4px; -} - -.right div.comment div.issue-right { - float: right; -} - -.right div.comment textarea { - height: 110px; - width: 618px; - border: 1px solid #dedede; - border-radius: 4px; - padding: 5px; - font-family: Tahoma, Geneva, Helvetica, sans-serif; - font-size: 12px; - color: #292929; - margin: 10px 0px; -} - -.right div.comment-closed { - display: none; -} - -.right div.comment-closed div.state { - float: left; - padding: 2px 0px 2px 0px; - background: #bd4d40; - color: #FFF; - font-size: 12px; - border: 1px solid #924f52; - -moz-border-radius-topleft: 2px; - -moz-border-radius-topright: 0px; - -moz-border-radius-bottomright: 0px; - -moz-border-radius-bottomleft: 2px; - -webkit-border-radius: 2px 0px 0px 2px; - border-radius: 2px 0px 0px 2px; - width: 80px; - text-align: center; -} - -.right div.comment-closed div.text { - border: 1px solid #dce6ed; - -moz-border-radius-topleft: 2px; - -moz-border-radius-topright: 2px; - -moz-border-radius-bottomright: 2px; - -moz-border-radius-bottomleft: 2px; - -webkit-border-radius: 2px; - border-radius: 2px; - float: left; - width: 561px; -} - -.right div.comment-closed div.avatar { - float: left; - padding: 5px; -} - -.right div.comment-closed div.name { - float: left; - font-size: 12px; - padding-top: 9px; -} - -#description-top { - background: #dcecfa; - font-size: 12px; - color: #292929; - border: 1px solid #a9c6dd; - height: 38px; - width: 100%; - margin-bottom: 20px; - - div.img { - float: left; - padding-left: 10px; - margin-top: 14px; - } - - input.name { - float: left; - margin-top: 5px; - margin-left: 10px; - background: #FFF; - border: 1px solid #d1deeb; - height: 21px; - width: auto; - color: #292929; - font-size: 11px; - width: 415px; - padding: 2px 5px 3px; - } - - div.role { - float: left; - margin-top: 11px; - margin-left: 10px; - font-size: 11px; - } - - div.fork { - margin-right: 10px; - } - -} - -div.fork { - float: right; - margin-top: 5px; -} -div.fork p { - float: right; - margin-top: 5px; - margin-right: 2px; -} - -.all div.description { - text-align: left; -} - -.all div.description h3{ - color: #292929; - font-weight: 700; - font-size: 14px; - margin-bottom: 5px; - margin-top: 5px; -} - -.all div.description p{ - font-size: 12px; - padding: 0; - margin: 0; - color: #292929; -} - -.all div.last-commit { - border: 1px solid #d6d6d6; - -moz-border-radius-topleft: 4px; - -moz-border-radius-topright: 4px; - -moz-border-radius-bottomright: 4px; - -moz-border-radius-bottomleft: 4px; - -webkit-border-radius: 4px 4px 4px 4px; - border-radius: 4px 4px 4px 4px; - padding: 6px; - margin: 10px 0px; -} - - -/* Project main page */ - -.tablesorter.project { - - .th1 { - width: 130px; - /*padding-left: 17px;*/ - } - .th2 { - width: 110px; - /*padding-left: 17px;*/ - } - .th3 { - width: 450px; - } - .th4 { - /*padding-left: 17px;*/ - } - .name { - float: left; - margin-top: 0px; - } - .pic { - float: left; - padding-right: 5px; - } -} - -a.files-see { - color: #292929; - text-decoration: underline; -} - -div.file { - border: 1px solid #dddddd; - margin-top: 10px; -} - -div.file div.top { - height: 28px; - 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; -} - -div.file div.top div.l { - float: left; - margin: 6px 0px 0px 10px; -} - -div.file div.top div.r { - float: right; - margin: 6px 10px 0px 0px; -} - -div.files div.l { - float: left; - margin-bottom: 5px; -} - -div.files div.r { - float: right; - display: none; -} - -div.file { - margin-bottom: 10px; -} - -textarea.commit-message { - height: 60px; - width: 845px; - resize: none; - border: 1px solid #dedede; - border-radius: 4px; - padding: 5px; - font-family: Tahoma, Geneva, Helvetica, sans-serif; - font-size: 12px; - margin-top: 5px; -} - -div.files div.l p{ - padding: 0; - margin: 5px 0px 0px 0px; -} - - -/* Code */ - -div.gutter { - float: left; - border: 0 !important; - padding: 10px 5px 10px 0px; - font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; - background: #EDEDED; - width: 40px; - text-align: right; -} - - -/* Tracker */ - -table td.width18 { - width: 18px; -} - -table td.width135 { - width: 135px; -} - -table td.width145 { - width: 145px; -} - -.width125 { - width: 125px; -} - -table td.width30 { - width: 30px; -} - -table td.width30.right { - text-align: right; -} - -div.bordered.bpadding20 { - padding-bottom: 20px; -} - -table.tracker-lables td { - padding: 1px; -} - -table.tracker-lables div.label { - width: auto; - clear: both; - cursor: default; - margin-left: -15px; - padding: 5px; - padding-left: 15px; - text-align: left; -} - -table.tracker-lables div.label:hover { - background: none; -} - -table.tablesorter.tracker th.th1{ - width: 50px; -} - -table.tablesorter.tracker td.td0{ - width: 10px; - padding-right: 0px; -} - -table.tablesorter.tracker .td3.td3-pull { - min-width: 130px; -} - -table.tablesorter.tracker td.td3{ - padding-top: 10px; - min-width: 110px; - .code { - height: 23px; - width: 15px; - background: #FFF; - color: #009fe3; - border: 1px solid #83d1f2; - font-size: 16px; - padding: 5px 0px 0px 5px; - margin-right: 3px; - cursor: pointer; - } - .avatar { - margin-right: 8px; - cursor: pointer; - } - .answers { - height: 28px; - background: #FFF; - color: #009fe3; - border: 1px solid #83d1f2; - font-size: 16px; - cursor: pointer; - .pic { - float: left; - margin: 2px; - margin-top: 6px; - } - .count { - float: left; - margin: 4px 5px 0px 2px; - } - } -} - -.tablesorter.tracker .td3 > a { - float: left; -} - -table.tablesorter.tracker div.smalltext { - font-size: 11px; - color: #b0b0b1; - float: left; - margin-top: 3px; -} - - -div.label.selected.tracker { - width: auto; - clear: both; - cursor: default; - margin-left: 0px; - padding: 0px 0px 0px 2px; - float: left; - margin-top: 3px; -} - -div.right div.left.nomargin { - margin: 0px; - padding: 0px; -} - -div.label.selected.tracker:hover { - background: none; -} - - -div.label.edit { - width: 196px; - clear: both; - cursor: default; - margin-left: -15px; - padding: 5px; - padding-left: 15px; -} - -div.label.edit:hover{ - background: none; -} - -div.labeltext.edit { - float: left; - margin-left: 2px; - font-size: 12px; - margin-top: 0px; - margin-bottom: 5px; - padding-left: 3px; - padding-right: 3px; - color: #FFF; - padding-top: 1px; - padding-bottom: 1px; - border-radius: 2px; - width: 175px; - cursor: default; -} - -div.labeltext.edit div.text { - float: left; -} - -div.labeltext.edit div.delete { - float: right; - cursor: pointer; - margin-top: 1px; -} - -div.labeltext a { - text-decoration: none; - color: #292929; -} - -div.labeltext.edit a { - text-decoration: none; - color: #FFF; -} - -aside div.colors { - margin: 10px 0px; -} - -aside div.colors div.color { - float: left; - width: 22px; - height: 22px; - margin-right: 5px; - border-radius: 4px; - -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.8); - -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.8); - box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.8); - cursor: pointer; -} - -aside div.colors div.choose { - height: 14px; - width: 14px; - padding: 4px; -} - -aside div.colors div.choose.selected, aside div.colors div.choose:hover { - background: image-url("choose.png") no-repeat 50% 50%; - height: 14px; - width: 14px; - padding: 4px; -} - -aside div.lefter { - float: left; -} - -aside div.righter { - float: right; - margin-right: 15px; -} - -tr.label-active { - background: #DDD; - border-radius: 3px; -} - -/* Wiki */ - -span.wiki-gray { - color: #b0b0b1; -} - -.right table.wiki { - border: 1px solid #e2e2e2; - border-bottom: none; - margin-top: 10px; -} - -.right table.wiki td { - border-bottom: 1px solid #e2e2e2; - padding: 8px; -} - -.right table.wiki tr.history td.td1{ - width: 5px; -} - -.right table.wiki tr.history td.td2{ - width: 180px; -} - -a.button.rigth { - float: right; -} - -div.r { - float: right; - margin-left: 10px; -} - -h3.wiki { - color: #477cae; - font-size: 16px; -} - -a.button.width100 { - width: 100px; -} - -.div-filter-labels { - margin: 2px 13px 2px 0px; - cursor: pointer; - border-radius: 4px; -} - -.div-label-left { - float: left; - width: 150px; -} - -.div-label-right { - float: right; - width: 30px; - text-align: right; - padding-top: 4px; - padding-right: 3px; -} - -div.div-label-left div.label { - width: auto; - clear: both; - margin-left: -15px; - padding: 5px; - padding-left: 15px; - text-align: left; -} - -div.div-label-left div.label:hover { - background: none; -} - -/* Monitoring */ - -aside div.table { - margin-top: 5px; -} - -h3.small { - font-size: 12px; - margin: 0px; - padding: 3px 0px; -} - -table.tablesorter th.lpadding16 { - padding-left: 16px; -} - -div.right.slim { - padding: 5px 14px 40px; - width: 695px; -} - -img.delete-row { - cursor: pointer; -} -table tbody { - .error td { background: #fedede; } - .success td { background: #e3edb7; } - .warning td { background: #FCF8E3; } -} - -/* Create group */ - -div.right-error { - float: left; - width: 369px; - height: 59px; - background: image-url("error-groups.png"); - margin: 0px 0px 5px -3px; - text-align: center; -} - -div.right-error p { - margin: 0; - padding: 27px 0px 0px 0px; -} - -div.rightlist.nomargin { - margin: 0; -} - -article div.rightlist input.error { - border: 1px solid #bd4d40; - -webkit-box-shadow: 0px 0px 2px 0px rgba(189, 77, 64, 1); - -moz-box-shadow: 0px 0px 2px 0px rgba(189, 77, 64, 1); - box-shadow: 0px 0px 2px 0px rgba(189, 77, 64, 1); -} - -/* Group pages */ - -article div.groups-profile { - float: left; -} - -article div.groups-profile a { - margin: 0px 0px 0px 5px; -} - -article div.groups-profile img { - margin: 2px 0px 0px 0px; -} - -table.tablesorter.group-list th.th2 { - width: 540px; -} - -/* Platform */ - -table.tablesorter.create-platform th.th1 { - /*padding-left: 17px;*/ - width: 120px; -} - -div.right div.left { - float: left; - margin-right: 5px; -} -table.tablesorter.platform-products th.th1 { - /*padding-left: 17px;*/ - width: 560px; -} - -table.tablesorter.platform-products td.td2 { - text-align: center; -} - -table.tablesorter.platform-repos th.th1 { - /*padding-left: 17px;*/ - width: 480px; -} - -table.tablesorter.platform-repos th.th2 { - /*padding-left: 17px;*/ - width: 80px; -} - -table.tablesorter.platform-repos td.td3 { - text-align: center; -} - -div.new-owner div.field { - float: left; - margin-right: 10px; -} - -div.new-owner div.field input { - width: 230px; -} - -div.new-owner div.search { - float: left; -} - -.tpadding10 { - padding-top: 10px; -} - -article div.all div.hr { - border-bottom: 1px solid #dedede; - width: 565px; - padding-top: 30px; - margin-bottom: 30px; -} - -table.tablesorter.platform-product-main th.th1 { - /*padding-left: 17px;*/ - width: 60px; -} - -table.tablesorter.platform-product-main th.th2 { - /*padding-left: 17px;*/ - width: 400px; -} - -table.tablesorter.platform-product-main th.th3 { - padding-left: 0px; -} - -table.tablesorter.platform-product-main th.th4 { - /*padding-left: 17px;*/ - width: 150px; -} - -div.right.rpadding0 { - padding-right: 0px; -} - -article div.loadFile div.btn { - float: left; -} - -article div.loadFile div.name { - float: left; - margin-left: 20px; - padding-top: 4px; -} - -/* Profile */ - -.bpadding10 { - padding-bottom: 10px; -} - -article div.rightlist div.load { - float: left; - margin-left: 40px; -} - -.notify { - border: 1px solid #c86b60; - background: #f4e1df; - border-radius: 4px; - width: 100%; - margin-top: 20px; -} - -.notify p { - padding: 5px 10px; -} - -.notify.blue { - border: 1px solid #a9c6dd; - background: #dcecfa; - border-radius: 1px; - width: 555px; - margin-top: 20px; - text-align: right; - padding: 5px; -} - -.notify.blue div.green { - border: 1px solid #bad099; - background: #d7e599; - float: left; -} - -/* Pagination */ - -div.pagination em { - font-style: normal; -} - -div.pagination em, div.pagination span, div.pagination a { - border: 1px solid #dddddd; - border-radius: 1px; - background: #ededed; - padding: 3px 7px; -} - -div.pagination em.current { - background: #d5e7f9; - border: 1px solid #c1daed; -} - -div.pagination a { - color: #4c90d0; -} - -/*404*/ - -article div.all.error404 { - background: image-url("404.png") no-repeat 49% 0; - height: 500px; - text-align: center; -} - -article div.all.error404 h1 { - margin: 0; - padding: 0; - margin-top: 165px; - font-size: 48px; - font-weight: normal; -} - -article div.all.error404 h1 span { - color: #4496d0; -} - -article div.all.error404 h2 { - margin: 0; - padding: 0; - margin-top: 5px; - font-size: 18px; - font-weight: normal; -} - -article div.all.error404 p { - margin: 0 auto; - padding: 0; - text-align: center; - font-size: 14px; -} - -article div.all.error404 p.pages { - margin-top: 72px; - width: 280px; -} - -article div.all.error404 p.search { - margin-top: 80px; - width: 230px; -} - -/*500*/ - -article div.all.error500 { - background: image-url("500.png") no-repeat 49% 0; - height: 500px; - text-align: center; -} - -article div.all.error500 h1 { - margin: 0; - padding: 0; - margin-top: 135px; - font-size: 48px; - font-weight: normal; -} - -article div.all.error500 h1 span { - color: #4496d0; -} - -article div.all.error500 h2 { - margin: 0; - padding: 0; - margin-top: 5px; - font-size: 18px; - font-weight: normal; - text-align: left; - margin-left: 298px; -} - -article div.all.error500 p { - margin: 0 auto; - padding: 0; - text-align: center; - font-size: 14px; -} - -article div.all.error500 p.pages { - margin-top: 55px; - width: 280px; -} - -article div.all.error500 p.search { - margin-top: 80px; - width: 230px; -} - -/*503*/ - -article div.all.error503 { - background: image-url("503.png") no-repeat 50% 0; - height: 500px; - text-align: center; -} - -article div.all.error503 h1 { - margin: 0; - padding: 0; - margin-top: 395px; - font-size: 38px; - font-weight: normal; - text-align: center; - -} - -article div.all.error503 h1 span { - color: #4496d0; -} - -article div.all.error503 h2 { - margin: 0; - padding: 0; - margin-top: 25px; - font-size: 18px; - font-weight: normal; - text-align: left; - margin-left: 215px; -} - -article div.all.error503 { - min-height: 630px; -} - -article div.all.error503 h2 span { - color: #4496d0; -} - -div.wrap.tmargin30 { - margin-top: 30px; - min-height: 91%; -} - -/*search*/ - -input.button.width100 { - width: 100px; -} - -input[type="text"].exsearch { - height: 16px; - border: 1px solid #dedede; - border-radius: 4px; - padding: 5px; - font-family: Tahoma, Geneva, Helvetica, sans-serif; - font-size: 12px; - width: 520px; - margin-right: 10px; -} - -div.lineForm.leftside.rmargin10 { - margin-right: 10px; -} - -table.tablesorter.bmargin5 { - margin-bottom: 1px; -} - -div.width400 { - width: 400px; - float: left; -} - -div.width400.rmargin55 { - margin-right: 55px; -} - -div.tmargin10 { - margin-top: 10px; -} - -.tmargin10 { - margin-top: 10px; -} - -a.lmargin7 { - margin-left: 7px; -} - -a.lmargin5 { - margin-left: 5px; -} - -/*My projects*/ - -table.tablesorter tr.search td { - background: #dcecfa; -} - -table.tablesorter tr.search td input[type="text"] { - height: 16px; - width: 830px; - border: 1px solid #cdcdcd; - border-radius: 4px; - padding: 5px; - font-family: Tahoma, Geneva, Helvetica, sans-serif; - font-size: 12px; - margin-top: 2px; -} - - -table.tablesorter.width565 { - width: 565px; -} - -article h3 a { - font-size: 14px; -} - -/*Wiki*/ - -div#wiki-content div.wrap { - width: 100%; - text-align: left; - border: none; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; - background: #FFF; - margin-top: 20px; -} - -div#wiki-content div#wiki-body { - float: left; - width: 410px; - margin: 0px 0px 20px; -} - -div#wiki-content div#wiki-rightbar { - float: right; - width: 170px; -} - -div#wiki-content div#wiki-footer { - clear: both; - margin: 20px 0px; -} - -div#wiki-content div#wiki-rightbar, div#wiki-content div#wiki-footer { - background-color: #f7f7f7; - border: 1px solid #DDDDDD; - border-radius: 3px; - line-height: 1.5em; - padding: 10px 20px; -} - -div#gollum-footer { - color: #727272; -} diff --git a/app/assets/stylesheets/design/profile.scss b/app/assets/stylesheets/design/profile.scss deleted file mode 100644 index c38277c3d..000000000 --- a/app/assets/stylesheets/design/profile.scss +++ /dev/null @@ -1,145 +0,0 @@ -.row { - .span3.profile { - .avatar { - float: left; - width: 81px; - height: 81px; - } - .base_info { - float: left; - width: 134px; - h3 { - margin: 0 0 0 10px; - } - p { - height: 35px; - margin-left: 10px; - } - a { - margin: 16px 0 0 10px; - } - } - p.first { - margin-top: 10px; - } - p.info { - max-width: 220px; - } - } -} -hr.profile_line { - margin: 20px 0; - width: 865px; -} -.profile-content { - border: 3px solid #D4D4D4; - .search { - border: 2px solid #D4D4D4; - float: left; - margin: 15px 10px; - width: 837px; - .pic { - background: url("/assets/search-button.png") repeat scroll 0 0 transparent; - float: left; - height: 22px; - width: 24px; - } - .field { - float: left; - margin: -1px 0 0; - width: 750px; - input { - background: none repeat scroll 0 0 transparent; - border: medium none; - font-family: Arial; - font-size: 12px; - height: 18px; - padding: 2px 0 0; - width: 700px; - } - input.gray { - color: #CFCFCF; - } - input.black { - color: #333333; - } - } - } - table { - border: none; - border-collapse:collapse; - margin: 0 9px 10px 9px; - width: 844px; - th { - padding-left: 10px; - width: 411px; - .project-link { - margin-top: 5px; - float: left; - } - } - tr.odd { - } - tr.even { - background: #EDEDED; - } - .row-fluid { - max-height: 16px; - .span3 { - font-size: 10px; - font-weight: normal; - max-height: 16px; - min-height: 16px; - } - .span3.datetime_moment { - margin-right: 15px; - color: gray; - } - } - } - .span12.content { - background: url(/assets/bg_blue.png); - height: 30px; - margin-bottom: 0px; - nav { - ul { - list-style: none; - padding-left: 0; - margin: 4px 0 0 5px; - li { - text-decoration: none; - padding: 0 10px 6px 0; - a { - color: white; - font-weight: bold; - font-size: 14px; - padding: 0 10px 9px 10px; - } - a.active { - background: image-url("profile-hover.png") repeat-x scroll 0 100% transparent; - } - } - } - } - } - .span12.sub-menu { - height: 30px; - background: #EDEDED; - margin: 0; - box-shadow: none; - padding-left: 0px; - nav { - ul { - list-style: none; - padding: 0; - margin: 6px 0 0 5px; - a { - padding: 0 10px 9px 10px; - } - a.active { - background: image-url("profile-hover.png") repeat-x scroll 0 100% transparent; - } - } - } - } -} diff --git a/app/assets/stylesheets/design/statistics.scss b/app/assets/stylesheets/design/statistics.scss deleted file mode 100644 index fa0973116..000000000 --- a/app/assets/stylesheets/design/statistics.scss +++ /dev/null @@ -1,14 +0,0 @@ -#manage-statistics { - .graph-key-color1 { background-color: #38849e; } - .graph-key-color2 { background-color: #4da944; } - .graph-key-color3 { background-color: #f18049; } - .graph-key-color4 { background-color: #aec7e8; } - .graph-key-color5 { background-color: #ffbb78; } - - .graph-wrapper h3 span { - display: inline-block; - width: 10px; - height: 10px; - margin-left: 15px; - } -} \ No newline at end of file diff --git a/app/assets/stylesheets/tour.scss b/app/assets/stylesheets/tour.scss deleted file mode 100644 index 0697bd030..000000000 --- a/app/assets/stylesheets/tour.scss +++ /dev/null @@ -1,458 +0,0 @@ -html, body { - margin: 0; - padding: 0; - font-family: Tahoma, Geneva, Helvetica, sans-serif; - color: #292929; - background: #1f60a1 image-url("bg.png") repeat-x; - min-width: 940px; - min-height: 600px; - text-align: center; - height: 100%; -} - -header, section, footer, aside, nav, article, menu { - display: block; -} - -input[type="text"]:focus { outline: none; } - -input[type="password"]:focus { outline: none; } - -input:focus { outline: none; } - -select:focus { outline: none; } - -a img { border: none; } - -.wrap { - width: 940px; - margin: 0 auto; - text-align: center; - border: 1px solid #3f668c; - -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5); - -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5); - box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.5); - background: #FFF; - min-height: 92%; -} - - - -.both { - clear: both; -} - -/* Top menu */ - -header { - -webkit-box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.4); - -moz-box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.4); - box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.4); - position: relative; - z-index: 1000; -} - -header div.left { - background: image-url("top-left-tour.png"); - height: 46px; - width: 14px; - float: left; -} - -header div.middle { - background: image-url("top-middle.png"); - float: left; - height: 46px; - width: 912px; -} - -header div.right { - background: image-url("top-right-tour.png"); - height: 46px; - width: 14px; - float: right; -} - -/* Left part of top menu*/ - -header menu { - float: left; - margin: 0; - padding: 0; -} - -header menu ul { - list-style: none; - margin: 0; - padding-top: 10px; -} - -header menu ul li { - display: inline; -} - -header menu ul li a { - font-size: 12px; - color: #FFF; - text-decoration: none; - height: 43px; - padding: 15px 10px 15px 10px; -} - -header menu ul li a:hover { - color: #cee7ff; -} - -header menu ul li a.first { - -} - -header menu ul li a.active { - background: image-url("menu-hover.png") repeat-x; -} - - - -header div.logo { - float: left; - margin-top: 5px; - padding-left: 0px; - padding-right: 0px; - -} - -/* Right part of top menu */ - -header div.information { - float: right; -} - -header div.search { - float: left; - margin: 10px 0px 0px 0px; - -moz-border-radius-topleft: 3px; - -moz-border-radius-topright: 3px; - -moz-border-radius-bottomright: 3px; - -moz-border-radius-bottomleft: 3px; - -webkit-border-radius: 3px 3px 3px 3px; - border-radius: 3px 3px 3px 3px; - background: #FFF; - border: 1px solid #7691aa; -} - -header div.search div.pic { - background: image-url("search-button.png"); - height: 22px; - width: 24px; - float: left; -} - -header div.search div.field { - float: left; - margin: -1px 0px 0px 0px; -} - -header div.search div.field input { - border: none; - height: 18px; - background: none; - width: 132px; - font-size: 12px; - font-family: Arial; - padding: 2px 0px 0px 0px; -} - -header div.search div.field input.gray { - color: #cfcfcf; -} - -header div.search div.field input.black { - color: #333333; -} - -header div.avatar { - float:left; - padding: 6px 10px 10px 10px; - -} - -header div.information div.active { - background: image-url("menu-hover.png") repeat-x; -} - -header div.information div.user { - float: left; - margin-left: 14px; -} - -header div.profile { - float: left; - text-align: right; - color: #FFF; - font-size: 12px; - padding-top: 12px; -} - -header div.profile a { - color: #FFF; - text-decoration: none; - padding-right: 10px; -} - -header div.profile a:hover { - text-decoration: underline; -} - - -header div.droplist-wrap { - margin: -4px 0px 0px 0px; - width: 151px; - float: right; -} - -header div.droplist { - background: image-url("bg-droplist.png") repeat-x; - height: 91px; - width: 151px; - -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5); - -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5); - box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5); - position: absolute; - margin-top: 0px; - border-radius: 0px 0px 4px 4px; - display: none; - text-align: right; - z-index: 9999; -} - -header div.droplist-wrap div.a { - margin-top: 5px; -} - -header div.droplist a{ - position: relative; - padding-left: 15px; - font-size: 12px; - color: #447cae; - text-decoration: none; - padding-right: 15px; - margin-top: 10px; -} - -header div.droplist a:hover{ - text-decoration: underline; -} - - -/* Submenu */ - -.sub-menu { - height: 38px; - margin: -7px 0px 0px 0px; - padding: 0px 0px 0px 15px; - background: #ededed; - position: relative; - z-index: 100; - border-bottom: 1px solid #FFF; - -webkit-box-shadow: 0px 5px 3px -3px rgba(18, 86, 135, 0.2); - -moz-box-shadow: 0px 5px 3px -3px rgba(18, 86, 135, 0.2); - box-shadow: 0px 5px 3px -3px rgba(18, 86, 135, 0.2); -} - -.sub-menu div.left { - float: left; - width: 200px; - border-right: 1px solid #dcdcdc; - font-size: 12px; - text-align: left; - font-weight: 700; - padding: 10px 0px 0px 0px; - height: 21px; -} - -.sub-menu div.right { - float: left; -} - - -.sub-menu nav { - float: left; - margin: 0px 0px 0px 0px; -} - -.sub-menu nav ul { - list-style: none; - text-align: left; - padding: 0; - margin: 0; - padding-top: 4px; -} - -.sub-menu nav ul li { - display: inline; -} - -.sub-menu nav ul li a { - font-size: 12px; - color: #292929; - text-decoration: none; - height: 34px; - padding: 0px 20px 9px 20px; -} - -.sub-menu nav ul li a.active { - background: image-url("submenu-hover.png") repeat-x scroll 0 100% transparent; -} - -.sub-menu nav ul li a:hover { - color: #2b6daf; -} - -/* Page markup */ - -article { - font-size: 12px; -} - -article a{ - color: #447cae; - font-size: 12px; - text-decoration: none; - padding: 0px 0px; -} - -article a:hover{ - text-decoration: underline; -} - - - -/* Footer */ - -footer { - height: 32px; - padding-left: 15px; - width: 900px; - margin: 0 auto; - text-align: center; -} - -footer ul { - margin: 0; - padding: 0; - list-style: none; - font-size: 12px; - color: #FFF; - padding-top: 10px; - text-align: left; -} - -footer ul li { - display: inline; -} - -footer ul li a { - font-size: 12px; - color: #FFF; - text-decoration: none; -} - -footer ul li a:hover { - text-decoration: underline; -} - - - -/*TOUR*/ - -header.top { - position: relative; - z-index: 3; - background: none; - background: image-url("tour-top.png") no-repeat 0 0; -} - -header.tour { - height: 194px; - position: relative; - z-index: 2; -} - -div.sub-menu.tour { - padding: 10px 0 0 0; - height: 35px; - text-align: center; - position: relative; - z-index: 1; -} - -div.sub-menu.tour nav { - float: none; -} - -div.sub-menu.tour nav ul { - text-align: center; -} - -div.sub-menu.tour nav li a { - font-size: 18px; - color: #575756; -} - -article div.feature-wrap { - background: image-url("tour-bg.png") repeat-x 0 100%; - text-align: center; - margin-top: 20px; -} - -article div.feature { - width: 744px; - text-align: center; - margin: 0 auto; -} - -article div.feature div { - width: 362px; - text-align: left; -} - -article div.feature div img{ - padding-bottom: 50px; -} - -article div.feature div h1 { - font-size: 24px; - color: #7eb7ed; - margin: -4px 0 10px 0; - padding: 0; -} - -article div.feature div p { - font-size: 12px; - color: #58595b; - padding-bottom: 50px; -} - -article div.feature div.left { - float: left; -} - -article div.feature div.right { - float: right; - padding: 0; -} - -article div.tour-gap { - height: 330px; - width: 10px; -} - -@import "pirobox"; - -/* Custom */ -header menu ul li a { - padding: 15px 8px 15px 8px; -} - -@import "design/common"; - diff --git a/vendor/assets/javascripts/bootstrap-alert.js b/vendor/assets/javascripts/bootstrap-alert.js deleted file mode 100644 index 57890a9a2..000000000 --- a/vendor/assets/javascripts/bootstrap-alert.js +++ /dev/null @@ -1,90 +0,0 @@ -/* ========================================================== - * bootstrap-alert.js v2.0.4 - * http://twitter.github.com/bootstrap/javascript.html#alerts - * ========================================================== - * Copyright 2012 Twitter, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ========================================================== */ - - -!function ($) { - - "use strict"; // jshint ;_; - - - /* ALERT CLASS DEFINITION - * ====================== */ - - var dismiss = '[data-dismiss="alert"]' - , Alert = function (el) { - $(el).on('click', dismiss, this.close) - } - - Alert.prototype.close = function (e) { - var $this = $(this) - , selector = $this.attr('data-target') - , $parent - - if (!selector) { - selector = $this.attr('href') - selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 - } - - $parent = $(selector) - - e && e.preventDefault() - - $parent.length || ($parent = $this.hasClass('alert') ? $this : $this.parent()) - - $parent.trigger(e = $.Event('close')) - - if (e.isDefaultPrevented()) return - - $parent.removeClass('in') - - function removeElement() { - $parent - .trigger('closed') - .remove() - } - - $.support.transition && $parent.hasClass('fade') ? - $parent.on($.support.transition.end, removeElement) : - removeElement() - } - - - /* ALERT PLUGIN DEFINITION - * ======================= */ - - $.fn.alert = function (option) { - return this.each(function () { - var $this = $(this) - , data = $this.data('alert') - if (!data) $this.data('alert', (data = new Alert(this))) - if (typeof option == 'string') data[option].call($this) - }) - } - - $.fn.alert.Constructor = Alert - - - /* ALERT DATA-API - * ============== */ - - $(function () { - $('body').on('click.alert.data-api', dismiss, Alert.prototype.close) - }) - -}(window.jQuery); \ No newline at end of file diff --git a/vendor/assets/javascripts/bootstrap-button.js b/vendor/assets/javascripts/bootstrap-button.js deleted file mode 100644 index 6b36753d8..000000000 --- a/vendor/assets/javascripts/bootstrap-button.js +++ /dev/null @@ -1,100 +0,0 @@ -/* ============================================================ - * bootstrap-button.js v2.0.2 - * http://twitter.github.com/bootstrap/javascript.html#buttons - * ============================================================ - * Copyright 2012 Twitter, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ============================================================ */ - -!function( $ ){ - - "use strict" - - /* BUTTON PUBLIC CLASS DEFINITION - * ============================== */ - - var Button = function ( element, options ) { - this.$element = $(element) - this.options = $.extend({}, $.fn.button.defaults, options) - } - - Button.prototype = { - - constructor: Button - - , setState: function ( state ) { - var d = 'disabled' - , $el = this.$element - , data = $el.data() - , val = $el.is('input') ? 'val' : 'html' - - state = state + 'Text' - data.resetText || $el.data('resetText', $el[val]()) - - $el[val](data[state] || this.options[state]) - - // push to event loop to allow forms to submit - setTimeout(function () { - state == 'loadingText' ? - $el.addClass(d).attr(d, d) : - $el.removeClass(d).removeAttr(d) - }, 0) - } - - , toggle: function () { - var $parent = this.$element.parent('[data-toggle="buttons-radio"]') - - $parent && $parent - .find('.active') - .removeClass('active') - - this.$element.toggleClass('active') - } - - } - - - /* BUTTON PLUGIN DEFINITION - * ======================== */ - - $.fn.button = function ( option ) { - return this.each(function () { - var $this = $(this) - , data = $this.data('button') - , options = typeof option == 'object' && option - if (!data) $this.data('button', (data = new Button(this, options))) - if (option == 'toggle') data.toggle() - else if (option) data.setState(option) - }) - } - - $.fn.button.defaults = { - loadingText: 'loading...' - } - - $.fn.button.Constructor = Button - - - /* BUTTON DATA-API - * =============== */ - - $(function () { - $('body').on('click.button.data-api', '[data-toggle^=button]', function ( e ) { - var $btn = $(e.target) - if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn') - $btn.button('toggle') - }) - }) - -}( window.jQuery ); \ No newline at end of file diff --git a/vendor/assets/javascripts/bootstrap-dropdown.js b/vendor/assets/javascripts/bootstrap-dropdown.js deleted file mode 100644 index 54b61c5e9..000000000 --- a/vendor/assets/javascripts/bootstrap-dropdown.js +++ /dev/null @@ -1,92 +0,0 @@ -/* ============================================================ - * bootstrap-dropdown.js v2.0.2 - * http://twitter.github.com/bootstrap/javascript.html#dropdowns - * ============================================================ - * Copyright 2012 Twitter, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ============================================================ */ - - -!function( $ ){ - - "use strict" - - /* DROPDOWN CLASS DEFINITION - * ========================= */ - - var toggle = '[data-toggle="dropdown"]' - , Dropdown = function ( element ) { - var $el = $(element).on('click.dropdown.data-api', this.toggle) - $('html').on('click.dropdown.data-api', function () { - $el.parent().removeClass('open') - }) - } - - Dropdown.prototype = { - - constructor: Dropdown - - , toggle: function ( e ) { - var $this = $(this) - , selector = $this.attr('data-target') - , $parent - , isActive - - if (!selector) { - selector = $this.attr('href') - selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 - } - - $parent = $(selector) - $parent.length || ($parent = $this.parent()) - - isActive = $parent.hasClass('open') - - clearMenus() - !isActive && $parent.toggleClass('open') - - return false - } - - } - - function clearMenus() { - $(toggle).parent().removeClass('open') - } - - - /* DROPDOWN PLUGIN DEFINITION - * ========================== */ - - $.fn.dropdown = function ( option ) { - return this.each(function () { - var $this = $(this) - , data = $this.data('dropdown') - if (!data) $this.data('dropdown', (data = new Dropdown(this))) - if (typeof option == 'string') data[option].call($this) - }) - } - - $.fn.dropdown.Constructor = Dropdown - - - /* APPLY TO STANDARD DROPDOWN ELEMENTS - * =================================== */ - - $(function () { - $('html').on('click.dropdown.data-api', clearMenus) - $('body').on('click.dropdown.data-api', toggle, Dropdown.prototype.toggle) - }) - -}( window.jQuery ); \ No newline at end of file diff --git a/vendor/assets/javascripts/bootstrap-modal.js b/vendor/assets/javascripts/bootstrap-modal.js deleted file mode 100644 index e92970627..000000000 --- a/vendor/assets/javascripts/bootstrap-modal.js +++ /dev/null @@ -1,210 +0,0 @@ -/* ========================================================= - * bootstrap-modal.js v2.0.2 - * http://twitter.github.com/bootstrap/javascript.html#modals - * ========================================================= - * Copyright 2012 Twitter, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ========================================================= */ - - -!function( $ ){ - - "use strict" - - /* MODAL CLASS DEFINITION - * ====================== */ - - var Modal = function ( content, options ) { - this.options = options - this.$element = $(content) - .delegate('[data-dismiss="modal"]', 'click.dismiss.modal', $.proxy(this.hide, this)) - } - - Modal.prototype = { - - constructor: Modal - - , toggle: function () { - return this[!this.isShown ? 'show' : 'hide']() - } - - , show: function () { - var that = this - - if (this.isShown) return - - $('body').addClass('modal-open') - - this.isShown = true - this.$element.trigger('show') - - escape.call(this) - backdrop.call(this, function () { - var transition = $.support.transition && that.$element.hasClass('fade') - - !that.$element.parent().length && that.$element.appendTo(document.body) //don't move modals dom position - - that.$element - .show() - - if (transition) { - that.$element[0].offsetWidth // force reflow - } - - that.$element.addClass('in') - - transition ? - that.$element.one($.support.transition.end, function () { that.$element.trigger('shown') }) : - that.$element.trigger('shown') - - }) - } - - , hide: function ( e ) { - e && e.preventDefault() - - if (!this.isShown) return - - var that = this - this.isShown = false - - $('body').removeClass('modal-open') - - escape.call(this) - - this.$element - .trigger('hide') - .removeClass('in') - - $.support.transition && this.$element.hasClass('fade') ? - hideWithTransition.call(this) : - hideModal.call(this) - } - - } - - - /* MODAL PRIVATE METHODS - * ===================== */ - - function hideWithTransition() { - var that = this - , timeout = setTimeout(function () { - that.$element.off($.support.transition.end) - hideModal.call(that) - }, 500) - - this.$element.one($.support.transition.end, function () { - clearTimeout(timeout) - hideModal.call(that) - }) - } - - function hideModal( that ) { - this.$element - .hide() - .trigger('hidden') - - backdrop.call(this) - } - - function backdrop( callback ) { - var that = this - , animate = this.$element.hasClass('fade') ? 'fade' : '' - - if (this.isShown && this.options.backdrop) { - var doAnimate = $.support.transition && animate - - this.$backdrop = $('