gitlabhq/app/assets/stylesheets/main.scss

141 lines
2.8 KiB
SCSS
Raw Normal View History

/** Override bootstrap variables **/
$baseFontSize: 13px !default;
$baseLineHeight: 18px !default;
2012-11-27 20:30:39 +01:00
// BOOTSTRAP
2012-02-11 18:56:18 +01:00
@import "bootstrap";
2012-11-29 15:37:28 +01:00
@import "bootstrap/responsive-utilities";
@import "bootstrap/responsive-1200px-min";
// FONT AWESOME
@import "font-awesome";
2012-11-27 20:30:39 +01:00
/**
* Variables
* Contains colors
*/
@import "variables.scss";
/**
* Custom fonts
* Contains @font-face font Korolev and default $monotype
*/
@import "fonts.scss";
2012-06-12 13:58:44 +02:00
/**
* General mixins.
* Contains rounded borders, gradients and shades
*/
@import "mixins.scss";
2012-06-12 13:58:44 +02:00
/**
2012-08-17 08:09:11 +02:00
* Header of application.
2012-06-12 13:58:44 +02:00
* Contain application logo, search panel, profile icon
*/
2012-07-29 00:34:51 +02:00
@import "sections/header.scss";
2012-06-12 13:58:44 +02:00
/**
2012-08-17 08:09:11 +02:00
* Navigation menu of application.
2012-06-12 13:58:44 +02:00
* Panel with links to pages depends on project, profile or admin area
*/
2012-07-29 00:34:51 +02:00
@import "sections/nav.scss";
2012-06-12 13:58:44 +02:00
2012-02-26 23:41:53 +01:00
/**
2012-08-17 08:09:11 +02:00
* This file represent some UI that can be changed
* during web app restyle or theme select.
*
2012-02-26 23:41:53 +01:00
* Next items should be placed there
2012-06-12 13:58:44 +02:00
* - link, button colors
* - header restyles
* - main menu restyles
2012-02-26 23:41:53 +01:00
*
*/
@import "themes/ui_basic.scss";
2012-02-26 23:41:53 +01:00
2012-02-28 23:45:38 +01:00
/**
2012-11-21 05:14:05 +01:00
* UI themes:
2012-02-28 23:45:38 +01:00
*/
@import "themes/ui_mars.scss";
@import "themes/ui_modern.scss";
2012-11-21 05:14:05 +01:00
@import "themes/ui_gray.scss";
@import "themes/ui_color.scss";
2012-02-28 23:45:38 +01:00
2012-04-10 07:51:08 +02:00
/**
* GitLab bootstrap.
2012-04-10 07:51:08 +02:00
* Overrides some styles of twitter bootstrap.
* Also give some common classes for GitLab app
2012-04-10 07:51:08 +02:00
*/
@import "gitlab_bootstrap/common.scss";
@import "gitlab_bootstrap/typography.scss";
@import "gitlab_bootstrap/buttons.scss";
@import "gitlab_bootstrap/blocks.scss";
@import "gitlab_bootstrap/files.scss";
@import "gitlab_bootstrap/tables.scss";
@import "gitlab_bootstrap/lists.scss";
2012-04-10 07:51:08 +02:00
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
2012-08-17 08:09:11 +02:00
*
2012-02-26 23:41:53 +01:00
* TODO: clean it
*/
2012-02-11 18:56:18 +01:00
@import "common.scss";
2012-04-14 00:46:11 +02:00
/**
2012-06-13 19:02:30 +02:00
* Styles related to specific part of app
*/
2012-06-13 19:02:30 +02:00
@import "sections/commits.scss";
@import "sections/issues.scss";
@import "sections/projects.scss";
2012-12-12 18:42:08 +01:00
@import "sections/snippets.scss";
2012-06-13 19:02:30 +02:00
@import "sections/merge_requests.scss";
@import "sections/graph.scss";
@import "sections/events.scss";
2012-11-21 05:14:05 +01:00
@import "sections/themes.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";
/**
2012-08-17 08:09:11 +02:00
* Code (files list) styles. Browsing project files there
2012-02-26 23:41:53 +01:00
*/
2012-07-06 15:42:13 +02:00
@import "sections/tree.scss";
2012-02-11 18:56:18 +01:00
2012-02-26 23:41:53 +01:00
/**
2012-08-17 08:09:11 +02:00
* This file represent notes(comments) styles
2012-02-26 23:41:53 +01:00
*/
2012-07-29 00:34:51 +02:00
@import "sections/notes.scss";
2012-02-11 18:56:18 +01:00
2012-09-14 18:13:25 +02:00
/**
* This file represent profile styles
*/
@import "sections/profile.scss";
2012-02-26 23:41:53 +01:00
/**
2012-08-17 08:09:11 +02:00
* Devise styles
2012-02-26 23:41:53 +01:00
*/
2012-07-29 00:34:51 +02:00
@import "sections/login.scss";
2012-02-20 18:16:55 +01:00
2012-02-26 23:41:53 +01:00
/**
* CODE HIGHTLIGHT BASE
*
*/
2012-06-18 19:18:14 +02:00
@import "highlight/white.scss";
2012-02-11 18:56:18 +01:00
2012-02-26 23:41:53 +01:00
/**
* CODE HIGHTLIGHT DARK schema
*
*/
2012-06-18 19:18:14 +02:00
@import "highlight/dark.scss";
2012-10-09 19:11:49 +02:00
/**
* File Editor styles
*
*/
@import "sections/editor.scss";