Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -14,41 +14,6 @@ body {
flex-direction: column;
}

:not(.ui.grid).only {

&.mobile:not(.tablet) {
@media all and (min-width: @tabletBreakpoint) {
display: none !important;
}
}

&.tablet {
&.mobile {
@media all and (min-width: @computerBreakpoint) {
display: none !important;
}
}

&.computer {
@media all and (max-width: @largestMobileScreen) {
display: none !important;
}
}

&:not(.computer):not(.mobile) {
@media not all and (min-width: @tabletBreakpoint) and (max-width: @largestTabletScreen) {
display: none !important;
}
}
}

&.computer:not(.tablet) {
@media all and (max-width: @largestTabletScreen) {
display: none !important;
}
}
}

button:focus-visible, a:focus-visible {
outline: 3px solid @focusedFormBorderColor !important;
}
Expand Down
22 changes: 0 additions & 22 deletions invenio_app_rdm/theme/webpack.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@
},
dependencies={
"@babel/runtime": "^7.9.0",
"@tinymce/tinymce-react": "^4.3.0",
"tinymce": "^6.7.2",
"formik": "^2.1.0",
"i18next": "^20.3.0",
"i18next-browser-languagedetector": "^6.1.0",
Expand Down Expand Up @@ -75,26 +73,6 @@
"@js/invenio_app_rdm": "js/invenio_app_rdm",
"@translations/invenio_app_rdm": "translations/invenio_app_rdm",
},
copy=[
# Copy some assets into "static/dist", as TinyMCE requires that
# Note that the base path for all entries is the `config.json` directory
{
"from": "../node_modules/tinymce/skins/content/default/content.css",
"to": "../../static/dist/js/skins/content/default",
},
{
"from": "../node_modules/tinymce/skins/ui/oxide/skin.min.css",
"to": "../../static/dist/js/skins/ui/oxide",
},
{
"from": "../node_modules/tinymce/skins/ui/oxide/content.min.css",
"to": "../../static/dist/js/skins/ui/oxide",
},
{
"from": "../node_modules/json-diff-kit/dist/viewer.css",
"to": "../../static/css/json-diff-kit.css",
},
],
),
},
)
Loading