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:
commit
ff0ff75d22
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user