[Rt-commit] rt branch, 5.0-trunk, updated. rt-5.0.0alpha1-175-g0e63fa323e

? sunnavy sunnavy at bestpractical.com
Wed Apr 29 21:50:05 EDT 2020


The branch, 5.0-trunk has been updated
       via  0e63fa323ecf2c30210fb015c434c8f6b7ff056d (commit)
       via  43b4018fefa23b02742af48962d0d2295c019816 (commit)
       via  162e1f4f28a19cf0668aa2614145152553eff44c (commit)
       via  52a5eb8e85103109ea3b029ef7ce34242e95023e (commit)
       via  891bbf0852b07ad3e37a89bd8480d52d7a3d9e19 (commit)
       via  5167576f4abc3bc110eb7c0a4705345805166638 (commit)
       via  87dfb9b0d95b022ee0d572c7d2934f17567e0afc (commit)
       via  cfe5ea92fe25c2c0d4ea3e76256237c346f9acee (commit)
       via  e3a94f7aaa1598c106216ff467832844f17fd886 (commit)
      from  2584b7f3f3d5107958baeaa87235dc5b492f2f9f (commit)

Summary of changes:
 share/static/css/elevator-dark/main.css | 166 ++++++++++++++++++++++++++++----
 1 file changed, 147 insertions(+), 19 deletions(-)

- Log -----------------------------------------------------------------
commit cfe5ea92fe25c2c0d4ea3e76256237c346f9acee
Author: Blaine Motsinger <blaine at bestpractical.com>
Date:   Wed Apr 29 14:27:24 2020 -0500

    Fix downloadattachment overlapping border
    
    The downloadattachment div in elevator-dark was overlapping the
    top border of messagebody.

diff --git a/share/static/css/elevator-dark/main.css b/share/static/css/elevator-dark/main.css
index 222f7c85cf..0f9461e6a7 100644
--- a/share/static/css/elevator-dark/main.css
+++ b/share/static/css/elevator-dark/main.css
@@ -205,6 +205,11 @@
     background: rgba(255, 255, 255, 0) !important;
 }
 
+.darkmode .transaction table + div.downloadattachment {
+    position: relative;
+    top: 0.6em;
+}
+
 .darkmode svg.icon-bordered {
     border: solid 0.05em #717171;
 }

commit 87dfb9b0d95b022ee0d572c7d2934f17567e0afc
Author: Blaine Motsinger <blaine at bestpractical.com>
Date:   Wed Apr 29 15:17:24 2020 -0500

    Fix borders for menus
    
    This commit updates the page-navigation, superfish menu items, and
    quickbar in elevator-dark by removing dropshadow and adding borders
    to stand out better against the other dark elements.

diff --git a/share/static/css/elevator-dark/main.css b/share/static/css/elevator-dark/main.css
index 0f9461e6a7..1a45b26cc4 100644
--- a/share/static/css/elevator-dark/main.css
+++ b/share/static/css/elevator-dark/main.css
@@ -110,6 +110,35 @@
     background: #3A474D !important;
 }
 
