Skip to content

Fix Presenter image display on mobile devices #604

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jun 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
build:

runs-on: ubuntu-16.04
runs-on: ubuntu-18.04
strategy:
max-parallel: 5
matrix:
Expand Down
9 changes: 7 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

- job: 'Test'
pool:
vmImage: 'Ubuntu-16.04'
vmImage: 'Ubuntu-18.04'
strategy:
matrix:
Python27:
Expand All @@ -19,7 +19,9 @@ jobs:
python.version: '3.6'
Python37:
python.version: '3.7'
maxParallel: 4
Python38:
python.version: '3.8'
maxParallel: 5

steps:
- task: UsePythonVersion@0
Expand Down Expand Up @@ -59,6 +61,9 @@ jobs:
- script: python -m pytest examples/my_first_test.py --browser=chrome --headless -v -s --junit-xml=junit/test-results.xml
displayName: 'Run pytest my_first_test.py --browser=chrome --headless'

- script: python -m pytest examples/test_demo_site.py --browser=chrome --headless -v -s --junit-xml=junit/test-results.xml
displayName: 'Run pytest test_demo_site.py --browser=chrome --headless'

#- script: python -m pytest examples/test_inspect_html.py --browser=chrome --headless -v -s --junit-xml=junit/test-results.xml
# displayName: 'Run pytest test_inspect_html.py --browser=chrome --headless'

Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
livereload==2.6.2;python_version>="3.6"
mkdocs==1.1.2
mkdocs-material==5.3.3
mkdocs-material==5.4.0
mkdocs-simple-hooks==0.1.1
mkdocs-material-extensions==1.0
mkdocs-minify-plugin==0.3.0
2 changes: 1 addition & 1 deletion seleniumbase/fixtures/base_case.py
Original file line number Diff line number Diff line change
Expand Up @@ -3210,7 +3210,7 @@ def create_presentation(self, name=None, theme="default", show_notes=True):
'<style>\n'
'pre{background-color:#fbe8d4;border-radius:8px;}\n'
'div[flex_div]{height:75vh;margin:0;align-items:center;'
'justify-content:center;display:flex;}\n'
'justify-content:center;}\n'
'img[rounded]{border-radius:16px;max-width:82%%;}\n'
'</style>\n'
'</head>\n\n'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

setup(
name='seleniumbase',
version='1.42.0',
version='1.42.1',
description='Fast, Easy, and Reliable Browser Automation & Testing.',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down