From d2df10ef0a7f87772d623babf117521865742e86 Mon Sep 17 00:00:00 2001 From: Wolfgang Krueger Date: Thu, 27 Jan 2022 11:27:32 +0100 Subject: [PATCH 01/13] correct border,background for new notice form --- horde/screen.css | 45 +++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 43 insertions(+), 2 deletions(-) diff --git a/horde/screen.css b/horde/screen.css index 6cce963..dda8365 100644 --- a/horde/screen.css +++ b/horde/screen.css @@ -31,8 +31,21 @@ body, input, select, textarea, .inProgress { /* font-family: Arial,"DejaVu Sans",sans-serif; */ font-family: "Roboto", "Helvetica", "Arial", sans-serif; + + /* background-color: white; */ + } +/* +input, select, textarea { + font-size: 100%; + font-weight: normal; + border: 1px solid #d0d0d0; +} + +*/ + + body { font-size: 75%; @@ -335,11 +348,26 @@ small, .small { .horde-form td { padding-bottom: 5px; } + + .horde-form-buttons { padding: 10px; margin: 10px 0; - background-color: #ebeff0; + + /* + krueger@b1systems.de + correct border and background for button panel notices + + background-color: #ebeff0; + */ + background-color: #FFFFFF; + border: 1px solid rgba(0, 0, 0, 0.12); + border-radius: var(--corner-radius); + } + + + .horde-form .horde-form-buttons { padding-left: 15%; } @@ -357,11 +385,15 @@ small, .small { input, select, textarea { font-size: 100%; font-weight: normal; - background-color: #ebeff0; /* + krueger@b1systems.de + correct border and background for textarea + + background-color: #ebeff0; border: 1px solid #d0d0d0; */ + background-color: #fff; border: 1px solid rgba(0, 0, 0, 0.12); border-radius: var(--corner-radius); @@ -377,9 +409,18 @@ input, option { select { padding: 2px 0 0 2px; } + + input:focus, textarea:focus, select:focus { background-color: #fff; + /* + krueger@b1-systems.de + remove black border border-color: #000; + + */ + border: 1px solid rgba(0, 0, 0, 0.12); + } input[type="submit"], input[type="button"], input[type="reset"], From c3e4d2fd66ad67d89b1a21a4b4ef60c9e922d01b Mon Sep 17 00:00:00 2001 From: Wolfgang Krueger Date: Thu, 27 Jan 2022 11:59:06 +0100 Subject: [PATCH 02/13] correct syntax errors --- horde/screen.css | 111 ++++++++++++++++++++++++----------------------- 1 file changed, 56 insertions(+), 55 deletions(-) diff --git a/horde/screen.css b/horde/screen.css index dda8365..00d0883 100644 --- a/horde/screen.css +++ b/horde/screen.css @@ -366,8 +366,6 @@ small, .small { } - - .horde-form .horde-form-buttons { padding-left: 15%; } @@ -427,31 +425,19 @@ input[type="submit"], input[type="button"], input[type="reset"], a.horde-button, a.horde-default, a.horde-create, a.horde-delete { /* - background-image: url("graphics/button.png"); - background-repeat: repeat-x; - border: 1px solid #d0d0d0; - padding: 4px 13px; - color: #000; - cursor: pointer; + + krueger@b1-sysrtems.de + modify buttons */ - /* OVERWRITE DEFAUTL */ background-image: none !important; border: none; display: inline-block; - - padding: 10px 22px 5px 22px !important; - - - text-decoration: none; - background-color: var(--primary); - box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px; - - - + text-decoration: none; + background-color: var(--primary); font-weight: 500; font-size: 0.9375rem; line-height: 1.75; @@ -460,56 +446,65 @@ a.horde-button, a.horde-default, a.horde-create, a.horde-delete { min-width: 64px; border-radius: 4px; margin: 24px 8px 16px; + box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px; + transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; + /* + display: inline-flex; + -moz-box-align: center; + align-items: center; + -moz-box-pack: center; + justify-content: center; + position: relative; + box-sizing: border-box; + outline: currentcolor none 0px; + border: 0px none; + cursor: pointer; + user-select: none; + vertical-align: middle; + appearance: none; + text-decoration: none; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-weight: 500; + font-size: 0.9375rem; + line-height: 1.75; + letter-spacing: 0.02857em; + text-transform: uppercase; + min-width: 64px; + padding: 8px 22px; + border-radius: 4px; + transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; + color: rgb(255, 255, 255); + background-color: rgb(25, 118, 210); + box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px; + width: 100%; + margin: 24px 8px 16px; + */ + - transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; - /* +} -.css-2mevot:hover { +input[type="submit"]:hover, input[type="button"]:hover, input[type="reset"]:hover, +a.horde-button:hover, a.horde-default:hover, a.horde-create:hover, a.horde-delete:hover { + + /* + krueger@b1-systems.de + add hover for buttons + + */ + text-decoration: none; - background-color: rgb(21, 101, 192); + background-color: var(--primary-variant); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px; } - display: inline-flex; - -moz-box-align: center; - align-items: center; - -moz-box-pack: center; - justify-content: center; - position: relative; - box-sizing: border-box; - outline: currentcolor none 0px; - border: 0px none; - cursor: pointer; - user-select: none; - vertical-align: middle; - appearance: none; - text-decoration: none; - font-family: "Roboto", "Helvetica", "Arial", sans-serif; - font-weight: 500; - font-size: 0.9375rem; - line-height: 1.75; - letter-spacing: 0.02857em; - text-transform: uppercase; - min-width: 64px; - padding: 8px 22px; - border-radius: 4px; - transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; - color: rgb(255, 255, 255); - background-color: rgb(25, 118, 210); - box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px; - width: 100%; - margin: 24px 8px 16px; -*/ - - @@ -518,6 +513,12 @@ a.horde-button, a.horde-default, a.horde-create, a.horde-delete { +.css-2mevot:hover { + text-decoration: none; + background-color: rgb(21, 101, 192); + box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px; +} + From d773bf3b252c0519d9842edec49ab060ab00a5cf Mon Sep 17 00:00:00 2001 From: Wolfgang Krueger Date: Thu, 27 Jan 2022 12:49:57 +0100 Subject: [PATCH 03/13] disable mozilla outline --- horde/mozilla.css | 9 +++++++ horde/screen.css | 69 ++++++++++++++++++++++++----------------------- 2 files changed, 44 insertions(+), 34 deletions(-) diff --git a/horde/mozilla.css b/horde/mozilla.css index b21a9c8..ae3b0dc 100644 --- a/horde/mozilla.css +++ b/horde/mozilla.css @@ -8,3 +8,12 @@ input[type="submit"], input[type="button"], input[type="reset"] { input.horde-cancel { /* padding: 3px 0; */ } + + +input:focus, textarea:focus, select:focus { + /* + krueger@b1-systems.de + disable mozilla outline + */ + outline: none; +} diff --git a/horde/screen.css b/horde/screen.css index 00d0883..32f8c33 100644 --- a/horde/screen.css +++ b/horde/screen.css @@ -398,6 +398,38 @@ input, select, textarea { } + + + +input[type=text] { + + + + font: inherit; + letter-spacing: inherit; + color: currentColor; + box-sizing: content-box; + background: none; + height: 1.4375em; + margin: 0; + -webkit-tap-highlight-color: transparent; + display: block; + min-width: 0; + width: 100%; + padding: 16.5px 14px; + placeholder: Tags; + +/* + + -webkit-animation-name: mui-auto-fill-cancel; + animation-name: mui-auto-fill-cancel; + -webkit-animation-duration: 10ms; + animation-duration: 10ms; + +*/ + +} + input, select { min-height: 20px; } @@ -417,18 +449,16 @@ input:focus, textarea:focus, select:focus { border-color: #000; */ - border: 1px solid rgba(0, 0, 0, 0.12); - + border: 1px solid #000; } + input[type="submit"], input[type="button"], input[type="reset"], a.horde-button, a.horde-default, a.horde-create, a.horde-delete { /* - krueger@b1-sysrtems.de modify buttons - */ @@ -483,10 +513,6 @@ a.horde-button, a.horde-default, a.horde-create, a.horde-delete { */ - - - - } @@ -497,38 +523,13 @@ a.horde-button:hover, a.horde-default:hover, a.horde-create:hover, a.horde-delet krueger@b1-systems.de add hover for buttons - */ + */ text-decoration: none; background-color: var(--primary-variant); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px; } - - - - -} - - - - -.css-2mevot:hover { - text-decoration: none; - background-color: rgb(21, 101, 192); - box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px; -} - - - - - - - - - - - a.horde-button, a.horde-default, a.horde-create, a.horde-delete, a.horde-cancel { display: inline-block; padding: 4px 13px; From 55736c16758e3f8628c606f5be12221f3bb02eac Mon Sep 17 00:00:00 2001 From: Wolfgang Krueger Date: Thu, 27 Jan 2022 13:26:51 +0100 Subject: [PATCH 04/13] correct top navi hover effect --- horde/screen.css | 40 +++++++++++++++++++++++++++++++++++----- 1 file changed, 35 insertions(+), 5 deletions(-) diff --git a/horde/screen.css b/horde/screen.css index 32f8c33..42718fc 100644 --- a/horde/screen.css +++ b/horde/screen.css @@ -1796,9 +1796,15 @@ a.horde-mainnavi:link, a.horde-mainnavi:visited, a.horde-mainnavi:active { .horde-point-center:hover, .horde-navipoint:hover { background-image: none; - background-color: var(--primary-variant); + background-color: var(--primary); +} + +.horde-point-center:hover > a { + color: var(--secondary) } + + .horde-dropdown ul { background-image: none; background-color: var(--primary); @@ -1828,9 +1834,10 @@ a.horde-mainnavi-active:active { } horde-point-center:hover, a.horde-mainnavi:hover, a.horde-mainnavi-active:link, a.horde-mainnavi-active:visited, a.horde-mainnavi-active:active { - color: var(--on-primary) + color: var(--on-primary); } + .horde-dropdown { float: left; list-style: none; @@ -1927,11 +1934,14 @@ horde-point-center:hover, a.horde-mainnavi:hover, a.horde-mainnavi-active:link, color: var(--on-primary); text-shadow: none !important; } + + + #horde-navigation { float: left; font-size: 110%; color: #fff; - font-weight: bold; + font-weight: normal; text-decoration: none; cursor: default; padding-top: 10px; @@ -1939,14 +1949,34 @@ horde-point-center:hover, a.horde-mainnavi:hover, a.horde-mainnavi-active:link, text-shadow: none; z-index: 99; position: relative; + + } .horde-navipoint { float: left; } + +/* + krueger@b1-systems.de + correct top menu hover effects +*/ + +.horde-navipoint:hover .horde-point-center a { + color: var(--secondary); + background-color: var(--primary); +} + .horde-navipoint:hover .horde-point-center a { - color: var(--on-primary); + color: var(--secondary); + background-color: var(--primary); } + +.horde-navipoint:hover .horde-point-center-active a { + color: var(--secondary-variant); + background-color: var(--primary); +} + .horde-point-left { float: left; width: 10px; @@ -2038,7 +2068,7 @@ height: 1px; .horde-point-center .horde-point-center-active { background-image: none; - background-color: var(--primary); + background-color: red; transition: 0.5s; float: left; height: 26px; From 60040fbbbe19afe8e4454cbfdaeb9ec7029dc513 Mon Sep 17 00:00:00 2001 From: Wolfgang Krueger Date: Thu, 27 Jan 2022 13:50:23 +0100 Subject: [PATCH 05/13] correct drop down menus --- horde/screen.css | 32 ++++++++++++++++++++++++++++---- 1 file changed, 28 insertions(+), 4 deletions(-) diff --git a/horde/screen.css b/horde/screen.css index 42718fc..4394434 100644 --- a/horde/screen.css +++ b/horde/screen.css @@ -1874,10 +1874,15 @@ horde-point-center:hover, a.horde-mainnavi:hover, a.horde-mainnavi-active:link, background-repeat: no-repeat; background-position: center right; } + +/* + krueger@b1-systems.de + correct position in top drop down menus +*/ .horde-dropdown li ul { position: absolute; display: none; - top: 34px; + top: 60px; margin-left: -20px; border: 1px solid var(--on-primary); background-color: var(--primary-variant); @@ -1890,20 +1895,39 @@ horde-point-center:hover, a.horde-mainnavi:hover, a.horde-mainnavi-active:link, margin-left: 100%; top: 24px; } + +/* + krueger@b1-systems.de + avoid collapse of drop down menus +*/ + +.horde-dropdown > li:hover { + overflow: hidden; + height: 50px; + +} + .horde-dropdown li:hover ul, .horde-dropdown li.over ul { display: block; } + .horde-dropdown li:hover ul ul, .horde-dropdown li.over ul ul { display: none; } .horde-dropdown ul li:hover ul, .horde-dropdown ul li.over ul { display: block; } + +/* + krueger@b1-systems.de + correct paddings of drop down menu points +*/ .horde-drowdown-str { - height: 19px; - padding: 5px 15px 0px 0px; - margin: 0 0 0 10px; + height: 19px; + padding: 5px 30px 10px 15px; + margin: 0 0 0 10px; } + .horde-drowdown-str:hover a { color: var(--on-primary); } From f78d6b1fd89858e7f00d278a26166d65fc5df064 Mon Sep 17 00:00:00 2001 From: Wolfgang Krueger Date: Thu, 27 Jan 2022 15:49:05 +0100 Subject: [PATCH 06/13] x display of drop down menu in webmail --- horde/screen.css | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/horde/screen.css b/horde/screen.css index 4394434..fafd55f 100644 --- a/horde/screen.css +++ b/horde/screen.css @@ -842,6 +842,12 @@ div.logintasks-item input { /* Main body. */ .horde-ajax { overflow: hidden; + /* + krueger@b1-systems.de + fix cut of top drown menus in webmail + + */ + min-height: 300px; } #horde-body { border-bottom: 1px solid #cfcfcf; @@ -849,11 +855,15 @@ div.logintasks-item input { position: relative; width: 100%; } + + .horde-ajax #horde-body { + position: absolute; - top: 56px; + top: 82px; bottom: 0; border-bottom-width: 0; + border: 1px solid red; } #horde-contentwrapper { float: left; @@ -2246,6 +2256,7 @@ height: 1px; font-size: 140%; /* +krueger@b1-systems.de Overwrite horde-new from default-theme background-image: url("graphics/sidebar-new-bg.png"); From 16e4760edcbc34d0525c2d9fc2802e982b7df10f Mon Sep 17 00:00:00 2001 From: Wolfgang Krueger Date: Thu, 27 Jan 2022 16:28:34 +0100 Subject: [PATCH 07/13] correct new button for mail,calendar,notice --- horde/screen.css | 53 ++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 51 insertions(+), 2 deletions(-) diff --git a/horde/screen.css b/horde/screen.css index fafd55f..80a59be 100644 --- a/horde/screen.css +++ b/horde/screen.css @@ -2273,9 +2273,28 @@ krueger@b1-systems.de /* + krueger@b1-systems.de Simulate MUI */ +min-width: 64px; +padding: 8px 12px; +border-radius: 4px; +transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; +color: rgb(255, 255, 255); +background-color: var(--primary-variant); +box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px; +margin: 4px 20px; + + +font-weight: 500; +font-size: 0.9375rem; +line-height: 1.75; +letter-spacing: 0.02857em; +text-transform: uppercase; + + +/* display: inline-flex; -moz-box-align: center; align-items: center; @@ -2289,12 +2308,17 @@ krueger@b1-systems.de user-select: none; vertical-align: middle; appearance: none; + + font-weight: 500; font-size: 0.9375rem; line-height: 1.75; letter-spacing: 0.02857em; text-transform: uppercase; - min-width: 64px; + + + + min-width: 64px; padding: 8px 22px; border-radius: 4px; transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; @@ -2303,6 +2327,9 @@ krueger@b1-systems.de box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px; margin: 4px 20px; +*/ + + /* width: 100%; */ @@ -2327,8 +2354,13 @@ krueger@b1-systems.de margin-right: 10px; } #horde-sidebar .horde-new-link a, .horde-new-link a { + +/* padding-left: 28px; margin: 5px 10px 0 10px; +*/ + white-space: nowrap; + color: #fff; display: block; background-color: var(--primary-variant); @@ -2372,20 +2404,36 @@ krueger@b1-systems.de .horde-new-split { + visibility: hidden; + +/* + krueger@b1-systems.de + remove additinal icons in new button + float: right; width: 2px; height: 29px; margin-left: 10px; background-image: url("graphics/sidebar-split.png"); background-repeat: no-repeat; +*/ + } .horde-new-extra { + visibility: hidden; +/* +krueger@b1-systems.de +remove additinal icons in new button + + display: none; float: right; width: 20px; height: 24px; margin: 5px 6px 0 7px; background-image: url("graphics/sidebar-refresh.png"); background-repeat: no-repeat; +*/ + } .horde-new-extra a { display: block; @@ -2506,6 +2554,8 @@ krueger@b1-systems.de line-height: 1.5; letter-spacing: 0.00938em; + + background-color: transparent; outline: currentcolor none 0px; border: 0px none; @@ -2533,7 +2583,6 @@ krueger@b1-systems.de - /* From d4d8addbfbd3201d6621b5bc536314d64d88a0c5 Mon Sep 17 00:00:00 2001 From: Wolfgang Krueger Date: Thu, 27 Jan 2022 16:56:20 +0100 Subject: [PATCH 08/13] correct iconpositions and search field --- horde/screen.css | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/horde/screen.css b/horde/screen.css index 80a59be..11c6170 100644 --- a/horde/screen.css +++ b/horde/screen.css @@ -847,7 +847,7 @@ div.logintasks-item input { fix cut of top drown menus in webmail */ - min-height: 300px; + min-height: 600px; } #horde-body { border-bottom: 1px solid #cfcfcf; @@ -863,7 +863,11 @@ div.logintasks-item input { top: 82px; bottom: 0; border-bottom-width: 0; + /* + krueger test border: 1px solid red; + + */ } #horde-contentwrapper { float: left; @@ -2126,6 +2130,7 @@ height: 1px; float: right; width: 350px; padding: 0 20px 0 0; + margin: 5px; } #horde-search form { display: inline; @@ -2139,12 +2144,24 @@ height: 1px; border: 0; float: left; margin: 10px 0px 0px 0px; + + /* + kruege@b1-systems.de + fix collapse os search field + */ + overflow: hidden; + border-radius: 4px; + + } #horde-search-input, input, select { /* height: 30px; */ } + + + #horde-search #horde-search-input { width: 190px; padding: 0 5px 0 5px; @@ -2163,14 +2180,24 @@ height: 1px; width: 16px; } #horde-search-icon { + /* + krueger@b1-systems.de + correct icon position + float: left; margin: 7px 0 0 0; + + */ + float: left; + margin: 17px 0 0 10px; + + } #horde-logout, #horde-login { float: right; width: 20px; height: 29px; - margin: 6px 10px 0 0; + margin: 20px 10px 0 0; background-image: url("graphics/logout.png"); background-repeat: no-repeat; } From 282685a0df8905ded121af88fc8d3625b9c3b6cc Mon Sep 17 00:00:00 2001 From: Wolfgang Krueger Date: Thu, 27 Jan 2022 17:19:17 +0100 Subject: [PATCH 09/13] correct logo position --- horde/screen.css | 38 +++++++++++++++++++++++++++++++++----- 1 file changed, 33 insertions(+), 5 deletions(-) diff --git a/horde/screen.css b/horde/screen.css index 11c6170..6200729 100644 --- a/horde/screen.css +++ b/horde/screen.css @@ -1954,19 +1954,28 @@ horde-point-center:hover, a.horde-mainnavi:hover, a.horde-mainnavi-active:link, background-image: none; } +/* + kruger@b1-systems.de + correct logo position +*/ + #horde-logo { float: left; width: 88px; height: 34px; background-image: url("graphics/logo.png") !important; - position:absolute; + position: absolute; + left:50px; background-repeat: no-repeat; + + + } #horde-version { float: left; height: 16px; - margin-top: 10px; - margin-left: 8px; + margin-top: 15px; + margin-left: 55px; padding: 18px 10px 0px 0px; font-style: normal; color: var(--on-primary); @@ -1983,6 +1992,8 @@ horde-point-center:hover, a.horde-mainnavi:hover, a.horde-mainnavi-active:link, text-decoration: none; cursor: default; padding-top: 10px; + + padding-left: 140px; text-shadow: none; z-index: 99; @@ -2197,6 +2208,12 @@ height: 1px; float: right; width: 20px; height: 29px; + + /* + krueger@b1-systems.de + correct icon position + */ + margin: 20px 10px 0 0; background-image: url("graphics/logout.png"); background-repeat: no-repeat; @@ -2229,15 +2246,18 @@ height: 1px; height: 20px; background-color: #333333; visibility: none; + font-size: 0.8em; + } + #horde-date { float: left; - padding: 2px 0 0 10px; + /* padding: 2px 0 5px 10px; */ color: #fff; } #horde-info { float: right; - padding: 2px 10px 0 0; + /* padding: 2px 10px 0 0; */ color: #fff; } #horde-info a { @@ -2250,7 +2270,15 @@ height: 1px; top: 0; right: 0; bottom: 0; + + /* + kruege@b1-systems.de + correct new width of sidebar left: 0; + + */ + + left: 234px !important; padding-left: 8px; } From f2d6191bfd689b82d45023ff3118a4bef773a8ef Mon Sep 17 00:00:00 2001 From: Wolfgang Krueger Date: Fri, 28 Jan 2022 10:48:59 +0100 Subject: [PATCH 10/13] correct postions and colors in calnedar sidebar --- horde/screen.css | 47 +++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 39 insertions(+), 8 deletions(-) diff --git a/horde/screen.css b/horde/screen.css index 6200729..e57838f 100644 --- a/horde/screen.css +++ b/horde/screen.css @@ -1993,8 +1993,15 @@ horde-point-center:hover, a.horde-mainnavi:hover, a.horde-mainnavi-active:link, cursor: default; padding-top: 10px; + /* + kruger@b1-systems.de + correct navigation position + padding-left: 140px; + + + */ - padding-left: 140px; + padding-left: 40px; text-shadow: none; z-index: 99; position: relative; @@ -2278,7 +2285,7 @@ height: 1px; */ - left: 234px !important; + left: 233px !important; padding-left: 8px; } @@ -2545,7 +2552,14 @@ remove additinal icons in new button cursor: pointer; background-position: 10px 2px; background-repeat: no-repeat; + + /* + krueger@b1-systems.de + correct backgrounds for sidebar in calendar + */ + color: rgb(0, 0, 0); } + .horde-resource-on:hover, .horde-resource-off:hover { text-decoration: underline; } @@ -2554,6 +2568,7 @@ remove additinal icons in new button } .horde-resource-off { background-image: url("graphics/checkbox_off.png"); + } .horde-resource-on.horde-radiobox, .horde-resource-off.horde-radiobox:hover { background-image: url("graphics/radiobox_on.png"); @@ -2573,9 +2588,21 @@ remove additinal icons in new button overflow: hidden; cursor: pointer; } -#horde-sidebar div.horde-resources .horde-resource-edit-fff { + + + + +/* + krueger@b1-systems.de + correct backgronds for action icons in calendar +*/ +#horde-sidebar div.horde-resources .horde-resource-edit-fff, +#horde-sidebar div.horde-resources .horde-resource-refresh-fff { background-image: url("graphics/edit-sidebar-fff.png"); + background-color: rgb(255, 255, 255) !important; + color: rgb(255, 255, 255); } + #horde-sidebar div.horde-resources div a { color: inherit; } @@ -2591,6 +2618,7 @@ remove additinal icons in new button } /* + krueger@b1-systems.de Wolfgang: 2022-01-19 */ @@ -2762,14 +2790,9 @@ remove additinal icons in new button background-color: inherit !important; height: 60px; } - - - - #horde-sidebar div.horde-resources > div:hover { height: 60px; background-color: rgba(0, 0, 0, 0.04) !important; - } @@ -3108,3 +3131,11 @@ remove additinal icons in new button display: none !important; } } + +/* + krueger@b1-systems.de + correct calndar sidebar scroll menu position +*/ +#kronolithMenu { + top: 300px !important; +} From cf32281301e9f847af58e838684cba594cc1a409 Mon Sep 17 00:00:00 2001 From: Wolfgang Krueger Date: Fri, 28 Jan 2022 11:03:10 +0100 Subject: [PATCH 11/13] correct sidebar colors for tasks --- horde/screen.css | 28 ++++++++-------------------- 1 file changed, 8 insertions(+), 20 deletions(-) diff --git a/horde/screen.css b/horde/screen.css index e57838f..b5cff29 100644 --- a/horde/screen.css +++ b/horde/screen.css @@ -2541,6 +2541,13 @@ remove additinal icons in new button } #horde-sidebar div.horde-resources div { margin: 5px 0; + + /* + krueger@b1-systems.de + correct color + */ + color: rgb(0, 0, 0); + } .horde-resource-link { overflow: hidden; @@ -2738,38 +2745,19 @@ remove additinal icons in new button } */ - - - - - - - - } - - - - .horde-subnavi-active, .horde-subnavi:hover { - - /* + krueger@b1-systems.de overwrite default theme height: 20px; background-image: url("graphics/sidebar-active-bg.png"); background-repeat: repeat-x; - */ height: 60px; background-image: none; background-color: rgba(0, 0, 0, 0.04); - - } - - - .horde-subnavi-icon { background-color: transparent; background-repeat: no-repeat; From db21b67258290ea9cc0798e312c9fc3d2934d5ce Mon Sep 17 00:00:00 2001 From: Wolfgang Krueger Date: Fri, 28 Jan 2022 13:26:39 +0100 Subject: [PATCH 12/13] fix syntax errors --- horde/screen.css | 31 ++----------------------------- 1 file changed, 2 insertions(+), 29 deletions(-) diff --git a/horde/screen.css b/horde/screen.css index b5cff29..622ffa6 100644 --- a/horde/screen.css +++ b/horde/screen.css @@ -2169,6 +2169,8 @@ height: 1px; */ overflow: hidden; border-radius: 4px; + color: rgb(0, 0, 0); + } @@ -2397,19 +2399,12 @@ text-transform: uppercase; */ } - - - .horde-new:hover { text-decoration: none; background-color:var(--primary); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px; } - - - - .horde-portal-new { float: left; border-right: 1px solid #787878; @@ -2432,30 +2427,8 @@ text-transform: uppercase; background-image: url("graphics/sidebar-new.png"); background-repeat: no-repeat; background-position: left 1px; - - - - ---primary: #1976d5; ---primary-variant: #145bca; ---secondary: #d57719; ---secondary-variant: #c35313; ---background: #fff; ---surface: #fff; ---on-primary: #fff; ---on-secondary: #000; ---on-background: #6f6f6f; ---on-surface: #6f6f6f; ---error: #e6f7fe; ---on-error: #223a46; - - */ - - - - } #horde-sidebar .horde-new:hover a { From 2aad84a5889b242b8f68366143eb4d405f30ac8c Mon Sep 17 00:00:00 2001 From: Wolfgang Krueger Date: Fri, 28 Jan 2022 14:43:07 +0100 Subject: [PATCH 13/13] correct further icons in in calendar --- horde/screen.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/horde/screen.css b/horde/screen.css index 622ffa6..9730e77 100644 --- a/horde/screen.css +++ b/horde/screen.css @@ -2556,11 +2556,18 @@ remove additinal icons in new button .horde-resource-off.horde-radiobox { background-image: url("graphics/radiobox_off.png"); } + +/* + krueger@b1-systems.de + correct backgronds for action icons in calendar +*/ + #horde-sidebar div.horde-resources .horde-resource-edit-000, #horde-sidebar div.horde-resources .horde-resource-edit-fff { float: right; display: block; background: url("graphics/edit-sidebar-000.png") no-repeat; + background-color: rgb(255, 255, 255) !important; margin: 2px 10px 0 0; width: 17px; height: 17px; @@ -2569,6 +2576,19 @@ remove additinal icons in new button cursor: pointer; } +/* + krueger@b1-systems.de + correct backgrounds for action icons in calendar + added tu overwrite default +*/ + +#horde-sidebar div.horde-resources .horde-resource-refresh-000, +#horde-sidebar div.horde-resources .horde-resource-refresh-fff { + background-color: rgb(255, 255, 255) !important; + +} + +