+.darkmode #page-navigation #page-menu {
+    border: 1px solid #515151;
+    border-radius: 3px;
+}
+
+.darkmode #page-menu.sf-menu > li {
+    border-color: #515151;
+    border-right: none;
+}
+
+.darkmode #page-menu.sf-menu > li:first-of-type {
+    border-left: none;
+}
+
+.darkmode .sf-menu.sf-shadow ul {
+    -moz-border-radius: 0;
+    -webkit-border-radius: 0;
+    -moz-box-shadow: none;
+    -webkit-box-shadow: none;
+    box-shadow: none;
+    border: 1px solid #515151;
+}
+
+.darkmode div#quickbar {
+    height: 2.7rem;
+    box-shadow: none;
+    border-bottom: 1px solid #515151;
+}
+
 .darkmode .nav-tabs {
     background: #171A1F;
     border-color: #3A3C43;

commit 5167576f4abc3bc110eb7c0a4705345805166638
Author: Blaine Motsinger <blaine at bestpractical.com>
Date:   Wed Apr 29 15:40:47 2020 -0500

    Fix ticket history transaction link colors
    
    This is a copy of the colors from elevator-light. While not ideal
    to replicate the definitions here, we need to specifically override
    the cascading background color definition at the top of the
    elevator-dark css page. Once we remove the cascading definition,
    these transaction link colors would be much better to inherit from
    elevator-light.

diff --git a/share/static/css/elevator-dark/main.css b/share/static/css/elevator-dark/main.css
index 1a45b26cc4..8cfb35a23e 100644
--- a/share/static/css/elevator-dark/main.css
+++ b/share/static/css/elevator-dark/main.css
@@ -283,3 +283,18 @@
 .darkmode .history .transaction .messagebody {
     border-color: #515151;
 }
+
+/* Ticket history transaction link colors.
+   This is a copy of the colors from elevator-light.  While not ideal to replicate the definitions here,
+   we need to specifically override the cascading background color definition at the top of this css page. */
+.darkmode .transaction.basics .type, .darkmode .transaction.basics .type * { background: #D32F2F !important; }
+.darkmode .transaction.cfs .type, .darkmode .transaction.cfs .type * { background: #D32F2F !important; }
+.darkmode .transaction.people .type, .darkmode .transaction.people .type * { background: #0288D1 !important; }
+.darkmode .transaction.links .type, .darkmode .transaction.links .type * { background: #388E3C !important; }
+.darkmode .transaction.dates .type, .darkmode .transaction.dates .type * { background: #7B1FA2 !important; }
+.darkmode .transaction.message .type, .darkmode .transaction.message .type * { background: #1976D2 !important; }
+.darkmode .transaction.reminders .type, .darkmode .transaction.reminders .type * { background: #0277BD !important; }
+.darkmode .transaction.other .type, .darkmode .transaction.other .type * { background: #B0BEC5 !important; }
+.darkmode .transaction.error .type, .darkmode .transaction.error .type * { background: #900 !important; }
+.darkmode .transaction.attachment-truncate .type, .transaction.attachment-drop .type,
+.darkmode .transaction.attachment-truncate .type *, .transaction.attachment-drop .type * { background-color: #FF5722 !important; }

commit 891bbf0852b07ad3e37a89bd8480d52d7a3d9e19
Author: Blaine Motsinger <blaine at bestpractical.com>
Date:   Wed Apr 29 15:46:28 2020 -0500

    Fix text color for reply/comment box
    
    The reply/comment text color on elevator-dark was inheriting a
    light color, which was not readable against the red/yellow color.

diff --git a/share/static/css/elevator-dark/main.css b/share/static/css/elevator-dark/main.css
index 8cfb35a23e..6261ab7534 100644
--- a/share/static/css/elevator-dark/main.css
+++ b/share/static/css/elevator-dark/main.css
@@ -298,3 +298,8 @@
 .darkmode .transaction.error .type, .darkmode .transaction.error .type * { background: #900 !important; }
 .darkmode .transaction.attachment-truncate .type, .transaction.attachment-drop .type,
 .darkmode .transaction.attachment-truncate .type *, .transaction.attachment-drop .type * { background-color: #FF5722 !important; }
+
+.darkmode .messagebox-container.action-private textarea,
+.darkmode .messagebox-container.action-response textarea {
+    color: #484e53 !important;
+}

commit 52a5eb8e85103109ea3b029ef7ce34242e95023e
Author: Blaine Motsinger <blaine at bestpractical.com>
Date:   Wed Apr 29 16:01:09 2020 -0500

    Fix card-header overlap on query builder
    
    The titlebox-title card-header title for the "Current Search" card
    on Search/Build.html on elevator-dark was overlapping the following
    card-body.

diff --git a/share/static/css/elevator-dark/main.css b/share/static/css/elevator-dark/main.css
index 6261ab7534..b0676b8ded 100644
--- a/share/static/css/elevator-dark/main.css
+++ b/share/static/css/elevator-dark/main.css
@@ -303,3 +303,7 @@
 .darkmode .messagebox-container.action-response textarea {
     color: #484e53 !important;
 }
+
+.darkmode .titlebox .card-header {
+    padding-bottom: inherit;
+}

commit 162e1f4f28a19cf0668aa2614145152553eff44c
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Thu Apr 30 09:01:05 2020 +0800

    Add borders to dropzone divs for elevator-dark theme

diff --git a/share/static/css/elevator-dark/main.css b/share/static/css/elevator-dark/main.css
index b0676b8ded..5828f1f0b6 100644
--- a/share/static/css/elevator-dark/main.css
+++ b/share/static/css/elevator-dark/main.css
@@ -307,3 +307,8 @@
 .darkmode .titlebox .card-header {
     padding-bottom: inherit;
 }
+
+.darkmode .dropzone,
+.darkmode .dropzone .dz-details {
+    border: 1px solid #717171 !important;
+}

commit 43b4018fefa23b02742af48962d0d2295c019816
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Thu Apr 30 09:26:53 2020 +0800

    Show menu dropdown arrows for elevator-dark theme
    
    It's from nav.css in elevator-light with customized light stroke color.

diff --git a/share/static/css/elevator-dark/main.css b/share/static/css/elevator-dark/main.css
index 5828f1f0b6..76e74e3013 100644
--- a/share/static/css/elevator-dark/main.css
+++ b/share/static/css/elevator-dark/main.css
@@ -312,3 +312,11 @@
 .darkmode .dropzone .dz-details {
     border: 1px solid #717171 !important;
 }
+
+.darkmode ul.toplevel.sf-menu > li > a.sf-with-ul:after {
+    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' id='i-chevron-down' viewBox='0 0 12 8' height='100%' width='100%' fill='none' stroke='rgb(237,237,237)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'><path d='M1 1 l5 5 5 -5' /></svg>") no-repeat center center;
+}
+
+.darkmode ul.toplevel.sf-menu > li > ul > li a.sf-with-ul:after {
+    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' id='i-chevron-right' viewBox='0 0 7 12' height='100%' width='100%' fill='none' stroke='rgb(237,237,237)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'><path d='M1 1 l5 5 -5 5' /></svg>") no-repeat center center;
+}

commit 0e63fa323ecf2c30210fb015c434c8f6b7ff056d
Merge: 2584b7f3f3 43b4018fef
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Thu Apr 30 09:37:02 2020 +0800

    Merge branch '5.0/dark-theme-initial-fixes' into 5.0-trunk


-----------------------------------------------------------------------


More information about the rt-commit mailing list