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/issues.scss')
-rw-r--r--app/assets/stylesheets/pages/issues.scss156
1 files changed, 0 insertions, 156 deletions
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;
-}