2011-10-08 23:36:38 +02:00
|
|
|
// Place all the styles related to the Projects controller here.
|
|
|
|
// They will automatically be included in application.css.
|
|
|
|
// You can use Sass (SCSS) here: http://sass-lang.com/
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
@mixin round-borders-bottom($radius) {
|
2011-10-08 23:36:38 +02:00
|
|
|
border-top: 1px solid #eaeaea;
|
|
|
|
|
|
|
|
-moz-border-radius-bottomright: $radius;
|
|
|
|
-moz-border-radius-bottomleft: $radius;
|
|
|
|
|
|
|
|
border-bottom-right-radius: $radius;
|
|
|
|
border-bottom-left-radius: $radius;
|
|
|
|
|
|
|
|
-webkit-border-bottom-left-radius: $radius;
|
|
|
|
-webkit-border-bottom-right-radius: $radius;
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
@mixin round-borders-top($radius) {
|
2011-10-08 23:36:38 +02:00
|
|
|
border-top: 1px solid #eaeaea;
|
|
|
|
|
|
|
|
-moz-border-radius-topright: $radius;
|
|
|
|
-moz-border-radius-topleft: $radius;
|
|
|
|
|
|
|
|
border-top-right-radius: $radius;
|
|
|
|
border-top-left-radius: $radius;
|
|
|
|
|
|
|
|
-webkit-border-top-left-radius: $radius;
|
|
|
|
-webkit-border-top-right-radius: $radius;
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
@mixin round-borders-all($radius) {
|
2011-10-08 23:36:38 +02:00
|
|
|
border: 1px solid #eaeaea;
|
|
|
|
-moz-border-radius: $radius;
|
|
|
|
-webkit-border-radius: $radius;
|
|
|
|
border-radius: $radius;
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
@mixin hover-color {
|
2011-10-08 23:36:38 +02:00
|
|
|
background: #fff !important;
|
|
|
|
background: -webkit-gradient(linear,left top,left bottom,from(#fff),to(#FFF6BF)) !important;
|
|
|
|
background: -moz-linear-gradient(top,#fff,#FFF6BF) !important;
|
|
|
|
background: transparent 9 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.diff_file {
|
|
|
|
border:1px solid #CCC;
|
|
|
|
margin-bottom:1em;
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
.diff_file_header {
|
2011-10-08 23:36:38 +02:00
|
|
|
padding:5px 5px;
|
|
|
|
border-bottom:1px solid #CCC;
|
|
|
|
background: #eee;
|
|
|
|
}
|
2011-10-26 15:46:25 +02:00
|
|
|
.diff_file_content {
|
2011-10-08 23:36:38 +02:00
|
|
|
overflow-x: scroll;
|
|
|
|
background:#fff;
|
|
|
|
color:#333;
|
|
|
|
font-size: 12px;
|
|
|
|
font-family: 'Courier New', 'andale mono','lucida console',monospace;
|
|
|
|
}
|
2011-10-26 15:46:25 +02:00
|
|
|
.diff_file_content_image {
|
2011-10-08 23:36:38 +02:00
|
|
|
background:#eee;
|
|
|
|
text-align:center;
|
2011-10-26 15:46:25 +02:00
|
|
|
img {
|
2011-10-08 23:36:38 +02:00
|
|
|
padding:100px;
|
|
|
|
max-width:300px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
#logo {
|
|
|
|
&:hover {
|
2011-10-08 23:36:38 +02:00
|
|
|
background:none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
.file_stats {
|
2011-10-08 23:36:38 +02:00
|
|
|
margin-bottom:10px;
|
|
|
|
@include round-borders-all(4px);
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
span {
|
2011-10-08 23:36:38 +02:00
|
|
|
border-top: 1px solid #eaeaea;
|
|
|
|
padding:5px 5px;
|
|
|
|
display:block;
|
2011-10-26 15:46:25 +02:00
|
|
|
&:first-child {
|
2011-10-08 23:36:38 +02:00
|
|
|
border-top:none;
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
img {
|
2011-10-08 23:36:38 +02:00
|
|
|
width:18px;
|
|
|
|
float:left;
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
.round-borders {
|
2011-10-08 23:36:38 +02:00
|
|
|
@include round-borders-all(4px);
|
|
|
|
padding: 4px 0px;
|
|
|
|
}
|
2011-10-26 15:46:25 +02:00
|
|
|
table.round-borders {
|
2011-10-08 23:36:38 +02:00
|
|
|
float:left;
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
.day-commits-table {
|
2011-10-08 23:36:38 +02:00
|
|
|
@include round-borders-all(4px);
|
|
|
|
padding: 4px 0px;
|
|
|
|
margin-bottom:10px;
|
|
|
|
display:block;
|
|
|
|
width:100%;
|
|
|
|
background: #E6F1F6;
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
.day-header {
|
2011-10-08 23:36:38 +02:00
|
|
|
padding:10px;
|
|
|
|
h3 {
|
|
|
|
margin:0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
ul {
|
2011-10-08 23:36:38 +02:00
|
|
|
display:block;
|
|
|
|
list-style:none;
|
|
|
|
margin:0px;
|
|
|
|
padding:0px;
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
li.commit {
|
2011-10-08 23:36:38 +02:00
|
|
|
display:list-item;
|
|
|
|
padding:8px;
|
|
|
|
margin:0px;
|
|
|
|
background: #F7FBFC;
|
|
|
|
border-top: 1px solid #E2EAEE;
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
&:first-child {
|
2011-10-08 23:36:38 +02:00
|
|
|
border-top: 1px solid #E2EAEE;
|
|
|
|
}
|
|
|
|
&:nth-child(2n+1) {
|
|
|
|
background: white;
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
a.button {
|
2011-10-08 23:36:38 +02:00
|
|
|
width:85px;
|
|
|
|
padding:10px;
|
|
|
|
margin:0px;
|
|
|
|
float:right;
|
|
|
|
}
|
2011-10-26 15:46:25 +02:00
|
|
|
p {
|
2011-10-08 23:36:38 +02:00
|
|
|
margin-bottom: 3px;
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-10-26 15:46:25 +02:00
|
|
|
@mixin panel-color {
|
2011-10-08 23:36:38 +02:00
|
|
|
background: #111 !important;
|
|
|
|
background: -webkit-gradient(linear,left top,left bottom,from(#333),to(#111)) !important;
|
|
|
|
background: -moz-linear-gradient(top,#333,#111) !important;
|
|
|
|
background: transparent 9 !important;
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
#header-panel {
|
2011-10-08 23:36:38 +02:00
|
|
|
@include panel-color;
|
|
|
|
height:40px;
|
|
|
|
position:fixed;
|
|
|
|
z-index:999;
|
|
|
|
top:0px;
|
|
|
|
width:100%;
|
|
|
|
margin-bottom:10px;
|
|
|
|
overflow:hidden;
|
|
|
|
.button{
|
|
|
|
color:#bbb;
|
|
|
|
border:none;
|
|
|
|
margin:0px;
|
|
|
|
height:25px;
|
|
|
|
background:transparent;
|
|
|
|
padding:10px 20px 5px 20px;
|
|
|
|
&:hover{
|
|
|
|
color:white;
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
&.current {
|
2011-10-08 23:36:38 +02:00
|
|
|
border-bottom: 3px solid #EAEAEA !important;
|
|
|
|
padding: 10px 20px 0;
|
|
|
|
color: #eaeaea;
|
|
|
|
}
|
|
|
|
}
|
2011-10-26 15:46:25 +02:00
|
|
|
.search-holder {
|
2011-10-08 23:36:38 +02:00
|
|
|
float:left;
|
2011-10-26 15:46:25 +02:00
|
|
|
width:290px;
|
2011-10-08 23:36:38 +02:00
|
|
|
input {
|
|
|
|
@include round-borders-all(4px);
|
2011-10-26 15:46:25 +02:00
|
|
|
width:290px;
|
2011-10-08 23:36:38 +02:00
|
|
|
border-color:#888;
|
|
|
|
padding:5px;
|
|
|
|
background:#666;
|
|
|
|
color:#222;
|
2011-10-26 15:46:25 +02:00
|
|
|
&:focus {
|
2011-10-08 23:36:38 +02:00
|
|
|
background:#fff;
|
|
|
|
color:#000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#content-container{
|
|
|
|
min-height:250px;
|
|
|
|
background: #fff;
|
|
|
|
@include round-borders-bottom(8px);
|
|
|
|
borders:2px solid #eaeaea;
|
|
|
|
border-top: none;
|
|
|
|
padding:20px;
|
|
|
|
}
|
|
|
|
|
2011-10-28 13:41:39 +02:00
|
|
|
//body {
|
|
|
|
//background: #eaeaea;
|
|
|
|
//}
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: #111;
|
|
|
|
}
|
|
|
|
|
|
|
|
.diff_file_content{
|
2011-10-26 15:46:25 +02:00
|
|
|
.old_line, .new_line {
|
2011-10-08 23:36:38 +02:00
|
|
|
background:#ECECEC;
|
|
|
|
color:#777;
|
|
|
|
width:15px;
|
|
|
|
float:left;
|
|
|
|
padding: 0px 10px;
|
|
|
|
border-right: 1px solid #ccc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.view_file_content{
|
2011-10-26 15:46:25 +02:00
|
|
|
.old_line, .new_line {
|
2011-10-08 23:36:38 +02:00
|
|
|
background:#ECECEC;
|
|
|
|
color:#777;
|
|
|
|
width:15px;
|
|
|
|
float:left;
|
|
|
|
padding: 0px 10px;
|
|
|
|
border-right: 1px solid #ccc;
|
|
|
|
}
|
|
|
|
.old_line{
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.view_file {
|
|
|
|
border:1px solid #CCC;
|
|
|
|
margin-bottom:1em;
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
.view_file_header {
|
2011-10-08 23:36:38 +02:00
|
|
|
padding:5px 5px;
|
|
|
|
border-bottom:1px solid #CCC;
|
|
|
|
background: #eee;
|
|
|
|
}
|
2011-10-26 15:46:25 +02:00
|
|
|
.view_file_content {
|
2011-10-08 23:36:38 +02:00
|
|
|
background:#fff;
|
|
|
|
color:#514721;
|
|
|
|
font-size: 11px;
|
|
|
|
}
|
2011-10-26 15:46:25 +02:00
|
|
|
.view_file_content_image {
|
2011-10-08 23:36:38 +02:00
|
|
|
background:#eee;
|
|
|
|
text-align:center;
|
2011-10-26 15:46:25 +02:00
|
|
|
img {
|
2011-10-08 23:36:38 +02:00
|
|
|
padding:100px;
|
|
|
|
max-width:300px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.back_small.button{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
input.ssh_project_url {
|
2011-10-08 23:36:38 +02:00
|
|
|
padding:5px;
|
|
|
|
margin:0px;
|
|
|
|
float:right;
|
|
|
|
width:400px;
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
.day-commits-table li.commit {
|
2011-10-08 23:36:38 +02:00
|
|
|
cursor:pointer;
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
&:hover {
|
2011-10-08 23:36:38 +02:00
|
|
|
@include hover-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
#FFF6BF
|
|
|
|
#FFD324
|
|
|
|
*/
|
2011-10-26 15:46:25 +02:00
|
|
|
#tree-slider tr.tree-item {
|
2011-10-08 23:36:38 +02:00
|
|
|
cursor:pointer;
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
&:hover {
|
2011-10-08 23:36:38 +02:00
|
|
|
@include hover-color;
|
2011-10-26 15:46:25 +02:00
|
|
|
td {
|
2011-10-08 23:36:38 +02:00
|
|
|
@include hover-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-10-26 15:46:25 +02:00
|
|
|
#projects-list .project {
|
2011-10-08 23:36:38 +02:00
|
|
|
height:50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#projects-list .project,
|
2011-10-16 23:07:10 +02:00
|
|
|
#snippets-table .snippet,
|
2011-10-26 15:46:25 +02:00
|
|
|
#issues-table .issue{
|
2011-10-08 23:36:38 +02:00
|
|
|
cursor:pointer;
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
&:hover {
|
2011-10-08 23:36:38 +02:00
|
|
|
@include hover-color;
|
2011-10-26 15:46:25 +02:00
|
|
|
td {
|
2011-10-08 23:36:38 +02:00
|
|
|
@include hover-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
.clear {
|
2011-10-08 23:36:38 +02:00
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
.top_project_menu {
|
|
|
|
a {
|
2011-10-08 23:36:38 +02:00
|
|
|
border-right: 1px solid #FFFFFF;
|
|
|
|
box-shadow: -1px 0 #DDDDDD inset;
|
|
|
|
color: #666;
|
|
|
|
display: block;
|
|
|
|
font-size: 16px;
|
|
|
|
text-decoration: none;
|
|
|
|
line-height: 20px;
|
|
|
|
padding: 11px 26px 12px 24px;
|
|
|
|
text-shadow: 0 1px 0 #FFFFFF;
|
|
|
|
float:left;
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
&.current {
|
2011-10-08 23:36:38 +02:00
|
|
|
background-color: #FFFFFF;
|
|
|
|
color: #222222;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.top_bar {
|
|
|
|
margin-top:50px;
|
|
|
|
background-color: #F4F4F4;
|
|
|
|
@include round-borders-top(8px);
|
|
|
|
box-shadow: 0 1px #FFFFFF inset, 0 -1px #DDDDDD inset;
|
|
|
|
height: 43px;
|
|
|
|
overflow: hidden;
|
|
|
|
width:990px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** FORM INPUTS **/
|
|
|
|
|
|
|
|
.user_new,
|
|
|
|
.edit_user,
|
|
|
|
.new_project,
|
2011-10-16 23:07:10 +02:00
|
|
|
.new_snippet,
|
|
|
|
.edit_snippet,
|
2011-10-26 15:46:25 +02:00
|
|
|
.edit_project {
|
2011-10-08 23:36:38 +02:00
|
|
|
input[type='text'],
|
|
|
|
input[type='email'],
|
|
|
|
input[type='password'],
|
2011-10-26 15:46:25 +02:00
|
|
|
textarea {
|
2011-10-08 23:36:38 +02:00
|
|
|
width:400px;
|
|
|
|
padding:8px;
|
|
|
|
font-size:14px;
|
|
|
|
@include round-borders-all(4px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
.input_button {
|
2011-10-08 23:36:38 +02:00
|
|
|
//@include round-borders-all(4px);
|
|
|
|
padding:8px;
|
|
|
|
font-size:14px;
|
|
|
|
cursor:pointer;
|
|
|
|
background-color: #F5F5F5;
|
|
|
|
border-color: #EEEEEE #DEDEDE #DEDEDE #EEEEEE;
|
|
|
|
border-right: 1px solid #DEDEDE;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
tbody tr:nth-child(2n) td, tbody tr.even td {
|
|
|
|
background: none repeat scroll 0 0 #F7FBFC;
|
|
|
|
border-top: 1px solid #E2EAEE;
|
|
|
|
border-bottom: 1px solid #E2EAEE;
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
.top_menu_count {
|
2011-10-28 14:07:58 +02:00
|
|
|
background: none repeat scroll 0 0 white;
|
|
|
|
color: #333;
|
|
|
|
border-color: #4BB8D2;
|
2011-10-08 23:36:38 +02:00
|
|
|
padding: 2px;
|
2011-10-28 14:07:58 +02:00
|
|
|
font-size:10px;
|
2011-10-08 23:36:38 +02:00
|
|
|
border-top:none;
|
2011-10-28 14:07:58 +02:00
|
|
|
text-align:center;
|
|
|
|
float:right;
|
|
|
|
width:25px;
|
|
|
|
|
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#logo {
|
|
|
|
color: #EAEAEA;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 26px;
|
|
|
|
padding: 4px;
|
|
|
|
text-decoration: none;
|
|
|
|
text-shadow: #555 1px 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** FALSH **/
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
#flash_container {
|
2011-10-08 23:36:38 +02:00
|
|
|
height:40px;
|
|
|
|
position:fixed;
|
|
|
|
z-index:1009;
|
|
|
|
top:0px;
|
|
|
|
width:100%;
|
|
|
|
margin-bottom:10px;
|
|
|
|
overflow:hidden;
|
|
|
|
background:white;
|
|
|
|
cursor:pointer;
|
|
|
|
border-bottom:1px solid #777;
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
h4 {
|
2011-10-08 23:36:38 +02:00
|
|
|
color:#444;
|
|
|
|
font-size:22px;
|
|
|
|
padding-top:5px;
|
2011-10-28 17:25:00 +02:00
|
|
|
margin:2px;
|
2011-10-08 23:36:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Buttons **/
|
|
|
|
|
|
|
|
.lbutton,
|
|
|
|
.lite_button {
|
|
|
|
display:block;
|
|
|
|
float:left;
|
|
|
|
margin: 0px 5px;
|
|
|
|
padding:5px 10px;
|
|
|
|
|
|
|
|
font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;
|
|
|
|
border:1px solid #D3D3D3;
|
|
|
|
background:white;
|
2011-10-09 23:23:33 +02:00
|
|
|
font-size:12px !important;
|
2011-10-08 23:36:38 +02:00
|
|
|
line-height:130%;
|
|
|
|
text-decoration:none;
|
|
|
|
font-weight:bold;
|
|
|
|
color:#565656;
|
|
|
|
cursor:pointer;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
border:1px solid #C2E1EF;
|
|
|
|
color: #0099FF;
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
&.hm {
|
2011-10-08 23:36:38 +02:00
|
|
|
margin: 0px 0px;
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
&.vm {
|
2011-10-08 23:36:38 +02:00
|
|
|
margin: 5px 0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Notes **/
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
#notes-list {
|
2011-10-08 23:36:38 +02:00
|
|
|
display:block;
|
|
|
|
list-style:none;
|
|
|
|
margin:0px;
|
|
|
|
padding:0px;
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
li {
|
2011-10-08 23:36:38 +02:00
|
|
|
display:list-item;
|
|
|
|
padding:8px;
|
|
|
|
margin:0px;
|
|
|
|
background: #F7FBFC;
|
|
|
|
border-top: 1px solid #E2EAEE;
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
&:first-child {
|
2011-10-08 23:36:38 +02:00
|
|
|
border-top: none;
|
|
|
|
}
|
|
|
|
&:nth-child(2n+1) {
|
|
|
|
background: white;
|
|
|
|
}
|
2011-10-26 15:46:25 +02:00
|
|
|
p {
|
2011-10-20 18:21:58 +02:00
|
|
|
margin-bottom: 4px;
|
|
|
|
font-size: 13px;
|
|
|
|
color:#111;
|
|
|
|
}
|
|
|
|
}
|
2011-10-26 15:46:25 +02:00
|
|
|
cite {
|
|
|
|
&.ago {
|
2011-10-20 18:21:58 +02:00
|
|
|
color:#666;
|
2011-10-08 23:36:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
.notes_count {
|
2011-10-08 23:36:38 +02:00
|
|
|
background: none repeat scroll 0 0 #FFF6BF;
|
|
|
|
border-color: #FFD324;
|
|
|
|
color: #514721;
|
|
|
|
border: 2px solid #DDDDDD;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
margin-top: 3px;
|
|
|
|
padding: 2px 5px;
|
|
|
|
position: relative;
|
|
|
|
right: 6px;
|
|
|
|
top: 6px;
|
|
|
|
}
|
2011-10-26 15:46:25 +02:00
|
|
|
.note_author {
|
2011-10-08 23:36:38 +02:00
|
|
|
float:left;
|
|
|
|
width:60px;
|
|
|
|
}
|
2011-10-26 15:46:25 +02:00
|
|
|
.note_content {
|
2011-10-08 23:36:38 +02:00
|
|
|
float:left;
|
2011-10-20 18:21:58 +02:00
|
|
|
width:650px;
|
2011-10-08 23:36:38 +02:00
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
.issue_notes {
|
|
|
|
.note_content {
|
2011-10-08 23:36:38 +02:00
|
|
|
float:left;
|
|
|
|
width:400px;
|
|
|
|
}
|
|
|
|
}
|
2011-10-09 20:15:01 +02:00
|
|
|
|
|
|
|
#user_projects_limit{
|
2011-10-26 15:46:25 +02:00
|
|
|
width: 60px;
|
2011-10-09 20:15:01 +02:00
|
|
|
}
|
2011-10-11 22:00:00 +02:00
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
.project_thumb {
|
2011-10-11 22:00:00 +02:00
|
|
|
margin:20px 0;
|
|
|
|
width: 250px;
|
|
|
|
float:left;
|
|
|
|
padding:20px;
|
|
|
|
text-align:center;
|
2011-10-26 15:46:25 +02:00
|
|
|
p, h4 {
|
2011-10-11 22:00:00 +02:00
|
|
|
text-align:left;
|
|
|
|
}
|
2011-10-26 15:46:25 +02:00
|
|
|
.lbutton {
|
2011-10-11 22:00:00 +02:00
|
|
|
float:left;
|
|
|
|
}
|
|
|
|
}
|
2011-10-15 18:56:53 +02:00
|
|
|
|
|
|
|
.handle:hover{
|
|
|
|
cursor: move;
|
|
|
|
}
|
2011-10-15 19:41:38 +02:00
|
|
|
|
|
|
|
.handle{
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
2011-10-18 16:44:43 +02:00
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
.recent_message_parent {
|
|
|
|
img {
|
2011-10-18 16:44:43 +02:00
|
|
|
padding-right:10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
float: left;
|
|
|
|
margin: 0 20px 20px 0px;
|
2011-10-19 15:25:22 +02:00
|
|
|
padding: 5px 0px;;
|
2011-10-18 16:44:43 +02:00
|
|
|
width: 420px;
|
|
|
|
|
2011-10-19 15:25:22 +02:00
|
|
|
&.dash_wall{
|
|
|
|
border-bottom: 2px solid orange;
|
2011-10-26 15:46:25 +02:00
|
|
|
span {
|
2011-10-19 15:25:22 +02:00
|
|
|
background: orange;
|
|
|
|
color:black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.dash_issue{
|
|
|
|
border-bottom: 2px solid #ffbbbb;
|
2011-10-26 15:46:25 +02:00
|
|
|
span {
|
2011-10-19 15:25:22 +02:00
|
|
|
background: #ffbbbb;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.dash_commit{
|
|
|
|
border-bottom: 2px solid #bbbbff;
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
span{
|
2011-10-19 15:25:22 +02:00
|
|
|
background: #bbbbff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-19 19:41:14 +02:00
|
|
|
&.dash_snippet{
|
|
|
|
border-bottom: 2px solid #bbffbb;
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
span{
|
2011-10-19 19:41:14 +02:00
|
|
|
background: #bbffbb;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
span{
|
2011-10-19 19:41:14 +02:00
|
|
|
border: 1px solid #aaa;
|
|
|
|
color:black;
|
|
|
|
padding:1px 4px;
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
h4 {
|
2011-10-18 16:44:43 +02:00
|
|
|
margin-bottom:3px;
|
|
|
|
}
|
|
|
|
|
2011-10-19 19:41:14 +02:00
|
|
|
}
|
2011-10-20 18:21:58 +02:00
|
|
|
.commit,
|
2011-10-26 15:46:25 +02:00
|
|
|
.message,
|
2011-10-20 18:21:58 +02:00
|
|
|
#notes-list{
|
2011-10-26 15:46:25 +02:00
|
|
|
.author {
|
2011-10-19 15:25:22 +02:00
|
|
|
background: #eaeaea;
|
|
|
|
color: #333;
|
2011-10-19 19:41:14 +02:00
|
|
|
border: 1px solid #aaa;
|
|
|
|
padding:1px 2px;
|
|
|
|
margin-right:5px;
|
2011-10-18 16:44:43 +02:00
|
|
|
}
|
|
|
|
}
|
2011-10-20 18:21:58 +02:00
|
|
|
|
|
|
|
/* Note textare */
|
2011-10-26 15:46:25 +02:00
|
|
|
#note_note {
|
2011-10-20 18:21:58 +02:00
|
|
|
height:100px;
|
|
|
|
width:97%;
|
|
|
|
font-size:14px;
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
.wall_page {
|
|
|
|
#note_note {
|
2011-10-20 18:21:58 +02:00
|
|
|
height:25px;
|
|
|
|
}
|
2011-10-26 15:46:25 +02:00
|
|
|
.attach_holder {
|
2011-10-20 18:21:58 +02:00
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
}
|
2011-10-21 20:51:55 +02:00
|
|
|
|
|
|
|
.field_with_errors {
|
|
|
|
input[type="text"],
|
|
|
|
input[type="password"],
|
|
|
|
textarea
|
|
|
|
{
|
|
|
|
background: none repeat scroll 0 0 #FFBBBB
|
|
|
|
}
|
|
|
|
}
|
2011-10-25 06:34:02 +02:00
|
|
|
|
|
|
|
.tag {
|
|
|
|
@include round-borders-all(4px);
|
|
|
|
padding:2px 4px;
|
|
|
|
border:none;
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
&.high {
|
2011-10-25 06:34:02 +02:00
|
|
|
background: #D12F19;
|
|
|
|
color:white;
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
&.today {
|
2011-10-25 06:34:02 +02:00
|
|
|
background: #44aa22;
|
|
|
|
color:white;
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
&.yours {
|
2011-10-25 06:34:02 +02:00
|
|
|
background: #4466cc;
|
|
|
|
color:white;
|
|
|
|
}
|
2011-10-28 11:22:09 +02:00
|
|
|
&.normal {
|
|
|
|
background: #2c5ca6;
|
|
|
|
color:white;
|
|
|
|
}
|
2011-10-25 06:34:02 +02:00
|
|
|
&.notes {
|
|
|
|
background: #2c5c66;
|
|
|
|
color:white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
#issues-table .issue {
|
|
|
|
&.critical {
|
2011-10-25 06:34:02 +02:00
|
|
|
td {
|
|
|
|
//background: #D12F19;
|
|
|
|
//color:#fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-10-26 06:34:02 +02:00
|
|
|
|
|
|
|
.top_panel_issues{
|
|
|
|
#issue_search_form {
|
|
|
|
margin:5px 0;
|
|
|
|
input {
|
|
|
|
border:1px solid #D3D3D3;
|
|
|
|
padding: 3px;
|
2011-10-26 06:44:02 +02:00
|
|
|
height: 28px;
|
2011-10-26 06:34:02 +02:00
|
|
|
width: 300px;
|
2011-10-26 06:44:02 +02:00
|
|
|
-webkit-appearance:none;
|
|
|
|
box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
2011-10-26 06:34:02 +02:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
border-color:#c2e1ef;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-28 14:07:58 +02:00
|
|
|
.left {
|
|
|
|
float:left;
|
|
|
|
}
|
|
|
|
.right {
|
|
|
|
float:right;
|
|
|
|
}
|