gitlab-org--gitlab-foss/app/assets/stylesheets/themes/ui_modern.scss

70 lines
1,006 B
SCSS
Raw Normal View History

2012-02-26 17:41:53 -05: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 13:52:48 -04:00
ul.main_menu {
2012-06-12 07:58:44 -04:00
background:none;
box-shadow:none;
@include border-radius(0px);
2012-06-12 07:58:44 -04:00
border:none;
border-bottom:2px solid #456;
2012-07-03 13:52:48 -04:00
li {
2012-06-12 07:58:44 -04:00
border:none;
2012-06-12 07:58:44 -04:00
&.current {
border-bottom:2px solid #f90;
background-color:#fff;
2012-07-03 13:52:48 -04:00
position:relative;
top:1px;
2012-06-12 07:58:44 -04:00
}
}
}
2012-02-26 17:41:53 -05:00
/*
* Common styles
*
*/
a {
2012-06-12 09:36:27 -04:00
color: #E28934;
2012-02-26 17:41:53 -05:00
&:hover {
text-decoration:none;
2012-06-12 07:58:44 -04:00
color: #f90;
2012-02-26 17:41:53 -05:00
}
}
2012-06-12 07:58:44 -04:00
.btn {
&.primary,
&.btn-primary {
border-color:#C60;
background:#D70;
2012-02-26 17:41:53 -05:00
2012-06-12 07:58:44 -04:00
&:hover {
background:#F90;
}
}
2012-06-12 07:58:44 -04:00
}
2012-06-12 10:43:16 -04:00
.alert-info {
border-color:#FDA;
background:#FED;
color:#D70;
2012-02-26 17:41:53 -05:00
}
2012-06-12 10:43:16 -04:00
2012-06-12 09:36:27 -04:00
.progress .bar {
background:#D80;
}
.back_link {
color:#D80;
}
}