Merge pull request #15122 from Snuffleupagus/editor-max-width

[editor] Tweak `@media` CSS rules to account for the new toolbar buttons
This commit is contained in:
Jonas Jenwald 2022-07-02 16:38:21 +02:00 committed by GitHub
commit ff0ff75d22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -120,7 +120,7 @@ function isValidAnnotationEditorMode(mode) {
* being rendered. The constants from {@link AnnotationMode} should be used;
* see also {@link RenderParameters} and {@link GetOperatorListParameters}.
* The default value is `AnnotationMode.ENABLE_FORMS`.
* @property {boolean} [annotationEditorMode] - Enables the creation and editing
* @property {number} [annotationEditorMode] - Enables the creation and editing
* of new Annotations. The constants from {@link AnnotationEditorType} should
* be used. The default value is `AnnotationEditorType.DISABLE`.
* @property {string} [imageResourcesPath] - Path for image resources, mainly

View File

@ -270,7 +270,7 @@ select {
right: 0;
bottom: 0;
left: 0;
min-width: 320px;
min-width: 350px;
}
#sidebarContent {
@ -1481,7 +1481,7 @@ dialog :link {
}
}
@media all and (max-width: 770px) {
@media all and (max-width: 820px) {
#outerContainer .hiddenLargeView {
display: none;
}
@ -1490,7 +1490,7 @@ dialog :link {
}
}
@media all and (max-width: 700px) {
@media all and (max-width: 750px) {
#outerContainer .hiddenMediumView {
display: none;
}
@ -1499,7 +1499,7 @@ dialog :link {
}
}
@media all and (max-width: 640px) {
@media all and (max-width: 690px) {
.hiddenSmallView,
.hiddenSmallView * {
display: none;
@ -1515,7 +1515,7 @@ dialog :link {
}
}
@media all and (max-width: 535px) {
@media all and (max-width: 560px) {
#scaleSelectContainer {
display: none;
}