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/generic')
-rw-r--r--app/assets/stylesheets/generic/avatar.scss42
-rw-r--r--app/assets/stylesheets/generic/blocks.scss19
-rw-r--r--app/assets/stylesheets/generic/buttons.scss74
-rw-r--r--app/assets/stylesheets/generic/calendar.scss90
-rw-r--r--app/assets/stylesheets/generic/common.scss376
-rw-r--r--app/assets/stylesheets/generic/files.scss145
-rw-r--r--app/assets/stylesheets/generic/filters.scss55
-rw-r--r--app/assets/stylesheets/generic/flash.scss17
-rw-r--r--app/assets/stylesheets/generic/forms.scss95
-rw-r--r--app/assets/stylesheets/generic/gfm.scss21
-rw-r--r--app/assets/stylesheets/generic/highlight.scss70
-rw-r--r--app/assets/stylesheets/generic/issue_box.scss32
-rw-r--r--app/assets/stylesheets/generic/jquery.scss55
-rw-r--r--app/assets/stylesheets/generic/lists.scss128
-rw-r--r--app/assets/stylesheets/generic/markdown_area.scss87
-rw-r--r--app/assets/stylesheets/generic/mobile.scss69
-rw-r--r--app/assets/stylesheets/generic/nav_sidebar.scss193
-rw-r--r--app/assets/stylesheets/generic/selects.scss118
-rw-r--r--app/assets/stylesheets/generic/tables.scss20
-rw-r--r--app/assets/stylesheets/generic/timeline.scss134
-rw-r--r--app/assets/stylesheets/generic/typography.scss75
-rw-r--r--app/assets/stylesheets/generic/zen.scss98
22 files changed, 0 insertions, 2013 deletions
diff --git a/app/assets/stylesheets/generic/avatar.scss b/app/assets/stylesheets/generic/avatar.scss
deleted file mode 100644
index 8595887c3b9..00000000000
--- a/app/assets/stylesheets/generic/avatar.scss
+++ /dev/null
@@ -1,42 +0,0 @@
-.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; }
- }
-
- &.group-avatar, &.project-avatar, &.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; }
-}
-
-.identicon {
- text-align: center;
- vertical-align: top;
-
- &.s16 { font-size: 12px; line-height: 1.33; }
- &.s24 { font-size: 14px; line-height: 1.8; }
- &.s26 { font-size: 20px; line-height: 1.33; }
- &.s32 { font-size: 22px; line-height: 32px; }
- &.s60 { font-size: 32px; line-height: 60px; }
- &.s90 { font-size: 36px; line-height: 90px; }
- &.s160 { font-size: 96px; line-height: 1.33; }
-}
diff --git a/app/assets/stylesheets/generic/blocks.scss b/app/assets/stylesheets/generic/blocks.scss
deleted file mode 100644
index 3536a68f416..00000000000
--- a/app/assets/stylesheets/generic/blocks.scss
+++ /dev/null
@@ -1,19 +0,0 @@
-.light-well {
- background: #f9f9f9;
- padding: 15px;
-}
-
-.centered-light-block {
- text-align: center;
- color: #888;
- margin: 20px;
-}
-
-.nothing-here-block {
- text-align: center;
- padding: 20px;
- color: #666;
- font-weight: normal;
- font-size: 16px;
- line-height: 36px;
-}
diff --git a/app/assets/stylesheets/generic/buttons.scss b/app/assets/stylesheets/generic/buttons.scss
deleted file mode 100644
index cd6bf64c0ae..00000000000
--- a/app/assets/stylesheets/generic/buttons.scss
+++ /dev/null
@@ -1,74 +0,0 @@
-.btn {
- @extend .btn-default;
-
- &.btn-new {
- @extend .btn-success;
- }
-
- &.btn-create {
- @extend .btn-success;
- }
-
- &.btn-save {
- @extend .btn-primary;
- }
-
- &.btn-remove {
- @extend .btn-danger;
- }
-
- &.btn-cancel {
- float: right;
- }
-
- &.btn-close {
- color: $gl-danger;
- border-color: $gl-danger;
- &:hover {
- color: #B94A48;
- }
- }
-
- &.btn-reopen {
- color: $gl-success;
- border-color: $gl-success;
- &:hover {
- color: #468847;
- }
- }
-
- &.btn-grouped {
- margin-right: 7px;
- float: left;
- &:last-child {
- margin-right: 0px;
- }
- }
-
- &.btn-save {
- @extend .btn-primary;
- }
-
- &.btn-new, &.btn-create {
- @extend .btn-success;
- }
-}
-
-.btn-block {
- width: 100%;
- margin: 0;
- margin-bottom: 15px;
- &.btn {
- padding: 6px 0;
- }
-}
-
-.btn-group {
- &.btn-grouped {
- margin-right: 7px;
- float: left;
- &:last-child {
- margin-right: 0px;
- }
- }
-}
diff --git a/app/assets/stylesheets/generic/calendar.scss b/app/assets/stylesheets/generic/calendar.scss
deleted file mode 100644
index a36fefe22c5..00000000000
--- a/app/assets/stylesheets/generic/calendar.scss
+++ /dev/null
@@ -1,90 +0,0 @@
-.user-calendar-activities {
- .calendar_onclick_hr {
- padding: 0;
- margin: 10px 0;
- }
-
- .str-truncated {
- max-width: 70%;
- }
-
- .text-expander {
- background: #eee;
- color: #555;
- padding: 0 5px;
- cursor: pointer;
- margin-left: 4px;
- &:hover {
- background-color: #ddd;
- }
- }
-}
-/**
-* This overwrites the default values of the cal-heatmap gem
-*/
-.calendar {
- .qi {
- background-color: #999;
- fill: #fff;
- }
-
- .q1 {
- background-color: #dae289;
- fill: #ededed;
- }
-
- .q2 {
- background-color: #cedb9c;
- fill: #ACD5F2;
- }
-
- .q3 {
- background-color: #b5cf6b;
- fill: #7FA8D1;
- }
-
- .q4 {
- background-color: #637939;
- fill: #49729B;
- }
-
- .q5 {
- background-color: #3b6427;
- fill: #254E77;
- }
-
- .domain-background {
- fill: none;
- shape-rendering: crispedges;
- }
-
- .ch-tooltip {
- position: absolute;
- display: none;
- margin-top: 22px;
- margin-left: 1px;
- font-size: 13px;
- padding: 3px;
- font-weight: 550;
- background-color: #222;
- span {
- position: absolute;
- width: 200px;
- text-align: center;
- visibility: hidden;
- border-radius: 10px;
- &:after {
- content: '';
- position: absolute;
- top: 100%;
- left: 50%;
- margin-left: -8px;
- width: 0;
- height: 0;
- border-top: 8px solid #000000;
- border-right: 8px solid transparent;
- border-left: 8px solid transparent;
- }
- }
- }
-}
diff --git a/app/assets/stylesheets/generic/common.scss b/app/assets/stylesheets/generic/common.scss
deleted file mode 100644
index 7c3021989a8..00000000000
--- a/app/assets/stylesheets/generic/common.scss
+++ /dev/null
@@ -1,376 +0,0 @@
-/** COLORS **/
-.cgray { color: gray }
-.clgray { color: #BBB }
-.cred { color: #D12F19 }
-.cgreen { color: #4a2 }
-.cdark { color: #444 }
-
-/** 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 }
-.center { text-align: center }
-
-.underlined-link { text-decoration: underline; }
-.hint { font-style: italic; color: #999; }
-.light { color: #888 }
-
-.slead {
- color: #666;
- font-size: 15px;
- margin-bottom: 12px;
- font-weight: normal;
- line-height: 24px;
-}
-
-.tab-content {
- overflow: visible;
-}
-
-pre {
- &.clean {
- background: none;
- border: none;
- margin: 0;
- padding: 0;
- }
-
- &.well-pre {
- border: 1px solid #EEE;
- background: #f9f9f9;
- border-radius: 0;
- color: #555;
- }
-}
-
-.dropdown-menu > li > a {
- text-shadow: none;
-}
-
-.dropdown-menu-align-right {
- left: auto;
- right: 0px;
-}
-
-.dropdown-menu > li > a:hover,
-.dropdown-menu > li > a:focus {
- background: $gl-primary;
- color: #FFF
-}
-
-.str-truncated {
- @include str-truncated;
-}
-
-/** FLASH message **/
-.author_link {
- color: $gl-link-color;
-}
-
-.help li { color:$style_color; }
-
-.back-link {
- font-size: 14px;
-}
-
-table a code {
- position: relative;
- top: -2px;
- margin-right: 3px;
-}
-
-.loading {
- margin: 20px auto;
- height: 40px;
- color: #555;
- font-size: 32px;
- text-align: center;
-}
-
-span.update-author {
- display: block;
- color: #999;
- font-weight: normal;
- font-style: italic;
- strong {
- font-weight: bold;
- font-style: normal;
- }
-}
-
-.user-mention {
- color: #2FA0BB;
- font-weight: bold;
-}
-
-.field_with_errors {
- display: inline;
-}
-
-.line_holder {
- &:hover {
- td {
- background: #FFFFCF !important;
- }
- }
-}
-
-p.time {
- color: #999;
- font-size: 90%;
- margin: 30px 3px 3px 2px;
-}
-
-.highlight {
- text-shadow: none;
-}
-
-.highlight_word {
- background: #fafe3d;
-}
-
-.thin_area{
- height: 150px;
-}
-
-// Fixes alignment on notes.
-.new_note {
- label {
- text-align: left;
- }
-}
-
-// Fix issue with notes & lists creating a bunch of bottom borders.
-li.note {
- img { max-width:100% }
- .note-title {
- li {
- border-bottom:none !important;
- }
- }
-}
-
-.markdown {
- img {
- max-width: 100%;
- }
-}
-
-.wiki_content code, .readme code{
- background-color: inherit;
-}
-
-.project_member_show {
- td:first-child {
- color: #aaa;
- }
-}
-
-.rss-icon {
- img {
- width: 24px;
- vertical-align: top;
- }
-
- strong {
- line-height: 24px;
- }
-}
-
-.supp_diff_link,
-.show-all-commits {
- cursor: pointer;
-}
-
-.git_error_tips {
- @extend .col-md-6;
- text-align: left;
- margin-top: 40px;
- pre {
- background: white;
- border: none;
- font-size: 12px;
- }
-}
-
-.error-message {
- padding: 10px;
- background: #C67;
- margin: 0;
- color: #FFF;
-
- a {
- color: #fff;
- text-decoration: underline;
- }
-}
-
-.browser-alert {
- padding: 10px;
- text-align: center;
- background: #C67;
- color: #fff;
- font-weight: bold;
- a {
- color: #fff;
- text-decoration: underline;
- }
-}
-
-.warning_message {
- border-left: 4px solid #ed9;
- color: #b90;
- padding: 10px;
- margin-bottom: 10px;
- background: #ffffe6;
- padding-left: 20px;
-
- &.centered {
- text-align: center;
- }
-}
-
-.gitlab-promo {
- a {
- color: #aaa;
- margin-right: 30px;
- }
-}
-
-.milestone {
- &.milestone-closed {
- background: #f9f9f9;
- }
- .progress {
- margin-bottom: 0;
- margin-top: 4px;
- }
-}
-
-.control-group {
- .controls {
- span {
- &.descr {
- position: relative;
- top: 2px;
- left: 5px;
- color: #666;
- }
- }
- }
-}
-
-img.emoji {
- height: 20px;
- vertical-align: middle;
- width: 20px;
-}
-
-.chart {
- overflow: hidden;
- height: 220px;
-}
-
-.description-block {
- @extend .light-well;
- @extend .light;
- margin-bottom: 10px;
-}
-
-table {
- td.permission-x {
- background: #D9EDF7 !important;
- text-align: center;
- }
-}
-
-.dashboard-intro-icon {
- float: left;
- text-align: center;
- font-size: 32px;
- color: #AAA;
- width: 60px;
-}
-
-.dashboard-intro-text {
- display: inline-block;
- margin-left: -60px;
- padding-left: 60px;
- width: 100%;
-}
-
-.btn-sign-in {
- margin-top: 5px;
- text-shadow: none;
-}
-
-.side-filters {
- fieldset {
- margin-bottom: 15px;
- }
-}
-
-.wiki .highlight, .note-body .highlight {
- margin-bottom: 9px;
-}
-
-.wiki .code {
- overflow-x: auto;
-}
-
-.footer-links {
- margin-bottom: 20px;
- a {
- margin-right: 15px;
- }
-}
-
-.search_box {
- position: relative;
- padding: 30px;
- text-align: center;
- background-color: #F9F9F9;
- border: 1px solid #DDDDDD;
- border-radius: 0px;
-}
-
-.search_glyph {
- color: #555;
- font-size: 42px;
-}
-
-.task-status {
- margin-left: 10px;
-}
-
-#nprogress .spinner {
- top: auto !important;
- bottom: 20px !important;
- left: 20px !important;
-}
-
-.header-with-avatar {
- h3 {
- margin: 0;
- font-weight: bold;
- }
-
- .username {
- font-size: 18px;
- color: #666;
- margin-top: 8px;
- }
-
- .description {
- font-size: 16px;
- color: #666;
- margin-top: 8px;
- }
-}
diff --git a/app/assets/stylesheets/generic/files.scss b/app/assets/stylesheets/generic/files.scss
deleted file mode 100644
index 8014dcb165b..00000000000
--- a/app/assets/stylesheets/generic/files.scss
+++ /dev/null
@@ -1,145 +0,0 @@
-/**
- * File content holder
- *
- */
-.file-holder {
- border: 1px solid $border-color;
- margin-bottom: 1em;
-
- table {
- @extend .table;
- }
-
- .file-title {
- position: relative;
- background: $background-color;
- border-bottom: 1px solid $border-color;
- text-shadow: 0 1px 1px #fff;
- margin: 0;
- text-align: left;
- padding: 10px 15px;
-
- .file-actions {
- float: right;
- position: absolute;
- top: 5px;
- right: 15px;
-
- .btn {
- padding: 0px 10px;
- font-size: 13px;
- line-height: 28px;
- }
- }
-
- .left-options {
- margin-top: -3px;
- }
- }
- .file-content {
- background: #fff;
-
- &.image_file {
- background: #eee;
- text-align: center;
- img {
- padding: 100px;
- max-width: 50%;
- }
- }
-
- &.wiki {
- padding: 25px;
-
- .highlight {
- margin-bottom: 9px;
-
- > pre {
- margin: 0;
- }
- }
- }
-
- &.blob_file {
-
- }
-
- &.blob-no-preview {
- background: #eee;
- text-shadow: 0 1px 2px #FFF;
- padding: 100px 0;
- }
-
- /**
- * Blame file
- */
- &.blame {
- table {
- border: none;
- box-shadow: none;
- margin: 0;
- }
- tr {
- border-bottom: 1px solid #eee;
- }
- td {
- &:first-child {
- border-left: none;
- }
- &:last-child {
- border-right: none;
- }
- background: #fff;
- padding: 5px;
- }
- .author,
- .blame_commit {
- background: $background-color;
- vertical-align: top;
- }
- .lines {
- pre {
- padding: 0;
- margin: 0;
- background: none;
- border: none;
- }
- }
- }
-
- &.logs {
- background: #eee;
- max-height: 700px;
- overflow-y: auto;
-
- ol {
- margin-left: 40px;
- padding: 10px 0;
- border-left: 1px solid $border-color;
- margin-bottom: 0;
- background: white;
- li {
- color: #888;
- p {
- margin: 0;
- color: #333;
- line-height: 24px;
- padding-left: 10px;
- }
-
- &:hover {
- background: $hover;
- }
- }
- }
- }
-
- /**
- * Code file
- */
- &.code {
- padding: 0;
- }
- }
-}
-
diff --git a/app/assets/stylesheets/generic/filters.scss b/app/assets/stylesheets/generic/filters.scss
deleted file mode 100644
index bd93a79722d..00000000000
--- a/app/assets/stylesheets/generic/filters.scss
+++ /dev/null
@@ -1,55 +0,0 @@
-.filter-item {
- margin-right: 15px;
-}
-
-.issues-state-filters {
- li.active a {
- border-color: #DDD !important;
-
- &, &:hover, &:active, &.active {
- background: #f5f5f5 !important;
- border-bottom: 1px solid #f5f5f5 !important;
- }
- }
-}
-
-.issues-details-filters {
- font-size: 13px;
- background: #f5f5f5;
- margin: -10px 0;
- padding: 10px 15px;
- margin-top: -15px;
- border-left: 1px solid #DDD;
- border-right: 1px solid #DDD;
-
- .btn {
- font-size: 13px;
- }
-}
-
-@media (min-width: 800px) {
- .issues-filters,
- .issues_bulk_update {
- select, .select2-container {
- width: 120px !important;
- display: inline-block;
- }
- }
-}
-
-@media (min-width: 1200px) {
- .issues-filters,
- .issues_bulk_update {
- select, .select2-container {
- width: 150px !important;
- display: inline-block;
- }
- }
-}
-
-.issues-filters,
-.issues_bulk_update {
- .select2-container .select2-choice {
- color: #444 !important;
- }
-}
diff --git a/app/assets/stylesheets/generic/flash.scss b/app/assets/stylesheets/generic/flash.scss
deleted file mode 100644
index 82eb50ad4be..00000000000
--- a/app/assets/stylesheets/generic/flash.scss
+++ /dev/null
@@ -1,17 +0,0 @@
-.flash-container {
- cursor: pointer;
- margin: 0;
- font-size: 14px;
- width: 100%;
- z-index: 100;
-
- .flash-notice {
- @extend .alert;
- @extend .alert-info;
- }
-
- .flash-alert {
- @extend .alert;
- @extend .alert-danger;
- }
-}
diff --git a/app/assets/stylesheets/generic/forms.scss b/app/assets/stylesheets/generic/forms.scss
deleted file mode 100644
index 266041403e0..00000000000
--- a/app/assets/stylesheets/generic/forms.scss
+++ /dev/null
@@ -1,95 +0,0 @@
-textarea {
- resize: vertical;
-}
-
-input[type='search'].search-text-input {
- background-image: image-url("icon-search.png");
- background-repeat: no-repeat;
- background-position: 10px;
- padding-left: 25px;
-}
-
-input[type='text'].danger {
- background: #F2DEDE!important;
- border-color: #D66;
- text-shadow: 0 1px 1px #fff
-}
-
-.datetime-controls {
- select {
- width: 100px;
- }
-}
-
-.form-actions {
- padding: 17px 20px 18px;
- margin-top: 18px;
- margin-bottom: 18px;
- background-color: $background-color;
- border-top: 1px solid $border-color;
-}
-
-@media (min-width: $screen-sm-min) {
- .form-actions {
- padding-left: 17%;
- }
-}
-
-label {
- &.control-label {
- @extend .col-sm-2;
- }
-
- &.inline-label {
- margin: 0;
- }
-}
-
-.inline-input-group {
- width: 250px;
-}
-
-.input-mx-250 {
- max-width: 250px;
-}
-
-.input-mn-300 {
- min-width: 300px;
-}
-
-.custom-form-control {
- width: 150px;
-}
-
-@media (min-width: $screen-sm-min) {
- .custom-form-control {
- width: 150px;
- }
-}
-
-/* Medium devices (desktops, 992px and up) */
-@media (min-width: $screen-md-min) {
- .custom-form-control {
- width: 170px;
- }
-}
-
-/* Large devices (large desktops, 1200px and up) */
-@media (min-width: $screen-lg-min) {
- .custom-form-control {
- width: 200px;
- }
-}
-
-.fieldset-form fieldset {
- margin-bottom: 20px;
-}
-
-.form-control {
- @include box-shadow(none);
-}
-
-.issuable-description,
-.wiki-content {
- margin-top: 35px;
-}
diff --git a/app/assets/stylesheets/generic/gfm.scss b/app/assets/stylesheets/generic/gfm.scss
deleted file mode 100644
index 8fac5e534fa..00000000000
--- a/app/assets/stylesheets/generic/gfm.scss
+++ /dev/null
@@ -1,21 +0,0 @@
-/**
- * Styles that apply to all GFM related forms.
- */
-.issue-form, .merge-request-form, .wiki-form {
- .description {
- height: 16em;
- border-top-left-radius: 0;
- }
-}
-
-.wiki-form {
- .description {
- height: 26em;
- }
-}
-
-.milestone-form {
- .description {
- height: 14em;
- }
-}
diff --git a/app/assets/stylesheets/generic/highlight.scss b/app/assets/stylesheets/generic/highlight.scss
deleted file mode 100644
index 2e13ee842e0..00000000000
--- a/app/assets/stylesheets/generic/highlight.scss
+++ /dev/null
@@ -1,70 +0,0 @@
-.file-content.code {
- border: none;
- box-shadow: none;
- margin: 0px;
- padding: 0px;
- table-layout: fixed;
-
- pre {
- padding: 10px;
- border: none;
- border-radius: 0;
- font-family: $monospace_font;
- font-size: $code_font_size !important;
- line-height: $code_line_height !important;
- margin: 0;
- overflow: auto;
- overflow-y: hidden;
- white-space: pre;
- word-wrap: normal;
-
- code {
- font-family: $monospace_font;
- white-space: pre;
- word-wrap: normal;
- padding: 0;
-
- .line {
- display: inline;
- }
- }
- }
-
- .line-numbers {
- padding: 10px;
- text-align: right;
- float: left;
-
- a {
- font-family: $monospace_font;
- display: block;
- font-size: $code_font_size !important;
- line-height: $code_line_height !important;
- white-space: nowrap;
-
- i {
- visibility: hidden;
- @extend .pull-left;
- }
-
- &:hover i {
- visibility: visible;
- }
- }
- }
-}
-
-.note-text .code {
- border: none;
- box-shadow: none;
- background: $background-color;
- padding: 1em;
- overflow-x: auto;
-
- code {
- font-family: $monospace_font;
- white-space: pre;
- word-wrap: normal;
- padding: 0;
- }
-}
diff --git a/app/assets/stylesheets/generic/issue_box.scss b/app/assets/stylesheets/generic/issue_box.scss
deleted file mode 100644
index 9558f241b7c..00000000000
--- a/app/assets/stylesheets/generic/issue_box.scss
+++ /dev/null
@@ -1,32 +0,0 @@
-/**
- * Issue box for showing Open/Closed state:
- * Used for Issue#show page, MergeRequest#show page etc
- *
- */
-
-.issue-box {
- display: inline-block;
- padding: 7px 13px;
- font-weight: normal;
- margin-right: 5px;
-
- &.issue-box-closed {
- background-color: $gl-danger;
- color: #FFF;
- }
-
- &.issue-box-merged {
- background-color: $gl-primary;
- color: #FFF;
- }
-
- &.issue-box-open {
- background-color: $gl-success;
- color: #FFF;
- }
-
- &.issue-box-expired {
- background: #cea61b;
- color: #FFF;
- }
-}
diff --git a/app/assets/stylesheets/generic/jquery.scss b/app/assets/stylesheets/generic/jquery.scss
deleted file mode 100644
index 871b808bad4..00000000000
--- a/app/assets/stylesheets/generic/jquery.scss
+++ /dev/null
@@ -1,55 +0,0 @@
-.ui-widget {
- font-family: $regular_font;
- font-size: $font-size-base;
-
- &.ui-datepicker-inline {
- border: 1px solid #DDD;
- padding: 10px;
- width: 270px;
-
- .ui-datepicker-header {
- background: #FFF;
- border-color: #DDD;
- }
-
- .ui-datepicker-calendar td a {
- padding: 5px;
- text-align: center;
- }
- }
-
- &.ui-autocomplete {
- border-color: #DDD;
- padding: 0;
- margin-top: 2px;
- z-index: 1001;
-
- .ui-menu-item a {
- padding: 4px 10px;
- }
- }
-
- .ui-state-default {
- border: 1px solid #FFF;
- background: #FFF;
- color: #777;
- }
-
- .ui-state-highlight {
- border: 1px solid #EEE;
- background: #EEE;
- }
-
- .ui-state-active {
- border: 1px solid $gl-primary;
- background: $gl-primary;
- color: #FFF;
- }
-
- .ui-state-hover,
- .ui-state-focus {
- border: 1px solid $hover;
- background: $hover;
- color: #333;
- }
-}
diff --git a/app/assets/stylesheets/generic/lists.scss b/app/assets/stylesheets/generic/lists.scss
deleted file mode 100644
index 08bf6e943d2..00000000000
--- a/app/assets/stylesheets/generic/lists.scss
+++ /dev/null
@@ -1,128 +0,0 @@
-/**
- * Well styled list
- *
- */
-.well-list {
- margin: 0;
- padding: 0;
- list-style: none;
-
- li {
- padding: 10px 15px;
- min-height: 20px;
- border-bottom: 1px solid #eee;
- border-bottom: 1px solid rgba(0, 0, 0, 0.05);
-
- &:after {
- content: " ";
- display: table;
- clear: both;
- }
-
- &.disabled {
- color: #888;
- }
-
- &.unstyled {
- &:hover {
- background: none;
- }
- }
-
- &.warning-row {
- background-color: #fcf8e3;
- border-color: #faebcc;
- color: #8a6d3b;
- }
-
- &.smoke { background-color: $background-color; }
-
- &:hover {
- background: $hover;
- border-bottom: 1px solid darken($hover, 10%);
- }
-
- &:last-child {
- border-bottom: none;
-
- &.bottom {
- background: $background-color;
- }
- }
-
- .author { color: #999; }
-
- .list-item-name {
- float: left;
- position: relative;
- top: 3px;
- }
-
- p {
- padding-top: 1px;
- margin: 0;
- color: $gray-dark;
- img {
- position: relative;
- top: 3px;
- }
- }
-
- .well-title {
- font-size: $list-font-size;
- line-height: 18px;
- }
-
- .row_title {
- color: $gray-dark;
-
- &:hover {
- color: $text-color;
- text-decoration: underline;
- }
- }
- }
-}
-
-ol, ul {
- &.styled {
- li {
- padding: 2px;
- }
- }
-}
-
-/** 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; }
- }
-
- &.light {
- a { color: #777; }
- }
- }
-
- &.top-list {
- li:first-child {
- padding-top: 0;
- h4, h5 {
- margin-top: 0;
- }
- }
- }
-}
-
-li.task-list-item {
- list-style-type: none;
-}
diff --git a/app/assets/stylesheets/generic/markdown_area.scss b/app/assets/stylesheets/generic/markdown_area.scss
deleted file mode 100644
index eb39b6bb7e9..00000000000
--- a/app/assets/stylesheets/generic/markdown_area.scss
+++ /dev/null
@@ -1,87 +0,0 @@
-.div-dropzone-wrapper {
- .div-dropzone {
- position: relative;
- padding: 0;
- border: 0;
- margin-bottom: 5px;
-
- .div-dropzone-focus {
- border-color: #66afe9 !important;
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6) !important;
- outline: 0 !important;
- }
-
- .div-dropzone-hover {
- position: absolute;
- top: 50%;
- left: 50%;
- margin-top: -0.5em;
- margin-left: -0.6em;
- opacity: 0;
- font-size: 50px;
- transition: opacity 200ms ease-in-out;
- pointer-events: none;
- }
-
- .div-dropzone-spinner {
- position: absolute;
- top: 100%;
- left: 100%;
- margin-top: -1.1em;
- margin-left: -1.1em;
- opacity: 0;
- font-size: 30px;
- transition: opacity 200ms ease-in-out;
- }
-
- .div-dropzone-icon {
- display: block;
- text-align: center;
- font-size: inherit;
- }
-
- .dz-preview {
- display: none;
- }
- }
-}
-
-.div-dropzone-alert {
- margin-top: 5px;
- margin-bottom: 0;
- transition: opacity 200ms ease-in-out;
-}
-
-.md-preview-holder {
- background: #FFF;
- border: 1px solid #ddd;
- min-height: 100px;
- padding: 5px;
- box-shadow: none;
-}
-
-.new_note,
-.edit_note,
-.issuable-description,
-.milestone-description,
-.wiki-content,
-.merge-request-form {
- .nav-tabs {
- margin-bottom: 0;
- border: none;
-
- li a,
- li.active a {
- border: 1px solid #DDD;
- }
- }
-}
-
-.markdown-area {
- background: #FFF;
- border: 1px solid #ddd;
- min-height: 100px;
- padding: 5px;
- box-shadow: none;
- width: 100%;
-}
diff --git a/app/assets/stylesheets/generic/mobile.scss b/app/assets/stylesheets/generic/mobile.scss
deleted file mode 100644
index 71a1fc4493f..00000000000
--- a/app/assets/stylesheets/generic/mobile.scss
+++ /dev/null
@@ -1,69 +0,0 @@
-/** Common mobile (screen XS, SM) styles **/
-@media (max-width: $screen-xs-max) {
- .container .content {
- margin-top: 20px;
- }
-
- .nav.nav-tabs > li > a {
- padding: 10px;
- font-size: 12px;
- margin-right: 3px;
-
- .badge {
- display: none;
- }
- }
-
- .issues-filters,
- .dash-projects-filters,
- .check-all-holder {
- display: none;
- }
-
- .rss-btn {
- display: none !important;
- }
-
- .project-home-links {
- display: none;
- }
-}
-
-@media (max-width: $screen-sm-max) {
- .issues-filters {
- .milestone-filter, .labels-filter {
- display: none;
- }
- }
-
- .page-title {
- .note_created_ago, .new-issue-link {
- display: none;
- }
- }
-
- .issue_edited_ago, .note_edited_ago {
- display: none;
- }
-
- aside {
- display: none;
- }
-
- .show-aside {
- display: block !important;
- }
-}
-
-.show-aside {
- display: none;
- position: fixed;
- right: 0px;
- top: 30%;
- padding: 5px 15px;
- background: #EEE;
- font-size: 20px;
- color: #777;
- z-index: 100;
- @include box-shadow(0 1px 2px #DDD);
-}
diff --git a/app/assets/stylesheets/generic/nav_sidebar.scss b/app/assets/stylesheets/generic/nav_sidebar.scss
deleted file mode 100644
index 3bcb7b81333..00000000000
--- a/app/assets/stylesheets/generic/nav_sidebar.scss
+++ /dev/null
@@ -1,193 +0,0 @@
-.page-with-sidebar {
- background: $background-color;
-
- .sidebar-wrapper {
- position: fixed;
- top: 0;
- left: 0;
- height: 100%;
- border-right: 1px solid $border-color;
- }
-}
-
-.sidebar-wrapper {
- z-index: 99;
- background: $background-color;
-}
-
-.content-wrapper {
- width: 100%;
- padding: 15px;
- background: #FFF;
-}
-
-.nav-sidebar {
- margin: 0;
- list-style: none;
-
- &.navbar-collapse {
- padding: 0px !important;
- }
-}
-
-.nav-sidebar li a .count {
- float: right;
- background: #eee;
- padding: 0px 8px;
- @include border-radius(6px);
-}
-
-.nav-sidebar li {
- &.active a {
- color: $text-color;
- background: #FFF !important;
- font-weight: bold;
- border: 1px solid #EEE;
- border-right: 1px solid transparent;
- border-left: 3px solid $style_color;
-
- &.no-highlight {
- background: none !important;
- border: none;
- }
-
- i {
- color: $text-color;
- }
- }
-}
-
-.nav-sidebar li {
- &.separate-item {
- border-top: 1px solid $border-color;
- padding-top: 10px;
- margin-top: 10px;
- }
-
- a {
- color: $gray;
- display: block;
- text-decoration: none;
- padding: 8px 15px;
- font-size: 13px;
- line-height: 20px;
- padding-left: 20px;
-
- &:hover {
- text-decoration: none;
- color: $text-color;
- background: $border-color;
- }
-
- &:active, &:focus {
- text-decoration: none;
- }
-
- i {
- width: 20px;
- color: $gray-light;
- margin-right: 23px;
- }
- }
-}
-
-.sidebar-subnav {
- margin-left: 0px;
- padding-left: 0px;
-
- li {
- list-style: none;
- }
-}
-
-@mixin expanded-sidebar {
- padding-left: $sidebar_width;
-
- .sidebar-wrapper {
- width: $sidebar_width;
-
- .nav-sidebar {
- margin-top: 29px;
- position: fixed;
- top: 45px;
- width: $sidebar_width;
- }
- }
-
- .content-wrapper {
- padding: 20px;
- }
-}
-
-@mixin folded-sidebar {
- padding-left: 50px;
-
- .sidebar-wrapper {
- width: 52px;
-
- .nav-sidebar {
- margin-top: 29px;
- position: fixed;
- top: 45px;
- width: 52px;
-
- li a {
- padding-left: 18px;
- font-size: 14px;
- padding: 8px 15px;
- text-align: center;
-
-
- & > span {
- display: none;
- }
- }
- }
-
- .collapse-nav a {
- left: 0px;
- padding: 7px 23px 3px 22px;
- }
- }
-}
-
-.collapse-nav a {
- position: fixed;
- top: 46px;
- padding: 5px 13px 5px 13px;
- left: 198px;
- font-size: 13px;
- background: transparent;
- color: black;
- border-left: 1px solid $border-color;
- border-bottom: 1px solid $border-color;
-}
-
-.collapse-nav a:hover {
- text-decoration: none;
- background: #f2f6f7;
-}
-
-@media (max-width: $screen-md-max) {
- .page-sidebar-collapsed {
- @include folded-sidebar;
- }
-
- .page-sidebar-expanded {
- @include folded-sidebar;
- }
-
- .collapse-nav {
- display: none;
- }
-}
-
-@media(min-width: $screen-md-max) {
- .page-sidebar-collapsed {
- @include folded-sidebar;
- }
-
- .page-sidebar-expanded {
- @include expanded-sidebar;
- }
-}
diff --git a/app/assets/stylesheets/generic/selects.scss b/app/assets/stylesheets/generic/selects.scss
deleted file mode 100644
index d8e0dc028d1..00000000000
--- a/app/assets/stylesheets/generic/selects.scss
+++ /dev/null
@@ -1,118 +0,0 @@
-/** Select2 selectbox style override **/
-.select2-container, .select2-container.select2-drop-above {
- .select2-choice {
- background: #FFF;
- border-color: #DDD;
- height: 34px;
- padding: 6px 14px;
- font-size: 14px;
- line-height: 1.42857143;
-
- @include border-radius(4px);
-
- .select2-arrow {
- background: #FFF;
- border-left: none;
- padding-top: 3px;
- }
- }
-}
-
-.select2-container-multi .select2-choices {
- @include border-radius(4px);
- border-color: #CCC;
-}
-
-.select2-container-multi .select2-choices .select2-search-field input {
- padding: 8px 14px;
- font-size: 13px;
- line-height: 18px;
- height: auto;
-}
-
-.select2-drop-active {
- border: 1px solid #BBB !important;
- margin-top: 4px;
- font-size: 13px;
-
- &.select2-drop-above {
- margin-bottom: 8px;
- }
-
- .select2-search input {
- background: #fafafa;
- border-color: #DDD;
- }
-
- .select2-results {
- max-height: 350px;
- .select2-highlighted {
- background: $gl-primary;
- }
- }
-}
-
-.select2-container {
- width: 100% !important;
-}
-
-/** Branch/tag selector **/
-.project-refs-form .select2-container {
- width: 160px !important;
-}
-
-.ajax-users-dropdown, .ajax-project-users-dropdown {
- .select2-search {
- padding-top: 4px;
- }
-}
-
-.ajax-users-select {
- width: 400px;
-
- &.input-large {
- width: 210px;
- }
-
- &.input-clamp {
- max-width: 100%;
- }
-}
-
-.group-result {
- .group-image {
- float: left;
- }
- .group-name {
- font-weight: bold;
- }
- .group-path {
- color: #999;
- }
-}
-
-.user-result {
- .user-image {
- float: left;
- }
- .user-name {
- }
- .user-username {
- color: #999;
- }
-}
-
-.namespace-result {
- .namespace-kind {
- color: #AAA;
- font-weight: normal;
- }
- .namespace-path {
- margin-left: 10px;
- font-weight: bolder;
- }
-}
-
-.ajax-users-dropdown {
- min-width: 225px !important;
-}
diff --git a/app/assets/stylesheets/generic/tables.scss b/app/assets/stylesheets/generic/tables.scss
deleted file mode 100644
index a66e45577de..00000000000
--- a/app/assets/stylesheets/generic/tables.scss
+++ /dev/null
@@ -1,20 +0,0 @@
-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 $border-color !important;
- }
- td {
- border-color: #F1F1F1 !important;
- border-bottom: 1px solid;
- }
- }
- }
-}
diff --git a/app/assets/stylesheets/generic/timeline.scss b/app/assets/stylesheets/generic/timeline.scss
deleted file mode 100644
index 97831eb7c27..00000000000
--- a/app/assets/stylesheets/generic/timeline.scss
+++ /dev/null
@@ -1,134 +0,0 @@
-.timeline {
- list-style: none;
- padding: 20px 0 20px;
- position: relative;
-
- &:before {
- top: 0;
- bottom: 0;
- position: absolute;
- content: " ";
- width: 3px;
- background-color: #eeeeee;
- margin-left: 29px;
- }
-
- .timeline-entry {
- position: relative;
- margin-top: 5px;
- margin-left: 30px;
- margin-bottom: 10px;
- clear: both;
-
-
- &:target {
- .timeline-entry-inner .timeline-content {
- -webkit-animation:target-note 2s linear;
- background: $hover;
- }
- }
-
- .timeline-entry-inner {
- position: relative;
- margin-left: -20px;
-
- &:before, &:after {
- content: " ";
- display: table;
- }
-
- .timeline-icon {
- margin-top: 2px;
- background: #fff;
- color: #737881;
- float: left;
- @include border-radius($avatar_radius);
- @include box-shadow(0 0 0 3px #EEE);
- overflow: hidden;
-
- .avatar {
- margin: 0;
- padding: 0;
- }
- }
-
- .timeline-content {
- position: relative;
- background: $background-color;
- padding: 10px 15px;
- margin-left: 60px;
-
- img {
- max-width: 100%;
- }
-
- &:after {
- content: '';
- display: block;
- position: absolute;
- width: 0;
- height: 0;
- border-style: solid;
- border-width: 9px 9px 9px 0;
- border-color: transparent $background-color transparent transparent;
- left: 0;
- top: 10px;
- margin-left: -9px;
- }
- }
- }
- }
-
- .system-note .timeline-entry-inner {
- .timeline-icon {
- background: none;
- margin-left: 12px;
- margin-top: 0;
- @include box-shadow(none);
-
- span {
- margin: 0 2px;
- font-size: 16px;
- color: #eeeeee;
- }
- }
-
- .timeline-content {
- background: none;
- margin-left: 45px;
- padding: 0px 15px;
-
- &:after { border: 0; }
-
- .note-header {
- span { font-size: 12px; }
-
- .avatar {
- margin-right: 5px;
- }
- }
-
- .note-text {
- font-size: 12px;
- margin-left: 20px;
- }
- }
- }
-}
-
-@media (max-width: $screen-xs-max) {
- .timeline {
- &:before {
- background: none;
- }
- .timeline-entry .timeline-entry-inner {
- .timeline-icon {
- display: none;
- }
-
- .timeline-content {
- margin-left: 0;
- }
- }
- }
-}
diff --git a/app/assets/stylesheets/generic/typography.scss b/app/assets/stylesheets/generic/typography.scss
deleted file mode 100644
index 80190424c1b..00000000000
--- a/app/assets/stylesheets/generic/typography.scss
+++ /dev/null
@@ -1,75 +0,0 @@
-/**
- * Headers
- *
- */
-.page-title {
- margin-top: 0px;
- line-height: 1.5;
- font-weight: normal;
- margin-bottom: 5px;
-}
-
-/** CODE **/
-pre {
- font-family: $monospace_font;
-
- &.dark {
- background: #333;
- color: $background-color;
- }
-}
-
-.monospace {
- font-family: $monospace_font;
-}
-
-/**
- * Wiki typography
- *
- */
-.wiki {
- @include md-typography;
-
- word-wrap: break-word;
-
- /* Link to current header. */
- h1, h2, h3, h4, h5, h6 {
- position: relative;
- &:hover > :last-child {
- $size: 16px;
- position: absolute;
- right: 100%;
- top: 50%;
- margin-top: -$size/2;
- margin-right: 0px;
- padding-right: 20px;
- display: inline-block;
- width: $size;
- height: $size;
- background-image: image-url("icon-link.png");
- background-size: contain;
- background-repeat: no-repeat;
- }
- }
-
- ul {
- padding: 0;
- margin: 0 0 9px 25px !important;
- }
-}
-
-.md {
- @include md-typography;
-}
-
-/**
- * Textareas intended for GFM
- *
- */
-textarea.js-gfm-input {
- font-family: $monospace_font;
-}
-
-.strikethrough {
- text-decoration: line-through;
-}
diff --git a/app/assets/stylesheets/generic/zen.scss b/app/assets/stylesheets/generic/zen.scss
deleted file mode 100644
index 26afc21a6ab..00000000000
--- a/app/assets/stylesheets/generic/zen.scss
+++ /dev/null
@@ -1,98 +0,0 @@
-.zennable {
- position: relative;
-
- input {
- display: none;
- }
-
- .zen-enter-link {
- color: #888;
- position: absolute;
- top: -26px;
- right: 4px;
- }
-
- .zen-leave-link {
- display: none;
- color: #888;
- position: absolute;
- top: 10px;
- right: 10px;
- padding: 5px;
- font-size: 36px;
-
- &:hover {
- color: #111;
- }
- }
-
- input:checked ~ .zen-backdrop .zen-enter-link {
- display: none;
- }
-
- input:checked ~ .zen-backdrop .zen-leave-link {
- display: block;
- position: absolute;
- top: 0;
- }
-
- input:checked ~ .zen-backdrop {
- background-color: white;
- position: fixed;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- z-index: 1031;
-
- textarea {
- border: none;
- box-shadow: none;
- border-radius: 0;
- color: #000;
- font-size: 20px;
- line-height: 26px;
- padding: 30px;
- display: block;
- outline: none;
- resize: none;
- height: 100vh;
- max-width: 900px;
- margin: 0 auto;
- }
- }
-
- .zen-backdrop textarea::-webkit-input-placeholder {
- color: white;
- }
-
- .zen-backdrop textarea:-moz-placeholder {
- color: white;
- }
-
- .zen-backdrop textarea::-moz-placeholder {
- color: white;
- }
-
- .zen-backdrop textarea:-ms-input-placeholder {
- color: white;
- }
-
- input:checked ~ .zen-backdrop textarea::-webkit-input-placeholder {
- color: #999;
- }
-
- input:checked ~ .zen-backdrop textarea:-moz-placeholder {
- color: #999;
- opacity: 1;
- }
-
- input:checked ~ .zen-backdrop textarea::-moz-placeholder {
- color: #999;
- opacity: 1;
- }
-
- input:checked ~ .zen-backdrop textarea:-ms-input-placeholder {
- color: #999;
- }
-}