MCPcopy Create free account
hub / github.com/seleniumbase/SeleniumBase / get_messenger_style

Function get_messenger_style

seleniumbase/core/style_sheet.py:154–169  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

152
153
154def get_messenger_style():
155 if hasattr(Saved, "messenger_style"):
156 return Saved.messenger_style
157 font_family = '"open-sans",Arial,sans-serif !important'
158 messenger_style = """
159 .messenger-message-inner {
160 font-family: %s;
161 font-size: 17px;
162 }
163 ul.messenger-theme-flat, ul.messenger-theme-future {
164 box-shadow: 2px 2px 9px 4px rgba(32, 142, 120, 0.28),
165 2px 2px 9px 4px rgba(200, 240, 80, 0.34) !important;
166 }""" % font_family
167 messenger_style = textwrap.dedent(messenger_style)
168 Saved.messenger_style = messenger_style
169 return messenger_style
170
171
172def get_sh_style_test():

Callers 1

activate_messengerFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…