MCPcopy Index your code
hub / github.com/pgadmin-org/pgadmin4 / csssnippets

Method csssnippets

web/pgadmin/browser/__init__.py:239–252  ·  view source on GitHub ↗

Returns a snippet of css to include in the page

(self)

Source from the content-addressed store, hash-verified

237
238 @property
239 def csssnippets(self):
240 """
241 Returns a snippet of css to include in the page
242 """
243 snippets = [
244 render_template(
245 "browser/css/node.css",
246 node_type=self.node_type,
247 _=gettext
248 )]
249
250 for submodule in self.submodules:
251 snippets.extend(submodule.csssnippets)
252 return snippets
253
254 @abstractmethod
255 def get_nodes(self):

Callers

nothing calls this directly

Calls 1

extendMethod · 0.80

Tested by

no test coverage detected