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

68 lines
962 B
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.
*
* Next items should be placed there
* - link colors
* - header styles
* - main menu styles
*
*/
.ui_modern {
nav.main_menu {
2012-06-12 13:58:44 +02:00
background:none;
box-shadow:none;
@include border-radius(0px);
2012-06-12 13:58:44 +02:00
border:none;
border-bottom:2px solid #456;
2012-06-12 13:58:44 +02:00
a {
border:none;
2012-06-12 13:58:44 +02:00
&.current {
border-bottom:2px solid #f90;
background-color:#fff;
}
}
}
2012-02-26 23:41:53 +01:00
/*
* Common styles
*
*/
a {
2012-06-12 15:36:27 +02:00
color: #E28934;
2012-02-26 23:41:53 +01:00
&:hover {
text-decoration:none;
2012-06-12 13:58:44 +02:00
color: #f90;
2012-02-26 23:41:53 +01:00
}
}
2012-06-12 13:58:44 +02:00
.btn {
&.primary,
&.btn-primary {
border-color:#C60;
background:#D70;
2012-02-26 23:41:53 +01:00
2012-06-12 13:58:44 +02:00
&:hover {
background:#F90;
}
}
2012-06-12 13:58:44 +02:00
}
2012-06-12 16:43:16 +02:00
.alert-info {
border-color:#FDA;
background:#FED;
color:#D70;
2012-02-26 23:41:53 +01:00
}
2012-06-12 16:43:16 +02:00
2012-06-12 15:36:27 +02:00
.progress .bar {
background:#D80;
}
.back_link {
color:#D80;
}
}