gitlabhq/app/assets/stylesheets/themes/ui_modern.scss

69 lines
1.2 KiB
SCSS
Raw Normal View History

2012-02-26 23:41:53 +01:00
/**
* This file represent some UI that can be changed
* during web app restyle or theme select.
*
2012-02-26 23:41:53 +01:00
* Next items should be placed there
* - link colors
* - header restyles
2012-02-26 23:41:53 +01:00
*
*/
.ui_modern {
/*
* Application Header
*
*/
header {
&.navbar-gitlab {
.navbar-inner {
background: #333;
border-bottom: 1px solid #111;
.nav > li > a {
color: #eee;
text-shadow: 0 1px 0 #111;
}
}
2012-06-12 13:58:44 +02:00
}
.search {
float: right;
2012-08-16 08:13:50 +02:00
margin-right: 45px;
.search-input {
border: 1px solid rgba(0, 0, 0, 0.7);
background-color: #D2D5DA;
background-color: rgba(255, 255, 255, 0.5);
2012-02-26 23:41:53 +01:00
&:focus {
background-color: white;
}
}
}
.search-input::-webkit-input-placeholder {
color: #666;
}
.app_logo {
a {
h1 {
background: url('logo_white.png') no-repeat 0px -3px;
color:#eee;
text-shadow: 0 1px 1px #111;
}
}
.separator {
display:none;
}
2012-06-12 15:36:27 +02:00
}
.project_name {
color:#eee;
text-shadow: 0 1px 1px #111;
}
2012-06-12 15:36:27 +02:00
}
/*
* End of Application Header
*
*/
}