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/markdown_area.scss')
-rw-r--r--app/assets/stylesheets/generic/markdown_area.scss87
1 files changed, 0 insertions, 87 deletions
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%;
-}