2012-02-11 18:56:18 +01:00
|
|
|
@import "bootstrap";
|
2012-04-10 07:51:08 +02:00
|
|
|
@import "bootstrap-responsive";
|
2012-02-11 18:56:18 +01:00
|
|
|
|
|
|
|
/** GITLAB colors **/
|
|
|
|
$text_color:#222;
|
|
|
|
$lite_text_color: #666;
|
2012-02-11 22:22:33 +01:00
|
|
|
$link_color:#2A79A3;
|
2012-02-11 18:56:18 +01:00
|
|
|
$active_link_color:#2FA0BB;
|
|
|
|
$active_bg_color:#79C3E0;
|
|
|
|
$active_bd_color: #2FA0BB;
|
|
|
|
$border_color:#CCC;
|
|
|
|
$lite_border_color:#EEE;
|
2012-02-19 15:31:11 +01:00
|
|
|
$min_app_width:980px;
|
|
|
|
$max_app_width:980px;
|
2012-02-11 18:56:18 +01:00
|
|
|
$app_padding:20px;
|
|
|
|
$bg_color: #FFF;
|
|
|
|
$styled_border_color: #2FA0BB;
|
|
|
|
$color: "#4BB8D2";
|
2012-03-19 21:52:16 +01:00
|
|
|
$blue_link: #2fa0bb;
|
2012-02-11 18:56:18 +01:00
|
|
|
|
2012-02-11 22:22:33 +01:00
|
|
|
|
|
|
|
/** Style colors **/
|
|
|
|
$style_color: #474D57;
|
|
|
|
$hover: #FDF5D9;
|
|
|
|
|
|
|
|
|
2012-02-11 18:56:18 +01:00
|
|
|
/** MIXINS **/
|
2012-02-20 18:59:39 +01:00
|
|
|
@mixin shade {
|
|
|
|
-moz-box-shadow: 0 0 3px #ddd;
|
|
|
|
-webkit-box-shadow: 0 0 3px #ddd;
|
|
|
|
box-shadow: 0 0 3px #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-11 18:56:18 +01:00
|
|
|
@mixin round-borders-bottom($radius) {
|
|
|
|
border-top: 1px solid #eaeaea;
|
|
|
|
-moz-border-radius-bottomright: $radius;
|
|
|
|
-moz-border-radius-bottomleft: $radius;
|
|
|
|
border-bottom-right-radius: $radius;
|
|
|
|
border-bottom-left-radius: $radius;
|
|
|
|
-webkit-border-bottom-left-radius: $radius;
|
|
|
|
-webkit-border-bottom-right-radius: $radius;
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin round-borders-top($radius) {
|
|
|
|
border-top: 1px solid #eaeaea;
|
|
|
|
-moz-border-radius-topright: $radius;
|
|
|
|
-moz-border-radius-topleft: $radius;
|
|
|
|
border-top-right-radius: $radius;
|
|
|
|
border-top-left-radius: $radius;
|
|
|
|
-webkit-border-top-left-radius: $radius;
|
|
|
|
-webkit-border-top-right-radius: $radius;
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin round-borders-all($radius) {
|
|
|
|
border: 1px solid #eaeaea;
|
|
|
|
-moz-border-radius: $radius;
|
|
|
|
-webkit-border-radius: $radius;
|
|
|
|
border-radius: $radius;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
*
|
|
|
|
*/
|
2012-02-26 23:21:53 +01:00
|
|
|
@import "ui_basic.scss";
|
2012-02-26 23:41:53 +01:00
|
|
|
|
2012-02-28 23:45:38 +01:00
|
|
|
/**
|
|
|
|
* UI mars theme
|
|
|
|
*/
|
|
|
|
@import "ui_mars.scss";
|
|
|
|
|
2012-04-10 07:51:08 +02:00
|
|
|
/**
|
|
|
|
* Gitlab bootstrap.
|
|
|
|
* Overrides some styles of twitter bootstrap.
|
|
|
|
* Also give some common classes for gitlab app
|
|
|
|
*/
|
|
|
|
@import "gitlab_bootstrap.scss";
|
|
|
|
|
|
|
|
|
2012-02-26 23:41:53 +01:00
|
|
|
/**
|
|
|
|
* Most of application styles placed here.
|
|
|
|
* This file represent common UI that should not be changed between themes
|
|
|
|
* or project restyling like form width or user avatar class or commit title
|
|
|
|
*
|
|
|
|
* TODO: clean it
|
|
|
|
*/
|
2012-02-11 18:56:18 +01:00
|
|
|
@import "common.scss";
|
|
|
|
|
2012-02-26 23:41:53 +01:00
|
|
|
/**
|
2012-04-14 00:46:11 +02:00
|
|
|
* Styles related to displaying commits
|
|
|
|
*/
|
|
|
|
@import "sections/commits.scss";
|
|
|
|
|
2012-04-16 23:22:59 +02:00
|
|
|
/**
|
|
|
|
* Styles related to displaying issues
|
|
|
|
*/
|
|
|
|
@import "sections/issues.scss";
|
|
|
|
|
2012-04-20 18:11:49 +02:00
|
|
|
/**
|
|
|
|
* Styles related to projects
|
|
|
|
*/
|
|
|
|
@import "sections/projects.scss";
|
|
|
|
|
2012-04-14 00:46:11 +02:00
|
|
|
/**
|
|
|
|
* This scss file redefine chozen selectbox styles for
|
2012-02-26 23:41:53 +01:00
|
|
|
* project Branch/Tag select element
|
|
|
|
*/
|
|
|
|
@import "ref_select.scss";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Code (files list) styles. Browsing project files there
|
|
|
|
*/
|
2012-02-11 18:56:18 +01:00
|
|
|
@import "tree.scss";
|
|
|
|
|
2012-02-26 23:41:53 +01:00
|
|
|
/**
|
|
|
|
* This file represent notes(comments) styles
|
|
|
|
*/
|
|
|
|
@import "notes.scss";
|
2012-02-11 18:56:18 +01:00
|
|
|
|
2012-02-26 23:41:53 +01:00
|
|
|
/**
|
|
|
|
* Devise styles
|
|
|
|
*/
|
|
|
|
@import "login.scss";
|
2012-02-20 18:16:55 +01:00
|
|
|
|
2012-02-26 23:41:53 +01:00
|
|
|
/**
|
|
|
|
* CODE HIGHTLIGHT BASE
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
@import "highlight.scss";
|
2012-02-11 18:56:18 +01:00
|
|
|
|
2012-02-26 23:41:53 +01:00
|
|
|
/**
|
|
|
|
* CODE HIGHTLIGHT DARK schema
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
@import "highlight.black.scss";
|
2012-04-08 23:28:58 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* JQUERY UI ext
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
@import "jquery_ui.scss";
|