Study list context menu styling
This commit is contained in:
parent
ee9ea4450d
commit
757513906c
@ -1,4 +1,5 @@
|
|||||||
<template name="lesionTrackerWorklistContextMenu">
|
<template name="lesionTrackerWorklistContextMenu">
|
||||||
|
{{#if studyListFunctionsEnabled}}
|
||||||
<div id="studyContextMenu" class="studyContextMenu noselect"
|
<div id="studyContextMenu" class="studyContextMenu noselect"
|
||||||
oncontextmenu='return false;'
|
oncontextmenu='return false;'
|
||||||
unselectable='on'
|
unselectable='on'
|
||||||
@ -7,40 +8,33 @@
|
|||||||
<li>
|
<li>
|
||||||
<a id="viewStudies" type="button"
|
<a id="viewStudies" type="button"
|
||||||
title="View Studies">
|
title="View Studies">
|
||||||
<i class="fa fa-desktop fa-lg"></i>
|
|
||||||
View
|
View
|
||||||
</a>
|
</a>
|
||||||
<!-- TODO: Make this dynamically accept options-->
|
<hr/>
|
||||||
<a id="launchStudyAssociation" type="button"
|
<a id="launchStudyAssociation" type="button"
|
||||||
data-toggle="modal"
|
data-toggle="modal"
|
||||||
data-target="#associationModal"
|
data-target="#associationModal"
|
||||||
title="Launch Study Association">
|
title="Launch Study Association">
|
||||||
<i class="fa fa-calendar-plus-o fa-lg"></i>
|
|
||||||
Associate
|
Associate
|
||||||
</a>
|
</a>
|
||||||
<a id="launchRemoveAssociation" type="button"
|
<a id="launchRemoveAssociation" type="button"
|
||||||
data-toggle="modal"
|
data-toggle="modal"
|
||||||
data-target="#confirmRemoveTimepointAssociation"
|
data-target="#confirmRemoveTimepointAssociation"
|
||||||
title="Remove Timepoint Association">
|
title="Remove Timepoint Association">
|
||||||
<i class="fa fa-eraser fa-lg"></i> Remove Association
|
Remove Association
|
||||||
</a>
|
</a>
|
||||||
|
<hr/>
|
||||||
{{#if studyListFunctionsEnabled}}
|
<a class="disabled">View Series Details</a>
|
||||||
<a class="disabled"><span class="fa-stack fa-lg">
|
<a class="disabled">Anonymize</a>
|
||||||
<i class="fa fa-user fa-stack-1x"></i>
|
<a class="disabled">Send</a>
|
||||||
<i class="fa fa-ban fa-stack-2x text-danger"></i>
|
<hr/>
|
||||||
</span> Anonymize
|
<a id="exportSelectedStudies"
|
||||||
</a>
|
|
||||||
<a id="exportSelectedStudies" type="button"
|
|
||||||
title="Export Selected Studies">
|
title="Export Selected Studies">
|
||||||
<i class="fa fa-exchange fa-lg"></i> Export
|
Export
|
||||||
</a>
|
</a>
|
||||||
{{/if}}
|
<a class="disabled">Delete</a>
|
||||||
<a class="disabled"><i class="fa fa-trash fa-lg"></i> Delete</a>
|
|
||||||
<a class="disabled"><i class="fa fa-send-o fa-lg"></i> Send</a>
|
|
||||||
<a class="disabled"><i class="fa fa-download fa-lg"></i> Download</a>
|
|
||||||
<a class="disabled"><i class="fa fa-photo fa-lg"></i> View Series Details</a>
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
{{/if}}
|
||||||
</template>
|
</template>
|
||||||
@ -1,25 +1,21 @@
|
|||||||
<template name="studyContextMenu">
|
<template name="studyContextMenu">
|
||||||
|
{{#if studyListFunctionsEnabled}}
|
||||||
<div id="studyContextMenu" class="studyContextMenu noselect"
|
<div id="studyContextMenu" class="studyContextMenu noselect"
|
||||||
oncontextmenu='return false;'
|
oncontextmenu='return false;'
|
||||||
unselectable='on'
|
unselectable='on'
|
||||||
onselectstart='return false;'>
|
onselectstart='return false;'>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
{{#if studyListFunctionsEnabled}}
|
<a class="disabled">Anonymize</a>
|
||||||
<a class="disabled"><span class="fa-stack fa-lg">
|
<a class="disabled">Send</a>
|
||||||
<i class="fa fa-user fa-stack-1x"></i>
|
<hr/>
|
||||||
<i class="fa fa-ban fa-stack-2x text-danger"></i>
|
<a class="disabled">Delete</a>
|
||||||
</span> Anonymize
|
<a id="exportSelectedStudies"
|
||||||
|
title="Export Selected Studies">
|
||||||
|
Export
|
||||||
</a>
|
</a>
|
||||||
<a id="exportSelectedStudies" type="button" title="Export Selected Studies">
|
|
||||||
<i class="fa fa-exchange fa-lg"></i> Export
|
|
||||||
</a>
|
|
||||||
{{/if}}
|
|
||||||
<a class="disabled"><i class="fa fa-trash fa-lg"></i> Delete</a>
|
|
||||||
<a class="disabled"><i class="fa fa-send-o fa-lg"></i> Send</a>
|
|
||||||
<a class="disabled"><i class="fa fa-download fa-lg"></i> Download</a>
|
|
||||||
<a class="disabled"><i class="fa fa-photo fa-lg"></i> View Series Details</a>
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
{{/if}}
|
||||||
</template>
|
</template>
|
||||||
@ -1,13 +1,16 @@
|
|||||||
|
@import "{design}/app"
|
||||||
|
|
||||||
.studyContextMenu
|
.studyContextMenu
|
||||||
z-index: 10000
|
z-index: 10000
|
||||||
display: none
|
display: none
|
||||||
position: absolute
|
position: absolute
|
||||||
color: whitesmoke
|
color: #2f2f2f
|
||||||
background-color: #2d2d2d
|
background-color: #f2f2f2
|
||||||
|
|
||||||
width: -moz-fit-content
|
width: -moz-fit-content
|
||||||
width: -webkit-fit-content
|
width: -webkit-fit-content
|
||||||
width: fit-content
|
width: fit-content
|
||||||
|
width: 207px
|
||||||
|
|
||||||
height: -moz-fit-content
|
height: -moz-fit-content
|
||||||
height: -webkit-fit-content
|
height: -webkit-fit-content
|
||||||
@ -19,10 +22,14 @@
|
|||||||
-webkit-background-clip: padding-box
|
-webkit-background-clip: padding-box
|
||||||
background-clip: padding-box
|
background-clip: padding-box
|
||||||
border: 1px solid rgba(0, 0, 0, .15)
|
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)
|
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175)
|
||||||
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
|
ul
|
||||||
width: 100%
|
width: 100%
|
||||||
margin: 5px 0
|
margin: 5px 0
|
||||||
@ -38,13 +45,13 @@
|
|||||||
display: block
|
display: block
|
||||||
text-decoration: none
|
text-decoration: none
|
||||||
cursor: pointer
|
cursor: pointer
|
||||||
line-height: 25px
|
font-size: 15px
|
||||||
color: #808080
|
line-height: 1.7
|
||||||
|
color: black
|
||||||
|
|
||||||
&:not(.disabled):hover
|
&:not(.disabled):hover
|
||||||
color: #439193
|
color: $activeColor
|
||||||
text-decoration: none
|
text-decoration: none
|
||||||
background-color: #1d1d1d
|
|
||||||
|
|
||||||
&.disabled
|
&.disabled
|
||||||
opacity: 0.4
|
opacity: 0.4
|
||||||
|
|||||||
@ -9,7 +9,8 @@ $inputPlaceholderColor = lightgray
|
|||||||
|
|
||||||
$studyListToolbarHeight = 75px
|
$studyListToolbarHeight = 75px
|
||||||
$theadBackgroundColor = #151a1f
|
$theadBackgroundColor = #151a1f
|
||||||
$tablePadding = 80px
|
$tablePadding = 60px
|
||||||
|
$bodyCellHeight = 40px
|
||||||
|
|
||||||
.studyListToolbar
|
.studyListToolbar
|
||||||
height: $studyListToolbarHeight
|
height: $studyListToolbarHeight
|
||||||
@ -100,7 +101,6 @@ $tablePadding = 80px
|
|||||||
&.active, &:active
|
&.active, &:active
|
||||||
color: $activeColor
|
color: $activeColor
|
||||||
|
|
||||||
|
|
||||||
input.worklist-search
|
input.worklist-search
|
||||||
height: 34px
|
height: 34px
|
||||||
margin: 0 5px 20px 5px
|
margin: 0 5px 20px 5px
|
||||||
@ -144,7 +144,6 @@ $tablePadding = 80px
|
|||||||
|
|
||||||
tbody
|
tbody
|
||||||
tr
|
tr
|
||||||
height: 22px
|
|
||||||
padding: 5px
|
padding: 5px
|
||||||
background-color: black
|
background-color: black
|
||||||
|
|
||||||
@ -152,6 +151,8 @@ $tablePadding = 80px
|
|||||||
background-color: #151a1f
|
background-color: #151a1f
|
||||||
|
|
||||||
td
|
td
|
||||||
|
height: $bodyCellHeight
|
||||||
|
line-height: $bodyCellHeight
|
||||||
color: $textPrimaryColor
|
color: $textPrimaryColor
|
||||||
font-weight: 200
|
font-weight: 200
|
||||||
border-top: 1px solid #436270
|
border-top: 1px solid #436270
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user