1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-24 15:40:15 +01:00

Fixed linting errors and re-enabled workflow

This commit is contained in:
squidfunk 2020-02-17 17:25:40 +01:00
parent 14df716e63
commit 40d52a727d
5 changed files with 51 additions and 51 deletions

View File

@ -110,54 +110,54 @@ jobs:
mkdocs gh-deploy --force mkdocs gh-deploy --force
mkdocs --version mkdocs --version
# # Publish Python package and Docker image # Publish Python package and Docker image
# publish: publish:
# if: startsWith(github.ref, 'refs/tags') if: startsWith(github.ref, 'refs/tags')
# needs: build needs: build
# runs-on: ubuntu-latest runs-on: ubuntu-latest
# steps: steps:
# # Limit clone depth to speed up build # Limit clone depth to speed up build
# - uses: actions/checkout@v1 - uses: actions/checkout@v1
# with: with:
# fetch-depth: 5 fetch-depth: 5
# # Ensure latest build if repository is not up-to-date # Ensure latest build if repository is not up-to-date
# - run: rm -rf material - run: rm -rf material
# # Download distribution files # Download distribution files
# - uses: actions/download-artifact@v1 - uses: actions/download-artifact@v1
# with: with:
# name: material name: material
# # Install Python runtime and dependencies # Install Python runtime and dependencies
# - uses: actions/setup-python@v1 - uses: actions/setup-python@v1
# with: with:
# python-version: 3.x python-version: 3.x
# - run: pip install --upgrade setuptools wheel twine - run: pip install --upgrade setuptools wheel twine
# # Build and test Docker image # Build and test Docker image
# - run: | - run: |
# docker build -t ${GITHUB_REPOSITORY} . docker build -t ${GITHUB_REPOSITORY} .
# docker run --rm -i -v $(pwd):/docs ${GITHUB_REPOSITORY} \ docker run --rm -i -v $(pwd):/docs ${GITHUB_REPOSITORY} \
# build --theme material build --theme material
# # Build Python package # Build Python package
# - run: python setup.py build sdist bdist_wheel --universal - run: python setup.py build sdist bdist_wheel --universal
# # Push release to PyPI # Push release to PyPI
# - env: - env:
# PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }} PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
# PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
# run: twine upload -u ${PYPI_USERNAME} -p ${PYPI_PASSWORD} dist/* run: twine upload -u ${PYPI_USERNAME} -p ${PYPI_PASSWORD} dist/*
# # Push image to Docker Hub # Push image to Docker Hub
# - env: - env:
# DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
# DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
# run: | run: |
# docker login -u ${DOCKER_USERNAME} -p ${DOCKER_PASSWORD} docker login -u ${DOCKER_USERNAME} -p ${DOCKER_PASSWORD}
# docker tag ${GITHUB_REPOSITORY} ${GITHUB_REPOSITORY}:${GITHUB_REF##*/} docker tag ${GITHUB_REPOSITORY} ${GITHUB_REPOSITORY}:${GITHUB_REF##*/}
# docker tag ${GITHUB_REPOSITORY} ${GITHUB_REPOSITORY}:latest docker tag ${GITHUB_REPOSITORY} ${GITHUB_REPOSITORY}:latest
# docker push ${GITHUB_REPOSITORY} docker push ${GITHUB_REPOSITORY}

View File

@ -464,7 +464,7 @@ kbd {
// Table rows // Table rows
tr { tr {
transition: background-color 0.125s; transition: background-color 125ms;
// Add background on hover // Add background on hover
&:hover { &:hover {

View File

@ -98,7 +98,7 @@
&__button { &__button {
@extend %md-icon__button; @extend %md-icon__button;
transition: background 0.25s; transition: background 250ms;
} }
// Link title - set line height to match icon for correct alignment // Link title - set line height to match icon for correct alignment
@ -199,7 +199,7 @@
// Social icon // Social icon
svg { svg {
width: px2rem(16px); width: px2rem(16px);
transition: fill 0.25s; transition: fill 250ms;
vertical-align: -25%; vertical-align: -25%;
fill: $md-color-white--light; fill: $md-color-white--light;
} }

View File

@ -50,9 +50,9 @@
// Show and animate shadow // Show and animate shadow
&[data-md-state="shadow"] { &[data-md-state="shadow"] {
transition: transition:
background-color 0.25s, background-color 250ms,
color 0.25s, color 250ms,
box-shadow 0.25s; box-shadow 250ms;
box-shadow: box-shadow:
0 0 px2rem(4px) rgba(0, 0, 0, 0.1), 0 0 px2rem(4px) rgba(0, 0, 0, 0.1),
0 px2rem(4px) px2rem(8px) rgba(0, 0, 0, 0.2); 0 px2rem(4px) px2rem(8px) rgba(0, 0, 0, 0.2);
@ -73,7 +73,7 @@
@extend %md-icon__button; @extend %md-icon__button;
position: relative; position: relative;
transition: opacity 0.25s; transition: opacity 250ms;
z-index: 1; z-index: 1;
// Hovered icon // Hovered icon

View File

@ -509,7 +509,7 @@ $md-toggle__search--checked:
// Link inside item // Link inside item
&__link { &__link {
display: block; display: block;
transition: background 0.25s; transition: background 250ms;
outline: 0; outline: 0;
overflow: hidden; overflow: hidden;
scroll-snap-align: start; scroll-snap-align: start;
@ -558,7 +558,7 @@ $md-toggle__search--checked:
position: absolute; position: absolute;
left: 0; left: 0;
margin: px2rem(2px); margin: px2rem(2px);
transition: opacity 0.25s; transition: opacity 250ms;
color: $md-color-black--light; color: $md-color-black--light;
content: "\E880"; // find_in_page content: "\E880"; // find_in_page