37 lines
944 B
SCSS
37 lines
944 B
SCSS
// Welcome to GitLab css!
|
|
// If you need to add or modify UI component that is common for many pages
|
|
// like a table or typography then make changes in the framework/ directory.
|
|
// If you need to add unique style that should affect only one page - use pages/
|
|
// directory.
|
|
@import '@gitlab/at.js/dist/css/jquery.atwho';
|
|
@import 'dropzone/dist/basic';
|
|
|
|
// GitLab UI framework
|
|
@import 'framework';
|
|
|
|
// Page specific styles (issues, projects etc):
|
|
@import 'page_specific_files';
|
|
|
|
// Component specific styles, will be moved to gitlab-ui
|
|
@import 'components/**/*';
|
|
|
|
// Vendors specific styles
|
|
@import 'vendors/**/*';
|
|
|
|
// Styles for JS behaviors.
|
|
@import 'behaviors';
|
|
|
|
// EE-only stylesheets
|
|
@import 'application_ee';
|
|
|
|
// JH-only stylesheets
|
|
@import 'application_jh';
|
|
|
|
/* print styles */
|
|
@media print {
|
|
@import 'print';
|
|
}
|
|
|
|
/* Rules for overriding cloaking in startup-general.scss */
|
|
@import 'startup/cloaking';
|
|
@include cloak-startup-scss(block);
|