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

70 lines
1,006 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 {
2012-07-03 19:52:48 +02:00
ul.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-07-03 19:52:48 +02:00
li {
2012-06-12 13:58:44 +02:00
border:none;
2012-06-12 13:58:44 +02:00
&.current {
border-bottom:2px solid #f90;
background-color:#fff;
2012-07-03 19:52:48 +02:00
position:relative;
2012-07-05 00:26:23 +02:00
top:2px;
2012-06-12 13:58:44 +02:00
}
}
}
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;
}
}