Merge branch 'design_team' of github.com:Rulingcom/orbit into design_team
This commit is contained in:
commit
555aa088d9
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
Binary file not shown.
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 3.0 KiB |
Binary file not shown.
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 18 KiB |
|
@ -14,6 +14,7 @@ $(document).ready(function(){
|
||||||
placement: "left"
|
placement: "left"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
$(document).on('click', '.privacy', function() {
|
$(document).on('click', '.privacy', function() {
|
||||||
|
|
||||||
switch ($(this).val()) {
|
switch ($(this).val()) {
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
|
||||||
|
$(document).ready(function(){
|
||||||
|
$('.search').tooltip({
|
||||||
|
placement: "bottom"
|
||||||
|
});
|
||||||
|
});
|
||||||
$(document).on('click', '.orbit-bar-search', function (){
|
$(document).on('click', '.orbit-bar-search', function (){
|
||||||
if ($(this).parents('.search').hasClass('visible')){
|
if ($(this).parents('.search').hasClass('visible')){
|
||||||
$(this).parents('.search').stop().animate({
|
$(this).parents('.search').stop().animate({
|
||||||
|
|
|
@ -4,4 +4,4 @@ $(document).ready(function() {
|
||||||
$('body').prepend($(this).html());
|
$('body').prepend($(this).html());
|
||||||
$(this).remove();
|
$(this).remove();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -10,22 +10,25 @@
|
||||||
}
|
}
|
||||||
.checkbox{
|
.checkbox{
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
margin: 5px 5px 10px;
|
margin: 0;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
color:#777777;
|
color:#777777;
|
||||||
text-shadow: 0 1px 0px rgba(255,255,255,.4);
|
text-shadow: 0 1px 0px rgba(255,255,255,.4);
|
||||||
border-radius: 3px;
|
|
||||||
-moz-border-radius: 3px;
|
|
||||||
-webkit-border-radius: 3px;
|
|
||||||
height: 30px;
|
height: 30px;
|
||||||
position: relative;
|
position: relative;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
|
border-style: solid;
|
||||||
|
border-width: 0px 1px 1px 0;
|
||||||
|
border-color: #dfdfdf;
|
||||||
|
/*background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
|
||||||
background:-moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% );
|
background:-moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% );
|
||||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf');
|
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf');
|
||||||
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
-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);
|
-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);
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||||
|
border-radius: 3px;
|
||||||
|
-moz-border-radius: 3px;
|
||||||
|
-webkit-border-radius: 3px;*/
|
||||||
}
|
}
|
||||||
.checkbox .check-icon {
|
.checkbox .check-icon {
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -40,7 +43,7 @@
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-family: helvetica;
|
font-family: helvetica;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 30px;
|
line-height: 15px;
|
||||||
padding: 0 10px 0 40px;
|
padding: 0 10px 0 40px;
|
||||||
color: #333333;
|
color: #333333;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
}
|
}
|
||||||
.login-logo {
|
.login-logo {
|
||||||
text-indent: -9999px;
|
text-indent: -9999px;
|
||||||
background: url(<%= asset_path 'sign-in-logo.png' %>) no-repeat center 40px;
|
background: url(<%= asset_path 'sign-in-logo.png' %>) no-repeat center 80px;
|
||||||
padding-top: 40px;
|
padding-top: 40px;
|
||||||
height: 160px;
|
height: 160px;
|
||||||
}
|
}
|
||||||
|
@ -61,8 +61,8 @@
|
||||||
margin-right: -20px;
|
margin-right: -20px;
|
||||||
}
|
}
|
||||||
#orbit-bar .search-query {
|
#orbit-bar .search-query {
|
||||||
padding: 4px 9px;
|
padding: 7px 9px 5px;
|
||||||
height: 12px;
|
height: 10px;
|
||||||
margin-top: 3px;
|
margin-top: 3px;
|
||||||
border: 1px solid #333333;
|
border: 1px solid #333333;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
|
@ -119,7 +119,8 @@
|
||||||
background-position: -10px -10px;
|
background-position: -10px -10px;
|
||||||
}
|
}
|
||||||
#orbit-bar .nav > li > a.orbit-bar-desktop {
|
#orbit-bar .nav > li > a.orbit-bar-desktop {
|
||||||
background-position: -106px -9px;
|
background-position: -73px -42px;
|
||||||
|
width: 48px;
|
||||||
}
|
}
|
||||||
#orbit-bar .nav > li > a.orbit-bar-member {
|
#orbit-bar .nav > li > a.orbit-bar-member {
|
||||||
background-position: -4px -37px;
|
background-position: -4px -37px;
|
||||||
|
|
|
@ -135,8 +135,8 @@ module ApplicationHelper
|
||||||
javascripts << "<script type='text/javascript' src='/assets/jquery.tinyscrollbar.min.js'></script>\n"
|
javascripts << "<script type='text/javascript' src='/assets/jquery.tinyscrollbar.min.js'></script>\n"
|
||||||
javascripts << "<script type='text/javascript' src='/assets/jquery.isotope.min.js'></script>\n"
|
javascripts << "<script type='text/javascript' src='/assets/jquery.isotope.min.js'></script>\n"
|
||||||
javascripts << "<script type='text/javascript' src='/assets/orbit-bar-member.js'></script>\n"
|
javascripts << "<script type='text/javascript' src='/assets/orbit-bar-member.js'></script>\n"
|
||||||
javascripts << "<script type='text/javascript' src='/assets/orbit-bar-search.js'></script>\n"
|
|
||||||
javascripts << "<script type='text/javascript' src='/assets/orbit_bar.js'></script>\n"
|
javascripts << "<script type='text/javascript' src='/assets/orbit_bar.js'></script>\n"
|
||||||
|
javascripts << "<script type='text/javascript' src='/assets/orbit-bar-search.js'></script>\n"
|
||||||
end
|
end
|
||||||
javascripts << "<script type='text/javascript' src='/static/jquery.cycle.all.latest.js'></script>\n"
|
javascripts << "<script type='text/javascript' src='/static/jquery.cycle.all.latest.js'></script>\n"
|
||||||
javascripts << "<script type='text/javascript' src='/static/kernel.js'></script>\n"
|
javascripts << "<script type='text/javascript' src='/static/kernel.js'></script>\n"
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="search clear">
|
<li class="search clear" title="<%= t :search_nccu %>">
|
||||||
<a class="orbit-bar-search" href="#">search</a>
|
<a class="orbit-bar-search" href="#">search</a>
|
||||||
<form class="navbar-search" action="">
|
<form class="navbar-search" action="">
|
||||||
<input class="search-query span3" type="text" placeholder="<%= t(:search_nccu) %>">
|
<input class="search-query span3" type="text" placeholder="<%= t(:search_nccu) %>">
|
||||||
|
|
Loading…
Reference in New Issue