From 8a3c9451af12843c0ca04218ab7db7ed5f640fdd Mon Sep 17 00:00:00 2001 From: Silke Pisulla Date: Fri, 12 May 2017 10:40:15 +0200 Subject: [PATCH 1/6] SPR-908: QS - magic matcher select box with max-width for none breaking line --- css/plugins/magic-matcher.less | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/css/plugins/magic-matcher.less b/css/plugins/magic-matcher.less index 72920d2..eb2fdbd 100755 --- a/css/plugins/magic-matcher.less +++ b/css/plugins/magic-matcher.less @@ -25,6 +25,10 @@ max-width: 50%; } + select[name="mmissues"] + div.chosen-container { + max-width: 67%; + } + button[name="toggleSuggestions"] { position: absolute; right: 0; From a1b82bf4510ff19e69ea8e8d91b73aa2bd236d5d Mon Sep 17 00:00:00 2001 From: Silke Pisulla Date: Fri, 12 May 2017 10:41:28 +0200 Subject: [PATCH 2/6] SPR-908: QS - usertools - user (linked/no linked) better size and padding, debug hover color --- css/area_nav-usertools.less | 56 +++++++++++++++---------------------- 1 file changed, 23 insertions(+), 33 deletions(-) diff --git a/css/area_nav-usertools.less b/css/area_nav-usertools.less index 65e252e..0f93075 100755 --- a/css/area_nav-usertools.less +++ b/css/area_nav-usertools.less @@ -77,14 +77,9 @@ } } - /* !!! &.user-task FIND in plugins/do_tasks.less !!! */ +/* !!! &.user-task FIND in plugins/do_tasks.less !!! */ &.user { - @space-min-xxlg: .35rem; - @space-max-xxlg: .4rem; - @space-max-xlg: .5rem; - @space-max-md: .35rem; - position: relative; display: table-cell; background-color: @ini_background_site; @@ -93,36 +88,34 @@ color: @ini_text_webframe; padding-right: .3rem; - @media @screen_min-xxlg { - padding-top: @space-min-xxlg; - } - - @media @screen_max-xxlg { - padding-top: @space-max-xxlg; - } - - @media @screen_max-xlg { - padding-top: @space-max-xlg; + @media @screen_min-md { + padding-top: .35rem; } @media @screen_max-md { min-height: @toggle-size; - padding-top: @space-max-md; + padding-top: .3rem; + } + + @media @screen_max-sm { + padding-top: .35rem; } @media @screen_max-xs { position: absolute; top: @headericons-margin-xxs; - right: (@toggle-size + @headericons-margin-xxs + @space-max-xlg + .5); // 1.75rem + .45 + .5 + (button login/out margin-right) + right: (@toggle-size + @headericons-margin-xxs + 1); // 1.75rem + 1 + (button login/out margin-right) overflow: hidden; white-space: nowrap; margin: -1px 0 0; + padding-top: .4rem; } @media @screen_max-xxs { left: -10px; right: (@toggle-size + @headericons-margin-xxs); // 1.75rem + .45rem width: auto; + padding-top: .35rem; } > a { @@ -130,7 +123,6 @@ .align-items(); position: relative; - min-height: 26px; height: 1rem; // for IE11 overflow: visible; background: @ini_nav_menu_hover_bg; // for removing bg-image @@ -141,29 +133,27 @@ margin-right: -.3rem; padding: 0 .2em 0 0; - @media @screen_only-xlg { - padding-bottom: .1em; - } - @media @screen_min-xxlg { - margin-top: -(@space-min-xxlg); + min-height: (@toggle-size - .1); + margin-top: -.4rem; } @media @screen_max-xxlg { - margin-top: -(@space-max-xxlg); - } - - @media @screen_max-xlg { - margin-top: -(@space-max-xlg); + min-height: (@toggle-size - .15); + margin-top: -.35rem; } @media @screen_max-md { min-height: (@toggle-size - .1); - margin-top: -(@space-max-md); + margin-top: -.35rem; } - @media @screen_max-xxs { - min-height: (@toggle-size - .15); + @media @screen_max-sm { + margin-top: -.35rem; + } + + @media @screen_max-xs { + margin-top: -.4rem; } &::before { @@ -188,7 +178,7 @@ &::before { opacity: 1; - border-color: @ini_nav_menu_hover_bg; + border-color: @ini_nav_menu_hover_color; } bdi, From 7dd86f6093459079f1c2a8ff9ac396611e2b144f Mon Sep 17 00:00:00 2001 From: Silke Pisulla Date: Thu, 18 May 2017 10:59:47 +0200 Subject: [PATCH 3/6] SPR-742: Template > Konfigurierbarkeit --- css/area_nav-metabox.less | 11 +++++------ css/plugins/starred.less | 2 +- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/css/area_nav-metabox.less b/css/area_nav-metabox.less index 9f97b85..f3fe6b5 100755 --- a/css/area_nav-metabox.less +++ b/css/area_nav-metabox.less @@ -157,7 +157,6 @@ } &.active { - > a { cursor: default; background-color: @ini_background; @@ -377,9 +376,9 @@ vertical-align: text-top; button { - background: @ini_existing; - border-color: @ini_existing; - color: @ini_background; + background: @ini_button_background; + border-color: @ini_button_background; + color: @ini_button_color; font-size: @font-size-small; padding: .2em .3em; @@ -396,8 +395,8 @@ &:hover, &:focus, &:active { - background: @ini_background; - color: @ini_existing; + background: @ini_button_color; + color: @ini_button_background; } } } diff --git a/css/plugins/starred.less b/css/plugins/starred.less index 7e3bada..f0ff348 100644 --- a/css/plugins/starred.less +++ b/css/plugins/starred.less @@ -23,7 +23,6 @@ fill: @ini_nav_menu_hover_bg; } } - } } @@ -42,6 +41,7 @@ nav.nav-starred { svg { vertical-align: text-top; + fill: @ini_nav_menu_color; } } } From fd377dc4b3fee47bad849d4e04afdfb83c2a218b Mon Sep 17 00:00:00 2001 From: Silke Pisulla Date: Thu, 18 May 2017 11:24:32 +0200 Subject: [PATCH 4/6] SPR-908: QS - toggle-link for content + svg border in navmenu --- css/area_main-sidebar-nav.less | 4 ++-- css/area_togglelink.less | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/css/area_main-sidebar-nav.less b/css/area_main-sidebar-nav.less index c94dd13..bc1c7fb 100755 --- a/css/area_main-sidebar-nav.less +++ b/css/area_main-sidebar-nav.less @@ -205,8 +205,8 @@ span.ico { position: relative; display: table-cell; - width: @menu-margin; - min-width: @menu-margin; + width: (@menu-margin - .1); + min-width: (@menu-margin - .1); height: @icon-size; text-align: center; vertical-align: middle; diff --git a/css/area_togglelink.less b/css/area_togglelink.less index 776dd5e..5b09625 100755 --- a/css/area_togglelink.less +++ b/css/area_togglelink.less @@ -72,7 +72,7 @@ /* + + + toggle out + + + */ .wide-content & { - left: -1px; + left: 0; a { background-color: @ini_button_background; From 686515e66f4c46bcefe01c06a58007c721e4e643 Mon Sep 17 00:00:00 2001 From: Silke Pisulla Date: Thu, 18 May 2017 12:13:03 +0200 Subject: [PATCH 5/6] =?UTF-8?q?SPR-869:=20QC=20Plugin=20"soll=20Metabox=20?= =?UTF-8?q?=C3=BCberdecken"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/base_structure.less | 4 ++++ css/plugins/qc.less | 35 +++++++++++++++++++++++------------ 2 files changed, 27 insertions(+), 12 deletions(-) diff --git a/css/base_structure.less b/css/base_structure.less index 4d88900..a671776 100755 --- a/css/base_structure.less +++ b/css/base_structure.less @@ -79,6 +79,10 @@ } } + .qc-output { + z-index: 1; // put qc-output above meta-box + } + #spr__meta-box { z-index: 1; // put meta-box above positioned content-elements such as aggregations, edit-buttons ul.meta-tabs > li.active { diff --git a/css/plugins/qc.less b/css/plugins/qc.less index c140f77..97a7911 100644 --- a/css/plugins/qc.less +++ b/css/plugins/qc.less @@ -31,33 +31,29 @@ /* + + + + + slideout output + + + + + */ .qc-output { + position: relative; min-width: 100%; width: auto; + background-color: @ini_background !important; font-size: 90%; box-shadow: @box-shadow-bottom; border-bottom: solid 1px @ini_border_light; margin-bottom: 0; - - h2 { - font-size: 1.3rem; - } - h3 { - font-size: 1.1rem; - } - h4, h5, h6 { - font-size: 1rem; - } - + padding-top: 0 !important; // for JS overwrite @media @screen_min-xxs { - margin-top: -(@margin-default + 1); margin-right: -(@margin-default); margin-left: -(@margin-default); padding-left: @margin-default; padding-right: @margin-default; } + @media @screen_min-md { + top: -(@margin-small); + } + @media @screen_max-md { + top: 0; margin-top: -(@page_padding-top + 2); margin-right: -(@margin-default * 1.6); margin-left: -(@margin-default); @@ -70,6 +66,21 @@ padding-right: @margin-default; } + h1 { + @media @screen_min-md { + padding-top: 0; + } + } + h2 { + font-size: 1.3rem; + } + h3 { + font-size: 1.1rem; + } + h4, h5, h6 { + font-size: 1rem; + } + div, p { margin-left: 0; From 3a51dc94fd4c04b9b4a0e3ac6711a74b602581ce Mon Sep 17 00:00:00 2001 From: Silke Pisulla Date: Fri, 19 May 2017 11:50:28 +0200 Subject: [PATCH 6/6] SPR-908: QS - usertools - do-task better size and padding --- css/area_nav-usertools.less | 9 +-------- css/plugins/do_tasks.less | 2 +- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/css/area_nav-usertools.less b/css/area_nav-usertools.less index 0f93075..1750625 100755 --- a/css/area_nav-usertools.less +++ b/css/area_nav-usertools.less @@ -61,6 +61,7 @@ > a { display: block; width: auto; + min-width: (@toggle-size + .25); min-height: @toggle-size; overflow: hidden; border: 1px solid @wikiicons-border; @@ -71,10 +72,6 @@ @media @screen_md-xlg { padding-top: .14rem; } - - @media @screen_only-lg { - min-width: 2rem; - } } /* !!! &.user-task FIND in plugins/do_tasks.less !!! */ @@ -236,10 +233,6 @@ line-height: 1; text-decoration: none; - @media @screen_md-xlg { - min-width: 2rem; - } - &::before { .center-middle(); diff --git a/css/plugins/do_tasks.less b/css/plugins/do_tasks.less index 53ea3ec..a17e873 100755 --- a/css/plugins/do_tasks.less +++ b/css/plugins/do_tasks.less @@ -38,7 +38,7 @@ ul.page-attributes { .plugin__do_usertasks { width: 100%; - min-width: @toggle-size; + min-width: (@toggle-size + .25); min-height: @toggle-size; border-radius: @ini_default_border_radius; border: 1px solid @wikiicons-border;