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

33 lines
565 B
SCSS
Raw Normal View History

2012-11-21 05:14:05 +01:00
/**
* This file represent some UI that can be changed
* during web app restyle or theme select.
*
* Next items should be placed there
* - link colors
* - header restyles
*
*/
.ui_color {
/*
* Application Header
*
*/
header {
2012-11-21 06:14:05 +01:00
@extend .header-dark;
2012-11-21 05:14:05 +01:00
&.navbar-gitlab {
.navbar-inner {
background: #657;
2012-12-24 20:18:23 +01:00
.app_logo {
&:hover {
background-color: #6A5A7A;
}
}
.separator {
background: #546;
border-left: 1px solid #706080;
}
2012-11-21 05:14:05 +01:00
}
}
}
}