@import "bootstrap";
@import "bootstrap-responsive";

/** GitLab colors **/
$link_color:#3A89A3;
$blue_link: #2fa0bb;
$style_color: #474d57;
$hover: #fdf5d9;

/** GitLab Fonts **/
@font-face { font-family: Korolev; src: url('korolev-medium-compressed.otf'); }

/** MIXINS **/
@mixin shade {
  -moz-box-shadow: 0 0 3px #ddd;
  -webkit-box-shadow: 0 0 3px #ddd;
  box-shadow: 0 0 3px #ddd;
}

@mixin solid_shade {
  -moz-box-shadow: 0 0 0 3px #eee;
  -webkit-box-shadow: 0 0 0 3px #eee;
  box-shadow: 0 0 0 3px #eee;
}

@mixin border-radius($radius) {
  -moz-border-radius: $radius;
  -webkit-border-radius: $radius;
  border-radius: $radius;
}

@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;
}

@mixin bg-gradient($from, $to) {
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from($from), to($to));
  background-image: -webkit-linear-gradient($from, $to);
  background-image: -moz-linear-gradient($from, $to);
  background-image: -o-linear-gradient($from, $to);
}

@mixin bg-gray-gradient {
  background:#eee;
  background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #eee), to(#dfdfdf));
  background-image: -webkit-linear-gradient(#eee 6.6%, #dfdfdf);
  background-image: -moz-linear-gradient(#eee 6.6%, #dfdfdf);
  background-image: -o-linear-gradient(#eee 6.6%, #dfdfdf);
}

@mixin bg-dark-gray-gradient {
  background:#eee;
  background-image: -webkit-linear-gradient(#e9e9e9, #d7d7d7);
  background-image: -moz-linear-gradient(#e9e9e9, #d7d7d7);
  background-image: -o-linear-gradient(#e9e9e9, #d7d7d7);
}

/**
 * Header of application.
 * Contain application logo, search panel, profile icon
 */
@import "sections/header.scss";

/**
 * Navigation menu of application.
 * Panel with links to pages depends on project, profile or admin area
 */
@import "sections/nav.scss";

/**
 * This file represent some UI that can be changed
 * during web app restyle or theme select.
 *
 * Next items should be placed there
 * - link, button colors
 * - header restyles
 * - main menu restyles
 *
 */
@import "themes/ui_basic.scss";

/**
 * UI mars theme
 */
@import "themes/ui_mars.scss";

/**
 * UI Modern theme
 */
@import "themes/ui_modern.scss";

/**
 * GitLab bootstrap.
 * Overrides some styles of twitter bootstrap.
 * Also give some common classes for GitLab app
 */
@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";


/**
 * 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
 */
@import "common.scss";


/**
 * Styles related to specific part of app
 */
@import "sections/commits.scss";
@import "sections/issues.scss";
@import "sections/projects.scss";
@import "sections/merge_requests.scss";
@import "sections/graph.scss";

/**
 * This scss file redefine chozen selectbox styles for
 * project Branch/Tag select element
 */
@import "ref_select.scss";

/**
 * Code (files list) styles. Browsing project files there
 */
@import "sections/tree.scss";

/**
 * This file represent notes(comments) styles
 */
@import "sections/notes.scss";

/**
 * Devise styles
 */
@import "sections/login.scss";

/**
 * CODE HIGHTLIGHT BASE
 *
 */
@import "highlight/white.scss";

/**
 * CODE HIGHTLIGHT DARK schema
 *
 */
@import "highlight/dark.scss";