summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/ci
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/ci')
-rw-r--r--app/assets/stylesheets/ci/application.scss46
-rw-r--r--app/assets/stylesheets/ci/generic/avatar.scss29
-rw-r--r--app/assets/stylesheets/ci/generic/buttons.scss7
-rw-r--r--app/assets/stylesheets/ci/generic/callout.scss45
-rw-r--r--app/assets/stylesheets/ci/generic/common.scss189
-rw-r--r--app/assets/stylesheets/ci/generic/forms.scss28
-rw-r--r--app/assets/stylesheets/ci/generic/tables.scss20
-rw-r--r--app/assets/stylesheets/ci/generic/typography.scss63
-rw-r--r--app/assets/stylesheets/ci/generic/xterm.scss904
-rw-r--r--app/assets/stylesheets/ci/main/fonts.scss2
-rw-r--r--app/assets/stylesheets/ci/main/layout.scss18
-rw-r--r--app/assets/stylesheets/ci/main/mixins.scss31
-rw-r--r--app/assets/stylesheets/ci/main/variables.scss44
-rw-r--r--app/assets/stylesheets/ci/sections/builds.scss54
-rw-r--r--app/assets/stylesheets/ci/sections/lint.scss8
-rw-r--r--app/assets/stylesheets/ci/sections/login.scss13
-rw-r--r--app/assets/stylesheets/ci/sections/navbar.scss54
-rw-r--r--app/assets/stylesheets/ci/sections/projects.scss61
-rw-r--r--app/assets/stylesheets/ci/sections/runners.scss34
-rw-r--r--app/assets/stylesheets/ci/sections/setup.scss11
20 files changed, 1661 insertions, 0 deletions
diff --git a/app/assets/stylesheets/ci/application.scss b/app/assets/stylesheets/ci/application.scss
new file mode 100644
index 00000000000..ce080c7cf8a
--- /dev/null
+++ b/app/assets/stylesheets/ci/application.scss
@@ -0,0 +1,46 @@
+/*
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
+ * listed below.
+ *
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
+ *
+ * You're free to add application-wide styles to this file and they'll appear at the top of the
+ * compiled file, but it's generally better to create a new file per style scope.
+ *
+ *= require_self
+ */
+
+@import "main/variables.scss";
+@import "main/mixins.scss";
+@import "main/fonts.scss";
+@import "main/layout.scss";
+
+/**
+ * Twitter bootstrap
+ */
+@import 'bootstrap';
+
+/**
+ * Font icons
+ *
+ */
+@import "font-awesome";
+
+/**
+ * Generic css (forms, nav etc):
+ */
+@import "generic/*";
+
+/**
+ * Page specific styles (issues, projects etc):
+ */
+
+@import "sections/*";
+
+/*
+ * NProgress
+ */
+$nprogress-color: #9BC;
+@import 'nprogress';
+@import 'nprogress-bootstrap';
diff --git a/app/assets/stylesheets/ci/generic/avatar.scss b/app/assets/stylesheets/ci/generic/avatar.scss
new file mode 100644
index 00000000000..fc0914cddea
--- /dev/null
+++ b/app/assets/stylesheets/ci/generic/avatar.scss
@@ -0,0 +1,29 @@
+.avatar {
+ float: left;
+ margin-right: 12px;
+ width: 40px;
+ height: 40px;
+ padding: 0;
+ @include border-radius($avatar_radius);
+
+ &.avatar-inline {
+ float: none;
+ margin-left: 4px;
+ margin-bottom: 2px;
+
+ &.s16 { margin-right: 4px; }
+ &.s24 { margin-right: 4px; }
+ }
+
+ &.avatar-tile {
+ @include border-radius(0px);
+ }
+
+ &.s16 { width: 16px; height: 16px; margin-right: 6px; }
+ &.s24 { width: 24px; height: 24px; margin-right: 8px; }
+ &.s26 { width: 26px; height: 26px; margin-right: 8px; }
+ &.s32 { width: 32px; height: 32px; margin-right: 10px; }
+ &.s60 { width: 60px; height: 60px; margin-right: 12px; }
+ &.s90 { width: 90px; height: 90px; margin-right: 15px; }
+ &.s160 { width: 160px; height: 160px; margin-right: 20px; }
+}
diff --git a/app/assets/stylesheets/ci/generic/buttons.scss b/app/assets/stylesheets/ci/generic/buttons.scss
new file mode 100644
index 00000000000..5605c097c03
--- /dev/null
+++ b/app/assets/stylesheets/ci/generic/buttons.scss
@@ -0,0 +1,7 @@
+.btn {
+ @extend .btn-default;
+
+ &.btn-save {
+ @extend .btn-primary;
+ }
+}
diff --git a/app/assets/stylesheets/ci/generic/callout.scss b/app/assets/stylesheets/ci/generic/callout.scss
new file mode 100644
index 00000000000..f1699d21c9b
--- /dev/null
+++ b/app/assets/stylesheets/ci/generic/callout.scss
@@ -0,0 +1,45 @@
+/*
+ * Callouts from Bootstrap3 docs
+ *
+ * Not quite alerts, but custom and helpful notes for folks reading the docs.
+ * Requires a base and modifier class.
+ */
+
+/* Common styles for all types */
+.bs-callout {
+ margin: 20px 0;
+ padding: 20px;
+ border-left: 3px solid #eee;
+ color: #666;
+ background: #f9f9f9;
+}
+.bs-callout h4 {
+ margin-top: 0;
+ margin-bottom: 5px;
+}
+.bs-callout p:last-child {
+ margin-bottom: 0;
+}
+
+/* Variations */
+.bs-callout-danger {
+ background-color: #fdf7f7;
+ border-color: #eed3d7;
+ color: #b94a48;
+}
+.bs-callout-warning {
+ background-color: #faf8f0;
+ border-color: #faebcc;
+ color: #8a6d3b;
+}
+.bs-callout-info {
+ background-color: #f4f8fa;
+ border-color: #bce8f1;
+ color: #34789a;
+}
+.bs-callout-success {
+ background-color: #dff0d8;
+ border-color: #5cA64d;
+ color: #3c763d;
+}
+
diff --git a/app/assets/stylesheets/ci/generic/common.scss b/app/assets/stylesheets/ci/generic/common.scss
new file mode 100644
index 00000000000..58b7a93b0ad
--- /dev/null
+++ b/app/assets/stylesheets/ci/generic/common.scss
@@ -0,0 +1,189 @@
+/** COLORS **/
+.cgray { color: gray }
+.clgray { color: #BBB }
+.cred { color: #D12F19 }
+.cgreen { color: #4a2 }
+.cblue { color: #29A }
+.cblack { color: #111 }
+.cdark { color: #444 }
+.camber { color: #ffc000 }
+.cwhite { color: #fff!important }
+.bgred { background: #F2DEDE!important }
+
+/** COMMON CLASSES **/
+.prepend-top-10 { margin-top:10px }
+.prepend-top-20 { margin-top:20px }
+.prepend-left-10 { margin-left:10px }
+.prepend-left-20 { margin-left:20px }
+.append-right-10 { margin-right:10px }
+.append-right-20 { margin-right:20px }
+.append-bottom-10 { margin-bottom:10px }
+.append-bottom-15 { margin-bottom:15px }
+.append-bottom-20 { margin-bottom:20px }
+.inline { display: inline-block }
+.padded { padding:20px }
+.ipadded { padding:20px!important }
+.lborder { border-left:1px solid #eee }
+.underlined_link { text-decoration: underline; }
+.hint { font-style: italic; color: #999; }
+.light { color: #888 }
+.tiny { font-weight: normal }
+.vtop { vertical-align: top !important; }
+
+
+.dropdown-menu > li > a {
+ text-shadow: none;
+}
+.dropdown-menu > li > a:hover,
+.dropdown-menu > li > a:focus {
+ background: #29b;
+}
+
+.breadcrumb > li + li:before {
+ content: "/";
+ padding: 0;
+ color: #666;
+}
+
+.str-truncated {
+ display: inline-block;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ vertical-align: top;
+ white-space: nowrap;
+ max-width: 82%;
+}
+
+.page-title {
+ color: #444;
+ line-height: 1.5;
+ margin-top: 0px;
+ margin-bottom: 15px;
+}
+
+.slead {
+ margin-bottom: 18px;
+ font-size: 16px;
+ font-weight: normal;
+ line-height: 1.4;
+}
+
+.help-callout {
+ li {
+ font-size: 15px;
+ line-height: 1.6;
+ }
+}
+
+/** light list with border-bottom between li **/
+ul.bordered-list {
+ margin: 5px 0px;
+ padding: 0px;
+ li {
+ padding: 5px 0;
+ border-bottom: 1px solid #EEE;
+ overflow: hidden;
+ display: block;
+ margin: 0px;
+ &:last-child { border:none }
+ &.active {
+ background: #f9f9f9;
+ a { font-weight: bold; }
+ }
+ }
+
+ &.top-list {
+ li:first-child {
+ padding-top: 0;
+ h4, h5 {
+ margin-top: 0;
+ }
+ }
+ }
+}
+
+.underlined-title {
+ border-bottom: 1px solid #ccc;
+ padding: 0 0 3px 3px;
+}
+
+// Nav tabs
+.nav.nav-tabs {
+ li {
+ > a {
+ padding: 8px 20px;
+ margin-right: 7px;
+ line-height: 20px;
+ border-color: #EEE;
+ color: #888;
+ border-bottom: 1px solid #ddd;
+ .badge {
+ background-color: #eee;
+ color: #888;
+ text-shadow: 0 1px 1px #fff;
+ }
+ i[class^="fa-"] {
+ line-height: 14px;
+ }
+ }
+ &.active {
+ > a {
+ border-color: #CCC;
+ border-bottom: 1px solid #fff;
+ color: #333;
+ font-weight: bold;
+ }
+ }
+ }
+
+ &.nav-small-tabs > li > a {
+ padding: 6px 9px;
+ }
+}
+
+.nav-tabs > li > a,
+.nav-pills > li > a {
+ color: #666;
+}
+
+.nav-small > li > a {
+ padding: 3px 5px;
+ font-size: 12px;
+}
+
+
+
+// Breadcrumb
+ul.breadcrumb {
+ background: white;
+ border: none;
+ li {
+ display: inline;
+ text-shadow: 0 1px 0 white
+ }
+
+ a {
+ font-size: 16px;
+ }
+}
+
+/**
+ * fix to keep tooltips position in top navigation bar
+ *
+ */
+.navbar .nav > li {
+ position: relative;
+ white-space: nowrap;
+}
+
+// alerts
+.alert-disabled {
+ background-color: #e6e6e6;
+ border-color: #ebccd1;
+ color: #b0b0b0;
+}
+
+.label {
+ margin-right: 5px;
+ font-weight: normal;
+}
diff --git a/app/assets/stylesheets/ci/generic/forms.scss b/app/assets/stylesheets/ci/generic/forms.scss
new file mode 100644
index 00000000000..c8e4e8d6602
--- /dev/null
+++ b/app/assets/stylesheets/ci/generic/forms.scss
@@ -0,0 +1,28 @@
+input[type='text'].danger {
+ background: #F2DEDE!important;
+ border-color: #D66;
+ text-shadow: 0 1px 1px #fff
+}
+
+fieldset {
+ margin-bottom: 25px;
+}
+
+.form-actions {
+ padding: 17px 20px 18px;
+ margin-top: 18px;
+ margin-bottom: 18px;
+ background-color: whitesmoke;
+ border-top: 1px solid #e5e5e5;
+ padding-left: 17%;
+}
+
+label {
+ &.control-label {
+ @extend .col-sm-2;
+ }
+
+ &.inline-label {
+ margin: 0;
+ }
+}
diff --git a/app/assets/stylesheets/ci/generic/tables.scss b/app/assets/stylesheets/ci/generic/tables.scss
new file mode 100644
index 00000000000..71a7d4abaee
--- /dev/null
+++ b/app/assets/stylesheets/ci/generic/tables.scss
@@ -0,0 +1,20 @@
+table {
+ &.table {
+ tr {
+ td, th {
+ padding: 8px 10px;
+ line-height: 20px;
+ vertical-align: middle;
+ }
+ th {
+ font-weight: normal;
+ font-size: 15px;
+ border-bottom: 1px solid #CCC !important;
+ }
+ td {
+ border-color: #F1F1F1 !important;
+ border-bottom: 1px solid;
+ }
+ }
+ }
+}
diff --git a/app/assets/stylesheets/ci/generic/typography.scss b/app/assets/stylesheets/ci/generic/typography.scss
new file mode 100644
index 00000000000..b9ed23b9d3a
--- /dev/null
+++ b/app/assets/stylesheets/ci/generic/typography.scss
@@ -0,0 +1,63 @@
+h6 {
+ color: #888;
+ text-transform: uppercase;
+}
+
+pre {
+ font-family: $monospace_font;
+
+ &.dark {
+ background: #333;
+ color: #f5f5f5;
+ }
+}
+
+/**
+ * Links
+ *
+ */
+a {
+ outline: none;
+ color: $link_color;
+ &:hover {
+ text-decoration: none;
+ color: $primary_color;
+ }
+
+ &:focus {
+ text-decoration: underline;
+ }
+
+ &.dark {
+ color: $style_color;
+ }
+
+ &.lined {
+ text-decoration: underline;
+ &:hover { text-decoration: underline; }
+ }
+
+ &.gray {
+ color: gray;
+ }
+
+ &.supp_diff_link {
+ text-align: center;
+ padding: 20px 0;
+ background: #f1f1f1;
+ width: 100%;
+ float: left;
+ }
+
+ &.neib {
+ margin-right: 15px;
+ }
+}
+
+a:focus {
+ outline: none;
+}
+
+.monospace {
+ font-family: $monospace_font;
+}
diff --git a/app/assets/stylesheets/ci/generic/xterm.scss b/app/assets/stylesheets/ci/generic/xterm.scss
new file mode 100644
index 00000000000..460a6bb2024
--- /dev/null
+++ b/app/assets/stylesheets/ci/generic/xterm.scss
@@ -0,0 +1,904 @@
+// color codes are based on http://en.wikipedia.org/wiki/File:Xterm_256color_chart.svg
+// see also: https://gist.github.com/jasonm23/2868981
+
+$black: #000000;
+$red: #cd0000;
+$green: #00cd00;
+$yellow: #cdcd00;
+$blue: #0000ee; // according to wikipedia, this is the xterm standard
+//$blue: #1e90ff; // this is used by all the terminals I tried (when configured with the xterm color profile)
+$magenta: #cd00cd;
+$cyan: #00cdcd;
+$white: #e5e5e5;
+$l-black: #7f7f7f;
+$l-red: #ff0000;
+$l-green: #00ff00;
+$l-yellow: #ffff00;
+$l-blue: #5c5cff;
+$l-magenta: #ff00ff;
+$l-cyan: #00ffff;
+$l-white: #ffffff;
+
+.term-bold {
+ font-weight: bold;
+}
+.term-italic {
+ font-style: italic;
+}
+.term-conceal {
+ visibility: hidden;
+}
+.term-underline {
+ text-decoration: underline;
+}
+.term-cross {
+ text-decoration: line-through;
+}
+
+.term-fg-black {
+ color: $black;
+}
+.term-fg-red {
+ color: $red;
+}
+.term-fg-green {
+ color: $green;
+}
+.term-fg-yellow {
+ color: $yellow;
+}
+.term-fg-blue {
+ color: $blue;
+}
+.term-fg-magenta {
+ color: $magenta;
+}
+.term-fg-cyan {
+ color: $cyan;
+}
+.term-fg-white {
+ color: $white;
+}
+.term-fg-l-black {
+ color: $l-black;
+}
+.term-fg-l-red {
+ color: $l-red;
+}
+.term-fg-l-green {
+ color: $l-green;
+}
+.term-fg-l-yellow {
+ color: $l-yellow;
+}
+.term-fg-l-blue {
+ color: $l-blue;
+}
+.term-fg-l-magenta {
+ color: $l-magenta;
+}
+.term-fg-l-cyan {
+ color: $l-cyan;
+}
+.term-fg-l-white {
+ color: $l-white;
+}
+
+.term-bg-black {
+ background-color: $black;
+}
+.term-bg-red {
+ background-color: $red;
+}
+.term-bg-green {
+ background-color: $green;
+}
+.term-bg-yellow {
+ background-color: $yellow;
+}
+.term-bg-blue {
+ background-color: $blue;
+}
+.term-bg-magenta {
+ background-color: $magenta;
+}
+.term-bg-cyan {
+ background-color: $cyan;
+}
+.term-bg-white {
+ background-color: $white;
+}
+.term-bg-l-black {
+ background-color: $l-black;
+}
+.term-bg-l-red {
+ background-color: $l-red;
+}
+.term-bg-l-green {
+ background-color: $l-green;
+}
+.term-bg-l-yellow {
+ background-color: $l-yellow;
+}
+.term-bg-l-blue {
+ background-color: $l-blue;
+}
+.term-bg-l-magenta {
+ background-color: $l-magenta;
+}
+.term-bg-l-cyan {
+ background-color: $l-cyan;
+}
+.term-bg-l-white {
+ background-color: $l-white;
+}
+
+
+.xterm-fg-0 {
+ color: #000000;
+}
+.xterm-fg-1 {
+ color: #800000;
+}
+.xterm-fg-2 {
+ color: #008000;
+}
+.xterm-fg-3 {
+ color: #808000;
+}
+.xterm-fg-4 {
+ color: #000080;
+}
+.xterm-fg-5 {
+ color: #800080;
+}
+.xterm-fg-6 {
+ color: #008080;
+}
+.xterm-fg-7 {
+ color: #c0c0c0;
+}
+.xterm-fg-8 {
+ color: #808080;
+}
+.xterm-fg-9 {
+ color: #ff0000;
+}
+.xterm-fg-10 {
+ color: #00ff00;
+}
+.xterm-fg-11 {
+ color: #ffff00;
+}
+.xterm-fg-12 {
+ color: #0000ff;
+}
+.xterm-fg-13 {
+ color: #ff00ff;
+}
+.xterm-fg-14 {
+ color: #00ffff;
+}
+.xterm-fg-15 {
+ color: #ffffff;
+}
+.xterm-fg-16 {
+ color: #000000;
+}
+.xterm-fg-17 {
+ color: #00005f;
+}
+.xterm-fg-18 {
+ color: #000087;
+}
+.xterm-fg-19 {
+ color: #0000af;
+}
+.xterm-fg-20 {
+ color: #0000d7;
+}
+.xterm-fg-21 {
+ color: #0000ff;
+}
+.xterm-fg-22 {
+ color: #005f00;
+}
+.xterm-fg-23 {
+ color: #005f5f;
+}
+.xterm-fg-24 {
+ color: #005f87;
+}
+.xterm-fg-25 {
+ color: #005faf;
+}
+.xterm-fg-26 {
+ color: #005fd7;
+}
+.xterm-fg-27 {
+ color: #005fff;
+}
+.xterm-fg-28 {
+ color: #008700;
+}
+.xterm-fg-29 {
+ color: #00875f;
+}
+.xterm-fg-30 {
+ color: #008787;
+}
+.xterm-fg-31 {
+ color: #0087af;
+}
+.xterm-fg-32 {
+ color: #0087d7;
+}
+.xterm-fg-33 {
+ color: #0087ff;
+}
+.xterm-fg-34 {
+ color: #00af00;
+}
+.xterm-fg-35 {
+ color: #00af5f;
+}
+.xterm-fg-36 {
+ color: #00af87;
+}
+.xterm-fg-37 {
+ color: #00afaf;
+}
+.xterm-fg-38 {
+ color: #00afd7;
+}
+.xterm-fg-39 {
+ color: #00afff;
+}
+.xterm-fg-40 {
+ color: #00d700;
+}
+.xterm-fg-41 {
+ color: #00d75f;
+}
+.xterm-fg-42 {
+ color: #00d787;
+}
+.xterm-fg-43 {
+ color: #00d7af;
+}
+.xterm-fg-44 {
+ color: #00d7d7;
+}
+.xterm-fg-45 {
+ color: #00d7ff;
+}
+.xterm-fg-46 {
+ color: #00ff00;
+}
+.xterm-fg-47 {
+ color: #00ff5f;
+}
+.xterm-fg-48 {
+ color: #00ff87;
+}
+.xterm-fg-49 {
+ color: #00ffaf;
+}
+.xterm-fg-50 {
+ color: #00ffd7;
+}
+.xterm-fg-51 {
+ color: #00ffff;
+}
+.xterm-fg-52 {
+ color: #5f0000;
+}
+.xterm-fg-53 {
+ color: #5f005f;
+}
+.xterm-fg-54 {
+ color: #5f0087;
+}
+.xterm-fg-55 {
+ color: #5f00af;
+}
+.xterm-fg-56 {
+ color: #5f00d7;
+}
+.xterm-fg-57 {
+ color: #5f00ff;
+}
+.xterm-fg-58 {
+ color: #5f5f00;
+}
+.xterm-fg-59 {
+ color: #5f5f5f;
+}
+.xterm-fg-60 {
+ color: #5f5f87;
+}
+.xterm-fg-61 {
+ color: #5f5faf;
+}
+.xterm-fg-62 {
+ color: #5f5fd7;
+}
+.xterm-fg-63 {
+ color: #5f5fff;
+}
+.xterm-fg-64 {
+ color: #5f8700;
+}
+.xterm-fg-65 {
+ color: #5f875f;
+}
+.xterm-fg-66 {
+ color: #5f8787;
+}
+.xterm-fg-67 {
+ color: #5f87af;
+}
+.xterm-fg-68 {
+ color: #5f87d7;
+}
+.xterm-fg-69 {
+ color: #5f87ff;
+}
+.xterm-fg-70 {
+ color: #5faf00;
+}
+.xterm-fg-71 {
+ color: #5faf5f;
+}
+.xterm-fg-72 {
+ color: #5faf87;
+}
+.xterm-fg-73 {
+ color: #5fafaf;
+}
+.xterm-fg-74 {
+ color: #5fafd7;
+}
+.xterm-fg-75 {
+ color: #5fafff;
+}
+.xterm-fg-76 {
+ color: #5fd700;
+}
+.xterm-fg-77 {
+ color: #5fd75f;
+}
+.xterm-fg-78 {
+ color: #5fd787;
+}
+.xterm-fg-79 {
+ color: #5fd7af;
+}
+.xterm-fg-80 {
+ color: #5fd7d7;
+}
+.xterm-fg-81 {
+ color: #5fd7ff;
+}
+.xterm-fg-82 {
+ color: #5fff00;
+}
+.xterm-fg-83 {
+ color: #5fff5f;
+}
+.xterm-fg-84 {
+ color: #5fff87;
+}
+.xterm-fg-85 {
+ color: #5fffaf;
+}
+.xterm-fg-86 {
+ color: #5fffd7;
+}
+.xterm-fg-87 {
+ color: #5fffff;
+}
+.xterm-fg-88 {
+ color: #870000;
+}
+.xterm-fg-89 {
+ color: #87005f;
+}
+.xterm-fg-90 {
+ color: #870087;
+}
+.xterm-fg-91 {
+ color: #8700af;
+}
+.xterm-fg-92 {
+ color: #8700d7;
+}
+.xterm-fg-93 {
+ color: #8700ff;
+}
+.xterm-fg-94 {
+ color: #875f00;
+}
+.xterm-fg-95 {
+ color: #875f5f;
+}
+.xterm-fg-96 {
+ color: #875f87;
+}
+.xterm-fg-97 {
+ color: #875faf;
+}
+.xterm-fg-98 {
+ color: #875fd7;
+}
+.xterm-fg-99 {
+ color: #875fff;
+}
+.xterm-fg-100 {
+ color: #878700;
+}
+.xterm-fg-101 {
+ color: #87875f;
+}
+.xterm-fg-102 {
+ color: #878787;
+}
+.xterm-fg-103 {
+ color: #8787af;
+}
+.xterm-fg-104 {
+ color: #8787d7;
+}
+.xterm-fg-105 {
+ color: #8787ff;
+}
+.xterm-fg-106 {
+ color: #87af00;
+}
+.xterm-fg-107 {
+ color: #87af5f;
+}
+.xterm-fg-108 {
+ color: #87af87;
+}
+.xterm-fg-109 {
+ color: #87afaf;
+}
+.xterm-fg-110 {
+ color: #87afd7;
+}
+.xterm-fg-111 {
+ color: #87afff;
+}
+.xterm-fg-112 {
+ color: #87d700;
+}
+.xterm-fg-113 {
+ color: #87d75f;
+}
+.xterm-fg-114 {
+ color: #87d787;
+}
+.xterm-fg-115 {
+ color: #87d7af;
+}
+.xterm-fg-116 {
+ color: #87d7d7;
+}
+.xterm-fg-117 {
+ color: #87d7ff;
+}
+.xterm-fg-118 {
+ color: #87ff00;
+}
+.xterm-fg-119 {
+ color: #87ff5f;
+}
+.xterm-fg-120 {
+ color: #87ff87;
+}
+.xterm-fg-121 {
+ color: #87ffaf;
+}
+.xterm-fg-122 {
+ color: #87ffd7;
+}
+.xterm-fg-123 {
+ color: #87ffff;
+}
+.xterm-fg-124 {
+ color: #af0000;
+}
+.xterm-fg-125 {
+ color: #af005f;
+}
+.xterm-fg-126 {
+ color: #af0087;
+}
+.xterm-fg-127 {
+ color: #af00af;
+}
+.xterm-fg-128 {
+ color: #af00d7;
+}
+.xterm-fg-129 {
+ color: #af00ff;
+}
+.xterm-fg-130 {
+ color: #af5f00;
+}
+.xterm-fg-131 {
+ color: #af5f5f;
+}
+.xterm-fg-132 {
+ color: #af5f87;
+}
+.xterm-fg-133 {
+ color: #af5faf;
+}
+.xterm-fg-134 {
+ color: #af5fd7;
+}
+.xterm-fg-135 {
+ color: #af5fff;
+}
+.xterm-fg-136 {
+ color: #af8700;
+}
+.xterm-fg-137 {
+ color: #af875f;
+}
+.xterm-fg-138 {
+ color: #af8787;
+}
+.xterm-fg-139 {
+ color: #af87af;
+}
+.xterm-fg-140 {
+ color: #af87d7;
+}
+.xterm-fg-141 {
+ color: #af87ff;
+}
+.xterm-fg-142 {
+ color: #afaf00;
+}
+.xterm-fg-143 {
+ color: #afaf5f;
+}
+.xterm-fg-144 {
+ color: #afaf87;
+}
+.xterm-fg-145 {
+ color: #afafaf;
+}
+.xterm-fg-146 {
+ color: #afafd7;
+}
+.xterm-fg-147 {
+ color: #afafff;
+}
+.xterm-fg-148 {
+ color: #afd700;
+}
+.xterm-fg-149 {
+ color: #afd75f;
+}
+.xterm-fg-150 {
+ color: #afd787;
+}
+.xterm-fg-151 {
+ color: #afd7af;
+}
+.xterm-fg-152 {
+ color: #afd7d7;
+}
+.xterm-fg-153 {
+ color: #afd7ff;
+}
+.xterm-fg-154 {
+ color: #afff00;
+}
+.xterm-fg-155 {
+ color: #afff5f;
+}
+.xterm-fg-156 {
+ color: #afff87;
+}
+.xterm-fg-157 {
+ color: #afffaf;
+}
+.xterm-fg-158 {
+ color: #afffd7;
+}
+.xterm-fg-159 {
+ color: #afffff;
+}
+.xterm-fg-160 {
+ color: #d70000;
+}
+.xterm-fg-161 {
+ color: #d7005f;
+}
+.xterm-fg-162 {
+ color: #d70087;
+}
+.xterm-fg-163 {
+ color: #d700af;
+}
+.xterm-fg-164 {
+ color: #d700d7;
+}
+.xterm-fg-165 {
+ color: #d700ff;
+}
+.xterm-fg-166 {
+ color: #d75f00;
+}
+.xterm-fg-167 {
+ color: #d75f5f;
+}
+.xterm-fg-168 {
+ color: #d75f87;
+}
+.xterm-fg-169 {
+ color: #d75faf;
+}
+.xterm-fg-170 {
+ color: #d75fd7;
+}
+.xterm-fg-171 {
+ color: #d75fff;
+}
+.xterm-fg-172 {
+ color: #d78700;
+}
+.xterm-fg-173 {
+ color: #d7875f;
+}
+.xterm-fg-174 {
+ color: #d78787;
+}
+.xterm-fg-175 {
+ color: #d787af;
+}
+.xterm-fg-176 {
+ color: #d787d7;
+}
+.xterm-fg-177 {
+ color: #d787ff;
+}
+.xterm-fg-178 {
+ color: #d7af00;
+}
+.xterm-fg-179 {
+ color: #d7af5f;
+}
+.xterm-fg-180 {
+ color: #d7af87;
+}
+.xterm-fg-181 {
+ color: #d7afaf;
+}
+.xterm-fg-182 {
+ color: #d7afd7;
+}
+.xterm-fg-183 {
+ color: #d7afff;
+}
+.xterm-fg-184 {
+ color: #d7d700;
+}
+.xterm-fg-185 {
+ color: #d7d75f;
+}
+.xterm-fg-186 {
+ color: #d7d787;
+}
+.xterm-fg-187 {
+ color: #d7d7af;
+}
+.xterm-fg-188 {
+ color: #d7d7d7;
+}
+.xterm-fg-189 {
+ color: #d7d7ff;
+}
+.xterm-fg-190 {
+ color: #d7ff00;
+}
+.xterm-fg-191 {
+ color: #d7ff5f;
+}
+.xterm-fg-192 {
+ color: #d7ff87;
+}
+.xterm-fg-193 {
+ color: #d7ffaf;
+}
+.xterm-fg-194 {
+ color: #d7ffd7;
+}
+.xterm-fg-195 {
+ color: #d7ffff;
+}
+.xterm-fg-196 {
+ color: #ff0000;
+}
+.xterm-fg-197 {
+ color: #ff005f;
+}
+.xterm-fg-198 {
+ color: #ff0087;
+}
+.xterm-fg-199 {
+ color: #ff00af;
+}
+.xterm-fg-200 {
+ color: #ff00d7;
+}
+.xterm-fg-201 {
+ color: #ff00ff;
+}
+.xterm-fg-202 {
+ color: #ff5f00;
+}
+.xterm-fg-203 {
+ color: #ff5f5f;
+}
+.xterm-fg-204 {
+ color: #ff5f87;
+}
+.xterm-fg-205 {
+ color: #ff5faf;
+}
+.xterm-fg-206 {
+ color: #ff5fd7;
+}
+.xterm-fg-207 {
+ color: #ff5fff;
+}
+.xterm-fg-208 {
+ color: #ff8700;
+}
+.xterm-fg-209 {
+ color: #ff875f;
+}
+.xterm-fg-210 {
+ color: #ff8787;
+}
+.xterm-fg-211 {
+ color: #ff87af;
+}
+.xterm-fg-212 {
+ color: #ff87d7;
+}
+.xterm-fg-213 {
+ color: #ff87ff;
+}
+.xterm-fg-214 {
+ color: #ffaf00;
+}
+.xterm-fg-215 {
+ color: #ffaf5f;
+}
+.xterm-fg-216 {
+ color: #ffaf87;
+}
+.xterm-fg-217 {
+ color: #ffafaf;
+}
+.xterm-fg-218 {
+ color: #ffafd7;
+}
+.xterm-fg-219 {
+ color: #ffafff;
+}
+.xterm-fg-220 {
+ color: #ffd700;
+}
+.xterm-fg-221 {
+ color: #ffd75f;
+}
+.xterm-fg-222 {
+ color: #ffd787;
+}
+.xterm-fg-223 {
+ color: #ffd7af;
+}
+.xterm-fg-224 {
+ color: #ffd7d7;
+}
+.xterm-fg-225 {
+ color: #ffd7ff;
+}
+.xterm-fg-226 {
+ color: #ffff00;
+}
+.xterm-fg-227 {
+ color: #ffff5f;
+}
+.xterm-fg-228 {
+ color: #ffff87;
+}
+.xterm-fg-229 {
+ color: #ffffaf;
+}
+.xterm-fg-230 {
+ color: #ffffd7;
+}
+.xterm-fg-231 {
+ color: #ffffff;
+}
+.xterm-fg-232 {
+ color: #080808;
+}
+.xterm-fg-233 {
+ color: #121212;
+}
+.xterm-fg-234 {
+ color: #1c1c1c;
+}
+.xterm-fg-235 {
+ color: #262626;
+}
+.xterm-fg-236 {
+ color: #303030;
+}
+.xterm-fg-237 {
+ color: #3a3a3a;
+}
+.xterm-fg-238 {
+ color: #444444;
+}
+.xterm-fg-239 {
+ color: #4e4e4e;
+}
+.xterm-fg-240 {
+ color: #585858;
+}
+.xterm-fg-241 {
+ color: #626262;
+}
+.xterm-fg-242 {
+ color: #6c6c6c;
+}
+.xterm-fg-243 {
+ color: #767676;
+}
+.xterm-fg-244 {
+ color: #808080;
+}
+.xterm-fg-245 {
+ color: #8a8a8a;
+}
+.xterm-fg-246 {
+ color: #949494;
+}
+.xterm-fg-247 {
+ color: #9e9e9e;
+}
+.xterm-fg-248 {
+ color: #a8a8a8;
+}
+.xterm-fg-249 {
+ color: #b2b2b2;
+}
+.xterm-fg-250 {
+ color: #bcbcbc;
+}
+.xterm-fg-251 {
+ color: #c6c6c6;
+}
+.xterm-fg-252 {
+ color: #d0d0d0;
+}
+.xterm-fg-253 {
+ color: #dadada;
+}
+.xterm-fg-254 {
+ color: #e4e4e4;
+}
+.xterm-fg-255 {
+ color: #eeeeee;
+}
diff --git a/app/assets/stylesheets/ci/main/fonts.scss b/app/assets/stylesheets/ci/main/fonts.scss
new file mode 100644
index 00000000000..8cc9986415c
--- /dev/null
+++ b/app/assets/stylesheets/ci/main/fonts.scss
@@ -0,0 +1,2 @@
+/** Typo **/
+$monospace_font: 'Menlo', 'Liberation Mono', 'Consolas', 'Courier New', 'andale mono', 'lucida console', monospace;
diff --git a/app/assets/stylesheets/ci/main/layout.scss b/app/assets/stylesheets/ci/main/layout.scss
new file mode 100644
index 00000000000..fa54481fa05
--- /dev/null
+++ b/app/assets/stylesheets/ci/main/layout.scss
@@ -0,0 +1,18 @@
+html {
+ overflow-y: scroll;
+
+ &.touch .tooltip { display: none !important; }
+}
+
+body {
+ margin-bottom: 20px;
+}
+
+.container {
+ padding-top: 0;
+ z-index: 5;
+}
+
+.container .content {
+ margin: 0 0;
+}
diff --git a/app/assets/stylesheets/ci/main/mixins.scss b/app/assets/stylesheets/ci/main/mixins.scss
new file mode 100644
index 00000000000..40040822331
--- /dev/null
+++ b/app/assets/stylesheets/ci/main/mixins.scss
@@ -0,0 +1,31 @@
+@mixin box-shadow($shadow) {
+ -webkit-box-shadow: $shadow;
+ -moz-box-shadow: $shadow;
+ -ms-box-shadow: $shadow;
+ -o-box-shadow: $shadow;
+ box-shadow: $shadow;
+}
+
+@mixin border-radius($radius) {
+ -webkit-border-radius: $radius;
+ -moz-border-radius: $radius;
+ -ms-border-radius: $radius;
+ -o-border-radius: $radius;
+ border-radius: $radius;
+}
+
+@mixin linear-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: -ms-linear-gradient($from, $to);
+ background-image: -o-linear-gradient($from, $to);
+}
+
+@mixin transition($transition) {
+ -webkit-transition: $transition;
+ -moz-transition: $transition;
+ -ms-transition: $transition;
+ -o-transition: $transition;
+ transition: $transition;
+}
diff --git a/app/assets/stylesheets/ci/main/variables.scss b/app/assets/stylesheets/ci/main/variables.scss
new file mode 100644
index 00000000000..a8c672a8057
--- /dev/null
+++ b/app/assets/stylesheets/ci/main/variables.scss
@@ -0,0 +1,44 @@
+/**
+ * General Colors
+ */
+$primary_color: #2FA0BB;
+$link_color: #3A89A3;
+$style_color: #246;
+$bg_style_color: #246;
+$hover: #D9EDF7;
+
+/*
+ * Success colors (green)
+ */
+$border_success: #019875;
+$bg_success: #019875;
+
+/*
+ * Danger colors (red)
+ */
+$border_danger: #d43f3a;
+$bg_danger: #d9534f;
+
+/*
+ * Primary colors (blue)
+ */
+$border_primary: #246;
+$bg_primary: #246;
+
+/*
+ * Warning colors (yellow)
+ */
+$bg_warning: #EB9532;
+$border_warning: #EB9532;
+
+/**
+ * Twitter bootstrap variables
+ */
+$font-size-base: 13px !default;
+$nav-pills-active-link-hover-bg: $bg_style_color;
+$pagination-active-bg: $bg_style_color;
+
+/**
+ * Avatar variables
+ */
+$avatar_radius: 50%;
diff --git a/app/assets/stylesheets/ci/sections/builds.scss b/app/assets/stylesheets/ci/sections/builds.scss
new file mode 100644
index 00000000000..a9d39bb0cbd
--- /dev/null
+++ b/app/assets/stylesheets/ci/sections/builds.scss
@@ -0,0 +1,54 @@
+pre.trace {
+ background: #111111;
+ color: #fff;
+ font-family: $monospace_font;
+ white-space: pre;
+ white-space: pre-wrap; /* css-3 */
+ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
+ white-space: -pre-wrap; /* Opera 4-6 */
+ white-space: -o-pre-wrap; /* Opera 7 */
+ word-wrap: break-word; /* Internet Explorer 5.5+ */
+ overflow: auto;
+ overflow-y: hidden;
+ font-size: 12px;
+
+ .fa-refresh {
+ font-size: 24px;
+ margin-left: 20px;
+ }
+}
+
+.autoscroll-container {
+ position: fixed;
+ bottom: 10px;
+ right: 20px;
+ z-index: 100;
+}
+
+.scroll-controls {
+ position: fixed;
+ bottom: 10px;
+ left: 20px;
+ z-index: 100;
+
+ a {
+ display: block;
+ margin-bottom: 5px;
+ }
+}
+
+.build-widget {
+ padding: 10px;
+ background: #f4f4f4;
+ margin-bottom: 20px;
+ border-radius: 4px;
+
+ .title {
+ margin-top: 0;
+ color: #666;
+ line-height: 1.5;
+ }
+ .attr-name {
+ color: #777;
+ }
+}
diff --git a/app/assets/stylesheets/ci/sections/lint.scss b/app/assets/stylesheets/ci/sections/lint.scss
new file mode 100644
index 00000000000..7191b5d47aa
--- /dev/null
+++ b/app/assets/stylesheets/ci/sections/lint.scss
@@ -0,0 +1,8 @@
+.incorrect-syntax{
+ font-size: 19px;
+ color: red;
+}
+.correct-syntax{
+ font-size: 19px;
+ color: #47a447;
+} \ No newline at end of file
diff --git a/app/assets/stylesheets/ci/sections/login.scss b/app/assets/stylesheets/ci/sections/login.scss
new file mode 100644
index 00000000000..47e453ec8d2
--- /dev/null
+++ b/app/assets/stylesheets/ci/sections/login.scss
@@ -0,0 +1,13 @@
+.login-block {
+ padding: 15px;
+ margin: 0 auto;
+ text-align: center;
+
+ p {
+ font-size: 15px;
+ }
+
+ .btn-login {
+ padding: 18px 32px;
+ }
+}
diff --git a/app/assets/stylesheets/ci/sections/navbar.scss b/app/assets/stylesheets/ci/sections/navbar.scss
new file mode 100644
index 00000000000..efa70eb2956
--- /dev/null
+++ b/app/assets/stylesheets/ci/sections/navbar.scss
@@ -0,0 +1,54 @@
+.navbar-static-top {
+ margin-bottom: 20px;
+}
+
+.navbar-ci {
+ background: $style_color;
+
+ .navbar-brand {
+ color: #fff;
+
+ &:hover {
+ color: #fff;
+ }
+ }
+ .brand,
+ .nav > li > a {
+ color: #fff;
+
+ &:hover, &:focus, &:active {
+ background: none;
+ }
+ }
+
+ .profile-holder {
+ position: relative;
+
+ img {
+ position: absolute;
+ top: -8px;
+ width: 32px;
+ @include border-radius(32px);
+ }
+
+ span {
+ margin-left: 42px;
+ }
+ }
+
+ .btn-login {
+ padding: 7px 22px;
+ margin-top: 7px;
+ &:hover, &:active, &:focus {
+ background: #018865 !important;
+ }
+ }
+}
+
+.turbolink-spinner {
+ position: absolute;
+ top: 11px;
+ left: 50%;
+ color: #FFF;
+ font-size: 20px;
+}
diff --git a/app/assets/stylesheets/ci/sections/projects.scss b/app/assets/stylesheets/ci/sections/projects.scss
new file mode 100644
index 00000000000..84ee1399bff
--- /dev/null
+++ b/app/assets/stylesheets/ci/sections/projects.scss
@@ -0,0 +1,61 @@
+.project-title {
+ margin: 0;
+ color: #444;
+ font-size: 20px;
+ line-height: 1.5;
+}
+
+.builds {
+ @extend .table;
+
+ .build {
+ &.alert{
+ margin-bottom: 6px;
+ }
+ }
+}
+
+.projects-table {
+ td {
+ vertical-align: middle !important;
+ }
+}
+
+.commit-info {
+ font-size: 14px;
+
+ .attr-name {
+ font-weight: 300;
+ color: #666;
+ margin-right: 5px;
+ }
+
+ pre.commit-message {
+ font-size: 14px;
+ background: none;
+ padding: 0;
+ margin: 0;
+ border: none;
+ margin: 20px 0;
+ border-bottom: 1px solid #EEE;
+ padding-bottom: 20px;
+ border-radius: 0;
+ }
+}
+
+.search{
+ width: 300px;
+
+ .search-input{
+ height: 35px;
+ }
+
+ form{
+ margin-top: 0;
+ margin-bottom: 0;
+ }
+}
+
+.loading{
+ font-size: 20px;
+}
diff --git a/app/assets/stylesheets/ci/sections/runners.scss b/app/assets/stylesheets/ci/sections/runners.scss
new file mode 100644
index 00000000000..a9111a7388f
--- /dev/null
+++ b/app/assets/stylesheets/ci/sections/runners.scss
@@ -0,0 +1,34 @@
+.runner-state {
+ padding: 6px 12px;
+ margin-right: 10px;
+ color: #FFF;
+
+ &.runner-state-shared {
+ background: #32b186;
+ }
+ &.runner-state-specific {
+ background: #3498db;
+ }
+}
+
+.runner-status-online {
+ color: green;
+}
+
+.runner-status-offline {
+ color: gray;
+}
+
+.runner-status-paused {
+ color: red;
+}
+
+.runner {
+ .btn {
+ padding: 1px 6px;
+ }
+
+ h4 {
+ font-weight: normal;
+ }
+}
diff --git a/app/assets/stylesheets/ci/sections/setup.scss b/app/assets/stylesheets/ci/sections/setup.scss
new file mode 100644
index 00000000000..242614616d1
--- /dev/null
+++ b/app/assets/stylesheets/ci/sections/setup.scss
@@ -0,0 +1,11 @@
+.welcome-block {
+ margin-top: 50px;
+ color: #555;
+ font-size: 16px;
+ line-height: 1.5;
+
+ h1, h2, h3 {
+ font-weight: bold;
+ margin-bottom: 20px;
+ }
+}