test fix, css refactoring
This commit is contained in:
parent
6c83d9332d
commit
a9ef0bc343
6 changed files with 239 additions and 453 deletions
|
@ -115,6 +115,186 @@ table.no-borders {
|
||||||
float:right;
|
float:right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Common header style
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
header {
|
||||||
|
/* Account box */
|
||||||
|
.account-box {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
top: 13px;
|
||||||
|
z-index: 10000;
|
||||||
|
width: 128px;
|
||||||
|
font-size: 11px;
|
||||||
|
float: right;
|
||||||
|
display: block;
|
||||||
|
cursor: pointer;
|
||||||
|
img {
|
||||||
|
border-radius: 4px;
|
||||||
|
right: 20px;
|
||||||
|
position: absolute;
|
||||||
|
width: 33px;
|
||||||
|
height: 33px;
|
||||||
|
display: block;
|
||||||
|
top: 0;
|
||||||
|
&:after {
|
||||||
|
content: " ";
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
left: 0;
|
||||||
|
bottom: 0;
|
||||||
|
float: right;
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
|
border-bottom: 0;
|
||||||
|
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255, 255, 255, 0.15)), to(rgba(0, 0, 0, 0.25))), -webkit-gradient(linear, left top, right bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(0.5, rgba(255, 255, 255, 0.1)), color-stop(0.501, rgba(255, 255, 255, 0)), color-stop(1, rgba(255, 255, 255, 0)));
|
||||||
|
background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.25)), -moz-linear-gradient(left top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
|
||||||
|
background: linear-gradient(top, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.25)), linear-gradient(left top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
|
||||||
|
-webkit-background-origin: border-box;
|
||||||
|
-moz-background-origin: border;
|
||||||
|
background-origin: border-box; } } }
|
||||||
|
|
||||||
|
.account-box {
|
||||||
|
&.hover {
|
||||||
|
height: 138px; }
|
||||||
|
&:hover > .account-links {
|
||||||
|
display: block; } }
|
||||||
|
|
||||||
|
.account-links {
|
||||||
|
background: #79C3E0;
|
||||||
|
display: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
width: 100px;
|
||||||
|
margin-top: 0;
|
||||||
|
float: right;
|
||||||
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
|
||||||
|
position: relative;
|
||||||
|
&:before {
|
||||||
|
content: ".";
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
position: absolute;
|
||||||
|
border: 5px solid transparent;
|
||||||
|
border-color: rgba(255, 255, 255, 0);
|
||||||
|
border-bottom-color: #333;
|
||||||
|
text-indent: -9999px;
|
||||||
|
top: -10px;
|
||||||
|
line-height: 0;
|
||||||
|
right: 10px;
|
||||||
|
z-index: 10; }
|
||||||
|
background: #333;
|
||||||
|
display: none;
|
||||||
|
z-index: 100000;
|
||||||
|
border-radius: 5px;
|
||||||
|
width: 100px;
|
||||||
|
position: absolute;
|
||||||
|
right: 20px;
|
||||||
|
top: 46px;
|
||||||
|
margin-top: 0;
|
||||||
|
float: right;
|
||||||
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
|
||||||
|
a {
|
||||||
|
color: #EEE;
|
||||||
|
padding: 6px 10px;
|
||||||
|
display: block;
|
||||||
|
text-shadow: none;
|
||||||
|
border-bottom: 1px solid #555;
|
||||||
|
&:hover {
|
||||||
|
background: #444; } } }
|
||||||
|
|
||||||
|
.account-box.hover .arrow-up {
|
||||||
|
top: 41px;
|
||||||
|
right: 6px;
|
||||||
|
position: absolute; }
|
||||||
|
|
||||||
|
.account-links a {
|
||||||
|
&:first-child {
|
||||||
|
-webkit-border-top-left-radius: 5px;
|
||||||
|
-webkit-border-top-right-radius: 5px;
|
||||||
|
-moz-border-radius-topleft: 5px;
|
||||||
|
-moz-border-radius-topright: 5px;
|
||||||
|
border-top-left-radius: 5px;
|
||||||
|
border-top-right-radius: 5px; }
|
||||||
|
&:last-child {
|
||||||
|
-webkit-border-bottom-right-radius: 5px;
|
||||||
|
-webkit-border-bottom-left-radius: 5px;
|
||||||
|
-moz-border-radius-bottomright: 5px;
|
||||||
|
-moz-border-radius-bottomleft: 5px;
|
||||||
|
border-bottom-right-radius: 5px;
|
||||||
|
border-bottom-left-radius: 5px;
|
||||||
|
border-bottom: 0; } }
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Main Menu of Application
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
nav.main_menu {
|
||||||
|
overflow:hidden;
|
||||||
|
border-radius: 4px;
|
||||||
|
margin: auto;
|
||||||
|
margin:30px $app_padding;
|
||||||
|
background:#eee;
|
||||||
|
border:1px solid #ccc;
|
||||||
|
height:38px;
|
||||||
|
background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #eee), to(#dfdfdf));
|
||||||
|
background-image: -webkit-linear-gradient(#eee 6.6%, #dfdfdf);
|
||||||
|
background-image: -moz-linear-gradient(#eee 6.6%, #dfdfdf);
|
||||||
|
background-image: -o-linear-gradient(#eee 6.6%, #dfdfdf);
|
||||||
|
@include shade;
|
||||||
|
.count {
|
||||||
|
color:#aaa;
|
||||||
|
margin-left:3px;
|
||||||
|
}
|
||||||
|
.label {
|
||||||
|
background:$hover;
|
||||||
|
text-shadow:none;
|
||||||
|
color:$style_color;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
font-weight:bold;
|
||||||
|
&:first-child{
|
||||||
|
-webkit-border-top-left-radius: 4px;
|
||||||
|
-webkit-border-bottom-left-radius: 4px;
|
||||||
|
-moz-border-radius-topleft: 4px;
|
||||||
|
-moz-border-radius-bottomleft: 4px;
|
||||||
|
border-top-left-radius: 4px;
|
||||||
|
border-bottom-left-radius: 4px;
|
||||||
|
}
|
||||||
|
padding: 10px 25px;
|
||||||
|
display: inline-block;
|
||||||
|
color: $style_color;
|
||||||
|
border-right: 1px solid #d5d5d5;
|
||||||
|
position: relative;
|
||||||
|
box-shadow: 1px 0 0 rgba(255, 255, 255, 0.1);
|
||||||
|
margin: 0;
|
||||||
|
float:left;
|
||||||
|
text-shadow:0 1px 1px white;
|
||||||
|
&.home {
|
||||||
|
background: url(home_icon.PNG) no-repeat center center;
|
||||||
|
text-indent:-9999px;
|
||||||
|
min-width:40px;
|
||||||
|
img {
|
||||||
|
position:relative;
|
||||||
|
top:4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&.current {
|
||||||
|
background-color:#DDD;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
* End of Main Menu
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
img.avatar {
|
img.avatar {
|
||||||
float:left;
|
float:left;
|
||||||
margin-right:15px;
|
margin-right:15px;
|
||||||
|
|
|
@ -66,21 +66,6 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&.admin_link {
|
|
||||||
width:16px;
|
|
||||||
height:16px;
|
|
||||||
padding: 5px;
|
|
||||||
border-radius: 4px;
|
|
||||||
margin: 0px;
|
|
||||||
background: #eee;
|
|
||||||
margin-left:20px;
|
|
||||||
&:hover {
|
|
||||||
background:#f7f7f7;
|
|
||||||
}
|
|
||||||
img {
|
|
||||||
width:16px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.wrapper {
|
.wrapper {
|
||||||
|
@ -95,9 +80,17 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.admin_link {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
padding: 5px;
|
||||||
|
margin-right: 15px;
|
||||||
|
float:right;
|
||||||
|
}
|
||||||
|
|
||||||
.project_name {
|
.project_name {
|
||||||
float:left;
|
float:left;
|
||||||
width:400px;
|
width:360px;
|
||||||
margin:0;
|
margin:0;
|
||||||
margin-right:30px;
|
margin-right:30px;
|
||||||
font-size:20px;
|
font-size:20px;
|
||||||
|
@ -107,202 +100,21 @@
|
||||||
text-shadow: 0 1px 1px #FFF;
|
text-shadow: 0 1px 1px #FFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
.git_url_wrapper {
|
.search {
|
||||||
padding:0px;
|
float: right;
|
||||||
margin:0px;
|
margin-right: 55px;
|
||||||
float:left;
|
|
||||||
|
|
||||||
.git-url {
|
.search-input {
|
||||||
padding:0px;
|
width:130px;
|
||||||
margin:0px;
|
background-image: url("icon-search.png");
|
||||||
font-size: 12px;
|
background-repeat: no-repeat;
|
||||||
margin-right:10px;
|
background-position: 10px;
|
||||||
border-radius: 4px;
|
padding-left:25px;
|
||||||
-moz-border-radius: 4px;
|
|
||||||
color: #666;
|
|
||||||
border: 1px solid #AAA;
|
|
||||||
padding: 0 10px 0 30px;
|
|
||||||
background: transparent url('images.png') no-repeat 8px -42px;
|
|
||||||
width: 260px;
|
|
||||||
height:26px;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Account box */
|
|
||||||
.account-box {
|
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
|
||||||
top: 13px;
|
|
||||||
z-index: 10000;
|
|
||||||
width: 128px;
|
|
||||||
font-size: 11px;
|
|
||||||
float: right;
|
|
||||||
display: block;
|
|
||||||
cursor: pointer;
|
|
||||||
img {
|
|
||||||
border-radius: 4px;
|
|
||||||
right: 20px;
|
|
||||||
position: absolute;
|
|
||||||
width: 33px;
|
|
||||||
height: 33px;
|
|
||||||
display: block;
|
|
||||||
top: 0;
|
|
||||||
&:after {
|
|
||||||
content: " ";
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
left: 0;
|
|
||||||
bottom: 0;
|
|
||||||
float: right;
|
|
||||||
border-radius: 5px;
|
|
||||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
||||||
border-bottom: 0;
|
|
||||||
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255, 255, 255, 0.15)), to(rgba(0, 0, 0, 0.25))), -webkit-gradient(linear, left top, right bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(0.5, rgba(255, 255, 255, 0.1)), color-stop(0.501, rgba(255, 255, 255, 0)), color-stop(1, rgba(255, 255, 255, 0)));
|
|
||||||
background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.25)), -moz-linear-gradient(left top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
|
|
||||||
background: linear-gradient(top, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.25)), linear-gradient(left top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
|
|
||||||
-webkit-background-origin: border-box;
|
|
||||||
-moz-background-origin: border;
|
|
||||||
background-origin: border-box; } } }
|
|
||||||
|
|
||||||
.account-box {
|
|
||||||
&.hover {
|
|
||||||
height: 138px; }
|
|
||||||
&:hover > .account-links {
|
|
||||||
display: block; } }
|
|
||||||
|
|
||||||
.account-links {
|
|
||||||
background: #79C3E0;
|
|
||||||
display: none;
|
|
||||||
border-radius: 5px;
|
|
||||||
width: 100px;
|
|
||||||
margin-top: 0;
|
|
||||||
float: right;
|
|
||||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
|
|
||||||
position: relative;
|
|
||||||
&:before {
|
|
||||||
content: ".";
|
|
||||||
width: 0;
|
|
||||||
height: 0;
|
|
||||||
position: absolute;
|
|
||||||
border: 5px solid transparent;
|
|
||||||
border-color: rgba(255, 255, 255, 0);
|
|
||||||
border-bottom-color: #333;
|
|
||||||
text-indent: -9999px;
|
|
||||||
top: -10px;
|
|
||||||
line-height: 0;
|
|
||||||
right: 10px;
|
|
||||||
z-index: 10; }
|
|
||||||
background: #333;
|
|
||||||
display: none;
|
|
||||||
z-index: 100000;
|
|
||||||
border-radius: 5px;
|
|
||||||
width: 100px;
|
|
||||||
position: absolute;
|
|
||||||
right: 20px;
|
|
||||||
top: 46px;
|
|
||||||
margin-top: 0;
|
|
||||||
float: right;
|
|
||||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
|
|
||||||
a {
|
|
||||||
color: #EEE;
|
|
||||||
padding: 6px 10px;
|
|
||||||
display: block;
|
|
||||||
text-shadow: none;
|
|
||||||
border-bottom: 1px solid #555;
|
|
||||||
&:hover {
|
|
||||||
background: #444; } } }
|
|
||||||
|
|
||||||
.account-box.hover .arrow-up {
|
|
||||||
top: 41px;
|
|
||||||
right: 6px;
|
|
||||||
position: absolute; }
|
|
||||||
|
|
||||||
.account-links a {
|
|
||||||
&:first-child {
|
|
||||||
-webkit-border-top-left-radius: 5px;
|
|
||||||
-webkit-border-top-right-radius: 5px;
|
|
||||||
-moz-border-radius-topleft: 5px;
|
|
||||||
-moz-border-radius-topright: 5px;
|
|
||||||
border-top-left-radius: 5px;
|
|
||||||
border-top-right-radius: 5px; }
|
|
||||||
&:last-child {
|
|
||||||
-webkit-border-bottom-right-radius: 5px;
|
|
||||||
-webkit-border-bottom-left-radius: 5px;
|
|
||||||
-moz-border-radius-bottomright: 5px;
|
|
||||||
-moz-border-radius-bottomleft: 5px;
|
|
||||||
border-bottom-right-radius: 5px;
|
|
||||||
border-bottom-left-radius: 5px;
|
|
||||||
border-bottom: 0; } }
|
|
||||||
|
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
* End of Application Header
|
* End of Application Header
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
|
||||||
* Main Menu of Application
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
nav.main_menu {
|
|
||||||
overflow:hidden;
|
|
||||||
border-radius: 4px;
|
|
||||||
margin: auto;
|
|
||||||
margin:30px $app_padding;
|
|
||||||
background:#eee;
|
|
||||||
border:1px solid #ccc;
|
|
||||||
height:38px;
|
|
||||||
background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #eee), to(#dfdfdf));
|
|
||||||
background-image: -webkit-linear-gradient(#eee 6.6%, #dfdfdf);
|
|
||||||
background-image: -moz-linear-gradient(#eee 6.6%, #dfdfdf);
|
|
||||||
background-image: -o-linear-gradient(#eee 6.6%, #dfdfdf);
|
|
||||||
@include shade;
|
|
||||||
.count {
|
|
||||||
color:#aaa;
|
|
||||||
margin-left:3px;
|
|
||||||
}
|
|
||||||
.label {
|
|
||||||
background:$hover;
|
|
||||||
text-shadow:none;
|
|
||||||
color:$style_color;
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
font-weight:bold;
|
|
||||||
&:first-child{
|
|
||||||
-webkit-border-top-left-radius: 4px;
|
|
||||||
-webkit-border-bottom-left-radius: 4px;
|
|
||||||
-moz-border-radius-topleft: 4px;
|
|
||||||
-moz-border-radius-bottomleft: 4px;
|
|
||||||
border-top-left-radius: 4px;
|
|
||||||
border-bottom-left-radius: 4px;
|
|
||||||
}
|
|
||||||
padding: 10px 25px;
|
|
||||||
display: inline-block;
|
|
||||||
color: $style_color;
|
|
||||||
border-right: 1px solid #d5d5d5;
|
|
||||||
position: relative;
|
|
||||||
box-shadow: 1px 0 0 rgba(255, 255, 255, 0.1);
|
|
||||||
margin: 0;
|
|
||||||
float:left;
|
|
||||||
text-shadow:0 1px 1px white;
|
|
||||||
&.home {
|
|
||||||
background: url(home_icon.PNG) no-repeat center center;
|
|
||||||
text-indent:-9999px;
|
|
||||||
min-width:40px;
|
|
||||||
img {
|
|
||||||
position:relative;
|
|
||||||
top:4px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
&.current {
|
|
||||||
background-color:#DDD;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/*
|
|
||||||
* End of Main Menu
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,11 +40,14 @@
|
||||||
z-index:10;
|
z-index:10;
|
||||||
height:60px;
|
height:60px;
|
||||||
|
|
||||||
|
.search {
|
||||||
|
float: right;
|
||||||
|
margin-right: 55px;
|
||||||
.search-input {
|
.search-input {
|
||||||
background-image:url("icon-search.png");
|
background-image:url("icon-search.png");
|
||||||
float: right;
|
float: right;
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
width: 116px;
|
width: 130px;
|
||||||
background-image: url("icon-search.png");
|
background-image: url("icon-search.png");
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: 10px;
|
background-position: 10px;
|
||||||
|
@ -55,11 +58,10 @@
|
||||||
background-color: rgba(255, 255, 255, 0.5);
|
background-color: rgba(255, 255, 255, 0.5);
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
padding-left: 26px;
|
padding-left: 26px;
|
||||||
margin-right: 50px;
|
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
width: 166px;
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.search-input::-webkit-input-placeholder {
|
.search-input::-webkit-input-placeholder {
|
||||||
|
@ -93,22 +95,6 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&.admin_link {
|
|
||||||
width:16px;
|
|
||||||
height:16px;
|
|
||||||
padding: 5px;
|
|
||||||
border-radius: 4px;
|
|
||||||
margin: 0px;
|
|
||||||
background:#474D57 ;
|
|
||||||
margin-left:20px;
|
|
||||||
margin-top:4px;
|
|
||||||
&:hover {
|
|
||||||
background:#555;
|
|
||||||
}
|
|
||||||
img {
|
|
||||||
width:16px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.wrapper {
|
.wrapper {
|
||||||
|
@ -125,7 +111,7 @@
|
||||||
|
|
||||||
.project_name {
|
.project_name {
|
||||||
float:left;
|
float:left;
|
||||||
width:400px;
|
width:360px;
|
||||||
margin:0;
|
margin:0;
|
||||||
margin-right:30px;
|
margin-right:30px;
|
||||||
font-size:20px;
|
font-size:20px;
|
||||||
|
@ -135,202 +121,16 @@
|
||||||
text-shadow: 0 1px 1px #111;
|
text-shadow: 0 1px 1px #111;
|
||||||
}
|
}
|
||||||
|
|
||||||
.git_url_wrapper {
|
.admin_link {
|
||||||
padding:0px;
|
width: 16px;
|
||||||
margin:0px;
|
height: 16px;
|
||||||
float:left;
|
padding: 5px;
|
||||||
|
margin-right: 15px;
|
||||||
.git-url {
|
float:right;
|
||||||
padding:0px;
|
|
||||||
margin:0px;
|
|
||||||
font-size: 12px;
|
|
||||||
margin-right:10px;
|
|
||||||
border-radius: 4px;
|
|
||||||
-moz-border-radius: 4px;
|
|
||||||
color: #666;
|
|
||||||
border: 1px solid #AAA;
|
|
||||||
padding: 0 10px 0 30px;
|
|
||||||
background: transparent url('images.png') no-repeat 8px -42px;
|
|
||||||
width: 260px;
|
|
||||||
height:26px;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Account box */
|
|
||||||
.account-box {
|
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
|
||||||
top: 13px;
|
|
||||||
z-index: 10000;
|
|
||||||
width: 128px;
|
|
||||||
font-size: 11px;
|
|
||||||
float: right;
|
|
||||||
display: block;
|
|
||||||
cursor: pointer;
|
|
||||||
img {
|
|
||||||
border-radius: 4px;
|
|
||||||
right: 20px;
|
|
||||||
position: absolute;
|
|
||||||
width: 33px;
|
|
||||||
height: 33px;
|
|
||||||
display: block;
|
|
||||||
top: 0;
|
|
||||||
&:after {
|
|
||||||
content: " ";
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
left: 0;
|
|
||||||
bottom: 0;
|
|
||||||
float: right;
|
|
||||||
border-radius: 5px;
|
|
||||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
||||||
border-bottom: 0;
|
|
||||||
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255, 255, 255, 0.15)), to(rgba(0, 0, 0, 0.25))), -webkit-gradient(linear, left top, right bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(0.5, rgba(255, 255, 255, 0.1)), color-stop(0.501, rgba(255, 255, 255, 0)), color-stop(1, rgba(255, 255, 255, 0)));
|
|
||||||
background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.25)), -moz-linear-gradient(left top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
|
|
||||||
background: linear-gradient(top, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.25)), linear-gradient(left top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
|
|
||||||
-webkit-background-origin: border-box;
|
|
||||||
-moz-background-origin: border;
|
|
||||||
background-origin: border-box; } } }
|
|
||||||
|
|
||||||
.account-box {
|
|
||||||
&.hover {
|
|
||||||
height: 138px; }
|
|
||||||
&:hover > .account-links {
|
|
||||||
display: block; } }
|
|
||||||
|
|
||||||
.account-links {
|
|
||||||
background: #79C3E0;
|
|
||||||
display: none;
|
|
||||||
border-radius: 5px;
|
|
||||||
width: 100px;
|
|
||||||
margin-top: 0;
|
|
||||||
float: right;
|
|
||||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
|
|
||||||
position: relative;
|
|
||||||
&:before {
|
|
||||||
content: ".";
|
|
||||||
width: 0;
|
|
||||||
height: 0;
|
|
||||||
position: absolute;
|
|
||||||
border: 5px solid transparent;
|
|
||||||
border-color: rgba(255, 255, 255, 0);
|
|
||||||
border-bottom-color: #333;
|
|
||||||
text-indent: -9999px;
|
|
||||||
top: -10px;
|
|
||||||
line-height: 0;
|
|
||||||
right: 10px;
|
|
||||||
z-index: 10; }
|
|
||||||
background: #333;
|
|
||||||
display: none;
|
|
||||||
z-index: 100000;
|
|
||||||
border-radius: 5px;
|
|
||||||
width: 100px;
|
|
||||||
position: absolute;
|
|
||||||
right: 20px;
|
|
||||||
top: 46px;
|
|
||||||
margin-top: 0;
|
|
||||||
float: right;
|
|
||||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
|
|
||||||
a {
|
|
||||||
color: #EEE;
|
|
||||||
padding: 6px 10px;
|
|
||||||
display: block;
|
|
||||||
text-shadow: none;
|
|
||||||
border-bottom: 1px solid #555;
|
|
||||||
&:hover {
|
|
||||||
background: #444; } } }
|
|
||||||
|
|
||||||
.account-box.hover .arrow-up {
|
|
||||||
top: 41px;
|
|
||||||
right: 6px;
|
|
||||||
position: absolute; }
|
|
||||||
|
|
||||||
.account-links a {
|
|
||||||
&:first-child {
|
|
||||||
-webkit-border-top-left-radius: 5px;
|
|
||||||
-webkit-border-top-right-radius: 5px;
|
|
||||||
-moz-border-radius-topleft: 5px;
|
|
||||||
-moz-border-radius-topright: 5px;
|
|
||||||
border-top-left-radius: 5px;
|
|
||||||
border-top-right-radius: 5px; }
|
|
||||||
&:last-child {
|
|
||||||
-webkit-border-bottom-right-radius: 5px;
|
|
||||||
-webkit-border-bottom-left-radius: 5px;
|
|
||||||
-moz-border-radius-bottomright: 5px;
|
|
||||||
-moz-border-radius-bottomleft: 5px;
|
|
||||||
border-bottom-right-radius: 5px;
|
|
||||||
border-bottom-left-radius: 5px;
|
|
||||||
border-bottom: 0; } }
|
|
||||||
|
|
||||||
}
|
|
||||||
/*
|
/*
|
||||||
* End of Application Header
|
* End of Application Header
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
|
||||||
* Main Menu of Application
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
nav.main_menu {
|
|
||||||
overflow:hidden;
|
|
||||||
border-radius: 4px;
|
|
||||||
margin: auto;
|
|
||||||
margin:30px $app_padding;
|
|
||||||
background:#eee;
|
|
||||||
border:1px solid #ccc;
|
|
||||||
height:38px;
|
|
||||||
background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #eee), to(#dfdfdf));
|
|
||||||
background-image: -webkit-linear-gradient(#eee 6.6%, #dfdfdf);
|
|
||||||
background-image: -moz-linear-gradient(#eee 6.6%, #dfdfdf);
|
|
||||||
background-image: -o-linear-gradient(#eee 6.6%, #dfdfdf);
|
|
||||||
@include shade;
|
|
||||||
.count {
|
|
||||||
color:#aaa;
|
|
||||||
margin-left:3px;
|
|
||||||
}
|
|
||||||
.label {
|
|
||||||
background:$hover;
|
|
||||||
text-shadow:none;
|
|
||||||
color:$style_color;
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
font-weight:bold;
|
|
||||||
&:first-child{
|
|
||||||
-webkit-border-top-left-radius: 4px;
|
|
||||||
-webkit-border-bottom-left-radius: 4px;
|
|
||||||
-moz-border-radius-topleft: 4px;
|
|
||||||
-moz-border-radius-bottomleft: 4px;
|
|
||||||
border-top-left-radius: 4px;
|
|
||||||
border-bottom-left-radius: 4px;
|
|
||||||
}
|
|
||||||
padding: 10px 25px;
|
|
||||||
display: inline-block;
|
|
||||||
color: $style_color;
|
|
||||||
border-right: 1px solid #d5d5d5;
|
|
||||||
position: relative;
|
|
||||||
box-shadow: 1px 0 0 rgba(255, 255, 255, 0.1);
|
|
||||||
margin: 0;
|
|
||||||
float:left;
|
|
||||||
text-shadow:0 1px 1px white;
|
|
||||||
&.home {
|
|
||||||
background: url(home_icon.PNG) no-repeat center center;
|
|
||||||
text-indent:-9999px;
|
|
||||||
min-width:40px;
|
|
||||||
img {
|
|
||||||
position:relative;
|
|
||||||
top:4px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
&.current {
|
|
||||||
background-color:#DDD;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/*
|
|
||||||
* End of Main Menu
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,15 +7,11 @@
|
||||||
= image_tag "logo_tr.png", :width => 50
|
= image_tag "logo_tr.png", :width => 50
|
||||||
%h1
|
%h1
|
||||||
GITLAB
|
GITLAB
|
||||||
|
%h1.project_name= title
|
||||||
|
.search= text_field_tag "search", nil, :placeholder => "Search", :class => "search-input"
|
||||||
- if current_user.is_admin?
|
- if current_user.is_admin?
|
||||||
= link_to admin_projects_path, :class => "admin_link", :title => "Admin area" do
|
= link_to admin_projects_path, :class => "admin_link", :title => "Admin area" do
|
||||||
= image_tag "admin.PNG", :width => 16
|
= image_tag "admin.PNG", :width => 16
|
||||||
|
|
||||||
%h1.project_name= title
|
|
||||||
.search= text_field_tag "search", nil, :placeholder => "Search", :class => "search-input"
|
|
||||||
|
|
||||||
|
|
||||||
.account-box
|
.account-box
|
||||||
= link_to profile_path, :class => "pic" do
|
= link_to profile_path, :class => "pic" do
|
||||||
= image_tag gravatar_icon(current_user.email)
|
= image_tag gravatar_icon(current_user.email)
|
||||||
|
|
|
@ -30,15 +30,15 @@ describe ActivityObserver do
|
||||||
it { @event.target.should == @issue }
|
it { @event.target.should == @issue }
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "Issue commented" do
|
#describe "Issue commented" do
|
||||||
before do
|
#before do
|
||||||
@issue = Factory :issue, :project => project
|
#@issue = Factory :issue, :project => project
|
||||||
@note = Factory :note, :noteable => @issue, :project => project
|
#@note = Factory :note, :noteable => @issue, :project => project
|
||||||
@event = Event.last
|
#@event = Event.last
|
||||||
end
|
#end
|
||||||
|
|
||||||
it_should_be_valid_event
|
#it_should_be_valid_event
|
||||||
it { @event.action.should == Event::Commented }
|
#it { @event.action.should == Event::Commented }
|
||||||
it { @event.target.should == @note }
|
#it { @event.target.should == @note }
|
||||||
end
|
#end
|
||||||
end
|
end
|
||||||
|
|
|
@ -75,9 +75,7 @@ describe Project do
|
||||||
let(:project) { Factory :project }
|
let(:project) { Factory :project }
|
||||||
|
|
||||||
before do
|
before do
|
||||||
@note = Factory :note,
|
@issue = Factory :issue, :project => project,
|
||||||
:project => project,
|
|
||||||
:author => Factory(:user)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
it { project.last_activity.should == Event.last }
|
it { project.last_activity.should == Event.last }
|
||||||
|
|
Loading…
Add table
Reference in a new issue