-
-
Notifications
You must be signed in to change notification settings - Fork 528
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Quick Create/Edit Window Refinements
- Loading branch information
Jim Graham
committed
Jan 5, 2022
1 parent
7625fc7
commit a79b8a2
Showing
16 changed files
with
1,065 additions
and
244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* Medium screens, including small desktops and tablets */ | ||
|
||
// Breakpoint for up to 1024px | ||
@include grid-media($tabletM) { | ||
|
||
} | ||
|
||
// Breakpoint for up to 960px | ||
@include grid-media($desktop) { | ||
.x-window { | ||
form { | ||
.x-column-inner { | ||
width: 100% !important; | ||
} | ||
.x-panel-body { | ||
width: 100% !important; | ||
} | ||
} | ||
.x-window-bc { | ||
.x-window-footer { | ||
padding: 15px; | ||
} | ||
} | ||
&.qce-create, | ||
&.qce-update { | ||
.x-toolbar-cell { | ||
margin-bottom: .75rem; | ||
display: inline-block; | ||
margin-right: 2%; | ||
&:last-child { | ||
margin-right: 0; | ||
} | ||
} | ||
} | ||
&.qce-create { | ||
.x-toolbar-cell { | ||
width: 49%; | ||
} | ||
} | ||
&.qce-update { | ||
.x-toolbar-cell { | ||
width: 32%; | ||
} | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Breakpoint for up to tablet (portrait orientation) size 768px | ||
@include grid-media($tabletP) { | ||
|
||
} | ||
|
||
// Breakpoint for mobile size | ||
@include grid-media($mobile) { | ||
|
||
.x-window { | ||
&.qce-create, | ||
&.qce-update { | ||
.x-toolbar-cell { | ||
display: block; | ||
margin-right: 0; | ||
width: 100%; | ||
} | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.