Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export default class SequenceDiagramGraphExtender
.select((nodes[i] as Node).parentNode as d3.BaseType)
.selectAll("line.loopLine");

loopLines.style("stroke-dasharray", 0).style("stroke-width", 2);
loopLines.style("stroke-dasharray", 0).style("stroke-width", 2).style("stroke", "#004e5c").style("fill"),"#b6e6ef";;
});

// When pressing the opt string.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export default class ElementCoverage extends Vue {
display: block
tr
&.covered
background-color: #ddffdd
background-color: #befca9
&.missed
background-color: #ffdddd !important
background-color: #ffb2b2 !important
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -127,13 +127,17 @@ export default class ScreenTransitionDiagram extends Vue {
.edgeLabel
span
&:hover
color: red !important
font-weight: bold !important
color: #004e5c !important
cursor: pointer
.node
rect
fill: #b6e6ef !important
stroke: #004e5c !important
border-radius: 15px
&:hover
fill: #FDF !important
stroke: red !important
fill: lemonchiffon !important
stroke: chocolate !important
cursor: pointer
.label
pointer-events: none
</style>
</style>
20 changes: 14 additions & 6 deletions src/gui/vue/pages/operationHistory/organisms/SequenceDiagram.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,23 +54,31 @@ export default class SequenceDiagram extends Vue {

<style lang="sass" scoped>
#sequence-diagram-container ::v-deep
.actor
fill: #b6e6ef !important
stroke: #004e5c !important
.messageText
stroke: none !important
&:hover
fill: red !important
font-weight: bold !important
cursor: pointer
fill: #004e5c
line
fill: #b6e6ef !important
stroke: #004e5c
.messageLine1
display: none !important
.activation0
width: 14px !important
transform: translateX(-2px) !important
&:hover
stroke: red !important
fill: #FDF !important
fill: #b6e6ef !important
stroke: #004e5c !important
cursor: pointer
rect.actor
&:hover
stroke: red !important
fill: #FDF !important
fill: lemonchiffon !important
stroke: chocolate !important
cursor: pointer
text.actor
pointer-events: none
rect.note
Expand Down