mirror of https://github.com/apache/druid.git
data loader style fix for double typed columns (#9137)
This commit is contained in:
parent
d1500c1328
commit
28edd3b44e
|
@ -25,7 +25,10 @@
|
||||||
background: rgba(19, 129, 201, 0.5);
|
background: rgba(19, 129, 201, 0.5);
|
||||||
}
|
}
|
||||||
&.float {
|
&.float {
|
||||||
background: rgba(25, 145, 201, 0.5);
|
background: rgba(22, 129, 201, 0.5);
|
||||||
|
}
|
||||||
|
&.double {
|
||||||
|
background: rgba(25, 129, 201, 0.5);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -42,7 +45,10 @@
|
||||||
background: rgba(19, 129, 201, 0.1);
|
background: rgba(19, 129, 201, 0.1);
|
||||||
}
|
}
|
||||||
&.float {
|
&.float {
|
||||||
background: rgba(25, 145, 201, 0.1);
|
background: rgba(22, 129, 201, 0.1);
|
||||||
|
}
|
||||||
|
&.double {
|
||||||
|
background: rgba(25, 129, 201, 0.1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue