Commit 508d479c authored by Jose Ivan Vargas's avatar Jose Ivan Vargas Committed by Natalia Tepluhina

Move builds scss file to page_bundles

This moves the buids.scss file to the
page_bundles folder
parent b0b8f80a
@import './pages/admin';
@import './pages/branches';
@import './pages/builds';
@import './pages/ci_projects';
@import './pages/clusters';
@import './pages/commits';
......
......@@ -3,6 +3,38 @@
* Mixins with fixed values
*/
@keyframes blinking-dot {
0% {
opacity: 1;
}
25% {
opacity: 0.4;
}
75% {
opacity: 0.4;
}
100% {
opacity: 1;
}
}
@keyframes blinking-scroll-button {
0% {
opacity: 0.2;
}
50% {
opacity: 1;
}
100% {
opacity: 0.2;
}
}
@mixin str-truncated($max-width: 82%) {
display: inline-block;
overflow: hidden;
......
@keyframes fade-out-status {
0%,
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes blinking-dot {
0% {
opacity: 1;
}
25% {
opacity: 0.4;
}
75% {
opacity: 0.4;
}
100% {
opacity: 1;
}
}
@keyframes blinking-scroll-button {
0% {
opacity: 0.2;
}
50% {
opacity: 1;
}
100% {
opacity: 0.2;
}
}
@import 'mixins_and_variables_and_functions';
.build-page {
.build-trace {
......@@ -325,29 +284,6 @@
}
}
.build-light-text {
color: $gl-text-color-secondary;
word-wrap: break-word;
}
.build-gutter-toggle {
position: absolute;
top: 50%;
right: 0;
margin-top: -17px;
}
@include media-breakpoint-down(sm) {
.top-bar {
.truncated-info {
white-space: nowrap;
overflow: hidden;
max-width: 220px;
text-overflow: ellipsis;
}
}
}
@include media-breakpoint-down(md) {
.content-list {
&.builds-content-list {
......@@ -356,11 +292,3 @@
}
}
}
[data-page='admin:jobs:index'] {
.admin-builds-table {
td:last-child {
min-width: 120px;
}
}
}
......@@ -8,3 +8,11 @@
.usage-data {
max-height: 400px;
}
[data-page='admin:jobs:index'] {
.admin-builds-table {
td:last-child {
min-width: 120px;
}
}
}
......@@ -86,3 +86,14 @@
color: $gl-text-color;
}
}
@include media-breakpoint-down(sm) {
.top-bar {
.truncated-info {
white-space: nowrap;
overflow: hidden;
max-width: 220px;
text-overflow: ellipsis;
}
}
}
- @body_class = 'ide-layout'
- page_title _('IDE')
- add_page_specific_style 'page_bundles/build'
- add_page_specific_style 'page_bundles/ide'
#ide.ide-loading{ data: ide_data }
......
- add_to_breadcrumbs _("Jobs"), project_jobs_path(@project)
- breadcrumb_title "##{@build.id}"
- page_title "#{@build.name} (##{@build.id})", _("Jobs")
- add_page_specific_style 'page_bundles/build'
- add_page_specific_style 'page_bundles/xterm'
- add_page_specific_style 'page_bundles/ci_status'
......
......@@ -176,6 +176,7 @@ module Gitlab
config.assets.precompile << "page_bundles/_mixins_and_variables_and_functions.css"
config.assets.precompile << "page_bundles/alert_management_details.css"
config.assets.precompile << "page_bundles/boards.css"
config.assets.precompile << "page_bundles/build.css"
config.assets.precompile << "page_bundles/ci_status.css"
config.assets.precompile << "page_bundles/cycle_analytics.css"
config.assets.precompile << "page_bundles/dev_ops_report.css"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment