Skip to content

Commit 5cf86f1

Browse files
authored
Fix tabs CSS (#354)
Signed-off-by: Eduardo Ponz <[email protected]>
1 parent 2a47a93 commit 5cf86f1

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

docs/conf.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,17 @@ def select_css(html_css_dir):
8282
:param html_css_dir: The directory to save the CSS stylesheet.
8383
:return: Returns a list of CSS files to be imported.
8484
"""
85+
ret = ['_static/tabs.css']
8586
common_css = '_static/css/eprosima_rtd_theme.css'
8687
local_css = '_static/css/fiware_readthedocs.css'
8788
if download_css(html_css_dir):
8889
print('Appliying common CSS style file: {}'.format(common_css))
89-
return [common_css]
90+
ret.append(common_css)
9091
else:
9192
print('Appliying local CSS style file: {}'.format(local_css))
92-
return [local_css]
93+
ret.append(local_css)
94+
95+
return ret
9396

9497

9598
def get_git_branch():

docs/fastdds/property_policies/non_consolidated_qos.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,15 +184,15 @@ another one.
184184

185185
.. tabs::
186186

187-
.. tab:: c++
187+
.. tab:: C++
188188

189189
.. literalinclude:: /../code/DDSCodeTester.cpp
190190
:language: c++
191191
:start-after: // FASTDDS_PHYSICAL_PROPERTIES
192192
:end-before: //!--
193193
:dedent: 8
194194

195-
.. tab:: xml
195+
.. tab:: XML
196196

197197
.. literalinclude:: /../code/XMLTester.xml
198198
:language: xml

0 commit comments

Comments
 (0)