Last modified by Aurelie Bertrand on 2021/08/25 17:08

Hide last authors
mrochelle 1.1 1 {{toc/}}
2
3 ----
4
5 You can modify the design of a flow's tooltip by playing with the css
baudard 7.1 6 [[image:https://lh3.googleusercontent.com/ZrtEQIn-0JD6XcXu-dL7xWTQ3b1h4TILb4Gfjo5Co1SBshoIzUa5PUSR8sfjjeWletzyE6ajQK7ituhIDRiXo8r7GmcWVozTpqDu6hJievjTLYgdzWWvOnDRrt8J_lwHNVMfu8rVJcU||height="343px;" width="574px;"]]
mrochelle 1.1 7
baudard 7.1 8 = Styles manager =
mrochelle 1.1 9
baudard 7.1 10 * Create a new file or directly update the DigDash CSS main file.
mrochelle 1.1 11
baudard 7.1 12 (% style="text-align: center;" %)
mrochelle 1.1 13
baudard 7.1 14 [[image:1629903631224-304.png]] [[image:1629903701013-204.png]]
15
16 * Add the css below.
17
mrochelle 1.1 18 = CSS =
19
baudard 7.1 20 * Update properties of **##captionBox ##**class.
21 * Add (% style="color:#f39c12" %)##**!important **##(%%)instruction to the end of each line
22
mrochelle 1.1 23 For instance:
baudard 7.1 24
25 {{code language="CSS"}}
26 .captionBox
mrochelle 1.1 27 {
28 fill:rgb(0, 51, 134) !important;
29 fill-opacity:0.80 !important;
30 stroke-width: 0.6 !important;
baudard 7.1 31 stroke: #FFF !important;
32 }
33 {{/code}}