diff --git a/Packages/lesiontracker/client/components/lesionTrackerWorklistContextMenu/lesionTrackerWorklistContextMenu.html b/Packages/lesiontracker/client/components/lesionTrackerWorklistContextMenu/lesionTrackerWorklistContextMenu.html
index 8c262a0f7..b24e896c8 100644
--- a/Packages/lesiontracker/client/components/lesionTrackerWorklistContextMenu/lesionTrackerWorklistContextMenu.html
+++ b/Packages/lesiontracker/client/components/lesionTrackerWorklistContextMenu/lesionTrackerWorklistContextMenu.html
@@ -1,4 +1,5 @@
+ {{#if studyListFunctionsEnabled}}
+ {{/if}}
\ No newline at end of file
diff --git a/Packages/worklist/client/components/studyContextMenu/studyContextMenu.html b/Packages/worklist/client/components/studyContextMenu/studyContextMenu.html
index 52920f358..0326400b4 100644
--- a/Packages/worklist/client/components/studyContextMenu/studyContextMenu.html
+++ b/Packages/worklist/client/components/studyContextMenu/studyContextMenu.html
@@ -1,25 +1,21 @@
+ {{#if studyListFunctionsEnabled}}
+ {{/if}}
\ No newline at end of file
diff --git a/Packages/worklist/client/components/studyContextMenu/studyContextMenu.styl b/Packages/worklist/client/components/studyContextMenu/studyContextMenu.styl
index c283e1900..04a0f9a55 100644
--- a/Packages/worklist/client/components/studyContextMenu/studyContextMenu.styl
+++ b/Packages/worklist/client/components/studyContextMenu/studyContextMenu.styl
@@ -1,13 +1,16 @@
+@import "{design}/app"
+
.studyContextMenu
z-index: 10000
display: none
position: absolute
- color: whitesmoke
- background-color: #2d2d2d
+ color: #2f2f2f
+ background-color: #f2f2f2
width: -moz-fit-content
width: -webkit-fit-content
width: fit-content
+ width: 207px
height: -moz-fit-content
height: -webkit-fit-content
@@ -19,10 +22,14 @@
-webkit-background-clip: padding-box
background-clip: padding-box
border: 1px solid rgba(0, 0, 0, .15)
- border-radius: 4px
+ border-radius: 3px
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175)
box-shadow: 0 6px 12px rgba(0, 0, 0, .175)
+ hr
+ border-top: solid 1px #d1d1d1
+ margin: 2px
+
ul
width: 100%
margin: 5px 0
@@ -38,13 +45,13 @@
display: block
text-decoration: none
cursor: pointer
- line-height: 25px
- color: #808080
+ font-size: 15px
+ line-height: 1.7
+ color: black
&:not(.disabled):hover
- color: #439193
+ color: $activeColor
text-decoration: none
- background-color: #1d1d1d
&.disabled
opacity: 0.4
diff --git a/Packages/worklist/client/components/worklistResult/worklistResult.styl b/Packages/worklist/client/components/worklistResult/worklistResult.styl
index 8c96bd50e..01c0e9f53 100644
--- a/Packages/worklist/client/components/worklistResult/worklistResult.styl
+++ b/Packages/worklist/client/components/worklistResult/worklistResult.styl
@@ -9,7 +9,8 @@ $inputPlaceholderColor = lightgray
$studyListToolbarHeight = 75px
$theadBackgroundColor = #151a1f
-$tablePadding = 80px
+$tablePadding = 60px
+$bodyCellHeight = 40px
.studyListToolbar
height: $studyListToolbarHeight
@@ -100,7 +101,6 @@ $tablePadding = 80px
&.active, &:active
color: $activeColor
-
input.worklist-search
height: 34px
margin: 0 5px 20px 5px
@@ -144,7 +144,6 @@ $tablePadding = 80px
tbody
tr
- height: 22px
padding: 5px
background-color: black
@@ -152,6 +151,8 @@ $tablePadding = 80px
background-color: #151a1f
td
+ height: $bodyCellHeight
+ line-height: $bodyCellHeight
color: $textPrimaryColor
font-weight: 200
border-top: 1px solid #436270