Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/pages')
-rw-r--r--app/assets/stylesheets/pages/admin.scss63
-rw-r--r--app/assets/stylesheets/pages/commit.scss123
-rw-r--r--app/assets/stylesheets/pages/commits.scss118
-rw-r--r--app/assets/stylesheets/pages/dashboard.scss93
-rw-r--r--app/assets/stylesheets/pages/diff.scss358
-rw-r--r--app/assets/stylesheets/pages/editor.scss54
-rw-r--r--app/assets/stylesheets/pages/errors.scss14
-rw-r--r--app/assets/stylesheets/pages/events.scss197
-rw-r--r--app/assets/stylesheets/pages/explore.scss8
-rw-r--r--app/assets/stylesheets/pages/graph.scss37
-rw-r--r--app/assets/stylesheets/pages/groups.scss12
-rw-r--r--app/assets/stylesheets/pages/header.scss194
-rw-r--r--app/assets/stylesheets/pages/help.scss70
-rw-r--r--app/assets/stylesheets/pages/import.scss18
-rw-r--r--app/assets/stylesheets/pages/issuable.scss47
-rw-r--r--app/assets/stylesheets/pages/issues.scss156
-rw-r--r--app/assets/stylesheets/pages/labels.scss21
-rw-r--r--app/assets/stylesheets/pages/login.scss124
-rw-r--r--app/assets/stylesheets/pages/merge_requests.scss191
-rw-r--r--app/assets/stylesheets/pages/milestone.scss9
-rw-r--r--app/assets/stylesheets/pages/note_form.scss175
-rw-r--r--app/assets/stylesheets/pages/notes.scss206
-rw-r--r--app/assets/stylesheets/pages/notifications.scss22
-rw-r--r--app/assets/stylesheets/pages/profile.scss95
-rw-r--r--app/assets/stylesheets/pages/projects.scss328
-rw-r--r--app/assets/stylesheets/pages/search.scss7
-rw-r--r--app/assets/stylesheets/pages/snippets.scss8
-rw-r--r--app/assets/stylesheets/pages/stat_graph.scss50
-rw-r--r--app/assets/stylesheets/pages/themes.scss0
-rw-r--r--app/assets/stylesheets/pages/tree.scss153
-rw-r--r--app/assets/stylesheets/pages/ui_dev_kit.scss9
-rw-r--r--app/assets/stylesheets/pages/votes.scss4
-rw-r--r--app/assets/stylesheets/pages/wiki.scss6
33 files changed, 0 insertions, 2970 deletions
diff --git a/app/assets/stylesheets/pages/admin.scss b/app/assets/stylesheets/pages/admin.scss
deleted file mode 100644
index 144852e7874..00000000000
--- a/app/assets/stylesheets/pages/admin.scss
+++ /dev/null
@@ -1,63 +0,0 @@
-/**
- * Admin area
- *
- */
-.admin-dashboard {
- .data {
- a {
- h1 {
- line-height: 48px;
- font-size: 48px;
- padding: 20px;
- text-align: center;
- font-weight: normal;
- }
- }
- }
-
- .str-truncated {
- max-width: 60%;
- }
-}
-
-.admin-filter form {
- .select2-container {
- width: 100%
- }
-
- .controls {
- margin-left: 130px;
- }
-
- .form-actions {
- padding-left: 130px;
- background: #fff
- }
-
- .visibility-levels {
- .controls {
- margin-bottom: 9px;
- }
-
- i {
- color: inherit;
- }
- }
-}
-
-.broadcast-messages {
- .message {
- line-height: 2;
- }
-}
-
-.broadcast-message {
- @extend .alert-warning;
- padding: 10px;
- text-align: center;
-}
-
-.broadcast-message-preview {
- @extend .broadcast-message;
- margin-bottom: 20px;
-}
diff --git a/app/assets/stylesheets/pages/commit.scss b/app/assets/stylesheets/pages/commit.scss
deleted file mode 100644
index e7125c03993..00000000000
--- a/app/assets/stylesheets/pages/commit.scss
+++ /dev/null
@@ -1,123 +0,0 @@
-.commit-title{
- display: block;
-}
-
-.commit-title{
- margin-bottom: 10px;
-}
-
-.commit-author, .commit-committer{
- display: block;
- color: #999;
- font-weight: normal;
- font-style: italic;
-}
-
-.commit-author strong, .commit-committer strong{
- font-weight: bold;
- font-style: normal;
-}
-
-.commit-description {
- background: none;
- border: none;
- margin: 0;
- padding: 0;
- margin-top: 10px;
-}
-
-.commit-stat-summary {
- color: #666;
- font-size: 14px;
- font-weight: normal;
- padding: 3px 0;
- margin-bottom: 10px;
-}
-
-.commit-info-row {
- margin-bottom: 10px;
- .avatar {
- @extend .avatar-inline;
- }
- .commit-committer-link,
- .commit-author-link {
- color: #444;
- font-weight: bold;
- }
-}
-
-.commit-box {
- margin: 10px 0;
- border-top: 1px solid #ddd;
- border-bottom: 1px solid #ddd;
- padding: 20px 0;
-
- .commit-title {
- margin: 0;
- }
-
- .commit-description {
- margin-top: 15px;
- }
-}
-
-.file-stats a {
- color: $style_color;
-}
-
-.file-stats {
- .new-file {
- a {
- color: #090;
- }
- i {
- color: #1BCF00;
- }
- }
- .renamed-file {
- i {
- color: #FE9300;
- }
- }
- .deleted-file {
- a {
- color: #B00;
- }
- i {
- color: #EE0000;
- }
- }
- .edit-file{
- i{
- color: #555;
- }
- }
-}
-
-/*
- * Commit message textarea for web editor and
- * custom merge request message
- */
-.commit-message-container {
- background-color: $body-bg;
- position: relative;
- font-family: $monospace_font;
- $left: 12px;
- .max-width-marker {
- width: 72ch;
- color: rgba(0, 0, 0, 0.0);
- font-family: inherit;
- left: $left;
- height: 100%;
- border-right: 1px solid mix($input-border, white);
- position: absolute;
- z-index: 1;
- }
- > textarea {
- background-color: rgba(0, 0, 0, 0.0);
- font-family: inherit;
- padding-left: $left;
- position: relative;
- z-index: 2;
- }
-}
diff --git a/app/assets/stylesheets/pages/commits.scss b/app/assets/stylesheets/pages/commits.scss
deleted file mode 100644
index 84361e15481..00000000000
--- a/app/assets/stylesheets/pages/commits.scss
+++ /dev/null
@@ -1,118 +0,0 @@
-.commits-compare-switch{
- @extend .btn;
- background: image-url("switch_icon.png") no-repeat center center;
- text-indent: -9999px;
- float: left;
- margin-right: 9px;
-}
-
-.lists-separator {
- margin: 10px 0;
- border-color: #DDD;
-}
-
-.commits-row {
- ul {
- margin: 0;
-
- li.commit {
- padding: 8px 0;
- }
- }
-
- .commits-row-date {
- font-size: 15px;
- line-height: 20px;
- margin-bottom: 5px;
- }
-}
-
-.commits-feed-holder {
- float: right;
-
- .btn {
- padding: 4px 12px;
- }
-}
-
-li.commit {
- .commit-row-title {
- font-size: $list-font-size;
- line-height: 20px;
- margin-bottom: 2px;
-
- .notes_count {
- float: right;
- margin-right: 10px;
- }
-
- .commit_short_id {
- min-width: 65px;
- font-family: $monospace_font;
- }
-
- .str-truncated {
- max-width: 70%;
- }
-
- .commit-row-message {
- color: #444;
-
- &:hover {
- text-decoration: underline;
- }
- }
-
- .text-expander {
- background: #eee;
- color: #555;
- padding: 0 5px;
- cursor: pointer;
- margin-left: 4px;
- &:hover {
- background-color: #ddd;
- }
- }
- }
-
- .commit-row-description {
- font-size: 14px;
- border-left: 1px solid #EEE;
- padding: 10px 15px;
- margin: 5px 0 10px 5px;
- background: #f9f9f9;
- display: none;
-
- pre {
- border: none;
- background: inherit;
- padding: 0;
- margin: 0;
- }
- }
-
- .commit-row-info {
- color: #777;
- line-height: 24px;
- font-size: 13px;
-
- a {
- color: #777;
- }
-
- .committed_ago {
- display: inline-block;
- }
- }
-
- &.inline-commit {
- .commit-row-title {
- font-size: 13px;
- }
-
- .committed_ago {
- float: right;
- @extend .cgray;
- }
- }
-}
diff --git a/app/assets/stylesheets/pages/dashboard.scss b/app/assets/stylesheets/pages/dashboard.scss
deleted file mode 100644
index af9c83e5dc8..00000000000
--- a/app/assets/stylesheets/pages/dashboard.scss
+++ /dev/null
@@ -1,93 +0,0 @@
-.dashboard {
- .side {
- .panel {
- .panel-heading {
- background: #EEE;
- border-top-left-radius: 0;
- }
- border-top-left-radius: 0;
- }
- }
-}
-
-.dashboard-search-filter {
- padding:5px;
-
- .search-text-input {
- float:left;
- @extend .col-md-2;
- }
- .btn {
- margin-left: 5px;
- float:left;
- }
-}
-
-.project-row, .group-row {
- padding: 0 !important;
- font-size: 14px;
- line-height: 24px;
-
- .str-truncated {
- max-width: 72%;
- }
-
- a {
- display: block;
- padding: 8px 15px;
- }
-
- .project-name, .group-name {
- font-weight: 500;
- }
-
- .arrow {
- float: right;
- margin: 0;
- font-size: 20px;
- }
-
- .last-activity {
- float: right;
- font-size: 12px;
- color: #AAA;
- display: block;
- .date {
- color: #777;
- }
- }
-}
-
-.project-description {
- overflow: hidden;
-}
-
-.project-access-icon {
- margin-left: 10px;
- float: left;
- margin-right: 15px;
- margin-bottom: 15px;
-
- i {
- color: #888;
- }
-}
-
-.dash-project-avatar {
- float: left;
-
- .avatar {
- margin-top: -8px;
- margin-left: -15px;
- @include border-radius(0px);
- }
- .identicon {
- line-height: 40px;
- }
-}
-
-.dash-project-access-icon {
- float: left;
- margin-right: 5px;
- width: 16px;
-}
diff --git a/app/assets/stylesheets/pages/diff.scss b/app/assets/stylesheets/pages/diff.scss
deleted file mode 100644
index af6ea58382f..00000000000
--- a/app/assets/stylesheets/pages/diff.scss
+++ /dev/null
@@ -1,358 +0,0 @@
-.diff-file {
- border: 1px solid $border-color;
- margin-bottom: 1em;
-
- .diff-header {
- position: relative;
- background: $background-color;
- border-bottom: 1px solid $border-color;
- padding: 10px 15px;
- color: #555;
- z-index: 10;
-
- > span {
- font-family: $monospace_font;
- word-break: break-all;
- margin-right: 200px;
- display: block;
-
- .file-mode {
- margin-left: 10px;
- color: #777;
- }
- }
-
- .diff-btn-group {
- float: right;
- position: absolute;
- top: 5px;
- right: 15px;
-
- .btn {
- padding: 0px 10px;
- font-size: 13px;
- line-height: 28px;
- }
- }
-
- .commit-short-id {
- font-family: $monospace_font;
- font-size: smaller;
- }
- }
- .diff-content {
- overflow: auto;
- overflow-y: hidden;
- background: #FFF;
- color: #333;
- font-size: $code_font_size;
- .old {
- span.idiff {
- background-color: #f8cbcb;
- }
- }
- .new {
- span.idiff {
- background-color: #a6f3a6;
- }
- }
- .unfold {
- cursor: pointer;
- }
-
- .file-mode-changed {
- padding: 10px;
- color: #777;
- }
-
- table {
- width: 100%;
- font-family: $monospace_font;
- border: none;
- margin: 0px;
- padding: 0px;
- td {
- line-height: $code_line_height;
- font-size: $code_font_size;
- }
- }
-
- tr.line_holder.parallel{
- .old_line, .new_line, .diff_line {
- min-width: 50px;
- }
-
- td.line_content.parallel{
- width: 50%;
- }
- }
-
- .old_line, .new_line, .diff_line {
- margin: 0px;
- padding: 0px;
- border: none;
- background: $background-color;
- color: rgba(0,0,0,0.3);
- padding: 0px 5px;
- border-right: 1px solid $border-color;
- text-align: right;
- min-width: 35px;
- max-width: 50px;
- width: 35px;
- @include user-select(none);
- a {
- float: left;
- width: 35px;
- font-weight: normal;
- color: rgba(0,0,0,0.3);
- &:hover {
- text-decoration: underline;
- }
- }
- &.new {
- background: #CFD;
- }
- &.old {
- background: #FDD;
- }
- }
- .diff_line {
- padding: 0;
- }
- .line_holder {
- &.old .old_line,
- &.old .new_line {
- background: #ffdddd;
- border-color: #f1c0c0;
- }
- &.new .old_line,
- &.new .new_line {
- background: #dbffdb;
- border-color: #c1e9c1;
- }
- }
- .line_content {
- display: block;
- margin: 0px;
- padding: 0px 0.5em;
- border: none;
- &.new {
- background: #eaffea;
- }
- &.old {
- background: #ffecec;
- }
- &.matched {
- color: $border-color;
- background: #fafafa;
- }
- &.parallel {
- display: table-cell;
- }
- }
- }
- .image {
- background: #ddd;
- text-align: center;
- padding: 30px;
- .wrap{
- display: inline-block;
- }
-
- .frame {
- display: inline-block;
- background-color: #fff;
- line-height: 0;
- img{
- border: 1px solid #FFF;
- background: image-url('trans_bg.gif');
- max-width: 100%;
- }
- &.deleted {
- border: 1px solid $deleted;
- }
-
- &.added {
- border: 1px solid $added;
- }
- }
- .image-info{
- font-size: 12px;
- margin: 5px 0 0 0;
- color: grey;
- }
-
- .view.swipe{
- position: relative;
-
- .swipe-frame{
- display: block;
- margin: auto;
- position: relative;
- }
- .swipe-wrap{
- overflow: hidden;
- border-left: 1px solid #999;
- position: absolute;
- display: block;
- top: 13px;
- right: 7px;
- }
- .frame{
- top: 0;
- right: 0;
- position: absolute;
- &.deleted{
- margin: 0;
- display: block;
- top: 13px;
- right: 7px;
- }
- }
- .swipe-bar{
- display: block;
- height: 100%;
- width: 15px;
- z-index: 100;
- position: absolute;
- cursor: pointer;
- &:hover{
- .top-handle{
- background-position: -15px 3px;
- }
- .bottom-handle{
- background-position: -15px -11px;
- }
- };
- .top-handle{
- display: block;
- height: 14px;
- width: 15px;
- position: absolute;
- top: 0px;
- background: image-url('swipemode_sprites.gif') 0 3px no-repeat;
- }
- .bottom-handle{
- display: block;
- height: 14px;
- width: 15px;
- position: absolute;
- bottom: 0px;
- background: image-url('swipemode_sprites.gif') 0 -11px no-repeat;
- }
- }
- } //.view.swipe
- .view.onion-skin{
- .onion-skin-frame{
- display: block;
- margin: auto;
- position: relative;
- }
- .frame.added, .frame.deleted {
- position: absolute;
- display: block;
- top: 0px;
- left: 0px;
- }
- .controls{
- display: block;
- height: 14px;
- width: 300px;
- z-index: 100;
- position: absolute;
- bottom: 0px;
- left: 50%;
- margin-left: -150px;
-
- .drag-track{
- display: block;
- position: absolute;
- left: 12px;
- height: 10px;
- width: 276px;
- background: image-url('onion_skin_sprites.gif') -4px -20px repeat-x;
- }
-
- .dragger {
- display: block;
- position: absolute;
- left: 0px;
- top: 0px;
- height: 14px;
- width: 14px;
- background: image-url('onion_skin_sprites.gif') 0px -34px repeat-x;
- cursor: pointer;
- }
-
- .transparent {
- display: block;
- position: absolute;
- top: 2px;
- right: 0px;
- height: 10px;
- width: 10px;
- background: image-url('onion_skin_sprites.gif') -2px 0px no-repeat;
- }
-
- .opaque {
- display: block;
- position: absolute;
- top: 2px;
- left: 0px;
- height: 10px;
- width: 10px;
- background: image-url('onion_skin_sprites.gif') -2px -10px no-repeat;
- }
- }
- } //.view.onion-skin
- }
- .view-modes{
- padding: 10px;
- text-align: center;
- background: #EEE;
-
- ul, li{
- list-style: none;
- margin: 0;
- padding: 0;
- display: inline-block;
- }
-
- li{
- color: grey;
- border-left: 1px solid #c1c1c1;
- padding: 0 12px 0 16px;
- cursor: pointer;
- &:first-child{
- border-left: none;
- }
- &:hover{
- text-decoration: underline;
- }
- &.active{
- &:hover{
- text-decoration: none;
- }
- cursor: default;
- color: #333;
- }
- &.disabled{
- display: none;
- }
- }
- }
-}
-
-.file-content .diff-file {
- margin: 0;
- border: none;
-}
-
-.diff-file .line_content {
- white-space: pre;
-}
-
-.diff-wrap-lines .line_content {
- white-space: pre-wrap;
-}
-
diff --git a/app/assets/stylesheets/pages/editor.scss b/app/assets/stylesheets/pages/editor.scss
deleted file mode 100644
index 759ba6b1c22..00000000000
--- a/app/assets/stylesheets/pages/editor.scss
+++ /dev/null
@@ -1,54 +0,0 @@
-.file-editor {
- #editor{
- border: none;
- @include border-radius(0);
- height: 500px;
- margin: 0;
- padding: 0;
- position: relative;
- width: 100%;
- }
-
- .cancel-btn {
- color: #B94A48;
- &:hover {
- color: #B94A48;
- }
- }
- .commit-button-annotation {
- display: inline-block;
- margin: 0;
- padding: 2px;
-
- > * {
- float: left;
- }
-
- .message {
- display: inline-block;
- margin: 5px 8px 0 8px;
- }
- }
-
- .file-title {
- @extend .monospace;
- font-size: 14px;
- padding: 5px;
- }
-
- .editor-ref {
- background: $background-color;
- padding: 11px 15px;
- border-right: 1px solid #CCC;
- display: inline-block;
- margin: -5px -5px;
- margin-right: 10px;
- }
-
- .editor-file-name {
- .new-file-name {
- display: inline-block;
- width: 200px;
- }
- }
-}
diff --git a/app/assets/stylesheets/pages/errors.scss b/app/assets/stylesheets/pages/errors.scss
deleted file mode 100644
index 32d2d7b1dbf..00000000000
--- a/app/assets/stylesheets/pages/errors.scss
+++ /dev/null
@@ -1,14 +0,0 @@
-.error-page {
- max-width: 400px;
- margin: 0 auto;
-
- h1, h2, h3 {
- text-align: center;
- }
-
- h1 {
- font-size: 56px;
- line-height: 100px;
- font-weight: 300;
- }
-}
diff --git a/app/assets/stylesheets/pages/events.scss b/app/assets/stylesheets/pages/events.scss
deleted file mode 100644
index d4af7506d5b..00000000000
--- a/app/assets/stylesheets/pages/events.scss
+++ /dev/null
@@ -1,197 +0,0 @@
-/**
- * Events labels
- *
- */
-.event_label {
- &.pushed {
- padding: 0 2px;
- }
-
- &.opened {
- padding: 0 2px;
- }
-
- &.closed {
- padding: 0 2px;
- }
-
- &.merged {
- padding: 0 2px;
- }
-
- &.left,
- &.joined {
- padding: 0 2px;
- float: none;
- }
-}
-
-/**
- * Dashboard events feed
- *
- */
-.event-item {
- &:first-child {
- padding-top: 0;
- }
-
- &.event-inline {
- .avatar {
- position: relative;
- top: -2px;
- }
- }
-
- padding: 12px 0px;
- border-bottom: 1px solid #eee;
- .event-title {
- max-width: 70%;
- @include str-truncated(calc(100% - 174px));
- font-weight: 500;
- font-size: 14px;
- .author_name {
- color: #333;
- }
- }
- .event-body {
- font-size: 13px;
- margin-left: 35px;
- margin-right: 80px;
- color: #777;
-
- .event-note {
- margin-top: 5px;
- word-wrap: break-word;
-
- .md {
- font-size: 13px;
-
- iframe.twitter-share-button {
- vertical-align: bottom;
- }
- }
-
- pre {
- border: none;
- background: #f9f9f9;
- border-radius: 0;
- color: #777;
- margin: 0 20px;
- overflow: hidden;
- }
-
- .note-image-attach {
- margin-top: 4px;
- margin-left: 0px;
- max-width: 200px;
- float: none;
- }
-
- p:last-child {
- margin-bottom: 0;
- }
- }
- .event-note-icon {
- color: #777;
- float: left;
- font-size: 16px;
- line-height: 16px;
- margin-right: 5px;
- }
- }
- .event_icon {
- position: relative;
- float: right;
- border: 1px solid #EEE;
- padding: 5px;
- @include border-radius(5px);
- background: #F9F9F9;
- margin-left: 10px;
- top: -6px;
- img {
- width: 20px;
- }
- }
-
- &:last-child { border:none }
-
- .event_commits {
- margin-top: 5px;
-
- li {
- &.commit {
- background: transparent;
- padding: 3px;
- padding-left: 0;
- border: none;
- .commit-row-title {
- font-size: 12px;
- }
- }
- &.commits-stat {
- display: block;
- padding: 3px;
- padding-left: 0;
-
- &:hover {
- background: none;
- }
- }
- }
- }
-
- .event-item-timestamp {
- float: right;
- color: #999;
- line-height: 22px;
- }
-}
-
-
-/*
- * Last push widget
- */
-.event-last-push {
- overflow: auto;
- .event-last-push-text {
- @include str-truncated(100%);
- padding: 5px 0;
- font-size: 13px;
- float:left;
- margin-right: -150px;
- padding-right: 150px;
- line-height: 20px;
- }
-}
-
-@media (max-width: $screen-xs-max) {
- .event-item {
- .event-title {
- white-space: normal;
- overflow: visible;
- max-width: 100%;
- }
- .avatar {
- display: none;
- }
-
- .event-body {
- margin: 0;
- border-left: 2px solid #DDD;
- padding-left: 10px;
- }
-
- .event-item-timestamp {
- display: none;
- }
- }
-}
-
-.event_filter {
- li a {
- font-size: 13px;
- padding: 5px 10px;
- background: $background-color;
- margin-left: 4px;
- }
-}
diff --git a/app/assets/stylesheets/pages/explore.scss b/app/assets/stylesheets/pages/explore.scss
deleted file mode 100644
index 9b92128624c..00000000000
--- a/app/assets/stylesheets/pages/explore.scss
+++ /dev/null
@@ -1,8 +0,0 @@
-.explore-title {
- text-align: center;
-
- h3 {
- font-weight: normal;
- font-size: 30px;
- }
-}
diff --git a/app/assets/stylesheets/pages/graph.scss b/app/assets/stylesheets/pages/graph.scss
deleted file mode 100644
index c3b10d144e1..00000000000
--- a/app/assets/stylesheets/pages/graph.scss
+++ /dev/null
@@ -1,37 +0,0 @@
-.project-network {
- border: 1px solid $border-color;
-
- .controls {
- color: #888;
- font-size: 14px;
- padding: 5px;
- border-bottom: 1px solid $border-color;
- background: #EEE;
- }
-
- .network-graph {
- background: #FFF;
- height: 500px;
- overflow-y: scroll;
- overflow-x: hidden;
- }
-}
-
-.graphs {
- .graph-author-commits-count {
- }
-
- .graph-author-email {
- float: right;
- color: #777;
- }
-
- .graph-additions {
- color: #4a2;
- }
-
- .graph-deletions {
- color: #d12f19;
- }
-}
-
diff --git a/app/assets/stylesheets/pages/groups.scss b/app/assets/stylesheets/pages/groups.scss
deleted file mode 100644
index 2b1b747139a..00000000000
--- a/app/assets/stylesheets/pages/groups.scss
+++ /dev/null
@@ -1,12 +0,0 @@
-.new-group-member-holder {
- margin-top: 50px;
- padding-top: 20px;
-}
-
-.member-search-form {
- float: left;
-}
-
-.milestone-row {
- @include str-truncated(90%);
-}
diff --git a/app/assets/stylesheets/pages/header.scss b/app/assets/stylesheets/pages/header.scss
deleted file mode 100644
index dde19b801f8..00000000000
--- a/app/assets/stylesheets/pages/header.scss
+++ /dev/null
@@ -1,194 +0,0 @@
-/*
- * Application Header
- *
- */
-header {
- &.navbar-gitlab {
- z-index: 100;
- margin-bottom: 0;
- min-height: 40px;
- border: none;
- width: 100%;
-
- .navbar-inner {
- filter: none;
-
- .nav > li > a {
- font-size: 14px;
- line-height: 32px;
- padding: 6px 10px;
-
- &:hover, &:focus, &:active {
- background: none;
- }
- }
-
- /** NAV block with links and profile **/
- .nav {
- float: right;
- margin-right: 0;
- }
-
- .navbar-toggle {
- color: $style_color;
- margin: 0;
- padding: 10px;
- border-radius: 0;
-
- button i { font-size: 22px; }
-
- &.collapsed { background-color: transparent !important;}
-
- &:hover {
- background-color: #EEE;
- }
- }
- }
-
- .turbolink-spinner {
- font-size: 20px;
- margin-right: 10px;
- }
-
- @media (max-width: $screen-xs-max) {
- border-width: 0;
- font-size: 18px;
-
- .title {
- @include str-truncated(70%);
- }
-
- .navbar-collapse {
- margin-top: 47px;
- padding-right: 0;
- padding-left: 0;
- }
-
- .navbar-nav {
- margin: 5px 0;
-
- .visible-xs, .visable-sm {
- display: table-cell !important;
- }
- }
-
- li {
- display: table-cell;
- width: 1%;
-
- a {
- text-align: center;
- font-size: 18px !important;
- }
- }
- }
- }
-
- .container {
- width: 100% !important;
- padding: 0px;
- }
-
- /**
- *
- * Logo holder
- *
- */
- .app_logo {
- float: left;
- margin-right: 9px;
-
- a {
- float: left;
- padding: 5px 0;
- height: 46px;
- width: 52px;
- text-align: center;
-
- img {
- width: 36px;
- height: 36px;
- }
- }
- &:hover {
- background-color: #EEE;
- }
- }
-
- /**
- *
- * Project / Area name
- *
- */
- .title {
- position: relative;
- float: left;
- margin: 0;
- margin-left: 5px;
- @include header-font;
- @include str-truncated(37%);
- }
-
- .profile-pic {
- padding: 0px !important;
- width: 46px;
- height: 46px;
- margin-left: 5px;
- img {
- width: 46px;
- height: 46px;
- }
- }
-
- /**
- *
- * Search box
- *
- */
- .search {
- margin-right: 10px;
- margin-left: 10px;
- margin-top: 8px;
-
- form {
- margin: 0;
- padding: 0;
- }
-
- .search-input {
- background-image: image-url("icon-search.png");
- background-repeat: no-repeat;
- background-position: 10px;
- height: inherit;
- padding: 4px 6px;
- padding-left: 25px;
- font-size: 13px;
- @include border-radius(3px);
- border: 1px solid #c6c6c6;
- box-shadow: none;
- @include transition(all 0.15s ease-in 0s);
- }
- }
-}
-
-.search .search-input {
- width: 300px;
- &:focus {
- width: 330px;
- }
-}
-
-@media (max-width: 1200px) {
- .search .search-input {
- width: 200px;
- &:focus {
- width: 230px;
- }
- }
-}
-
-@media (max-width: $screen-xs-max) {
- #nprogress .spinner {
- right: 35px !important;
- }
-}
diff --git a/app/assets/stylesheets/pages/help.scss b/app/assets/stylesheets/pages/help.scss
deleted file mode 100644
index 6da7a2511a2..00000000000
--- a/app/assets/stylesheets/pages/help.scss
+++ /dev/null
@@ -1,70 +0,0 @@
-.documentation-index {
- h1 {
- margin: 0;
- }
-
- h2 {
- font-size: 20px;
- }
-
- li {
- line-height: 24px;
- color: #888;
-
- a {
- margin-right: 3px;
- }
- }
-}
-
-
-.shortcut-mappings {
- font-size: 12px;
- color: #555;
-
- tbody:first-child tr:first-child {
- padding-top: 0
- }
-
- th {
- padding-top: 15px;
- line-height: 1.5;
- color: #333;
- text-align: left
- }
-
- td {
- padding-top: 3px;
- padding-bottom: 3px;
- vertical-align: top;
- line-height: 20px
- }
-
- .shortcut {
- padding-right: 10px;
- color: #999;
- text-align: right;
- white-space: nowrap
- }
-
- .key {
- @extend .label;
- @extend .label-inverse;
- font: 11px Consolas, "Liberation Mono", Menlo, Courier, monospace;
- padding: 3px 5px;
- }
-}
-
-.modal-body {
- position: relative;
- overflow-y: auto;
- padding: 15px;
-}
-
-body.modal-open {
- overflow: hidden;
-}
-
-.modal .modal-dialog {
- width: 860px;
-}
diff --git a/app/assets/stylesheets/pages/import.scss b/app/assets/stylesheets/pages/import.scss
deleted file mode 100644
index 3df4bb84bd2..00000000000
--- a/app/assets/stylesheets/pages/import.scss
+++ /dev/null
@@ -1,18 +0,0 @@
-i.icon-gitorious {
- display: inline-block;
- background-position: 0px 0px;
- background-size: contain;
- background-repeat: no-repeat;
-}
-
-i.icon-gitorious-small {
- background-image: image-url('gitorious-logo-blue.png');
- width: 13px;
- height: 13px;
-}
-
-i.icon-gitorious-big {
- background-image: image-url('gitorious-logo-black.png');
- width: 18px;
- height: 18px;
-}
diff --git a/app/assets/stylesheets/pages/issuable.scss b/app/assets/stylesheets/pages/issuable.scss
deleted file mode 100644
index a640a4e2051..00000000000
--- a/app/assets/stylesheets/pages/issuable.scss
+++ /dev/null
@@ -1,47 +0,0 @@
-@media (max-width: $screen-sm-max) {
- .issuable-affix {
- margin-top: 20px;
- }
-}
-
-@media (max-width: $screen-md-max) {
- .issuable-affix {
- position: static;
- }
-}
-
-@media (min-width: $screen-md-max) {
- .issuable-affix {
- &.affix-top {
- position: static;
- }
-
- &.affix {
- position: fixed;
- top: 70px;
- width: 220px;
- }
- }
-}
-
-.issuable-context-title {
- font-size: 14px;
- line-height: 1.4;
- margin-bottom: 5px;
-
- .avatar {
- margin-left: 0;
- }
-
- label {
- color: #666;
- font-weight: normal;
- margin-right: 4px;
- }
-}
-
-.issuable-affix .context {
- font-size: 13px;
-
- .btn { font-size: 13px; }
-}
diff --git a/app/assets/stylesheets/pages/issues.scss b/app/assets/stylesheets/pages/issues.scss
deleted file mode 100644
index cd86a9be8b2..00000000000
--- a/app/assets/stylesheets/pages/issues.scss
+++ /dev/null
@@ -1,156 +0,0 @@
-.issues-list {
- .issue {
- padding: 10px 15px;
- position: relative;
-
- .issue-title {
- margin-bottom: 5px;
- font-size: $list-font-size;
- font-weight: bold;
- }
-
- .issue-info {
- color: #999;
- font-size: 13px;
- }
-
- .issue-check {
- float: left;
- padding-right: 8px;
- margin-bottom: 10px;
- min-width: 15px;
- }
-
- .issue-labels {
- display: inline-block;
- }
-
- .issue-actions {
- display: none;
- position: absolute;
- top: 10px;
- right: 15px;
- }
-
- &:hover {
- .issue-actions {
- display: block;
- }
- }
- }
-}
-
-.check-all-holder {
- line-height: 36px;
- float: left;
- margin-right: 15px;
-}
-
-.issues_content {
- .title {
- height: 40px;
- }
-
- form {
- margin: 0;
- }
-}
-
-.participants {
- margin-bottom: 20px;
-}
-
-.issue-search-form {
- margin: 0;
- height: 24px;
-
- .issue_search {
- border: 1px solid #DDD !important;
- background-color: #f4f4f4;
- }
-}
-
-.issue-show-labels {
- a {
- margin-right: 5px;
- margin-bottom: 5px;
- display: inline-block;
- .color-label {
- padding: 6px 10px;
- }
- }
-}
-
-form.edit-issue {
- margin: 0;
-}
-
-.merge-request,
-.issue {
- &.today {
- background: #EFE;
- border-color: #CEC;
- }
-
- &.closed {
- background: #F9F9F9;
- border-color: #E5E5E5;
- }
-
- &.merged {
- background: #F9F9F9;
- border-color: #E5E5E5;
- }
-}
-
-@media (max-width: $screen-xs-max) {
- .issue-btn-group {
- width: 100%;
- margin-top: 5px;
-
- .btn-group {
- width: 100%;
-
- ul {
- width: 100%;
- text-align: center;
- }
- }
-
- .btn {
- width: 100%;
- margin-top: -1px;
-
- &:first-child:not(:last-child) {
- border-radius: 4px 4px 0 0;
- }
-
- &:not(:first-child):not(:last-child) {
- border-radius: 0;
- }
-
- &:last-child:not(:first-child) {
- border-radius: 0 0 4px 4px;
- }
- }
- }
-
- .issue {
- &:hover .issue-actions {
- display: none !important;
- }
-
- .issue-updated-at {
- display: none;
- }
- }
-}
-
-h2.issue-title {
- margin-top: 0;
- font-weight: bold;
-}
-
-.issue-form .select2-container {
- width: 250px !important;
-}
diff --git a/app/assets/stylesheets/pages/labels.scss b/app/assets/stylesheets/pages/labels.scss
deleted file mode 100644
index d1590e42fcb..00000000000
--- a/app/assets/stylesheets/pages/labels.scss
+++ /dev/null
@@ -1,21 +0,0 @@
-.suggest-colors {
- margin-top: 5px;
- a {
- @include border-radius(4px);
- width: 30px;
- height: 30px;
- display: inline-block;
- margin-right: 10px;
- }
-}
-
-.manage-labels-list {
- .label {
- padding: 9px;
- font-size: 14px;
- }
-}
-
-.color-label {
- padding: 3px 4px;
-}
diff --git a/app/assets/stylesheets/pages/login.scss b/app/assets/stylesheets/pages/login.scss
deleted file mode 100644
index 83b866c3a64..00000000000
--- a/app/assets/stylesheets/pages/login.scss
+++ /dev/null
@@ -1,124 +0,0 @@
-/* Login Page */
-.login-page {
- .container {
- max-width: 960px;
- }
-
- .navbar-gitlab .container {
- max-width: none;
- }
-
- .brand-holder {
- font-size: 18px;
- line-height: 1.5;
-
- p {
- color: #888;
- }
-
- h1:first-child {
- font-weight: normal;
- margin-bottom: 30px;
- }
-
- img {
- max-width: 100%;
- margin-bottom: 30px;
- }
-
- a {
- font-weight: bold;
- }
- }
-
- .login-box{
- background: #fafafa;
- border-radius: 10px;
- box-shadow: 0 0px 2px #CCC;
- padding: 15px;
-
- .login-heading h3 {
- font-weight: 300;
- line-height: 1.5;
- margin: 0 0 10px 0;
- }
-
- .login-footer {
- margin-top: 10px;
-
- p:last-child {
- margin-bottom: 0;
- }
- }
-
- a.forgot {
- float: right;
- padding-top: 6px
- }
-
- .nav .active a {
- background: transparent;
- }
- }
-
- .form-control {
- font-size: 14px;
- padding: 10px 8px;
- width: 100%;
- height: auto;
-
- &.top {
- @include border-radius(5px 5px 0 0);
- margin-bottom: 0px;
- }
-
- &.bottom {
- @include border-radius(0 0 5px 5px);
- border-top: 0;
- margin-bottom: 20px;
- }
-
- &.middle {
- border-top: 0;
- margin-bottom:0px;
- @include border-radius(0);
- }
-
- &:active, &:focus {
- background-color: #FFF;
- }
- }
-
- .devise-errors {
- h2 {
- margin-top: 0;
- font-size: 14px;
- color: #a00;
- }
- }
-
- .remember-me {
- margin-top: -10px;
-
- label {
- font-weight: normal;
- }
- }
-}
-
-@media (max-width: $screen-xs-max) {
- .login-page {
- .col-sm-5.pull-right {
- float: none !important;
- }
- }
-}
-
-.oauth-image-link {
- margin-right: 10px;
-
- img {
- width: 32px;
- height: 32px;
- }
-}
diff --git a/app/assets/stylesheets/pages/merge_requests.scss b/app/assets/stylesheets/pages/merge_requests.scss
deleted file mode 100644
index 8abd4207beb..00000000000
--- a/app/assets/stylesheets/pages/merge_requests.scss
+++ /dev/null
@@ -1,191 +0,0 @@
-
- /**
- * MR -> show: Automerge widget
- *
- */
-.automerge_widget {
- form {
- margin-bottom: 0;
- .clearfix {
- margin-bottom: 0;
- }
- }
-
- .accept-merge-holder {
- .accept-action {
- display: inline-block;
- }
-
- .accept-control {
- display: inline-block;
- margin: 0;
- margin-left: 20px;
- padding: 10px 0;
- line-height: 20px;
- font-weight: bold;
-
- .remove_source_checkbox {
- margin: 0;
- font-weight: bold;
- }
- }
- }
-}
-
-@media(min-width: $screen-sm-max) {
- .merge-request .merge-request-tabs{
- margin: 20px 0;
-
- li {
- a {
- padding: 15px 40px;
- font-size: 14px;
- }
- }
- }
-}
-
-.mr_source_commit,
-.mr_target_commit {
- .commit {
- margin: 0;
- padding: 2px 0;
- list-style: none;
- &:hover {
- background: none;
- }
- }
-}
-
-.label-branch {
- @include border-radius(4px);
- padding: 3px 4px;
- border: none;
- background: $hover;
- color: #333;
- font-family: $monospace_font;
- font-weight: normal;
- overflow: hidden;
-
- .label-project {
- @include border-radius-left(4px);
- padding: 3px 4px;
- background: #279;
- position: relative;
- left: -4px;
- letter-spacing: -1px;
- }
-}
-
-.mr-list {
- .merge-request {
- padding: 10px 15px;
- position: relative;
-
- .merge-request-title {
- margin-bottom: 5px;
- font-size: $list-font-size;
- font-weight: bold;
- }
-
- .merge-request-info {
- color: #999;
- font-size: 13px;
-
- .merge-request-labels {
- display: inline-block;
- }
- }
- }
-}
-
-.merge-request-angle {
- text-align: center;
- margin: 0 auto;
- font-size: 2em;
- line-height: 1.1;
-}
-
-.merge-request-form-info {
- padding-top: 15px;
-}
-
-// hide mr close link for inline diff comment form
-.diff-file .close-mr-link,
-.diff-file .reopen-mr-link {
- display: none;
-}
-
-.mr-state-widget {
- font-size: 13px;
- background: #F9F9F9;
- margin-bottom: 20px;
- color: #666;
- border: 1px solid #EEE;
- @include box-shadow(0 1px 1px rgba(0, 0, 0, 0.09));
-
- .ci_widget {
- padding: 10px 15px;
- font-size: 15px;
- border-bottom: 1px solid #BBB;
- color: #777;
- background-color: $background-color;
-
- &.ci-success {
- color: $gl-success;
- border-color: $gl-success;
- background-color: #F1FAF1;
- }
-
- &.ci-pending,
- &.ci-running {
- color: $gl-warning;
- border-color: $gl-warning;
- background-color: #FAF5F1;
- }
-
- &.ci-failed,
- &.ci-canceled,
- &.ci-error {
- color: $gl-danger;
- border-color: $gl-danger;
- background-color: #FAF1F1;
- }
- }
-
- .mr-widget-body {
- padding: 10px 15px;
-
- h4 {
- font-weight: normal;
- }
-
- p:last-child {
- margin-bottom: 0;
- }
- }
-
- .mr-widget-footer {
- padding: 10px 15px;
- border-top: 1px solid #EEE;
- }
-
- .ci-coverage {
- float: right;
- }
-}
-
-.merge-request-show-labels {
- a {
- margin-right: 5px;
- margin-bottom: 5px;
- display: inline-block;
- .color-label {
- padding: 6px 10px;
- }
- }
-}
-
-.merge-request-form .select2-container {
- width: 250px !important;
-}
diff --git a/app/assets/stylesheets/pages/milestone.scss b/app/assets/stylesheets/pages/milestone.scss
deleted file mode 100644
index 15e3948e402..00000000000
--- a/app/assets/stylesheets/pages/milestone.scss
+++ /dev/null
@@ -1,9 +0,0 @@
-.issues-sortable-list .str-truncated {
- max-width: 90%;
-}
-
-li.milestone {
- h4 {
- font-weight: bold;
- }
-}
diff --git a/app/assets/stylesheets/pages/note_form.scss b/app/assets/stylesheets/pages/note_form.scss
deleted file mode 100644
index a0522030785..00000000000
--- a/app/assets/stylesheets/pages/note_form.scss
+++ /dev/null
@@ -1,175 +0,0 @@
-/**
- * Note Form
- */
-
-.comment-btn {
- @extend .btn-create;
-}
-.reply-btn {
- @extend .btn-primary;
-}
-.diff-file .diff-content {
- tr.line_holder:hover {
- &> td.line_content {
- background: $hover !important;
- border-color: darken($hover, 10%) !important;
- }
- &> td.new_line,
- &> td.old_line {
- background: darken($hover, 4%) !important;
- border-color: darken($hover, 10%) !important;
- }
- }
-
- tr.line_holder:hover > td .line_note_link {
- opacity: 1.0;
- filter: alpha(opacity=100);
- }
-}
-.diff-file,
-.discussion {
- .new_note {
- margin: 0;
- border: none;
- }
-}
-.new_note {
- display: none;
-}
-
-.new_note, .edit_note {
- .buttons {
- float: left;
- margin-top: 8px;
- }
- .clearfix {
- margin-bottom: 0;
- }
-
- .note-preview-holder {
- > p {
- overflow-x: auto;
- }
- }
-
- img {
- max-width: 100%;
- }
-
- .note_text {
- width: 100%;
- }
-}
-
-/* loading indicator */
-.notes-busy {
- margin: 18px;
-}
-
-.note-image-attach {
- @extend .col-md-4;
- @extend .thumbnail;
- margin-left: 45px;
- float: none;
-}
-
-.common-note-form {
- margin: 0;
- background: #F9F9F9;
- padding: 5px;
- border: 1px solid #DDD;
-}
-
-.note-form-actions {
- background: #F9F9F9;
- height: 45px;
-
- .note-form-option {
- margin-top: 8px;
- margin-left: 30px;
- @extend .pull-left;
- }
-
- .js-notify-commit-author {
- float: left;
- }
-
- .write-preview-btn {
- // makes the "absolute" position for links relative to this
- position: relative;
-
- // preview/edit buttons
- > a {
- position: absolute;
- right: 5px;
- top: 8px;
- }
- }
-}
-
-.note-edit-form {
- display: none;
- font-size: 13px;
-
- .form-actions {
- padding-left: 20px;
-
- .btn-save {
- float: left;
- }
-
- .note-form-option {
- float: left;
- padding: 2px 0 0 25px;
- }
- }
-}
-
-.js-note-attachment-delete {
- display: none;
-}
-
-.parallel-comment {
- padding: 6px;
-}
-
-.error-alert > .alert {
- margin-top: 5px;
- margin-bottom: 5px;
-}
-
-.discussion-body,
-.diff-file {
- .notes .note {
- border-color: #ddd;
- padding: 10px 15px;
- }
-
- .discussion-reply-holder {
- background: #f9f9f9;
- padding: 10px 15px;
- border-top: 1px solid #DDD;
- }
-}
-
-.discussion-notes-count {
- font-size: 16px;
-}
-
-.edit_note {
- .markdown-area {
- min-height: 140px;
- }
- .note-form-actions {
- background: transparent;
- }
-}
-
-.comment-hints {
- color: #999;
- background: #FFF;
- padding: 5px;
- margin-top: -11px;
- border: 1px solid #DDD;
- font-size: 13px;
-}
diff --git a/app/assets/stylesheets/pages/notes.scss b/app/assets/stylesheets/pages/notes.scss
deleted file mode 100644
index facd7e19314..00000000000
--- a/app/assets/stylesheets/pages/notes.scss
+++ /dev/null
@@ -1,206 +0,0 @@
-/**
- * Notes
- */
-
-@-webkit-keyframes targe3-note {
- from { background:#fffff0; }
- 50% { background:#ffffd3; }
- to { background:#fffff0; }
-}
-
-ul.notes {
- display: block;
- list-style: none;
- margin: 0px;
- padding: 0px;
-
- .discussion-header,
- .note-header {
- @extend .cgray;
- padding-bottom: 15px;
-
- a:hover {
- text-decoration: none;
- }
-
- .avatar {
- float: left;
- margin-right: 10px;
- }
-
- .discussion-last-update,
- .note-last-update {
- &:before {
- content: "\00b7";
- }
- font-size: 13px;
- }
- .author {
- color: #333;
- font-weight: bold;
- &:hover {
- color: $gl-link-color;
- }
- }
- .author-username {
- }
- }
-
- .discussion {
- overflow: hidden;
- display: block;
- position:relative;
- }
-
- .note {
- display: block;
- position:relative;
- .note-body {
- overflow: auto;
- .note-text {
- overflow: auto;
- word-wrap: break-word;
- @include md-typography;
-
- hr {
- margin: 10px 0;
- }
- }
- }
- .note-header {
- padding-bottom: 3px;
- }
-
- &:last-child {
- border-bottom: none;
- }
- }
-}
-
-// Diff code in discussion view
-.discussion-body .diff-file {
- .diff-header > span {
- margin-right: 10px;
- }
- .line_content {
- white-space: pre-wrap;
- }
-}
-
-.diff-file .notes_holder {
- font-size: 13px;
- line-height: 18px;
- font-family: $regular_font;
-
- td {
- border: 1px solid #ddd;
- border-left: none;
-
- &.notes_line {
- text-align: center;
- padding: 10px 0;
- background: #FFF;
- }
- &.notes_line2 {
- text-align: center;
- padding: 10px 0;
- border-left: 1px solid #ddd !important;
- }
- &.notes_content {
- background-color: #fff;
- border-width: 1px 0;
- padding-top: 0;
- vertical-align: top;
- &.parallel{
- border-width: 1px;
- }
- }
- }
-}
-
-/**
- * Actions for Discussions/Notes
- */
-
-.discussion,
-.note {
- &.note:hover {
- .note-actions { display: block; }
- }
- .discussion-header:hover {
- .discussion-actions { display: block; }
- }
-
- .discussion-actions,
- .note-actions {
- display: none;
- float: right;
-
- [class~="fa"] {
- font-size: 16px;
- line-height: 16px;
- vertical-align: middle;
- }
-
- a {
- @extend .cgray;
-
- &:hover {
- &.danger { @extend .cred; }
- }
- }
- }
-}
-.diff-file .note .note-actions {
- right: 0;
- top: 0;
-}
-
-
-/**
- * Line note button on the side of diffs
- */
-
-.diff-file tr.line_holder {
- @mixin show-add-diff-note {
- filter: alpha(opacity=100);
- opacity: 1.0;
- }
-
- .add-diff-note {
- margin-top: -4px;
- @include border-radius(40px);
- background: #FFF;
- padding: 4px;
- font-size: 16px;
- color: $gl-link-color;
- margin-left: -60px;
- position: absolute;
- z-index: 10;
- width: 32px;
-
- transition: all 0.2s ease;
-
- // "hide" it by default
- opacity: 0.0;
- filter: alpha(opacity=0);
-
- &:hover {
- width: 38px;
- font-size: 20px;
- background: $gl-info;
- color: #FFF;
- @include show-add-diff-note;
- }
- }
-
- // "show" the icon also if we just hover somewhere over the line
- &:hover > td {
- background: $hover !important;
-
- .add-diff-note {
- @include show-add-diff-note;
- }
- }
-}
-
diff --git a/app/assets/stylesheets/pages/notifications.scss b/app/assets/stylesheets/pages/notifications.scss
deleted file mode 100644
index cc273f55222..00000000000
--- a/app/assets/stylesheets/pages/notifications.scss
+++ /dev/null
@@ -1,22 +0,0 @@
-.global-notifications-form .level-title {
- font-size: 15px;
- color: #333;
- font-weight: bold;
-}
-
-.notification-icon-holder {
- width: 20px;
- float: left;
-}
-
-.ns-part {
- color: $gl-primary;
-}
-
-.ns-watch {
- color: $gl-success;
-}
-
-.ns-mute {
- color: $gl-danger;
-}
diff --git a/app/assets/stylesheets/pages/profile.scss b/app/assets/stylesheets/pages/profile.scss
deleted file mode 100644
index 65655d4bfa3..00000000000
--- a/app/assets/stylesheets/pages/profile.scss
+++ /dev/null
@@ -1,95 +0,0 @@
-.account-page {
- fieldset {
- margin-bottom: 15px;
- padding-bottom: 15px;
- }
-}
-
-.btn-build-token {
- float: left;
- padding: 6px 20px;
- margin-right: 12px;
-}
-
-.profile-avatar-form-option {
- hr {
- margin: 10px 0;
- }
-}
-
-/*
- * Appearance settings
- *
- */
-.themes_opts {
- label {
- margin-right: 20px;
- text-align: center;
-
- .prev {
- height: 80px;
- width: 160px;
- margin-bottom: 10px;
- @include border-radius(4px);
-
- &.classic {
- background: #31363e;
- }
-
- &.default {
- background: #f1f1f1;
- }
-
- &.modern {
- background: #009871;
- }
-
- &.gray {
- background: #373737;
- }
-
- &.violet {
- background: #548;
- }
-
- &.blue {
- background: #2980b9;
- }
- }
- }
-}
-
-.code_highlight_opts {
- margin-top: 10px;
-
- label {
- margin-right: 20px;
- text-align: center;
-
- .prev {
- width: 160px;
- margin-bottom: 10px;
-
- img {
- max-width: 100%;
- @include border-radius(4px);
- }
- }
- }
-}
-
-.oauth-buttons {
- .btn-group {
- margin-right: 10px;
- }
-
- .btn {
- line-height: 36px;
- height: 56px;
-
- img {
- width: 32px;
- height: 32px;
- }
- }
-}
diff --git a/app/assets/stylesheets/pages/projects.scss b/app/assets/stylesheets/pages/projects.scss
deleted file mode 100644
index c005470355e..00000000000
--- a/app/assets/stylesheets/pages/projects.scss
+++ /dev/null
@@ -1,328 +0,0 @@
-.new_project,
-.edit_project {
- fieldset.features {
- .control-label {
- font-weight: bold;
- }
- }
-}
-
-.project-name-holder {
- .help-inline {
- vertical-align: top;
- padding: 7px;
- }
-}
-
-.project-home-panel {
- margin-bottom: 20px;
- position: relative;
- padding-left: 85px;
-
- &.empty-project {
- border-bottom: 0px;
- padding-bottom: 15px;
- margin-bottom: 0px;
- }
-
- .project-identicon-holder {
- position: absolute;
- left: 0;
-
- .avatar {
- width: 70px;
- height: 70px;
- }
-
- .identicon {
- font-size: 45px;
- line-height: 1.6;
- }
-
- .avatar, .identicon {
- @include border-radius(4px);
- box-shadow: 0 1px 2px #ddd;
- }
- }
-
- .project-home-dropdown {
- margin-left: 10px;
- float: right;
- }
-
- .project-home-row {
- @extend .clearfix;
- margin-bottom: 15px;
-
- &.project-home-row-top {
- margin-bottom: 15px;
- }
-
- .project-home-desc {
- font-size: 16px;
- line-height: 1.3;
- margin-right: 215px;
- }
-
- .project-home-desc {
- float: left;
- color: $gray;
- }
- }
-
- .visibility-level-label {
- color: $gray;
- i {
- color: inherit;
- }
- }
-
- .project-repo-buttons {
- margin-top: -3px;
- position: absolute;
- right: 0;
- width: 260px;
- text-align: right;
-
- .btn {
- font-weight: bold;
- font-size: 14px;
- line-height: 16px;
-
- .count {
- padding-left: 10px;
- border-left: 1px solid #ccc;
- display: inline-block;
- margin-left: 10px;
- }
- }
- }
-}
-
-.project-home-links {
- padding: 10px 0px;
- float: right;
- a {
- margin-left: 10px;
- font-weight: 500;
- }
-}
-
-.git-clone-holder {
- .project-home-dropdown + & {
- margin-right: 45px;
- }
-
- .form-control {
- cursor: auto;
- @extend .monospace;
- background: #FAFAFA;
- width: 100%;
- }
-
- .input-group-addon {
- background: #FAFAFA;
- }
-}
-
-.project-visibility-level-holder {
- .radio {
- margin-bottom: 10px;
-
- i {
- margin: 0 3px;
- font-size: 20px;
- }
-
- .option-title {
- font-weight: bold;
- display: inline-block;
- }
-
- .option-descr {
- margin-left: 24px;
- color: $gray;
- }
- }
-}
-
-.save-project-loader {
- margin-top: 50px;
- margin-bottom: 50px;
- color: #555;
-}
-
-ul.nav.nav-projects-tabs {
- @extend .nav-tabs;
-
- padding-left: 8px;
-
- li {
- a {
- padding: 6px 25px;
- margin-top: 2px;
- border-color: #DDD;
- background-color: #EEE;
- text-shadow: 0 1px 1px white;
- color: #555;
- }
- &.active {
- a {
- font-weight: bold;
- }
- }
- }
-}
-
-.project_member_row form {
- margin: 0px;
-}
-
-.my-projects,
-.public-projects {
- li {
- .project-info {
- margin-bottom: 10px;
- overflow: hidden;
- }
-
- .access-icon {
- color: #AAA;
- margin-left: 10px;
- i {
- color: #AAA;
- }
- }
- }
-}
-
-.public-clone {
- background: #EEE;
- color: #777;
- padding: 6px 10px;
- margin: 1px;
- font-weight: normal;
-}
-
-.public-projects .repo-info {
- color: #777;
-
- a {
- color: #777;
- }
-}
-
-.project-side {
- .btn-block {
- background-image: none;
-
- .btn, &.btn {
- white-space: normal;
- text-align: left;
- padding: 10px 15px;
-
- &.dropdown-toggle {
- text-align: center;
- }
-
- &:hover {
- background-color: #eee;
- border-color: #DDD;
- }
- }
-
- .count {
- float: right;
- font-weight: 500;
- text-shadow: 0 1px #FFF;
- }
-
- &.btn-group-justified {
- .btn {
- width: 100%;
- }
- .dropdown-toggle {
- width: 30px;
- padding: 10px;
- }
- ul {
- width: 100%;
- }
- }
- }
-
- .project-fork-icon {
- float: left;
- font-size: 26px;
- margin-right: 10px;
- line-height: 1.5;
- }
-}
-
-.transfer-project .select2-container {
- min-width: 200px;
-}
-
-.deploy-project-label {
- margin: 1px;
-}
-
-.vs-public {
- color: $gl-primary;
-}
-
-.vs-internal {
- color: $gl-warning;
-}
-
-.vs-private {
- color: $gl-success;
-}
-
-.breadcrumb.repo-breadcrumb {
- padding: 2px 0;
- background: white;
- border: none;
- font-size: 16px;
-
- > li + li:before {
- padding: 0 3px;
- color: #999;
- }
-}
-
-.fork-namespaces {
- .thumbnail {
-
- &.fork-exists-thumbnail {
- border-color: #EEE;
-
- .caption {
- color: #999;
- }
- }
-
- &.fork-thumbnail {
- border-color: #AAA;
-
- &:hover {
- background-color: $hover;
- }
- }
-
- a {
- text-decoration: none;
- }
- }
-}
-
-table.table.protected-branches-list tr.no-border {
- th, td {
- border: 0;
- }
-}
-
-.project-import .btn {
- float: left;
- margin-right: 10px;
-}
diff --git a/app/assets/stylesheets/pages/search.scss b/app/assets/stylesheets/pages/search.scss
deleted file mode 100644
index bdaa17ac339..00000000000
--- a/app/assets/stylesheets/pages/search.scss
+++ /dev/null
@@ -1,7 +0,0 @@
-.search-results {
- .search-result-row {
- border-bottom: 1px solid #EEE;
- padding-bottom: 10px;
- margin-bottom: 10px;
- }
-}
diff --git a/app/assets/stylesheets/pages/snippets.scss b/app/assets/stylesheets/pages/snippets.scss
deleted file mode 100644
index d79591d9915..00000000000
--- a/app/assets/stylesheets/pages/snippets.scss
+++ /dev/null
@@ -1,8 +0,0 @@
-.my-snippets li:first-child {
- h4 { margin-top: 0; }
- padding-top: 0;
-}
-
-.snippet-form-holder .file-holder .file-title {
- padding: 2px;
-}
diff --git a/app/assets/stylesheets/pages/stat_graph.scss b/app/assets/stylesheets/pages/stat_graph.scss
deleted file mode 100644
index b9be47e7700..00000000000
--- a/app/assets/stylesheets/pages/stat_graph.scss
+++ /dev/null
@@ -1,50 +0,0 @@
-.tint-box {
- background: #f3f3f3;
- position: relative;
- margin-bottom: 10px;
-}
-
-.area {
- fill: #1db34f;
- fill-opacity: 0.5;
-}
-
-.axis {
- fill: #aaa;
- font-size: 10px;
-}
-
-#contributors {
- .contributors-list {
- margin: 0 0 10px 0;
- list-style: none;
- padding: 0;
- }
-
- .person {
- &:nth-child(even) {
- float: right;
- }
- float: left;
- margin-top: 10px;
- }
-
- .person .spark {
- display: block;
- background: #f3f3f3;
- }
-
- .person .area-contributor {
- fill: #f17f49;
- }
-}
-
-.selection rect {
- fill: #333;
- fill-opacity: 0.1;
- stroke: #333;
- stroke-width: 1px;
- stroke-opacity: 0.4;
- shape-rendering: crispedges;
- stroke-dasharray: 3 3;
-}
diff --git a/app/assets/stylesheets/pages/themes.scss b/app/assets/stylesheets/pages/themes.scss
deleted file mode 100644
index e69de29bb2d..00000000000
--- a/app/assets/stylesheets/pages/themes.scss
+++ /dev/null
diff --git a/app/assets/stylesheets/pages/tree.scss b/app/assets/stylesheets/pages/tree.scss
deleted file mode 100644
index 57f63b52aa1..00000000000
--- a/app/assets/stylesheets/pages/tree.scss
+++ /dev/null
@@ -1,153 +0,0 @@
-.tree-holder {
- .tree-content-holder {
- float: left;
- width: 100%;
- }
-
- .tree_progress {
- display: none;
- margin: 20px;
- &.loading {
- display: block;
- }
- }
-
- .tree-table {
- @extend .table;
- @include border-radius(0);
-
- tr {
- &:hover {
- td {
- background: $hover;
- border-top: 1px solid #ADF;
- border-bottom: 1px solid #ADF;
- }
- cursor: pointer;
- }
- &.selected {
- td {
- background: $background-color;
- border-top: 1px solid #EEE;
- border-bottom: 1px solid #EEE;
- }
- }
- }
- }
-
- .tree-item {
- .tree-item-file-name {
- max-width: 320px;
- vertical-align: middle;
-
- i, a {
- color: $gl-link-color;
- }
-
- img {
- position: relative;
- top:-1px;
- }
- }
-
- .tree_commit {
- max-width: 320px;
- }
-
- .tree_time_ago {
- min-width: 135px;
- }
- }
-
- .tree_author {
- padding-right: 8px;
-
- .commit-author-name {
- color: gray;
- }
- }
-
- .tree_commit {
- color: gray;
-
- .tree-commit-link {
- color: gray;
-
- &:hover {
- text-decoration: underline;
- }
- }
- }
-
- .blame {
- img.avatar {
- border: 0 none;
- float: none;
- margin: 0;
- padding: 0;
- }
- td.blame-commit {
- background: #f9f9f9;
- min-width: 350px;
- }
- td.blame-numbers {
- pre {
- color: #AAA;
- white-space: pre;
- }
- background: #f1f1f1;
- border-left: 1px solid #DDD;
- }
- td.lines {
- code {
- font-family: $monospace_font;
- }
- }
- }
-}
-
-.tree-download-holder .btn {
- padding: 4px 12px;
-}
-
-.tree-ref-holder {
- float: left;
- margin-right: 15px;
-
- .select2-container .select2-choice, .select2-container.select2-drop-above .select2-choice {
- padding: 4px 12px;
- }
-}
-
-.readme-holder {
- .readme-file-title {
- font-size: 14px;
- font-weight: bold;
- margin-bottom: 20px;
- color: #777;
- border-bottom: 1px solid #DDD;
- padding: 10px 0;
- }
-}
-
-.blob-commit-info {
- list-style: none;
- margin: 0;
- padding: 0;
- margin-bottom: 10px;
-
- .commit {
- padding: 10px 15px;
-
- .commit-row-title {
- font-size: 13px;
-
- .commit-row-message {
- font-weight: normal;
- color: #555;
- }
- }
- }
-}
-
-#modal-remove-blob > .modal-dialog { width: 850px; }
diff --git a/app/assets/stylesheets/pages/ui_dev_kit.scss b/app/assets/stylesheets/pages/ui_dev_kit.scss
deleted file mode 100644
index 277afa1db9e..00000000000
--- a/app/assets/stylesheets/pages/ui_dev_kit.scss
+++ /dev/null
@@ -1,9 +0,0 @@
-.gitlab-ui-dev-kit {
- > h2 {
- font-size: 27px;
- border-bottom: 1px solid #CCC;
- color: #666;
- margin: 30px 0;
- font-weight: bold;
- }
-}
diff --git a/app/assets/stylesheets/pages/votes.scss b/app/assets/stylesheets/pages/votes.scss
deleted file mode 100644
index dc9a7d71e8b..00000000000
--- a/app/assets/stylesheets/pages/votes.scss
+++ /dev/null
@@ -1,4 +0,0 @@
-.votes-inline {
- display: inline-block;
- margin: 0 8px;
-}
diff --git a/app/assets/stylesheets/pages/wiki.scss b/app/assets/stylesheets/pages/wiki.scss
deleted file mode 100644
index dfaeba41cf6..00000000000
--- a/app/assets/stylesheets/pages/wiki.scss
+++ /dev/null
@@ -1,6 +0,0 @@
-.title .edit-wiki-header {
- width: 780px;
- margin-left: auto;
- margin-right: auto;
- padding-right: 7px;
-}