gitlab-org--gitlab-foss/app/assets/stylesheets/main.scss

140 lines
2.7 KiB
SCSS
Raw Normal View History

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