Is it possible to use diferent Styles (Css) for diferent Queries
Hi
I know the feature : Edit-> preference-> Result -> Style -> custom. With this feature
td{text-align: right; } td:first-child{text-align: left; }
I can exactly do what I want , but unfortunately this makes no sense for all queries I use.
Is it possible to setup different Preference settings foe different Queries ? It would be alsow helpful for DateTime Format Maximum rows ..
I know the feature : Edit-> preference-> Result -> Style -> custom. With this feature
td{text-align: right; } td:first-child{text-align: left; }
I can exactly do what I want , but unfortunately this makes no sense for all queries I use.
Is it possible to setup different Preference settings foe different Queries ? It would be alsow helpful for DateTime Format Maximum rows ..
Comments
Util.WithStyle (Customers.Take (100), "text-align: right").Dump();
This won't achieve the selective styling you're after, however, unless you know some HTML tricks I don't.
Util.RawHtml("<style>.redText {color:red;background-color:black;padding:15px;font-weight:bold}</style>").Dump(); Util.RawHtml("<span class=\"redText\">Hello world</span>").Dump();
The output will look like this